diff options
| -rw-r--r-- | .gitignore | 37 | ||||
| -rw-r--r-- | db/schema.sql | 908 | ||||
| -rw-r--r-- | perl/count_repeat_customers.pl | 106 | ||||
| -rw-r--r-- | perl/cv_stb_report.csv | 219 | ||||
| -rw-r--r-- | perl/cv_stb_report_reduced.csv | 219 | ||||
| -rw-r--r-- | perl/cw_correspondences.pl | 159 | ||||
| -rw-r--r-- | perl/cw_correspondences_reduced.pl | 183 | ||||
| -rw-r--r-- | perl/cw_customers.csv | 2534 | ||||
| -rw-r--r-- | perl/cw_dump.pl | 109 | ||||
| -rw-r--r-- | perl/cw_order_skus.csv | 5140 | ||||
| -rw-r--r-- | perl/cw_order_status.csv | 6 | ||||
| -rw-r--r-- | perl/cw_orders.csv | 2759 | ||||
| -rw-r--r-- | perl/cw_orders_no_customers.pl | 96 | ||||
| -rw-r--r-- | perl/cw_product_names.pl | 70 | ||||
| -rw-r--r-- | perl/cw_products.csv | 182 | ||||
| -rw-r--r-- | perl/cw_skus.csv | 99 |
16 files changed, 12826 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b78a20a --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +# Logs +logs +*.log + +# Runtime data +pids +*.pid +*.seed + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directory +# Commenting this out is preferred by some people, see +# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- +node_modules + +# Users Environment Variables +.lock-wscript + +./lib/ +./data/ + +*~ +*.swp + +.DS_Store + diff --git a/db/schema.sql b/db/schema.sql new file mode 100644 index 0000000..964f447 --- /dev/null +++ b/db/schema.sql @@ -0,0 +1,908 @@ +-- MySQL dump 10.13 Distrib 5.6.22, for osx10.10 (x86_64) +-- +-- Host: 50.62.209.48 Database: db1125136_msashop +-- ------------------------------------------------------ +-- Server version 5.5.43-37.2-log + +/*!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' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `cw_admin_users` +-- + +DROP TABLE IF EXISTS `cw_admin_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_admin_users` ( + `admin_user_id` int(11) NOT NULL AUTO_INCREMENT, + `admin_user_alias` varchar(255) DEFAULT NULL, + `admin_username` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `admin_password` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `admin_access_level` varchar(255) DEFAULT NULL, + `admin_login_date` datetime DEFAULT NULL, + `admin_last_login` datetime DEFAULT NULL, + `admin_user_email` varchar(255) DEFAULT NULL, + PRIMARY KEY (`admin_user_id`) +) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_cart` +-- + +DROP TABLE IF EXISTS `cw_cart`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_cart` ( + `cart_line_id` int(11) NOT NULL AUTO_INCREMENT, + `cart_custcart_id` varchar(255) DEFAULT NULL, + `cart_sku_id` int(11) DEFAULT NULL, + `cart_sku_unique_id` varchar(255) DEFAULT NULL, + `cart_sku_qty` int(11) DEFAULT NULL, + `cart_dateadded` datetime DEFAULT NULL, + PRIMARY KEY (`cart_line_id`), + KEY `cart_custcart_id_idx` (`cart_custcart_id`), + KEY `cart_sku_id_idx` (`cart_sku_id`), + KEY `cart_sku_unique_id_idx` (`cart_sku_unique_id`) +) ENGINE=MyISAM AUTO_INCREMENT=9483 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_categories_primary` +-- + +DROP TABLE IF EXISTS `cw_categories_primary`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_categories_primary` ( + `category_id` int(11) NOT NULL AUTO_INCREMENT, + `category_name` varchar(75) DEFAULT NULL, + `category_archive` smallint(6) DEFAULT '0', + `category_sort` float(11,3) DEFAULT '1.000', + `category_description` text, + `category_nav` smallint(6) DEFAULT '1', + PRIMARY KEY (`category_id`) +) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_categories_secondary` +-- + +DROP TABLE IF EXISTS `cw_categories_secondary`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_categories_secondary` ( + `secondary_id` int(11) NOT NULL AUTO_INCREMENT, + `secondary_name` varchar(100) DEFAULT NULL, + `secondary_archive` smallint(6) DEFAULT '0', + `secondary_sort` float(11,3) DEFAULT '1.000', + `secondary_description` text, + `secondary_nav` smallint(6) DEFAULT '1', + PRIMARY KEY (`secondary_id`) +) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_config_groups` +-- + +DROP TABLE IF EXISTS `cw_config_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_config_groups` ( + `config_group_id` int(11) NOT NULL AUTO_INCREMENT, + `config_group_name` varchar(50) DEFAULT NULL, + `config_group_sort` float(11,3) DEFAULT '1.000', + `config_group_show_merchant` tinyint(4) DEFAULT '0', + `config_group_protected` tinyint(4) DEFAULT '1', + `config_group_description` text, + PRIMARY KEY (`config_group_id`) +) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_config_items` +-- + +DROP TABLE IF EXISTS `cw_config_items`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_config_items` ( + `config_id` int(11) NOT NULL AUTO_INCREMENT, + `config_group_id` int(11) DEFAULT '0', + `config_variable` varchar(50) DEFAULT NULL, + `config_name` varchar(50) DEFAULT NULL, + `config_value` text, + `config_type` varchar(50) DEFAULT NULL, + `config_description` text, + `config_possibles` text, + `config_show_merchant` tinyint(4) DEFAULT '0', + `config_sort` float(11,3) DEFAULT '1.000', + `config_size` int(3) NOT NULL DEFAULT '35', + `config_rows` int(3) NOT NULL DEFAULT '5', + `config_protected` tinyint(4) DEFAULT '0', + `config_required` tinyint(1) NOT NULL DEFAULT '0', + `config_directory` varchar(0) DEFAULT NULL, + PRIMARY KEY (`config_id`), + KEY `config_group_id_idx` (`config_group_id`) +) ENGINE=MyISAM AUTO_INCREMENT=245 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_countries` +-- + +DROP TABLE IF EXISTS `cw_countries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_countries` ( + `country_id` int(11) NOT NULL AUTO_INCREMENT, + `country_name` varchar(50) DEFAULT NULL, + `country_code` varchar(50) DEFAULT NULL, + `country_sort` float(11,3) DEFAULT '1.000', + `country_archive` smallint(6) DEFAULT '0', + `country_default_country` int(11) DEFAULT '0', + PRIMARY KEY (`country_id`) +) ENGINE=MyISAM AUTO_INCREMENT=199 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_credit_cards` +-- + +DROP TABLE IF EXISTS `cw_credit_cards`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_credit_cards` ( + `creditcard_id` int(11) NOT NULL AUTO_INCREMENT, + `creditcard_name` varchar(50) DEFAULT NULL, + `creditcard_code` varchar(50) DEFAULT NULL, + `creditcard_archive` smallint(6) DEFAULT '0', + PRIMARY KEY (`creditcard_id`) +) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_customer_stateprov` +-- + +DROP TABLE IF EXISTS `cw_customer_stateprov`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_customer_stateprov` ( + `customer_state_id` int(11) NOT NULL AUTO_INCREMENT, + `customer_state_customer_id` varchar(50) NOT NULL, + `customer_state_stateprov_id` int(11) DEFAULT NULL, + `customer_state_destination` varchar(50) DEFAULT NULL, + PRIMARY KEY (`customer_state_id`), + KEY `customer_state_customer_id_idx` (`customer_state_customer_id`), + KEY `customer_state_stateprov_id_idx` (`customer_state_stateprov_id`) +) ENGINE=MyISAM AUTO_INCREMENT=5363 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_customer_types` +-- + +DROP TABLE IF EXISTS `cw_customer_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_customer_types` ( + `customer_type_id` int(11) NOT NULL AUTO_INCREMENT, + `customer_type_name` varchar(50) DEFAULT NULL, + PRIMARY KEY (`customer_type_id`) +) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_customers` +-- + +DROP TABLE IF EXISTS `cw_customers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_customers` ( + `customer_id` varchar(50) NOT NULL, + `customer_type_id` int(11) DEFAULT NULL, + `customer_date_added` datetime DEFAULT NULL, + `customer_date_modified` datetime DEFAULT NULL, + `customer_first_name` varchar(255) DEFAULT NULL, + `customer_last_name` varchar(255) DEFAULT NULL, + `customer_company` varchar(255) DEFAULT NULL, + `customer_address1` varchar(255) DEFAULT NULL, + `customer_address2` varchar(255) DEFAULT NULL, + `customer_city` varchar(255) DEFAULT NULL, + `customer_zip` varchar(255) DEFAULT NULL, + `customer_ship_name` varchar(255) DEFAULT NULL, + `customer_ship_company` varchar(255) DEFAULT NULL, + `customer_ship_country` varchar(255) DEFAULT NULL, + `customer_ship_address1` varchar(255) DEFAULT NULL, + `customer_ship_address2` varchar(255) DEFAULT NULL, + `customer_ship_city` varchar(255) DEFAULT NULL, + `customer_ship_zip` varchar(255) DEFAULT NULL, + `customer_phone` varchar(255) DEFAULT NULL, + `customer_phone_mobile` varchar(255) DEFAULT NULL, + `customer_email` varchar(255) DEFAULT NULL, + `customer_username` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `customer_password` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `customer_guest` tinyint(1) DEFAULT '0', + PRIMARY KEY (`customer_id`), + KEY `customer_type_id_idx` (`customer_type_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_discount_amounts` +-- + +DROP TABLE IF EXISTS `cw_discount_amounts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_discount_amounts` ( + `discount_amount_id` int(11) NOT NULL AUTO_INCREMENT, + `discount_amount_discount_id` int(11) NOT NULL DEFAULT '0', + `discount_amount_discount` decimal(20,4) NOT NULL DEFAULT '0.0000', + `discount_amount_minimum_qty` int(11) DEFAULT NULL, + `discount_amount_minimum_amount` decimal(20,4) DEFAULT NULL, + `discount_amount_rate_type` varchar(50) DEFAULT NULL, + PRIMARY KEY (`discount_amount_id`), + KEY `discount_amount_discount_id_idx` (`discount_amount_discount_id`) +) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_discount_apply_types` +-- + +DROP TABLE IF EXISTS `cw_discount_apply_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_discount_apply_types` ( + `discount_apply_type_id` int(11) NOT NULL AUTO_INCREMENT, + `discount_apply_type_description` varchar(100) NOT NULL, + `discount_apply_type_archive` tinyint(4) NOT NULL DEFAULT '0', + PRIMARY KEY (`discount_apply_type_id`) +) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_discount_categories` +-- + +DROP TABLE IF EXISTS `cw_discount_categories`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_discount_categories` ( + `discount_category_id` int(11) NOT NULL AUTO_INCREMENT, + `discount2category_discount_id` int(11) NOT NULL DEFAULT '0', + `discount2category_category_id` int(11) NOT NULL DEFAULT '0', + `discount_category_type` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`discount_category_id`), + KEY `discount2category_discount_id_idx` (`discount2category_discount_id`), + KEY `discount2category_category_id_idx` (`discount2category_category_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_discount_products` +-- + +DROP TABLE IF EXISTS `cw_discount_products`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_discount_products` ( + `discount_product_id` int(11) NOT NULL AUTO_INCREMENT, + `discount2product_discount_id` int(11) NOT NULL DEFAULT '0', + `discount2product_product_id` int(11) NOT NULL DEFAULT '0', + `discount_product_active` int(11) NOT NULL DEFAULT '1', + PRIMARY KEY (`discount_product_id`), + KEY `discount2product_discount_id_idx` (`discount2product_discount_id`), + KEY `discount2product_product_id_idx` (`discount2product_product_id`) +) ENGINE=MyISAM AUTO_INCREMENT=41 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_discount_skus` +-- + +DROP TABLE IF EXISTS `cw_discount_skus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_discount_skus` ( + `discount_sku_id` int(11) NOT NULL AUTO_INCREMENT, + `discount2sku_discount_id` int(11) NOT NULL DEFAULT '0', + `discount2sku_sku_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`discount_sku_id`), + KEY `discount2sku_discount_id_idx` (`discount2sku_discount_id`), + KEY `discount2sku_sku_id_idx` (`discount2sku_sku_id`) +) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_discount_types` +-- + +DROP TABLE IF EXISTS `cw_discount_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_discount_types` ( + `discount_type_id` int(11) NOT NULL AUTO_INCREMENT, + `discount_type` varchar(100) DEFAULT NULL, + `discount_type_description` varchar(100) DEFAULT NULL, + `discount_type_archive` tinyint(1) DEFAULT '0', + `discount_type_order` int(2) DEFAULT NULL, + PRIMARY KEY (`discount_type_id`) +) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_discount_usage` +-- + +DROP TABLE IF EXISTS `cw_discount_usage`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_discount_usage` ( + `discount_usage_id` int(11) NOT NULL AUTO_INCREMENT, + `discount_usage_customer_id` varchar(50) DEFAULT NULL, + `discount_usage_datetime` datetime DEFAULT NULL, + `discount_usage_order_id` varchar(50) DEFAULT NULL, + `discount_usage_discount_name` varchar(255) DEFAULT NULL, + `discount_usage_discount_description` text, + `discount_usage_promocode` varchar(255) DEFAULT NULL, + `discount_usage_discount_id` int(11) DEFAULT '0', + PRIMARY KEY (`discount_usage_id`), + KEY `discount_usage_order_id_idx` (`discount_usage_order_id`) +) ENGINE=MyISAM AUTO_INCREMENT=497 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_discounts` +-- + +DROP TABLE IF EXISTS `cw_discounts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_discounts` ( + `discount_id` int(11) NOT NULL AUTO_INCREMENT, + `discount_merchant_id` varchar(50) DEFAULT NULL, + `discount_name` varchar(100) DEFAULT NULL, + `discount_amount` float(12,2) DEFAULT NULL, + `discount_calc` varchar(99) DEFAULT NULL, + `discount_description` text, + `discount_show_description` tinyint(1) DEFAULT '1', + `discount_type` varchar(55) DEFAULT NULL, + `discount_promotional_code` varchar(255) DEFAULT NULL, + `discount_start_date` datetime DEFAULT NULL, + `discount_end_date` datetime DEFAULT NULL, + `discount_limit` int(11) DEFAULT '0', + `discount_customer_limit` int(11) DEFAULT '0', + `discount_global` tinyint(1) DEFAULT NULL, + `discount_exclusive` tinyint(1) DEFAULT '0', + `discount_priority` bigint(11) DEFAULT '0', + `discount_archive` tinyint(4) DEFAULT '0', + `discount_filter_customer_type` tinyint(1) DEFAULT '0', + `discount_customer_type` varchar(100) DEFAULT NULL, + `discount_filter_customer_id` tinyint(1) DEFAULT '0', + `discount_customer_id` text, + `discount_filter_cart_total` tinyint(1) DEFAULT '0', + `discount_cart_total_max` float(12,2) DEFAULT '0.00', + `discount_cart_total_min` float(12,2) DEFAULT '0.00', + `discount_filter_item_qty` tinyint(1) DEFAULT '0', + `discount_item_qty_min` int(8) DEFAULT '0', + `discount_item_qty_max` int(8) DEFAULT '0', + `discount_filter_cart_qty` tinyint(1) DEFAULT '0', + `discount_cart_qty_min` int(8) DEFAULT '0', + `discount_cart_qty_max` int(8) DEFAULT '0', + `discount_association_method` varchar(50) DEFAULT NULL, + PRIMARY KEY (`discount_id`) +) ENGINE=MyISAM AUTO_INCREMENT=95 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_downloads` +-- + +DROP TABLE IF EXISTS `cw_downloads`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_downloads` ( + `dl_id` int(12) NOT NULL AUTO_INCREMENT, + `dl_sku_id` int(12) DEFAULT NULL, + `dl_customer_id` varchar(255) DEFAULT NULL, + `dl_timestamp` datetime DEFAULT NULL, + `dl_file` varchar(255) DEFAULT NULL, + `dl_version` varchar(255) DEFAULT NULL, + `dl_remote_addr` varchar(255) DEFAULT NULL, + PRIMARY KEY (`dl_id`), + KEY `dl_sku_id_idx` (`dl_sku_id`), + KEY `dl_customer_id_idx` (`dl_customer_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_image_types` +-- + +DROP TABLE IF EXISTS `cw_image_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_image_types` ( + `imagetype_id` int(11) NOT NULL AUTO_INCREMENT, + `imagetype_name` varchar(100) DEFAULT NULL, + `imagetype_sortorder` float(11,3) DEFAULT '1.000', + `imagetype_folder` varchar(50) DEFAULT NULL, + `imagetype_max_width` int(10) DEFAULT NULL, + `imagetype_max_height` int(10) DEFAULT NULL, + `imagetype_crop_width` int(10) DEFAULT NULL, + `imagetype_crop_height` int(10) DEFAULT NULL, + `imagetype_upload_group` int(2) DEFAULT '1', + `imagetype_user_edit` tinyint(1) DEFAULT '1', + PRIMARY KEY (`imagetype_id`) +) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_option_types` +-- + +DROP TABLE IF EXISTS `cw_option_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_option_types` ( + `optiontype_id` int(11) NOT NULL AUTO_INCREMENT, + `optiontype_required` tinyint(4) DEFAULT '1', + `optiontype_name` varchar(75) DEFAULT NULL, + `optiontype_archive` smallint(6) DEFAULT '0', + `optiontype_deleted` smallint(1) DEFAULT '0', + `optiontype_sort` float(11,3) DEFAULT '1.000', + `optiontype_text` text, + PRIMARY KEY (`optiontype_id`) +) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_options` +-- + +DROP TABLE IF EXISTS `cw_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_options` ( + `option_id` int(11) NOT NULL AUTO_INCREMENT, + `option_type_id` int(11) DEFAULT '0', + `option_name` varchar(50) DEFAULT NULL, + `option_sort` float(11,3) DEFAULT '1.000', + `option_archive` smallint(6) DEFAULT '0', + `option_text` text, + PRIMARY KEY (`option_id`), + KEY `option_type_id_idx` (`option_type_id`) +) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_order_payments` +-- + +DROP TABLE IF EXISTS `cw_order_payments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_order_payments` ( + `payment_id` int(12) NOT NULL AUTO_INCREMENT, + `order_id` varchar(50) DEFAULT NULL, + `payment_method` varchar(255) DEFAULT NULL, + `payment_type` varchar(255) DEFAULT NULL, + `payment_amount` float(12,2) DEFAULT NULL, + `payment_status` varchar(255) DEFAULT NULL, + `payment_trans_id` varchar(255) DEFAULT NULL, + `payment_trans_response` text, + `payment_timestamp` datetime DEFAULT NULL, + PRIMARY KEY (`payment_id`), + KEY `order_id_idx` (`order_id`) +) ENGINE=MyISAM AUTO_INCREMENT=2503 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_order_sku_data` +-- + +DROP TABLE IF EXISTS `cw_order_sku_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_order_sku_data` ( + `data_id` int(11) NOT NULL AUTO_INCREMENT, + `data_sku_id` int(11) DEFAULT NULL, + `data_cart_id` bigint(20) DEFAULT NULL, + `data_content` text, + `data_date_added` datetime DEFAULT NULL, + PRIMARY KEY (`data_id`), + KEY `data_sku_id_idx` (`data_sku_id`), + KEY `data_cart_id_idx` (`data_cart_id`) +) ENGINE=MyISAM AUTO_INCREMENT=69 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_order_skus` +-- + +DROP TABLE IF EXISTS `cw_order_skus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_order_skus` ( + `ordersku_id` int(11) NOT NULL AUTO_INCREMENT, + `ordersku_order_id` varchar(255) NOT NULL, + `ordersku_sku` int(11) NOT NULL DEFAULT '0', + `ordersku_quantity` int(11) DEFAULT NULL, + `ordersku_unit_price` double DEFAULT NULL, + `ordersku_sku_total` double DEFAULT '0', + `ordersku_tax_rate` double DEFAULT '0', + `ordersku_taxrate_id` int(11) DEFAULT NULL, + `ordersku_unique_id` varchar(255) DEFAULT NULL, + `ordersku_customval` varchar(255) DEFAULT NULL, + `ordersku_discount_amount` double DEFAULT NULL, + PRIMARY KEY (`ordersku_id`), + KEY `ordersku_order_id_idx` (`ordersku_order_id`), + KEY `ordersku_unique_id_idx` (`ordersku_unique_id`) +) ENGINE=MyISAM AUTO_INCREMENT=5637 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_order_status` +-- + +DROP TABLE IF EXISTS `cw_order_status`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_order_status` ( + `shipstatus_id` int(11) NOT NULL AUTO_INCREMENT, + `shipstatus_name` varchar(70) DEFAULT NULL, + `shipstatus_sort` float(11,3) DEFAULT '1.000', + PRIMARY KEY (`shipstatus_id`) +) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_orders` +-- + +DROP TABLE IF EXISTS `cw_orders`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_orders` ( + `order_id` varchar(75) NOT NULL, + `order_date` datetime DEFAULT NULL, + `order_status` int(11) DEFAULT '0', + `order_customer_id` varchar(50) NOT NULL, + `order_checkout_type` varchar(20) DEFAULT NULL, + `order_tax` double DEFAULT '0', + `order_shipping` double DEFAULT '0', + `order_shipping_tax` double DEFAULT '0', + `order_total` double DEFAULT '0', + `order_ship_method_id` int(11) DEFAULT '0', + `order_ship_date` datetime DEFAULT NULL, + `order_ship_tracking_id` varchar(100) DEFAULT NULL, + `order_ship_name` text, + `order_company` varchar(255) DEFAULT NULL, + `order_address1` varchar(255) DEFAULT NULL, + `order_address2` varchar(255) DEFAULT NULL, + `order_city` varchar(255) DEFAULT NULL, + `order_state` varchar(50) DEFAULT NULL, + `order_zip` varchar(50) DEFAULT NULL, + `order_country` varchar(75) DEFAULT NULL, + `order_notes` text, + `order_actual_ship_charge` double DEFAULT '0', + `order_comments` varchar(255) DEFAULT NULL, + `order_discount_total` double DEFAULT '0', + `order_ship_discount_total` double DEFAULT NULL, + `order_return_date` date DEFAULT NULL, + `order_return_amount` double DEFAULT NULL, + PRIMARY KEY (`order_id`), + KEY `order_customer_id_idx` (`order_customer_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_product_categories_primary` +-- + +DROP TABLE IF EXISTS `cw_product_categories_primary`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_product_categories_primary` ( + `product2category_id` int(11) NOT NULL AUTO_INCREMENT, + `product2category_product_id` int(11) DEFAULT '0', + `product2category_category_id` int(11) DEFAULT '0', + PRIMARY KEY (`product2category_id`), + KEY `product2category_product_id_idx` (`product2category_product_id`), + KEY `product2category_category_id_idx` (`product2category_category_id`) +) ENGINE=MyISAM AUTO_INCREMENT=326 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_product_categories_secondary` +-- + +DROP TABLE IF EXISTS `cw_product_categories_secondary`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_product_categories_secondary` ( + `product2secondary_id` int(11) NOT NULL AUTO_INCREMENT, + `product2secondary_product_id` int(11) DEFAULT '0', + `product2secondary_secondary_id` int(11) DEFAULT '0', + PRIMARY KEY (`product2secondary_id`), + KEY `product2secondary_product_id_idx` (`product2secondary_product_id`), + KEY `product2secondary_secondary_id_idx` (`product2secondary_secondary_id`) +) ENGINE=MyISAM AUTO_INCREMENT=344 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_product_images` +-- + +DROP TABLE IF EXISTS `cw_product_images`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_product_images` ( + `product_image_id` int(11) NOT NULL AUTO_INCREMENT, + `product_image_product_id` int(11) DEFAULT '0', + `product_image_imagetype_id` int(11) DEFAULT '0', + `product_image_filename` varchar(255) DEFAULT NULL, + `product_image_sortorder` float(11,3) DEFAULT '1.000', + `product_image_caption` varchar(255) DEFAULT NULL, + PRIMARY KEY (`product_image_id`), + KEY `product_image_product_id_idx` (`product_image_product_id`), + KEY `product_image_imagetype_id_idx` (`product_image_imagetype_id`) +) ENGINE=MyISAM AUTO_INCREMENT=331 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_product_options` +-- + +DROP TABLE IF EXISTS `cw_product_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_product_options` ( + `product_options_id` int(11) NOT NULL AUTO_INCREMENT, + `product_options2prod_id` int(11) NOT NULL DEFAULT '0', + `product_options2optiontype_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`product_options_id`), + KEY `product_options2prod_id_idx` (`product_options2prod_id`), + KEY `product_options2optiontype_id_idx` (`product_options2optiontype_id`) +) ENGINE=MyISAM AUTO_INCREMENT=84 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_product_upsell` +-- + +DROP TABLE IF EXISTS `cw_product_upsell`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_product_upsell` ( + `upsell_id` int(11) NOT NULL AUTO_INCREMENT, + `upsell_product_id` int(11) DEFAULT '0', + `upsell_2product_id` int(11) DEFAULT '0', + PRIMARY KEY (`upsell_id`), + KEY `upsell_product_id_idx` (`upsell_product_id`), + KEY `upsell_2product_id_idx` (`upsell_2product_id`) +) ENGINE=MyISAM AUTO_INCREMENT=73 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_products` +-- + +DROP TABLE IF EXISTS `cw_products`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_products` ( + `product_id` int(11) NOT NULL AUTO_INCREMENT, + `product_merchant_product_id` varchar(50) NOT NULL, + `product_name` varchar(125) DEFAULT NULL, + `product_description` text, + `product_preview_description` text, + `product_sort` float(11,3) DEFAULT '1.000', + `product_on_web` smallint(6) DEFAULT '1', + `product_archive` smallint(6) DEFAULT '0', + `product_ship_charge` smallint(6) DEFAULT '0', + `product_tax_group_id` int(11) DEFAULT '0', + `product_date_modified` datetime DEFAULT NULL, + `product_special_description` text, + `product_keywords` text, + `product_out_of_stock_message` varchar(255) DEFAULT NULL, + `product_custom_info_label` varchar(255) DEFAULT NULL, + PRIMARY KEY (`product_id`), + KEY `product_tax_group_id_idx` (`product_tax_group_id`) +) ENGINE=MyISAM AUTO_INCREMENT=65 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_ship_method_countries` +-- + +DROP TABLE IF EXISTS `cw_ship_method_countries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_ship_method_countries` ( + `ship_method_country_id` int(11) NOT NULL AUTO_INCREMENT, + `ship_method_country_method_id` int(11) DEFAULT '0', + `ship_method_country_country_id` int(11) DEFAULT '0', + PRIMARY KEY (`ship_method_country_id`), + KEY `ship_method_country_method_id_idx` (`ship_method_country_method_id`), + KEY `ship_method_country_country_id_idx` (`ship_method_country_country_id`) +) ENGINE=MyISAM AUTO_INCREMENT=42 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_ship_methods` +-- + +DROP TABLE IF EXISTS `cw_ship_methods`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_ship_methods` ( + `ship_method_id` int(11) NOT NULL AUTO_INCREMENT, + `ship_method_name` varchar(100) NOT NULL DEFAULT '', + `ship_method_rate` double DEFAULT NULL, + `ship_method_sort` float(11,3) NOT NULL DEFAULT '1.000', + `ship_method_archive` smallint(6) DEFAULT '0', + `ship_method_calctype` varchar(55) DEFAULT NULL, + PRIMARY KEY (`ship_method_id`) +) ENGINE=MyISAM AUTO_INCREMENT=108 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_ship_ranges` +-- + +DROP TABLE IF EXISTS `cw_ship_ranges`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_ship_ranges` ( + `ship_range_id` int(11) NOT NULL AUTO_INCREMENT, + `ship_range_method_id` int(11) DEFAULT '0', + `ship_range_from` double DEFAULT '0', + `ship_range_to` double DEFAULT '0', + `ship_range_amount` double DEFAULT '0', + PRIMARY KEY (`ship_range_id`), + KEY `ship_range_method_id_idx` (`ship_range_method_id`) +) ENGINE=MyISAM AUTO_INCREMENT=118 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_sku_options` +-- + +DROP TABLE IF EXISTS `cw_sku_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_sku_options` ( + `sku_option_id` int(11) NOT NULL AUTO_INCREMENT, + `sku_option2sku_id` int(11) NOT NULL DEFAULT '0', + `sku_option2option_id` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`sku_option_id`), + KEY `sku_option2sku_id_idx` (`sku_option2sku_id`), + KEY `sku_option2option_id_idx` (`sku_option2option_id`) +) ENGINE=MyISAM AUTO_INCREMENT=2725 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_skus` +-- + +DROP TABLE IF EXISTS `cw_skus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_skus` ( + `sku_id` int(11) NOT NULL AUTO_INCREMENT, + `sku_merchant_sku_id` varchar(50) DEFAULT NULL, + `sku_product_id` int(11) NOT NULL DEFAULT '0', + `sku_price` double DEFAULT NULL, + `sku_weight` double DEFAULT '0', + `sku_stock` int(11) DEFAULT '0', + `sku_on_web` smallint(6) DEFAULT '1', + `sku_sort` float(11,3) DEFAULT '1.000', + `sku_alt_price` double DEFAULT NULL, + `sku_ship_base` double DEFAULT NULL, + `sku_download_file` varchar(255) DEFAULT NULL, + `sku_download_id` varchar(255) DEFAULT NULL, + `sku_download_version` varchar(50) DEFAULT NULL, + `sku_download_limit` int(7) DEFAULT '0', + PRIMARY KEY (`sku_id`), + KEY `sku_product_id_idx` (`sku_product_id`) +) ENGINE=MyISAM AUTO_INCREMENT=108 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_stateprov` +-- + +DROP TABLE IF EXISTS `cw_stateprov`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_stateprov` ( + `stateprov_id` int(11) NOT NULL AUTO_INCREMENT, + `stateprov_code` varchar(50) DEFAULT NULL, + `stateprov_name` varchar(255) DEFAULT NULL, + `stateprov_country_id` int(11) DEFAULT '0', + `stateprov_tax` double DEFAULT '0', + `stateprov_ship_ext` double DEFAULT '0', + `stateprov_archive` smallint(6) DEFAULT '0', + PRIMARY KEY (`stateprov_id`), + KEY `stateprov_country_id_idx` (`stateprov_country_id`) +) ENGINE=MyISAM AUTO_INCREMENT=4216 DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_tax_groups` +-- + +DROP TABLE IF EXISTS `cw_tax_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_tax_groups` ( + `tax_group_id` int(11) NOT NULL AUTO_INCREMENT, + `tax_group_name` varchar(150) DEFAULT NULL, + `tax_group_archive` smallint(6) DEFAULT '0', + `tax_group_code` varchar(50) DEFAULT NULL, + PRIMARY KEY (`tax_group_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_tax_rates` +-- + +DROP TABLE IF EXISTS `cw_tax_rates`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_tax_rates` ( + `tax_rate_id` int(11) NOT NULL AUTO_INCREMENT, + `tax_rate_region_id` int(11) DEFAULT '0', + `tax_rate_group_id` int(11) DEFAULT '0', + `tax_rate_percentage` double DEFAULT '0', + PRIMARY KEY (`tax_rate_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Table structure for table `cw_tax_regions` +-- + +DROP TABLE IF EXISTS `cw_tax_regions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `cw_tax_regions` ( + `tax_region_id` int(11) NOT NULL AUTO_INCREMENT, + `tax_region_country_id` int(11) NOT NULL DEFAULT '0', + `tax_region_state_id` int(11) NOT NULL DEFAULT '0', + `tax_region_label` varchar(150) DEFAULT NULL, + `tax_region_tax_id` varchar(50) DEFAULT NULL, + `tax_region_show_id` tinyint(4) DEFAULT NULL, + `tax_region_ship_tax_method` varchar(50) DEFAULT NULL, + `tax_region_ship_tax_group_id` int(11) DEFAULT '0', + PRIMARY KEY (`tax_region_id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2017-04-21 11:31:20 diff --git a/perl/count_repeat_customers.pl b/perl/count_repeat_customers.pl new file mode 100644 index 0000000..f2873f4 --- /dev/null +++ b/perl/count_repeat_customers.pl @@ -0,0 +1,106 @@ +#!/usr/bin/perl + +use Text::CSV; +use Data::Dumper; + +# cw_products +# 0 id 1 sku 2 product_name + +# cw_skus +# 0 sku_id 1 sku 2 product_id + +# cw_orders +# 0 order_id 1 date 2 status 3 customer_id + +# cw_order_skus +# 0 id 1 order_id 2 sku_id + +# cw_customers +# 0 customer_id 1 customer_type 2 date_added 3 date_modified 4 first_name 5 last_name + +@products = load_csv("cw_products.csv"); +@skus = load_csv("cw_skus.csv"); +@orders = load_csv("cw_orders.csv"); +@order_skus = load_csv("cw_order_skus.csv"); +@customers = load_csv("cw_customers.csv"); + +$product_name_lookup = {}; +for $product (@products) { + $sku = $product->[1]; + $name = $product->[2]; + $product_name_lookup->{ $sku } = $name; +} + +$customer_name_lookup = {}; +for $customer (@customers) { + $id = $customer->[0]; + $name = $customer->[5] . " " . $customer->[4]; + $customer_name_lookup->{ $id } = $name; +} + +$sku_id_lookup = {}; +for $sku (@skus) { + $sku_id = $sku->[0]; + $sku_name = $sku->[1]; + $sku_id_lookup->{ $sku_id } = $sku_name; +} + +$customers_seen = {}; +for $order (@orders) { + $order_id = $order->[0]; + $customer_id = $order->[3]; + if (exists( $customers_seen->{ $customer_id } )) { + # print $customer_name_lookup->{ $customer_id } . "\n"; + $customers_seen->{ $customer_id } += 1; + } + else { + $customers_seen->{ $customer_id } = 1; + } +} + +$repeat_customers = 0; +$total_customers = 0; +for $customer_id (keys %$customers_seen) { + $count = $customers_seen->{ $customer_id }; + $total_customers += 1; + if ( $count > 1 ) { + # print $count . ": " . $customer_name_lookup->{ $customer_id } . "\n"; + $repeat_customers += 1; + } +} + +print "total customers: " . $total_customers . "\n"; +print "repeat customers: " . $repeat_customers . "\n"; + + +# print Dumper( $sku_id_lookup ); + + + + + + + + + + + + + + + +sub load_csv () { + my $filename = shift; + my @rows; + my $csv = Text::CSV->new ( { binary => 1 } ) # should set binary attribute. + or die "Cannot use CSV: ".Text::CSV->error_diag (); + + open my $fh, "<:encoding(utf8)", $filename or die "$filename: $!"; + while ( my $row = $csv->getline( $fh ) ) { + push @rows, $row; + } + $csv->eof or $csv->error_diag(); + close $fh; + return @rows; +} + diff --git a/perl/cv_stb_report.csv b/perl/cv_stb_report.csv new file mode 100644 index 0000000..609da49 --- /dev/null +++ b/perl/cv_stb_report.csv @@ -0,0 +1,219 @@ +ad089a13-16-02,"2/16/2013 13:58",John,LeRoy,NULL,"16161 Point Lookout Rd.",NULL,"Lexington Park",20653,,,,,330MM,340MM,,,,, +6cd60413-22-02,"2/22/2013 11:25",Philip,Buchholz,Mr.,"PO Box 597","1105 W Rochester Ave",Saratoga,82331,,STBVOL2,,,,,,,,, +26a3a113-19-03,"3/19/2013 12:48",Raymond,Dotson,"Raymond Dotson","174 Quail Drive","Sleepy Creek Club",Dudley,28333,,,,,330MM,,,,,, +81964b13-20-03,"3/20/2013 23:12","Jeffrey D",Maynor,NULL,"16079 Confederate Ave",NULL,"Baton Rouge",70817,,STBVOL2,,,,,,,,, +8035fe13-25-03,"3/25/2013 7:49",Olafur,Magnusson,"Donna ehf","Mohella 2",Hafnarfjordur,ICELAND,IS220,,,,,,340MM,,,,, +fe7e4a13-01-04,"4/1/2013 10:05",Charles,Hobson,"Fred S Kile","290 Cramer Creek Ct",NULL,Dublin,43017,,STBVOL2,,,,,,,,, +6d6b9513-05-04,"4/5/2013 13:20","William R.",Fuzia,NULL,"2115 Fulton Street",NULL,Bluefield,24701,,STBVOL2,,,,,,,,, +ee97c213-05-04,"4/5/2013 13:34",Mark,Genung,ASBI.com,"8247 Indy Court",NULL,Indianapolis,46214,,,,,,,,,,,"Volumes 2, 3 & 4" +7d0c0013-09-04,"4/9/2013 14:13",Edward,Howard,NULL,"2617 Camino Pl W",NULL,Kettering,45420-3932,,,,,330MM,340MM,,,,, +cb36f213-13-04,"4/13/2013 21:53",Ridge,Smith,NULL,"PO Box 851123",NULL,Yukon,73085,,,,,330MM,340MM,,,,, +e0404c13-14-04,"4/14/2013 17:44",Jose,Perez,(personal),"16141 SW 42nd. Ter",NULL,MIami,33185-3825,,,,,330MM,340MM,,,,, +991dbe13-20-04,"4/20/2013 10:07",Wayne,"Mac Culloch",NULL,"1815 Chopin Place",NULL,Orleans,"K1C 5G1",,STBVOL2,,,,,,,,, +08401113-28-04,"4/28/2013 20:56",Donald,Poling,NULL,"1210 NW 43 Street",NULL,"Fort Lauderdale",33309,,,,,,,,,,"Volumes 3 & 4", +6c19ff13-02-05,"5/2/2013 7:11","Col JD",Stevens,NULL,"18309 Allora Dr",NULL,Edmond,73012,,STBVOL2,,,,,,,,, +05152913-05-05,"5/5/2013 21:23",James,Drury,NULL,"120 Drummond Drive",NULL,"Elizabeth City",27909,,STBVOL2,,,,,,,,, +12d2fe13-06-05,"5/6/2013 11:34",Michael,Fischer,NULL,"135 Amersham Ct",NULL,Kernersville,27284,,,,,330MM,340MM,,,,, +44a35813-12-05,"5/12/2013 18:20",James,Loudermilk,NULL,"9416 Chatham Street",NULL,Manassas,20110-3604,,,,,330MM,340MM,,,,, +c26d8913-16-05,"5/16/2013 12:27",Robert,Drzewucki,"Robert Drzewucki","118 Brockmoore Drive",NULL,"East Amherst",14051,,STBVOL2,,,,,,,,, +23ce9513-17-05,"5/17/2013 22:56",Robert,Moore,"Robert Moore","30 CSA Dr",NULL,Grenada,38901,,STBVOL2,,,,,,,,, +08f4e013-21-05,"5/21/2013 11:15",William,Chapman,NULL,"77 Pascal Ave.",NULL,Rockport,4856,,,,,330MM,,,,,, +05b3c413-21-05,"5/21/2013 15:24",Donald,MacCormick,NULL,"17000 E. 44th Street",NULL,Independence,64055,,,,,330MM,,,,,, +7f212113-28-05,"5/28/2013 15:06","Douglas ",Collins,NULL,"1520 Hillside Drive",NULL,Kamloops,"V2E 1B1",,STBVOL2,,,,,,,,, +b7775813-17-06,"6/17/2013 13:23",William,Sexton,"Secretary, Etowah Masonic Lodge #222",Dawsonville,"United States",GEORGIA,30534,,,,,,340MM,,,,, +19d7ae13-30-06,"6/30/2013 19:18","Richard ",Maag,"Masonic Temple Association Company of Sandusky","304 Wayne Street",NULL,Sandusky,44870,,,,,330MM,,,,,, +82d7dc13-10-07,"7/10/2013 22:59",James,Pilson,NULL,"719-A Summer Lane",NULL,Prattville,36066,,,,,330MM,340MM,,,,, +cb5cf613-13-07,"7/13/2013 22:27",Rodger,Ellingwood,NULL,"4461 Summerlin Place",NULL,"Rock Hill",29732,,,,,330MM,340MM,,,,, +add04d13-17-07,"7/17/2013 21:07",Lawrence,Jolma,NULL,"PO Box 637",NULL,Seaside,97138,,STBVOL2,,,,,,,,, +1aab7813-28-07,"7/28/2013 12:03",Michael,Simmons,NULL,"17 Aldrich St",NULL,Shortsville,14548-9302,,,,,330MM,340MM,,,,, +ebf04e13-07-08,"8/7/2013 19:39",Rex,Hasty,NULL,"244 JC Bryant Rd",NULL,Hattiesburg,39401,,,,,,340MM,,,,, +450b9b13-19-08,"8/19/2013 12:46",Leonard,Demoranville,NULL,"3456 Lexington Road",NULL,Danville,40422,,,,,330MM,,,,,, +84720e13-20-08,"8/20/2013 18:32",James,Earle,"James Earle","1762 Crown Point Road","Unit 586",Thorofare,8086,,,,,,340MM,,,,, +9a17c513-23-08,"8/23/2013 12:56",Christopher,Morgan,NULL,"35960 Grand River Ave","Apt. 214","Farmington Hills",48335,,,,,330MM,340MM,,,,, +4ab0af13-29-08,"8/29/2013 11:03",Mark,Anderson,NULL,"11220 Windrow Dr",NULL,"Eden Prairie",55344,,,,303MM,330MM,,,,,, +bee52c13-30-08,"8/30/2013 22:56",Don,Springler,NULL,"PO Box 73455",NULL,Metairie,70033-3455,,,,,330MM,340MM,,,,, +a677fe13-04-11,"11/4/2013 9:52",James,VanDeHey,NULL,"3197 Primrose Ln",NULL,"Green Bay",54313,,,,,,340MM,,,,, +53e76413-26-11,"11/26/2013 11:14",PJ,Bridenstine,NULL,"310 West Main St.",NULL,Osakis,56360,,,,,,340MM,,,,, +455ef113-03-12,"12/3/2013 14:04",Thomas,Winter,NULL,"68 S Conger Avenue",NULL,Congers,10920,,,,,330MM,340MM,,,,, +36495814-25-02,"2/25/2014 23:00",Michael,Carpenter,NULL,"6021 Riverbend Blvd",NULL,"Baton Rouge",70820,,,,,330MM,340MM,,,,, +a385f414-26-02,"2/26/2014 11:43","John L",Logan,NULL,"13913 Kirkland Ridge",NULL,Edmond,73013,,STBVOL2,,,,,,,,, +a9b3a614-04-03,"3/4/2014 12:39",Russ,Charvonia,NULL,"5536 N. Bryn Mawr",NULL,Ventura,93003,,STBVOL2,,,,,,,,, +df3d9614-04-03,"3/4/2014 23:51",Russ,Todd,NULL,"12 Stonewood Drive",NULL,"Old Lyme",6371,,STBVOL2,,,,,,,,, +3e9a4914-10-03,"3/10/2014 18:36","Ólafur",Magnusson,"Donna ehf","Móhellu 2",NULL,"Hafnarfjordur ICELAND","IS 221",,STBVOL2,,,,,,,,, +24bd6114-11-03,"3/11/2014 19:08",Paschal,King,NULL,"PO Box 282",NULL,"Rio Grande",45674,,,,,330MM,340MM,,,,, +f0a3c214-11-03,"3/11/2014 22:37",Daniel,Ruiz-Isasi,NULL,"8302 Our Road",NULL,Clermont,34714,,STBVOL2,,,,,,,,, +f9fb4d14-13-03,"3/13/2014 16:22",David,Doan,NULL,"12010 Alderbrook Street",NULL,Moorpark,93021-3130,,STBVOL2,,,,,,,,, +1792c014-20-03,"3/20/2014 17:22","Calvin D",Shaver,NULL,"30333 Wellton Mohawk Dr","Coach Stop RV Park #63",Wellton,85356,,,,,330MM,,,,,, +a4c31514-24-03,"3/24/2014 11:45",Richard,Strich,NULL,"5824 DAVIS FORD RD",NULL,MANASSAS,20112-3039,,,,,330MM,340MM,,,,, +b8d1e514-25-03,"3/25/2014 20:44","Lawrence ",Rosen,NULL,"Po box 206 ",NULL,Alburgh,5440,,STBVOL2,,,,,,,,, +21d2c714-25-03,"3/25/2014 23:45",Chuck,Brust,NULL,"421 11th Ave SE",NULL,Rochester,55904,,STBVOL2,,,,,,,,, +46090514-29-03,"3/29/2014 16:35",Michael,Henry,NULL,"3308 El Camino Avenue","Ste 300-194",Sacramento,95821,,STBVOL2,,,,,,,,, +1eab2a14-30-03,"3/30/2014 16:36",Patrick,Stull,NULL,"24 Willadell Road",NULL,Transfer,16154,,STBVOL2,,,,,,,,, +85739314-01-04,"4/1/2014 9:03",Jim,Gleason,NULL,"5573 Rockpointe Dr",NULL,Clifton,20124,,,,,330MM,340MM,,,,, +fbd38914-07-04,"4/7/2014 9:57",Marcus,Dugger,NULL,"3416 estes Park Dr.",NULL,Snellville,30039-6937,,,,,330MM,340MM,,,,, +c3fbf714-14-04,"4/14/2014 12:55",Philip,Durell,NULL,"14287 37th Avenue",NULL,Surrey,"V4P 0C2",,STBVOL2,,,,,,,,, +7859d214-21-04,"4/21/2014 15:42",PAUL,COTTRELL,NULL,"25 Sherwood Circle",NULL,Hurricane,25526,,STBVOL2,,,,,,,,, +e6866014-23-04,"4/23/2014 18:38",R.S.,"Watt Jr",NULL,"2027 S. 292nd St",NULL,"Federal Way",98003,,,,,330MM,340MM,,,,, +584be614-01-05,"5/1/2014 20:43",Marcy,Dupre,NULL,"1503 Canyon Court",NULL,"Port Orchard",98366,,,,,330MM,340MM,,,,, +f3b02b14-05-05,"5/5/2014 14:45",Stephen,Ponzillo,"Stephen J. Ponzillo, III","Marsteph Hall","4 Norgate Court",Ccokeysville,21030,,STBVOL2,,,,,,,,, +58dcda14-05-05,"5/5/2014 21:23",Gregory,Gunderson,NULL,"911 4 th st sw","po box 885",Stanley,58784,,STBVOL2,,,,,,,,, +f8f91e14-07-05,"5/7/2014 14:57",Daniel,Rose,NULL,"11196 Chippewa Drive",NULL,Warren,48093-1642,,STBVOL2,,,,,,,,, +1b439614-14-05,"5/14/2014 1:16",William,Gerhardt,NULL,"3102 Old Elm Way",NULL,SanAntonio,78230,,,,,330MM,340MM,,,,, +562c0c14-21-05,"5/21/2014 10:51",Paul,Harbord,NULL,"86 9th Ave",NULL,Hawthorne,07506-1645,,,,,330MM,340MM,,,,, +40412b14-27-05,"5/27/2014 19:47",Raymon,Bacchus,NULL,"6009 Raina Drive",NULL,Centreville,20120,,,,,,340MM,,,,, +da77e514-01-06,"6/1/2014 22:32",Rex,Hasty,NULL,"244 JC Bryant Rd",NULL,Hattiesburg,39401,,,,,330MM,340MM,,,,, +f7a39214-27-06,"6/27/2014 19:34",Daniel,Enyart,NULL,"CMR 473 Box 281",NULL,APO,09606-0003,,STBVOL2,,,,,,,,, +d8799814-24-07,"7/24/2014 18:06",John,Dennis,NULL,"6013 Palmera Dr",NULL,Mason,45040-8040,,,,,330MM,,,,,, +ebf92514-29-07,"7/29/2014 17:02",Jorge,Filgueira,NULL,"191 Chippewa Street",NULL,"Miami Springs",33166,,,,,330MM,340MM,,,,, +b2f10a14-04-08,"8/4/2014 21:48",Nathan,Giesenschlag,NULL,"9095 FM 2039",NULL,Somerville,77879,,,,,330MM,340MM,,,,, +5c321714-10-08,"8/10/2014 8:46",Tracy,Chastain,NULL,"1250 Bee Lane",NULL,Geneva,32732,,,,,330MM,,,,,, +e25e4914-16-08,"8/16/2014 10:47",Albert,Piatt,NULL,"1721 Julian Ridge Road",NULL,Chattanooga,37421-3321,,,,,330MM,340MM,,,,, +90c22014-18-08,"8/18/2014 21:14",Rick,Miller,NULL,"2021 Windham St NE",NULL,Canton,44721,,,,,330MM,340MM,,,,, +a1b5f814-09-09,"9/9/2014 21:05",John,Perry,"John Perry","5201 Fawnwood Lane",NULL,Louisville,40291-1114,,,,,330MM,340MM,,,,, +acb23714-11-09,"9/11/2014 15:06",Dale,Lynch,NULL,"1509 Pine Avenue",NULL,Voorhees,8043,,,,,330MM,,,,,, +2d845c14-16-09,"9/16/2014 0:32",Chance,Robinson,NULL,"PO BOX 1088",NULL,MARFA,79843,,STBVOL2,,,,,,,,, +9cea6714-07-10,"10/7/2014 2:12",William,Biggs,NULL,"2705 E. 5th",NULL,Casper,82609-2547,,STBVOL2,,,,,,,,, +42b53a14-11-11,"11/11/2014 12:38","JOSEPH K.",BARBARA,NULL,"289 Miller ave",NULL,Branchburg,8876,,,301MM,,,,,,,, +670d4714-13-11,"11/13/2014 2:58",Clint,Stevens,NULL,"5502 Pinewood Springs",NULL,Houston,77066,,STBVOL2,,,,,,,,, +02d9ff14-19-11,"11/19/2014 10:02","Dr Ken",Moder,NULL,"160 Drury Lane",NULL,"West Lafayette",47906,,,,,330MM,,,,,, +93437214-21-12,"12/21/2014 18:48",Robert,Saverance,"Robert M Saverance","PO Box 283",NULL,Lamar,29069,,STBVOL2,,,,,,,,, +7f252a15-05-01,"1/5/2015 22:46",Samuel,Wade,NULL,"12 Grasshopper Lane",NULL,Acton,1720,,,301MM,,,,,,,, +9a89ae15-15-01,"1/15/2015 13:59",Jacob,Dermott,NULL,"1 Arbor Ct",NULL,Nappanee,46550,,,301MM,,,,,,,, +1ea08615-17-02,"2/17/2015 22:17",David,Eschrich,NULL,"917 Haymarket Dr.",NULL,Lakeland,33809,,,,303MM,,,,,,, +d944ed15-26-02,"2/26/2015 14:34",Marcus,Dugger,NULL,"3416 Estes Park Dr.",NULL,Snellville,30039,,,,,330MM,,,,,, +306b7a15-01-03,"3/1/2015 23:20",Phillip,Cheek,NULL,"6339 Dr Thomas Walker Rd",NULL,"Rose Hill",24281,,,,,330MM,,,,,, +087f8a15-02-03,"3/2/2015 16:21",Joyce,Lane,"Joyce Lane","9252 Dibble Ave NW",NULL,Seattle,98117,,,,303MM,330MM,,,,,, +f41bfd15-05-03,"3/5/2015 10:54",Thomas,Thornton,NULL,"11 Adelphia Rd",NULL,Parsippany,7054,,,,303MM,330MM,,,,,, +2e972715-08-03,"3/8/2015 22:33",John,Brobst,NULL,"5 West Elm Street",NULL,Tamaqua,18252,,,,,330MM,340MM,,,,, +80f4b715-20-03,"3/20/2015 18:10",Olafur,Magnusson,"Olafur Magnusson","6200 Midnight Pass Rd","Siesta Duens",Sarasota,34242,,,,303MM,330MM,,,,,, +49119515-21-03,"3/21/2015 10:46",John,Zabel,NULL,"371 Lyndon Rd",NULL,Fairport,14450,,,,,330MM,,,,,, +66649515-23-03,"3/23/2015 14:33",Phillip,Walker,NULL,"1782 Rockdale Cir.",NULL,Snellville,30078,,,,,330MM,,,,,, +55aae715-24-03,"3/24/2015 15:48",August,Molitano,NULL,"PO Box 427",NULL,Riverton,06065-0427,,,,,330MM,,,,,, +917da315-25-03,"3/25/2015 9:27",Kurt,Gazow,NULL,"4223 Northridge Way",NULL,Bellingham,98226,,,,303MM,330MM,,,,,, +ebede215-25-03,"3/25/2015 10:10",Matthew,Appel,NULL,"18229 60th Ave. W",NULL,Lynnwood,98037,,,,303MM,330MM,,,,,, +eecaf615-27-03,"3/27/2015 20:23","T David",Jordan,NULL,"1661 HWY 177",NULL,Russellville,35654,,,,,330MM,,,,,, +b0fb7015-28-03,"3/28/2015 17:02",Frank,Loui,"Scottish Rite","2850 19th Avenue",NULL,"San Francisco",94132-1602,,,,,330MM,,,,,, +b80ed215-29-03,"3/29/2015 9:15","P.J. ",Bridenstine,NULL,"310 West Main Street",NULL,Osakis,56360,,,,,330MM,,,,,, +5e615715-01-04,"4/1/2015 13:35",Raymond,Hunter,NULL,"13650 North Frontage Road, #152",NULL,y,85367-7423,,,,,330MM,,,,,, +94bd8e15-03-04,"4/3/2015 9:49",Daniel,Barston,NULL,"15 Clark Street",NULL,Auburn,01501-1743,,,,,330MM,,,,,, +99491015-05-04,"4/5/2015 22:53",Russ,Charvonia,NULL,"5536 N. Bryn Mawr",NULL,ventura,93003,,,,,330MM,,,,,, +ea54ef15-17-04,"4/17/2015 21:33",Andrew,Martinez,NULL,"307 Candlewood Ct.",NULL,Millersville,21108,,,,,330MM,,,,,, +26376b15-21-04,"4/21/2015 9:37",Thomas,Paxton,"Queen City Lodge #131","P.O.Box 1497","1939 Frederick St. Apt. 5",Cumberland,21501-1497,,,,,330MM,,,,,, +0dc83715-02-05,"5/2/2015 13:18",Carl,Plants,"Carl Plants","6124 NW 6th Street",NULL,Lincoln,68521,,,,,330MM,340MM,,,,, +d12dec15-07-05,"5/7/2015 12:55","Timothy ",Nicely,NULL,"4221 County Road 15",NULL,"South Point",4580,,,,,330MM,,,,,, +df36c815-10-05,"5/10/2015 20:09",David,Duke,NULL,"27682 Kingport",NULL,Splendora,77372,,,,303MM,330MM,,,,,, +ed955115-11-06,"6/11/2015 5:48",Edward,James,NULL,"15831 Easthaven Ct",NULL,Bowie,20716,,,,,330MM,340MM,,,,, +a10b4e15-15-06,"6/15/2015 15:57",Richard,Kasza,NULL,"4345 South 36th Street",NULL,Greenfield,53221,,,,,330MM,,,,,, +f4b85015-23-06,"6/23/2015 13:32",Brian,Dodson,NULL,"2707 Lakeside Village Dr",NULL,"Missouri City",77459,,,,303MM,330MM,,,,,, +e24e8315-25-06,"6/25/2015 13:13",Nelson,Bryant,NULL,"7305 Kenneth Drive",NULL,Henrico,23228,,,,,330MM,,,,,, +662b6615-28-06,"6/28/2015 15:50",Dean,Clatterbuck,"Dean Clatterbuck","P.O. Box 149","292 Click's Lane","New Market",22844,,,,,330MM,,,,,, +ad1b1a15-28-06,"6/28/2015 20:32",Bruce,Caswell,"Bruce Caswell","8940 E. Bacon Rd.",NULL,Hillsdale,49242,,,,,330MM,,,,,, +c96cf415-29-06,"6/29/2015 12:35",Darin,Lorenzen,NULL,"103 Cypress Drive",NULL,Newark,19713,,,,,330MM,,,,,, +45da1515-29-06,"6/29/2015 20:19",Norm,Sanford,NULL,"825 Willow Valley Lakes Drive",NULL,"Willow Street",17584,,,,,330MM,,,,,, +0217ad15-19-07,"7/19/2015 19:07",Lawrence,Thompson,NULL,"805 Shorewood Dr",NULL,Coppell,Texas,,,,,330MM,,,,,, +dbdcd115-26-07,"7/26/2015 15:41",Patricia,Bradbury,NULL,"5874 Lexington Drive",NULL,Pipersville,18947,,,,,330MM,,,,,, +1437d915-30-07,"7/30/2015 19:35",Frank,Loui,A&ASR,"2850 19th Avenue",NULL,"San Francisco",94132,,,,,330MM,,,,,, +07b3f515-31-07,"7/31/2015 1:18",STEPHEN,HAXBY,NULL,"PO BOX 12112",NULL,"Fort Wayne",46862-2112,,,,,330MM,,,,,, +49a79f15-31-07,"7/31/2015 9:47",Jason,Lang,NULL,"2458 59th street NE",NULL,Buffalo,55313,,,,303MM,330MM,,,,,, +a5543e15-31-07,"7/31/2015 12:03",Roy,Simpadian,NULL,"535 Amsterdam Ave",NULL,Ridgewood,7450,,,,,330MM,,,,,, +964b2415-05-08,"8/5/2015 0:14",Robert,Strayer,"Brunswick Lodge 717","P.O. Box 1262",NULL,"Brunswick ",31521,,,,303MM,330MM,,,,,, +89a68e15-05-08,"8/5/2015 12:28","Richard J",Brown,same,"3215 135 St.",NULL,Toledo,43611-2406,,,,,330MM,,,,,, +da458e15-05-08,"8/5/2015 19:35","Roberto ",Sanchez,NULL,"16346 flint run way",NULL,"Sugar land",77498,,,,,330MM,,,,,, +e9060c15-09-08,"8/9/2015 17:24",Robert,Strayer,"Brunswick Lodge #717","P.O. BOX 1262",NULL,"Brunswick ",31521,,,,303MM,330MM,,,,,, +f7894815-10-08,"8/10/2015 23:31",Michael,Seibert,NULL,"100 W Taylor Run Pkwy Apt 8",NULL,Alexandria,22314,,,,303MM,330MM,,,,,, +88488815-14-08,"8/14/2015 17:39",Arne,Hansen,NULL,"2055 Ponderosa Ct.",NULL,Bellingham,98229,,,,,330MM,,,,,, +5acaad15-25-08,"8/25/2015 8:39",John,Zabel,NULL,"371 Lyndon Rd",NULL,Fairport,14450,,,,,330MM,,,,,, +23be3a15-26-08,"8/26/2015 0:44",Eric,Johnson,NULL,"2017 Piper Circle",NULL,Anacortes,98221-3125,,,,,330MM,340MM,,,,, +61e37f15-26-08,"8/26/2015 21:26",Donald,Crews,NULL,"2724 Willard Ave",NULL,Cincinnati,45209,,,,303MM,330MM,,,,,, +18f5fb15-27-08,"8/27/2015 9:50",Michael,Wilhelm,NULL,"91 Bee Mountain Road",NULL,Oxford,6478,,,,303MM,330MM,,,,,, +15302515-30-08,"8/30/2015 17:54",Richard,Sobotta,"Richard Sobotta","7800 W. Catalpa Ave.",NULL,Chicago,60656,,,,,330MM,,,,,, +a6b48d15-31-08,"8/31/2015 14:30",Lester,Hanson,"Salem Lodge 125 F.$A.M.","110 N. Van NHess St.,",NULL,"West Salem",54669-1603,,,,,330MM,,,,,, +1ebf1415-31-08,"8/31/2015 22:26",Eugene,Olofson,NULL,"19 Proudfit St.",NULL,Jamestown,14701,,,,,330MM,,,,,, +dc610a15-01-09,"9/1/2015 10:56",leonel,zolessi,NULL,"209 bear dr ",NULL,richland,99352,,,,,330MM,,,,,, +d538c315-02-09,"9/2/2015 23:30",Phillip,Waker,"Phillip Walker","1782 Rockdale Circle",NULL,SNELLVILLE,30078-3404,,,,,330MM,,,,,, +be788815-13-09,"9/13/2015 20:54",robert,loflin,NULL,"323 N colorado st",NULL,"port lavaca",77979,,,,,330MM,,,,,, +317e4315-21-10,"10/21/2015 20:46",David,Burkus,NULL,"74 Wellington Drive",NULL,Hampton,236662855,,,,,330MM,,,,,, +a38b7315-03-11,"11/3/2015 14:44",Christian,Moore,NULL,"PO Box 3",NULL,Weimar,78962,,,,,330MM,,,,,, +47d76815-18-11,"11/18/2015 23:02",Paul,Dangreau,NULL,"27 Paradise Park",NULL,"Santa Cruz",95060,,,,,330MM,,,,,, +ed013015-21-12,"12/21/2015 17:33","Oscar ",Orum,NULL,"8607 Azalea Trail",NULL,Austin,78759-7501,,,,,330MM,,,,,, +8d79e415-21-12,"12/21/2015 21:58",Garry,Krom,NULL,"52 Spruce Street",NULL,Kingston,12401,,,,303MM,330MM,340MM,,,,, +63102016-26-01,"1/26/2016 20:41",James,Maertens,"Lake Harriet Lodge 277","4509 Drew Ave. So.",NULL,Minneapolis,55410,,,,,330MM,,,,,, +f2a74716-01-02,"2/1/2016 6:15",Ralph,Frazier,NULL,"6400 Murray Lane",NULL,Brentwood,37027,,,,303MM,330MM,,,,,, +19c79d16-06-02,"2/6/2016 17:31",David,Emberley,NULL,"17 Sullivan Way","Unit 1",Laconia,3246,,,,,330MM,,,,,, +75323616-07-02,"2/7/2016 13:12",william,Simpson,"WB William C. Simpson","134 Mill St",NULL,Ridgeville,29472,,,,303MM,330MM,340MM,,,,, +ba7de116-15-02,"2/15/2016 23:57",Chris,Tilley,NULL,"809 misty morning ct.",NULL,"St. Paul",63366,,,,,,340MM,,,,, +7c261b16-24-02,"2/24/2016 16:24",Walter,"Sawicki II",NULL,"4562 Newport Ave.",NULL,"St. Louis",63116,,,,,330MM,,,,,, +c3dd2f16-26-02,"2/26/2016 16:07",Frank,Loui,A&ASR,"2850 19th Avenue",NULL,"San Francisco",94132,,,,,,340MM,,,,, +9f004616-13-03,"3/13/2016 22:34",Rick,Silva,NULL,"3252 Cedar Ave",NULL,"Long Beach",90806,,,,303MM,,,,,,, +91029a16-15-03,"3/15/2016 15:43",Robert,Comeau,"Robert Comeau","6 Kendall Road",NULL,Boylston,1505,,,,,,340MM,,,,, +b1b6ef16-16-03,"3/16/2016 21:27",August,Molitano,NULL,"P.O. Bpx 427",NULL,Riverton,6065,,,,,,340MM,,,,, +2387cf16-17-03,"3/17/2016 10:55",Robert,Schlegel,"R F Schlegel","4053 SE 39th Circle",NULL,Ocala,34480-4954,,,,,,340MM,,,,, +aaec6116-17-03,"3/17/2016 11:25",Arnold,"Cobb ",NULL,"2916 Wicker ST",NULL,Sanford,27330,,,,,,340MM,,,,, +29e3a416-18-03,"3/18/2016 11:41",Benjamin,Schroeder,"Raven Lodge #303","13701 Joliet road",NULL,Newark,60541,,,,,,340MM,,,,, +80130216-18-03,"3/18/2016 22:48",Eric,Gillett,NULL,"15595 East Twp Rd 12",NULL,Attica,44807,,,,,,340MM,,,,, +08cd9816-20-03,"3/20/2016 14:25",Douglas,Russell,NULL,"6528 Sunnyslope Ave",NULL,"Van Nuys",91401-1743,,,,,,340MM,,,,, +a8707216-21-03,"3/21/2016 9:32",Benjamin,Schroeder,"Raven Lodge #303","13701 Joliet Road",NULL,Newark,60541,,,,,,340MM,,,,, +029ff716-21-03,"3/21/2016 12:47",Richard,Maris,"Eugene Loge 11","2777 MLK Blvd.",NULL,Eugene,97401,,,,,,340MM,,,,, +7ef8ca16-22-03,"3/22/2016 11:12",James,Johnston,NULL,"1616 Edinburgh Ave",NULL,"Port Royal",29935-1808,,,,,,340MM,,,,, +f3507316-24-03,"3/24/2016 9:53",Dan,Kemble,NULL,"1540 St. Clair Street",NULL,Covington,41011,,,,,330MM,340MM,,,,, +1467a416-25-03,"3/25/2016 21:37",Jack,Levitt,NULL,"2570 Fairway Drive",NULL,Bozeman,59715,,,,,,340MM,,,,, +15ad1416-26-03,"3/26/2016 10:00",Richard,Maag,"Masonic Temple Assoc. Co. of Sandusky","403 Wayne Street",NULL,Sandusky,44870,,,,,,340MM,,,,, +4260b816-26-03,"3/26/2016 18:04","T David ",Jordan,NULL,"1661 HWY 177",NULL,Russellville,35654,,,,,,340MM,,,,, +a5520416-29-03,"3/29/2016 16:14",Matthew,Appel,NULL,"18229 60th Ave. W",NULL,Lynnwood,98037,,,,,,340MM,,,,, +9846b316-30-03,"3/30/2016 9:40",Brian,Dodson,NULL,"2707 Lakeside Village Dr",NULL,"Missouri City",77459,,,,,,340MM,,,,, +34b12216-30-03,"3/30/2016 9:45",Brian,Dodson,NULL,"2707 Lakeside Village Dr",NULL,"Missouri City",77459,,,,,,340MM,,,,, +4beb6116-30-03,"3/30/2016 18:15",Walter,"Sawicki II",NULL,"4562 Newport Ave.",NULL,"St. Louis",63116,,,,,330MM,,,,,, +7c2deb16-30-03,"3/30/2016 18:22",Walter,"Sawicki II",NULL,"4562 Newport Ave.",NULL,"St. Louis",63116,,,,,,340MM,,,,, +3db32816-30-03,"3/30/2016 23:14",Ronald,Jarrett,NULL,"10349 416th ",NULL,Britton,57430,,,,,330MM,340MM,,,,, +90182f16-31-03,"3/31/2016 11:39",Christopher,Henn,NULL,"1821 South M street",NULL,wall,7719,,,,303MM,,,,,,, +0386c916-01-04,"4/1/2016 19:35",Daniel,Mason,NULL,"10790 Toepperwein","Apt 114",Converse,78109,,,,,,340MM,,,,, +c8181716-03-04,"4/3/2016 12:10",Daniel,Barston,NULL,"15 Clark Street",NULL,Auburn,01501-1743,,,,,,340MM,,,,, +7a5f2516-05-04,"4/5/2016 17:13",John,Zabel,NULL,"371 Lyndon Rd",NULL,Fairport,14450,,,,,,340MM,,,,, +abaed116-05-04,"4/5/2016 23:05",Joyce,Lane,NULL,"9252 Dibble Ave NW",NULL,Seattle,98117,,,,,,340MM,,,,, +20d45416-06-04,"4/6/2016 16:01","James W","Golladay Jr","James W Golladay Jr","P O Box 159",NULL,"Stephens City",22655,,,,,330MM,340MM,,,,, +8a4b9316-07-04,"4/7/2016 16:19",Jeff,Slattery,NULL,"45 Carol Lane",NULL,Athens,45701,,,,,,340MM,,,,, +c6ebc416-18-04,"4/18/2016 14:37",David,Duke,NULL,"27682 Kingport",NULL,Splendora,77372,,,,,,340MM,,,,, +8e31af16-23-04,"4/23/2016 16:08",Edward,Choate,NULL,"2118 E Charles ST",NULL,Republic,65738,,,,,330MM,340MM,,,,, +8b722d16-30-04,"4/30/2016 14:20",Smith,Boyd,"Smith Boyd","PO Box 1057",NULL,Livingston,35470,,,,303MM,,,,,,, +1da47e16-30-04,"4/30/2016 16:48",Roy,Simpadian,NULL,"38 East Ridgewood Avneue #179",NULL,Ridgewood,7450,,,,,,340MM,,,,, +ccc86e16-30-04,"4/30/2016 17:16",Roy,Simpadian,NULL,"38 E Ridgeowod Ave #179",NULL,Ridgewood,7450,,,,,,340MM,,,,, +a3580a16-04-05,"5/4/2016 14:19",Jason,Lang,NULL,"2458 59th street NE",NULL,Buffalo,55313,,,,,,340MM,,,,, +5a8a2816-04-05,"5/4/2016 15:32",Dean,Clatterbuck,"Dean Clatterbuck","P.O. Box 149",NULL,"New Market",22844,,,,,,340MM,,,,, +f31c0a16-05-05,"5/5/2016 19:16",Charles,Bremner,NULL,"892 S. Hillside Ave",NULL,Elmhurst,60126,,,,303MM,330MM,,,,,, +800a6516-08-05,"5/8/2016 18:28",Mike,Hamrick,"Phalanx Lodge #31","P.O. Box 472746",NULL,Charlotte,28247,,,,,330MM,340MM,,,,, +48af4d16-10-05,"5/10/2016 15:39",Steven,Aberblatt,NULL,"6820 Horrocks Street",NULL,Philadelphia,19149,,,,,330MM,340MM,,,,, +a3146316-13-05,"5/13/2016 14:04",Blake,Edwards,NULL,"2115 McFarlin Lane ",NULL,Milton,30004,,,,,,340MM,,,,, +17d94016-16-05,"5/16/2016 13:21",Donald,Reasonover,"Donald E Reasonover","1932 West Kirby Ave",NULL,Orange,77632,,,,,330MM,340MM,,,,, +388b2e16-17-05,"5/17/2016 17:39",John,Zabel,NULL,"371 Lyndon Rd",NULL,Fairport,14450-9703,,,,,,340MM,,,,, +a422e916-27-05,"5/27/2016 17:53",Dayton,Berg,NULL,"53153 Rush Lake Trail",NULL,"Rush City",55069-2670,,,,303MM,330MM,340MM,,,,, +d9654316-05-06,"6/5/2016 1:32",Christopher,Tilley,NULL,"809 Misty morning ct.",NULL,"St. Paul",63366,,,,303MM,,,,,,, +737f3816-09-06,"6/9/2016 14:23",David,Collignon,"Sparta Lodge No. 296","1600 E. Windridge",NULL,Ozark,65721-7332,,,,,330MM,,,,,, +59293616-24-06,"6/24/2016 22:25",Christopher,Hodapp,NULL,"9310 Seascape Drive",NULL,Indianapolis,46256,,,,303MM,330MM,,,,,, +21292416-26-06,"6/26/2016 12:16",Brian,Spooner,NULL,"4278 W 223rd St",NULL,"Fairview Park",44126,,,,,330MM,340MM,,,,, +3777e416-01-07,"7/1/2016 10:28",Andrew,Martinez,NULL,"307 Candlewood Ct.",NULL,Millersville,21108,,,,,,340MM,,,,, +abe01e16-06-07,"7/6/2016 13:08",Robert,Hobday,"Robert Hobday","80 Sycamore Drive","APT 317",Elizabethtown,17022,,,,,,340MM,,,,, +f9a1b316-19-07,"7/19/2016 10:29",Chris,"Cochrane ",NULL,"4172 Westview Lane",NULL,Oshkosh,54904,,,,,330MM,340MM,,,,, +30cfc816-23-07,"7/23/2016 9:46",John,Zabel,NULL,"371 Lyndon Rd",NULL,Fairport,14450-9703,,,,,,340MM,,,,, +2b508a16-25-07,"7/25/2016 12:30",Oscar,Orum,NULL,"8607 Azalea Trail",NULL,Austin,78759,,,,,,340MM,,,,, +b3848816-27-07,"7/27/2016 15:46",Kris,Pich,NULL,"5308 Ewing Ave s",NULL,Minneapolis,55410,,,,,330MM,,,,,, +565f1b16-31-07,"7/31/2016 10:59",Patricia,Bradbury,NULL,"5874 Lexington Drive",NULL,Pipersville,18947,,,,,,340MM,,,,, +66e5ed16-03-08,"8/3/2016 12:15",Jeremy,Vaughn,NULL,"1409 Lauren Ln",NULL,Filer,83328,,,,,330MM,340MM,,,,, +a6ab5d16-05-08,"8/5/2016 14:06",Gene,Maples,NULL,"280 Pee Dee Road",NULL,"Southern Pines",28387,,,,,,340MM,,,,, +f6dbae16-05-08,"8/5/2016 18:10",Gene,Maples,"Southern Pines Lodge 484","280 Pee Dee Road",NULL,"Southern Pines",28387,,,,,,340MM,,,,, +c2f44816-11-08,"8/11/2016 10:50",Cecil,Conyers,NULL,"209 Plantation Rd.",NULL,Townville,29689,,,,,,340MM,,,,, +5d9ca216-19-08,"8/19/2016 11:33",Ken,Nagel,"Liberty Lodge #299","2131 Briarwood Dr",NULL,"Santa Clara",95051-1944,,,,,330MM,340MM,,,,, +ad219616-21-08,"8/21/2016 17:47",Donald,Crews,NULL,"2724 Willard Ave",NULL,Cincinnati,45209,,,,,,340MM,,,,, +668c5016-29-08,"8/29/2016 1:07",Skip,Smith,"Skip Smith","127 Melody Lane",NULL,Monett,65708,,,,,,340MM,,,,, +f91aeb16-29-08,"8/29/2016 11:26",Gerald,Piepiora,"Gerald Piepiora","35 Antler Lane",NULL,Sedona,86336,,,,,,340MM,,,,, +d3e0bb16-03-09,"9/3/2016 23:38",Jeff,Schaefer,NULL,"5507 Hinton St",NULL,Springfield,22151,,,,,330MM,340MM,,,,, +557ee716-08-09,"9/8/2016 13:44",Tyler,Vanice,NULL,"801 15th St. South","Apt. 102",arlington,22202,,,,,,340MM,,,,, +f0219016-13-09,"9/13/2016 1:14",Michael,Day,NULL,"3360 Broadstone Way",NULL,Apex,27502,,,,303MM,330MM,340MM,,,,, +91c2a016-15-09,"9/15/2016 12:26",Charles,Bremner,NULL,"925 Grey Avenue",NULL,Evanston,60202,,,,,,340MM,,,,, +8d16c816-20-09,"9/20/2016 14:34",Michael,Stein,NULL,"1288 Paddington Road",NULL,Mahwah,7430,,,,,330MM,,,,,, +651c4416-23-09,"9/23/2016 9:37","Timothy ",Nicely,NULL,"4221 County Road 15",NULL,"South Point",45680,,,,,,340MM,,,,, +986d9a16-23-09,"9/23/2016 19:00",Michael,Stein,NULL,"1288 Paddington Road",NULL,Mahwah,7430,,,,,330MM,,,,,, +bead9f16-20-10,"10/20/2016 12:41","J ",Humphrey,NULL,"44 Russell Rd",NULL,Lonedell,63060,,,,,,,,,,,"Volumes 2, 3 & 4" +89fc4416-24-10,"10/24/2016 13:24",Charles,Carmichael,NULL,"3011 Solstice Lane",NULL,Annapolis,21401,,,,,,,,,,,"Volumes 2, 3 & 4" +7c2f2e16-25-10,"10/25/2016 7:39",Chris,Morgan,NULL,"101 Beechmont St",NULL,Dearborn,48124,,,,,,340MM,,,,, +7ac89d16-28-10,"10/28/2016 9:31",Edward,King,"Grand Lodge of Maine","PO Box 430",NULL,Holden,04429-0430,,,,,,,,,,,"Volumes 2, 3 & 4" +b2d40216-21-11,"11/21/2016 15:33",Robert,Hagon,NULL,"169 Woolf Road",NULL,Milford,8848,,,,,,,,,,"Volumes 3 & 4", diff --git a/perl/cv_stb_report_reduced.csv b/perl/cv_stb_report_reduced.csv new file mode 100644 index 0000000..845fef9 --- /dev/null +++ b/perl/cv_stb_report_reduced.csv @@ -0,0 +1,219 @@ +ad089a13-16-02,"2/16/2013 13:58",John,LeRoy,NULL,"16161 Point Lookout Rd.",NULL,"Lexington Park",20653,,,"VOLUME 3","VOLUME 4" +6cd60413-22-02,"2/22/2013 11:25",Philip,Buchholz,Mr.,"PO Box 597","1105 W Rochester Ave",Saratoga,82331,,"VOLUME 2",, +26a3a113-19-03,"3/19/2013 12:48",Raymond,Dotson,"Raymond Dotson","174 Quail Drive","Sleepy Creek Club",Dudley,28333,,,"VOLUME 3", +81964b13-20-03,"3/20/2013 23:12","Jeffrey D",Maynor,NULL,"16079 Confederate Ave",NULL,"Baton Rouge",70817,,"VOLUME 2",, +8035fe13-25-03,"3/25/2013 7:49",Olafur,Magnusson,"Donna ehf","Mohella 2",Hafnarfjordur,ICELAND,IS220,,,,"VOLUME 4" +fe7e4a13-01-04,"4/1/2013 10:05",Charles,Hobson,"Fred S Kile","290 Cramer Creek Ct",NULL,Dublin,43017,,"VOLUME 2",, +6d6b9513-05-04,"4/5/2013 13:20","William R.",Fuzia,NULL,"2115 Fulton Street",NULL,Bluefield,24701,,"VOLUME 2",, +ee97c213-05-04,"4/5/2013 13:34",Mark,Genung,ASBI.com,"8247 Indy Court",NULL,Indianapolis,46214,,"VOLUME 2","VOLUME 3","VOLUME 4" +7d0c0013-09-04,"4/9/2013 14:13",Edward,Howard,NULL,"2617 Camino Pl W",NULL,Kettering,45420-3932,,,"VOLUME 3","VOLUME 4" +cb36f213-13-04,"4/13/2013 21:53",Ridge,Smith,NULL,"PO Box 851123",NULL,Yukon,73085,,,"VOLUME 3","VOLUME 4" +e0404c13-14-04,"4/14/2013 17:44",Jose,Perez,(personal),"16141 SW 42nd. Ter",NULL,MIami,33185-3825,,,"VOLUME 3","VOLUME 4" +991dbe13-20-04,"4/20/2013 10:07",Wayne,"Mac Culloch",NULL,"1815 Chopin Place",NULL,Orleans,"K1C 5G1",,"VOLUME 2",, +08401113-28-04,"4/28/2013 20:56",Donald,Poling,NULL,"1210 NW 43 Street",NULL,"Fort Lauderdale",33309,,,"VOLUME 3","VOLUME 4" +6c19ff13-02-05,"5/2/2013 7:11","Col JD",Stevens,NULL,"18309 Allora Dr",NULL,Edmond,73012,,"VOLUME 2",, +05152913-05-05,"5/5/2013 21:23",James,Drury,NULL,"120 Drummond Drive",NULL,"Elizabeth City",27909,,"VOLUME 2",, +12d2fe13-06-05,"5/6/2013 11:34",Michael,Fischer,NULL,"135 Amersham Ct",NULL,Kernersville,27284,,,"VOLUME 3","VOLUME 4" +44a35813-12-05,"5/12/2013 18:20",James,Loudermilk,NULL,"9416 Chatham Street",NULL,Manassas,20110-3604,,,"VOLUME 3","VOLUME 4" +c26d8913-16-05,"5/16/2013 12:27",Robert,Drzewucki,"Robert Drzewucki","118 Brockmoore Drive",NULL,"East Amherst",14051,,"VOLUME 2",, +23ce9513-17-05,"5/17/2013 22:56",Robert,Moore,"Robert Moore","30 CSA Dr",NULL,Grenada,38901,,"VOLUME 2",, +08f4e013-21-05,"5/21/2013 11:15",William,Chapman,NULL,"77 Pascal Ave.",NULL,Rockport,4856,,,"VOLUME 3", +05b3c413-21-05,"5/21/2013 15:24",Donald,MacCormick,NULL,"17000 E. 44th Street",NULL,Independence,64055,,,"VOLUME 3", +7f212113-28-05,"5/28/2013 15:06","Douglas ",Collins,NULL,"1520 Hillside Drive",NULL,Kamloops,"V2E 1B1",,"VOLUME 2",, +b7775813-17-06,"6/17/2013 13:23",William,Sexton,"Secretary, Etowah Masonic Lodge #222",Dawsonville,"United States",GEORGIA,30534,,,,"VOLUME 4" +19d7ae13-30-06,"6/30/2013 19:18","Richard ",Maag,"Masonic Temple Association Company of Sandusky","304 Wayne Street",NULL,Sandusky,44870,,,"VOLUME 3", +82d7dc13-10-07,"7/10/2013 22:59",James,Pilson,NULL,"719-A Summer Lane",NULL,Prattville,36066,,,"VOLUME 3","VOLUME 4" +cb5cf613-13-07,"7/13/2013 22:27",Rodger,Ellingwood,NULL,"4461 Summerlin Place",NULL,"Rock Hill",29732,,,"VOLUME 3","VOLUME 4" +add04d13-17-07,"7/17/2013 21:07",Lawrence,Jolma,NULL,"PO Box 637",NULL,Seaside,97138,,"VOLUME 2",, +1aab7813-28-07,"7/28/2013 12:03",Michael,Simmons,NULL,"17 Aldrich St",NULL,Shortsville,14548-9302,,,"VOLUME 3","VOLUME 4" +ebf04e13-07-08,"8/7/2013 19:39",Rex,Hasty,NULL,"244 JC Bryant Rd",NULL,Hattiesburg,39401,,,,"VOLUME 4" +450b9b13-19-08,"8/19/2013 12:46",Leonard,Demoranville,NULL,"3456 Lexington Road",NULL,Danville,40422,,,"VOLUME 3", +84720e13-20-08,"8/20/2013 18:32",James,Earle,"James Earle","1762 Crown Point Road","Unit 586",Thorofare,8086,,,,"VOLUME 4" +9a17c513-23-08,"8/23/2013 12:56",Christopher,Morgan,NULL,"35960 Grand River Ave","Apt. 214","Farmington Hills",48335,,,"VOLUME 3","VOLUME 4" +4ab0af13-29-08,"8/29/2013 11:03",Mark,Anderson,NULL,"11220 Windrow Dr",NULL,"Eden Prairie",55344,,"VOLUME 2","VOLUME 3", +bee52c13-30-08,"8/30/2013 22:56",Don,Springler,NULL,"PO Box 73455",NULL,Metairie,70033-3455,,,"VOLUME 3","VOLUME 4" +a677fe13-04-11,"11/4/2013 9:52",James,VanDeHey,NULL,"3197 Primrose Ln",NULL,"Green Bay",54313,,,,"VOLUME 4" +53e76413-26-11,"11/26/2013 11:14",PJ,Bridenstine,NULL,"310 West Main St.",NULL,Osakis,56360,,,,"VOLUME 4" +455ef113-03-12,"12/3/2013 14:04",Thomas,Winter,NULL,"68 S Conger Avenue",NULL,Congers,10920,,,"VOLUME 3","VOLUME 4" +36495814-25-02,"2/25/2014 23:00",Michael,Carpenter,NULL,"6021 Riverbend Blvd",NULL,"Baton Rouge",70820,,,"VOLUME 3","VOLUME 4" +a385f414-26-02,"2/26/2014 11:43","John L",Logan,NULL,"13913 Kirkland Ridge",NULL,Edmond,73013,,"VOLUME 2",, +a9b3a614-04-03,"3/4/2014 12:39",Russ,Charvonia,NULL,"5536 N. Bryn Mawr",NULL,Ventura,93003,,"VOLUME 2",, +df3d9614-04-03,"3/4/2014 23:51",Russ,Todd,NULL,"12 Stonewood Drive",NULL,"Old Lyme",6371,,"VOLUME 2",, +3e9a4914-10-03,"3/10/2014 18:36","Ólafur",Magnusson,"Donna ehf","Móhellu 2",NULL,"Hafnarfjordur ICELAND","IS 221",,"VOLUME 2",, +24bd6114-11-03,"3/11/2014 19:08",Paschal,King,NULL,"PO Box 282",NULL,"Rio Grande",45674,,,"VOLUME 3","VOLUME 4" +f0a3c214-11-03,"3/11/2014 22:37",Daniel,Ruiz-Isasi,NULL,"8302 Our Road",NULL,Clermont,34714,,"VOLUME 2",, +f9fb4d14-13-03,"3/13/2014 16:22",David,Doan,NULL,"12010 Alderbrook Street",NULL,Moorpark,93021-3130,,"VOLUME 2",, +1792c014-20-03,"3/20/2014 17:22","Calvin D",Shaver,NULL,"30333 Wellton Mohawk Dr","Coach Stop RV Park #63",Wellton,85356,,,"VOLUME 3", +a4c31514-24-03,"3/24/2014 11:45",Richard,Strich,NULL,"5824 DAVIS FORD RD",NULL,MANASSAS,20112-3039,,,"VOLUME 3","VOLUME 4" +b8d1e514-25-03,"3/25/2014 20:44","Lawrence ",Rosen,NULL,"Po box 206 ",NULL,Alburgh,5440,,"VOLUME 2",, +21d2c714-25-03,"3/25/2014 23:45",Chuck,Brust,NULL,"421 11th Ave SE",NULL,Rochester,55904,,"VOLUME 2",, +46090514-29-03,"3/29/2014 16:35",Michael,Henry,NULL,"3308 El Camino Avenue","Ste 300-194",Sacramento,95821,,"VOLUME 2",, +1eab2a14-30-03,"3/30/2014 16:36",Patrick,Stull,NULL,"24 Willadell Road",NULL,Transfer,16154,,"VOLUME 2",, +85739314-01-04,"4/1/2014 9:03",Jim,Gleason,NULL,"5573 Rockpointe Dr",NULL,Clifton,20124,,,"VOLUME 3","VOLUME 4" +fbd38914-07-04,"4/7/2014 9:57",Marcus,Dugger,NULL,"3416 estes Park Dr.",NULL,Snellville,30039-6937,,,"VOLUME 3","VOLUME 4" +c3fbf714-14-04,"4/14/2014 12:55",Philip,Durell,NULL,"14287 37th Avenue",NULL,Surrey,"V4P 0C2",,"VOLUME 2",, +7859d214-21-04,"4/21/2014 15:42",PAUL,COTTRELL,NULL,"25 Sherwood Circle",NULL,Hurricane,25526,,"VOLUME 2",, +e6866014-23-04,"4/23/2014 18:38",R.S.,"Watt Jr",NULL,"2027 S. 292nd St",NULL,"Federal Way",98003,,,"VOLUME 3","VOLUME 4" +584be614-01-05,"5/1/2014 20:43",Marcy,Dupre,NULL,"1503 Canyon Court",NULL,"Port Orchard",98366,,,"VOLUME 3","VOLUME 4" +f3b02b14-05-05,"5/5/2014 14:45",Stephen,Ponzillo,"Stephen J. Ponzillo, III","Marsteph Hall","4 Norgate Court",Ccokeysville,21030,,"VOLUME 2",, +58dcda14-05-05,"5/5/2014 21:23",Gregory,Gunderson,NULL,"911 4 th st sw","po box 885",Stanley,58784,,"VOLUME 2",, +f8f91e14-07-05,"5/7/2014 14:57",Daniel,Rose,NULL,"11196 Chippewa Drive",NULL,Warren,48093-1642,,"VOLUME 2",, +1b439614-14-05,"5/14/2014 1:16",William,Gerhardt,NULL,"3102 Old Elm Way",NULL,SanAntonio,78230,,,"VOLUME 3","VOLUME 4" +562c0c14-21-05,"5/21/2014 10:51",Paul,Harbord,NULL,"86 9th Ave",NULL,Hawthorne,07506-1645,,,"VOLUME 3","VOLUME 4" +40412b14-27-05,"5/27/2014 19:47",Raymon,Bacchus,NULL,"6009 Raina Drive",NULL,Centreville,20120,,,,"VOLUME 4" +da77e514-01-06,"6/1/2014 22:32",Rex,Hasty,NULL,"244 JC Bryant Rd",NULL,Hattiesburg,39401,,,"VOLUME 3","VOLUME 4" +f7a39214-27-06,"6/27/2014 19:34",Daniel,Enyart,NULL,"CMR 473 Box 281",NULL,APO,09606-0003,,"VOLUME 2",, +d8799814-24-07,"7/24/2014 18:06",John,Dennis,NULL,"6013 Palmera Dr",NULL,Mason,45040-8040,,,"VOLUME 3", +ebf92514-29-07,"7/29/2014 17:02",Jorge,Filgueira,NULL,"191 Chippewa Street",NULL,"Miami Springs",33166,,,"VOLUME 3","VOLUME 4" +b2f10a14-04-08,"8/4/2014 21:48",Nathan,Giesenschlag,NULL,"9095 FM 2039",NULL,Somerville,77879,,,"VOLUME 3","VOLUME 4" +5c321714-10-08,"8/10/2014 8:46",Tracy,Chastain,NULL,"1250 Bee Lane",NULL,Geneva,32732,,,"VOLUME 3", +e25e4914-16-08,"8/16/2014 10:47",Albert,Piatt,NULL,"1721 Julian Ridge Road",NULL,Chattanooga,37421-3321,,,"VOLUME 3","VOLUME 4" +90c22014-18-08,"8/18/2014 21:14",Rick,Miller,NULL,"2021 Windham St NE",NULL,Canton,44721,,,"VOLUME 3","VOLUME 4" +a1b5f814-09-09,"9/9/2014 21:05",John,Perry,"John Perry","5201 Fawnwood Lane",NULL,Louisville,40291-1114,,,"VOLUME 3","VOLUME 4" +acb23714-11-09,"9/11/2014 15:06",Dale,Lynch,NULL,"1509 Pine Avenue",NULL,Voorhees,8043,,,"VOLUME 3", +2d845c14-16-09,"9/16/2014 0:32",Chance,Robinson,NULL,"PO BOX 1088",NULL,MARFA,79843,,"VOLUME 2",, +9cea6714-07-10,"10/7/2014 2:12",William,Biggs,NULL,"2705 E. 5th",NULL,Casper,82609-2547,,"VOLUME 2",, +42b53a14-11-11,"11/11/2014 12:38","JOSEPH K.",BARBARA,NULL,"289 Miller ave",NULL,Branchburg,8876,"VOLUME 1",,, +670d4714-13-11,"11/13/2014 2:58",Clint,Stevens,NULL,"5502 Pinewood Springs",NULL,Houston,77066,,"VOLUME 2",, +02d9ff14-19-11,"11/19/2014 10:02","Dr Ken",Moder,NULL,"160 Drury Lane",NULL,"West Lafayette",47906,,,"VOLUME 3", +93437214-21-12,"12/21/2014 18:48",Robert,Saverance,"Robert M Saverance","PO Box 283",NULL,Lamar,29069,,"VOLUME 2",, +7f252a15-05-01,"1/5/2015 22:46",Samuel,Wade,NULL,"12 Grasshopper Lane",NULL,Acton,1720,"VOLUME 1",,, +9a89ae15-15-01,"1/15/2015 13:59",Jacob,Dermott,NULL,"1 Arbor Ct",NULL,Nappanee,46550,"VOLUME 1",,, +1ea08615-17-02,"2/17/2015 22:17",David,Eschrich,NULL,"917 Haymarket Dr.",NULL,Lakeland,33809,,"VOLUME 2",, +d944ed15-26-02,"2/26/2015 14:34",Marcus,Dugger,NULL,"3416 Estes Park Dr.",NULL,Snellville,30039,,,"VOLUME 3", +306b7a15-01-03,"3/1/2015 23:20",Phillip,Cheek,NULL,"6339 Dr Thomas Walker Rd",NULL,"Rose Hill",24281,,,"VOLUME 3", +087f8a15-02-03,"3/2/2015 16:21",Joyce,Lane,"Joyce Lane","9252 Dibble Ave NW",NULL,Seattle,98117,,"VOLUME 2","VOLUME 3", +f41bfd15-05-03,"3/5/2015 10:54",Thomas,Thornton,NULL,"11 Adelphia Rd",NULL,Parsippany,7054,,"VOLUME 2","VOLUME 3", +2e972715-08-03,"3/8/2015 22:33",John,Brobst,NULL,"5 West Elm Street",NULL,Tamaqua,18252,,,"VOLUME 3","VOLUME 4" +80f4b715-20-03,"3/20/2015 18:10",Olafur,Magnusson,"Olafur Magnusson","6200 Midnight Pass Rd","Siesta Duens",Sarasota,34242,,"VOLUME 2","VOLUME 3", +49119515-21-03,"3/21/2015 10:46",John,Zabel,NULL,"371 Lyndon Rd",NULL,Fairport,14450,,,"VOLUME 3", +66649515-23-03,"3/23/2015 14:33",Phillip,Walker,NULL,"1782 Rockdale Cir.",NULL,Snellville,30078,,,"VOLUME 3", +55aae715-24-03,"3/24/2015 15:48",August,Molitano,NULL,"PO Box 427",NULL,Riverton,06065-0427,,,"VOLUME 3", +917da315-25-03,"3/25/2015 9:27",Kurt,Gazow,NULL,"4223 Northridge Way",NULL,Bellingham,98226,,"VOLUME 2","VOLUME 3", +ebede215-25-03,"3/25/2015 10:10",Matthew,Appel,NULL,"18229 60th Ave. W",NULL,Lynnwood,98037,,"VOLUME 2","VOLUME 3", +eecaf615-27-03,"3/27/2015 20:23","T David",Jordan,NULL,"1661 HWY 177",NULL,Russellville,35654,,,"VOLUME 3", +b0fb7015-28-03,"3/28/2015 17:02",Frank,Loui,"Scottish Rite","2850 19th Avenue",NULL,"San Francisco",94132-1602,,,"VOLUME 3", +b80ed215-29-03,"3/29/2015 9:15","P.J. ",Bridenstine,NULL,"310 West Main Street",NULL,Osakis,56360,,,"VOLUME 3", +5e615715-01-04,"4/1/2015 13:35",Raymond,Hunter,NULL,"13650 North Frontage Road, #152",NULL,y,85367-7423,,,"VOLUME 3", +94bd8e15-03-04,"4/3/2015 9:49",Daniel,Barston,NULL,"15 Clark Street",NULL,Auburn,01501-1743,,,"VOLUME 3", +99491015-05-04,"4/5/2015 22:53",Russ,Charvonia,NULL,"5536 N. Bryn Mawr",NULL,ventura,93003,,,"VOLUME 3", +ea54ef15-17-04,"4/17/2015 21:33",Andrew,Martinez,NULL,"307 Candlewood Ct.",NULL,Millersville,21108,,,"VOLUME 3", +26376b15-21-04,"4/21/2015 9:37",Thomas,Paxton,"Queen City Lodge #131","P.O.Box 1497","1939 Frederick St. Apt. 5",Cumberland,21501-1497,,,"VOLUME 3", +0dc83715-02-05,"5/2/2015 13:18",Carl,Plants,"Carl Plants","6124 NW 6th Street",NULL,Lincoln,68521,,,"VOLUME 3","VOLUME 4" +d12dec15-07-05,"5/7/2015 12:55","Timothy ",Nicely,NULL,"4221 County Road 15",NULL,"South Point",4580,,,"VOLUME 3", +df36c815-10-05,"5/10/2015 20:09",David,Duke,NULL,"27682 Kingport",NULL,Splendora,77372,,"VOLUME 2","VOLUME 3", +ed955115-11-06,"6/11/2015 5:48",Edward,James,NULL,"15831 Easthaven Ct",NULL,Bowie,20716,,,"VOLUME 3","VOLUME 4" +a10b4e15-15-06,"6/15/2015 15:57",Richard,Kasza,NULL,"4345 South 36th Street",NULL,Greenfield,53221,,,"VOLUME 3", +f4b85015-23-06,"6/23/2015 13:32",Brian,Dodson,NULL,"2707 Lakeside Village Dr",NULL,"Missouri City",77459,,"VOLUME 2","VOLUME 3", +e24e8315-25-06,"6/25/2015 13:13",Nelson,Bryant,NULL,"7305 Kenneth Drive",NULL,Henrico,23228,,,"VOLUME 3", +662b6615-28-06,"6/28/2015 15:50",Dean,Clatterbuck,"Dean Clatterbuck","P.O. Box 149","292 Click's Lane","New Market",22844,,,"VOLUME 3", +ad1b1a15-28-06,"6/28/2015 20:32",Bruce,Caswell,"Bruce Caswell","8940 E. Bacon Rd.",NULL,Hillsdale,49242,,,"VOLUME 3", +c96cf415-29-06,"6/29/2015 12:35",Darin,Lorenzen,NULL,"103 Cypress Drive",NULL,Newark,19713,,,"VOLUME 3", +45da1515-29-06,"6/29/2015 20:19",Norm,Sanford,NULL,"825 Willow Valley Lakes Drive",NULL,"Willow Street",17584,,,"VOLUME 3", +0217ad15-19-07,"7/19/2015 19:07",Lawrence,Thompson,NULL,"805 Shorewood Dr",NULL,Coppell,Texas,,,"VOLUME 3", +dbdcd115-26-07,"7/26/2015 15:41",Patricia,Bradbury,NULL,"5874 Lexington Drive",NULL,Pipersville,18947,,,"VOLUME 3", +1437d915-30-07,"7/30/2015 19:35",Frank,Loui,A&ASR,"2850 19th Avenue",NULL,"San Francisco",94132,,,"VOLUME 3", +07b3f515-31-07,"7/31/2015 1:18",STEPHEN,HAXBY,NULL,"PO BOX 12112",NULL,"Fort Wayne",46862-2112,,,"VOLUME 3", +49a79f15-31-07,"7/31/2015 9:47",Jason,Lang,NULL,"2458 59th street NE",NULL,Buffalo,55313,,"VOLUME 2","VOLUME 3", +a5543e15-31-07,"7/31/2015 12:03",Roy,Simpadian,NULL,"535 Amsterdam Ave",NULL,Ridgewood,7450,,,"VOLUME 3", +964b2415-05-08,"8/5/2015 0:14",Robert,Strayer,"Brunswick Lodge 717","P.O. Box 1262",NULL,"Brunswick ",31521,,"VOLUME 2","VOLUME 3", +89a68e15-05-08,"8/5/2015 12:28","Richard J",Brown,same,"3215 135 St.",NULL,Toledo,43611-2406,,,"VOLUME 3", +da458e15-05-08,"8/5/2015 19:35","Roberto ",Sanchez,NULL,"16346 flint run way",NULL,"Sugar land",77498,,,"VOLUME 3", +e9060c15-09-08,"8/9/2015 17:24",Robert,Strayer,"Brunswick Lodge #717","P.O. BOX 1262",NULL,"Brunswick ",31521,,"VOLUME 2","VOLUME 3", +f7894815-10-08,"8/10/2015 23:31",Michael,Seibert,NULL,"100 W Taylor Run Pkwy Apt 8",NULL,Alexandria,22314,,"VOLUME 2","VOLUME 3", +88488815-14-08,"8/14/2015 17:39",Arne,Hansen,NULL,"2055 Ponderosa Ct.",NULL,Bellingham,98229,,,"VOLUME 3", +5acaad15-25-08,"8/25/2015 8:39",John,Zabel,NULL,"371 Lyndon Rd",NULL,Fairport,14450,,,"VOLUME 3", +23be3a15-26-08,"8/26/2015 0:44",Eric,Johnson,NULL,"2017 Piper Circle",NULL,Anacortes,98221-3125,,,"VOLUME 3","VOLUME 4" +61e37f15-26-08,"8/26/2015 21:26",Donald,Crews,NULL,"2724 Willard Ave",NULL,Cincinnati,45209,,"VOLUME 2","VOLUME 3", +18f5fb15-27-08,"8/27/2015 9:50",Michael,Wilhelm,NULL,"91 Bee Mountain Road",NULL,Oxford,6478,,"VOLUME 2","VOLUME 3", +15302515-30-08,"8/30/2015 17:54",Richard,Sobotta,"Richard Sobotta","7800 W. Catalpa Ave.",NULL,Chicago,60656,,,"VOLUME 3", +a6b48d15-31-08,"8/31/2015 14:30",Lester,Hanson,"Salem Lodge 125 F.$A.M.","110 N. Van NHess St.,",NULL,"West Salem",54669-1603,,,"VOLUME 3", +1ebf1415-31-08,"8/31/2015 22:26",Eugene,Olofson,NULL,"19 Proudfit St.",NULL,Jamestown,14701,,,"VOLUME 3", +dc610a15-01-09,"9/1/2015 10:56",leonel,zolessi,NULL,"209 bear dr ",NULL,richland,99352,,,"VOLUME 3", +d538c315-02-09,"9/2/2015 23:30",Phillip,Waker,"Phillip Walker","1782 Rockdale Circle",NULL,SNELLVILLE,30078-3404,,,"VOLUME 3", +be788815-13-09,"9/13/2015 20:54",robert,loflin,NULL,"323 N colorado st",NULL,"port lavaca",77979,,,"VOLUME 3", +317e4315-21-10,"10/21/2015 20:46",David,Burkus,NULL,"74 Wellington Drive",NULL,Hampton,236662855,,,"VOLUME 3", +a38b7315-03-11,"11/3/2015 14:44",Christian,Moore,NULL,"PO Box 3",NULL,Weimar,78962,,,"VOLUME 3", +47d76815-18-11,"11/18/2015 23:02",Paul,Dangreau,NULL,"27 Paradise Park",NULL,"Santa Cruz",95060,,,"VOLUME 3", +ed013015-21-12,"12/21/2015 17:33","Oscar ",Orum,NULL,"8607 Azalea Trail",NULL,Austin,78759-7501,,,"VOLUME 3", +8d79e415-21-12,"12/21/2015 21:58",Garry,Krom,NULL,"52 Spruce Street",NULL,Kingston,12401,,"VOLUME 2","VOLUME 3","VOLUME 4" +63102016-26-01,"1/26/2016 20:41",James,Maertens,"Lake Harriet Lodge 277","4509 Drew Ave. So.",NULL,Minneapolis,55410,,,"VOLUME 3", +f2a74716-01-02,"2/1/2016 6:15",Ralph,Frazier,NULL,"6400 Murray Lane",NULL,Brentwood,37027,,"VOLUME 2","VOLUME 3", +19c79d16-06-02,"2/6/2016 17:31",David,Emberley,NULL,"17 Sullivan Way","Unit 1",Laconia,3246,,,"VOLUME 3", +75323616-07-02,"2/7/2016 13:12",william,Simpson,"WB William C. Simpson","134 Mill St",NULL,Ridgeville,29472,,"VOLUME 2","VOLUME 3","VOLUME 4" +ba7de116-15-02,"2/15/2016 23:57",Chris,Tilley,NULL,"809 misty morning ct.",NULL,"St. Paul",63366,,,,"VOLUME 4" +7c261b16-24-02,"2/24/2016 16:24",Walter,"Sawicki II",NULL,"4562 Newport Ave.",NULL,"St. Louis",63116,,,"VOLUME 3", +c3dd2f16-26-02,"2/26/2016 16:07",Frank,Loui,A&ASR,"2850 19th Avenue",NULL,"San Francisco",94132,,,,"VOLUME 4" +9f004616-13-03,"3/13/2016 22:34",Rick,Silva,NULL,"3252 Cedar Ave",NULL,"Long Beach",90806,,"VOLUME 2",, +91029a16-15-03,"3/15/2016 15:43",Robert,Comeau,"Robert Comeau","6 Kendall Road",NULL,Boylston,1505,,,,"VOLUME 4" +b1b6ef16-16-03,"3/16/2016 21:27",August,Molitano,NULL,"P.O. Bpx 427",NULL,Riverton,6065,,,,"VOLUME 4" +2387cf16-17-03,"3/17/2016 10:55",Robert,Schlegel,"R F Schlegel","4053 SE 39th Circle",NULL,Ocala,34480-4954,,,,"VOLUME 4" +aaec6116-17-03,"3/17/2016 11:25",Arnold,"Cobb ",NULL,"2916 Wicker ST",NULL,Sanford,27330,,,,"VOLUME 4" +29e3a416-18-03,"3/18/2016 11:41",Benjamin,Schroeder,"Raven Lodge #303","13701 Joliet road",NULL,Newark,60541,,,,"VOLUME 4" +80130216-18-03,"3/18/2016 22:48",Eric,Gillett,NULL,"15595 East Twp Rd 12",NULL,Attica,44807,,,,"VOLUME 4" +08cd9816-20-03,"3/20/2016 14:25",Douglas,Russell,NULL,"6528 Sunnyslope Ave",NULL,"Van Nuys",91401-1743,,,,"VOLUME 4" +a8707216-21-03,"3/21/2016 9:32",Benjamin,Schroeder,"Raven Lodge #303","13701 Joliet Road",NULL,Newark,60541,,,,"VOLUME 4" +029ff716-21-03,"3/21/2016 12:47",Richard,Maris,"Eugene Loge 11","2777 MLK Blvd.",NULL,Eugene,97401,,,,"VOLUME 4" +7ef8ca16-22-03,"3/22/2016 11:12",James,Johnston,NULL,"1616 Edinburgh Ave",NULL,"Port Royal",29935-1808,,,,"VOLUME 4" +f3507316-24-03,"3/24/2016 9:53",Dan,Kemble,NULL,"1540 St. Clair Street",NULL,Covington,41011,,,"VOLUME 3","VOLUME 4" +1467a416-25-03,"3/25/2016 21:37",Jack,Levitt,NULL,"2570 Fairway Drive",NULL,Bozeman,59715,,,,"VOLUME 4" +15ad1416-26-03,"3/26/2016 10:00",Richard,Maag,"Masonic Temple Assoc. Co. of Sandusky","403 Wayne Street",NULL,Sandusky,44870,,,,"VOLUME 4" +4260b816-26-03,"3/26/2016 18:04","T David ",Jordan,NULL,"1661 HWY 177",NULL,Russellville,35654,,,,"VOLUME 4" +a5520416-29-03,"3/29/2016 16:14",Matthew,Appel,NULL,"18229 60th Ave. W",NULL,Lynnwood,98037,,,,"VOLUME 4" +9846b316-30-03,"3/30/2016 9:40",Brian,Dodson,NULL,"2707 Lakeside Village Dr",NULL,"Missouri City",77459,,,,"VOLUME 4" +34b12216-30-03,"3/30/2016 9:45",Brian,Dodson,NULL,"2707 Lakeside Village Dr",NULL,"Missouri City",77459,,,,"VOLUME 4" +4beb6116-30-03,"3/30/2016 18:15",Walter,"Sawicki II",NULL,"4562 Newport Ave.",NULL,"St. Louis",63116,,,"VOLUME 3", +7c2deb16-30-03,"3/30/2016 18:22",Walter,"Sawicki II",NULL,"4562 Newport Ave.",NULL,"St. Louis",63116,,,,"VOLUME 4" +3db32816-30-03,"3/30/2016 23:14",Ronald,Jarrett,NULL,"10349 416th ",NULL,Britton,57430,,,"VOLUME 3","VOLUME 4" +90182f16-31-03,"3/31/2016 11:39",Christopher,Henn,NULL,"1821 South M street",NULL,wall,7719,,"VOLUME 2",, +0386c916-01-04,"4/1/2016 19:35",Daniel,Mason,NULL,"10790 Toepperwein","Apt 114",Converse,78109,,,,"VOLUME 4" +c8181716-03-04,"4/3/2016 12:10",Daniel,Barston,NULL,"15 Clark Street",NULL,Auburn,01501-1743,,,,"VOLUME 4" +7a5f2516-05-04,"4/5/2016 17:13",John,Zabel,NULL,"371 Lyndon Rd",NULL,Fairport,14450,,,,"VOLUME 4" +abaed116-05-04,"4/5/2016 23:05",Joyce,Lane,NULL,"9252 Dibble Ave NW",NULL,Seattle,98117,,,,"VOLUME 4" +20d45416-06-04,"4/6/2016 16:01","James W","Golladay Jr","James W Golladay Jr","P O Box 159",NULL,"Stephens City",22655,,,"VOLUME 3","VOLUME 4" +8a4b9316-07-04,"4/7/2016 16:19",Jeff,Slattery,NULL,"45 Carol Lane",NULL,Athens,45701,,,,"VOLUME 4" +c6ebc416-18-04,"4/18/2016 14:37",David,Duke,NULL,"27682 Kingport",NULL,Splendora,77372,,,,"VOLUME 4" +8e31af16-23-04,"4/23/2016 16:08",Edward,Choate,NULL,"2118 E Charles ST",NULL,Republic,65738,,,"VOLUME 3","VOLUME 4" +8b722d16-30-04,"4/30/2016 14:20",Smith,Boyd,"Smith Boyd","PO Box 1057",NULL,Livingston,35470,,"VOLUME 2",, +1da47e16-30-04,"4/30/2016 16:48",Roy,Simpadian,NULL,"38 East Ridgewood Avneue #179",NULL,Ridgewood,7450,,,,"VOLUME 4" +ccc86e16-30-04,"4/30/2016 17:16",Roy,Simpadian,NULL,"38 E Ridgeowod Ave #179",NULL,Ridgewood,7450,,,,"VOLUME 4" +a3580a16-04-05,"5/4/2016 14:19",Jason,Lang,NULL,"2458 59th street NE",NULL,Buffalo,55313,,,,"VOLUME 4" +5a8a2816-04-05,"5/4/2016 15:32",Dean,Clatterbuck,"Dean Clatterbuck","P.O. Box 149",NULL,"New Market",22844,,,,"VOLUME 4" +f31c0a16-05-05,"5/5/2016 19:16",Charles,Bremner,NULL,"892 S. Hillside Ave",NULL,Elmhurst,60126,,"VOLUME 2","VOLUME 3", +800a6516-08-05,"5/8/2016 18:28",Mike,Hamrick,"Phalanx Lodge #31","P.O. Box 472746",NULL,Charlotte,28247,,,"VOLUME 3","VOLUME 4" +48af4d16-10-05,"5/10/2016 15:39",Steven,Aberblatt,NULL,"6820 Horrocks Street",NULL,Philadelphia,19149,,,"VOLUME 3","VOLUME 4" +a3146316-13-05,"5/13/2016 14:04",Blake,Edwards,NULL,"2115 McFarlin Lane ",NULL,Milton,30004,,,,"VOLUME 4" +17d94016-16-05,"5/16/2016 13:21",Donald,Reasonover,"Donald E Reasonover","1932 West Kirby Ave",NULL,Orange,77632,,,"VOLUME 3","VOLUME 4" +388b2e16-17-05,"5/17/2016 17:39",John,Zabel,NULL,"371 Lyndon Rd",NULL,Fairport,14450-9703,,,,"VOLUME 4" +a422e916-27-05,"5/27/2016 17:53",Dayton,Berg,NULL,"53153 Rush Lake Trail",NULL,"Rush City",55069-2670,,"VOLUME 2","VOLUME 3","VOLUME 4" +d9654316-05-06,"6/5/2016 1:32",Christopher,Tilley,NULL,"809 Misty morning ct.",NULL,"St. Paul",63366,,"VOLUME 2",, +737f3816-09-06,"6/9/2016 14:23",David,Collignon,"Sparta Lodge No. 296","1600 E. Windridge",NULL,Ozark,65721-7332,,,"VOLUME 3", +59293616-24-06,"6/24/2016 22:25",Christopher,Hodapp,NULL,"9310 Seascape Drive",NULL,Indianapolis,46256,,"VOLUME 2","VOLUME 3", +21292416-26-06,"6/26/2016 12:16",Brian,Spooner,NULL,"4278 W 223rd St",NULL,"Fairview Park",44126,,,"VOLUME 3","VOLUME 4" +3777e416-01-07,"7/1/2016 10:28",Andrew,Martinez,NULL,"307 Candlewood Ct.",NULL,Millersville,21108,,,,"VOLUME 4" +abe01e16-06-07,"7/6/2016 13:08",Robert,Hobday,"Robert Hobday","80 Sycamore Drive","APT 317",Elizabethtown,17022,,,,"VOLUME 4" +f9a1b316-19-07,"7/19/2016 10:29",Chris,"Cochrane ",NULL,"4172 Westview Lane",NULL,Oshkosh,54904,,,"VOLUME 3","VOLUME 4" +30cfc816-23-07,"7/23/2016 9:46",John,Zabel,NULL,"371 Lyndon Rd",NULL,Fairport,14450-9703,,,,"VOLUME 4" +2b508a16-25-07,"7/25/2016 12:30",Oscar,Orum,NULL,"8607 Azalea Trail",NULL,Austin,78759,,,,"VOLUME 4" +b3848816-27-07,"7/27/2016 15:46",Kris,Pich,NULL,"5308 Ewing Ave s",NULL,Minneapolis,55410,,,"VOLUME 3", +565f1b16-31-07,"7/31/2016 10:59",Patricia,Bradbury,NULL,"5874 Lexington Drive",NULL,Pipersville,18947,,,,"VOLUME 4" +66e5ed16-03-08,"8/3/2016 12:15",Jeremy,Vaughn,NULL,"1409 Lauren Ln",NULL,Filer,83328,,,"VOLUME 3","VOLUME 4" +a6ab5d16-05-08,"8/5/2016 14:06",Gene,Maples,NULL,"280 Pee Dee Road",NULL,"Southern Pines",28387,,,,"VOLUME 4" +f6dbae16-05-08,"8/5/2016 18:10",Gene,Maples,"Southern Pines Lodge 484","280 Pee Dee Road",NULL,"Southern Pines",28387,,,,"VOLUME 4" +c2f44816-11-08,"8/11/2016 10:50",Cecil,Conyers,NULL,"209 Plantation Rd.",NULL,Townville,29689,,,,"VOLUME 4" +5d9ca216-19-08,"8/19/2016 11:33",Ken,Nagel,"Liberty Lodge #299","2131 Briarwood Dr",NULL,"Santa Clara",95051-1944,,,"VOLUME 3","VOLUME 4" +ad219616-21-08,"8/21/2016 17:47",Donald,Crews,NULL,"2724 Willard Ave",NULL,Cincinnati,45209,,,,"VOLUME 4" +668c5016-29-08,"8/29/2016 1:07",Skip,Smith,"Skip Smith","127 Melody Lane",NULL,Monett,65708,,,,"VOLUME 4" +f91aeb16-29-08,"8/29/2016 11:26",Gerald,Piepiora,"Gerald Piepiora","35 Antler Lane",NULL,Sedona,86336,,,,"VOLUME 4" +d3e0bb16-03-09,"9/3/2016 23:38",Jeff,Schaefer,NULL,"5507 Hinton St",NULL,Springfield,22151,,,"VOLUME 3","VOLUME 4" +557ee716-08-09,"9/8/2016 13:44",Tyler,Vanice,NULL,"801 15th St. South","Apt. 102",arlington,22202,,,,"VOLUME 4" +f0219016-13-09,"9/13/2016 1:14",Michael,Day,NULL,"3360 Broadstone Way",NULL,Apex,27502,,"VOLUME 2","VOLUME 3","VOLUME 4" +91c2a016-15-09,"9/15/2016 12:26",Charles,Bremner,NULL,"925 Grey Avenue",NULL,Evanston,60202,,,,"VOLUME 4" +8d16c816-20-09,"9/20/2016 14:34",Michael,Stein,NULL,"1288 Paddington Road",NULL,Mahwah,7430,,,"VOLUME 3", +651c4416-23-09,"9/23/2016 9:37","Timothy ",Nicely,NULL,"4221 County Road 15",NULL,"South Point",45680,,,,"VOLUME 4" +986d9a16-23-09,"9/23/2016 19:00",Michael,Stein,NULL,"1288 Paddington Road",NULL,Mahwah,7430,,,"VOLUME 3", +bead9f16-20-10,"10/20/2016 12:41","J ",Humphrey,NULL,"44 Russell Rd",NULL,Lonedell,63060,,"VOLUME 2","VOLUME 3","VOLUME 4" +89fc4416-24-10,"10/24/2016 13:24",Charles,Carmichael,NULL,"3011 Solstice Lane",NULL,Annapolis,21401,,"VOLUME 2","VOLUME 3","VOLUME 4" +7c2f2e16-25-10,"10/25/2016 7:39",Chris,Morgan,NULL,"101 Beechmont St",NULL,Dearborn,48124,,,,"VOLUME 4" +7ac89d16-28-10,"10/28/2016 9:31",Edward,King,"Grand Lodge of Maine","PO Box 430",NULL,Holden,04429-0430,,"VOLUME 2","VOLUME 3","VOLUME 4" +b2d40216-21-11,"11/21/2016 15:33",Robert,Hagon,NULL,"169 Woolf Road",NULL,Milford,8848,,,"VOLUME 3","VOLUME 4" diff --git a/perl/cw_correspondences.pl b/perl/cw_correspondences.pl new file mode 100644 index 0000000..07cb58b --- /dev/null +++ b/perl/cw_correspondences.pl @@ -0,0 +1,159 @@ +#!/usr/bin/perl + +use Text::CSV; +use Data::Dumper; + +# cw_products +# 0 id 1 sku 2 product_name + +# cw_skus +# 0 sku_id 1 sku 2 product_id + +# cw_orders +# 0 order_id 1 date 2 status 3 customer_id + +# cw_order_skus +# 0 id 1 order_id 2 sku_id + +# cw_customers +# 0 customer_id 1 customer_type 2 date_added 3 date_modified 4 first_name 5 last_name +# 6 7 8 9 10 = address + +@products = load_csv("cw_products.csv"); +@skus = load_csv("cw_skus.csv"); +@orders = load_csv("cw_orders.csv"); +@order_skus = load_csv("cw_order_skus.csv"); +@customers = load_csv("cw_customers.csv"); +@order_status = load_csv("cw_order_status.csv"); + +$product_name_lookup = {}; +for $product (@products) { + $sku_name = $product->[1]; + $product_name = $product->[2]; + $product_name_lookup->{ $sku_name } = $product_name; +} + +$customer_name_lookup = {}; +for $customer (@customers) { + $id = $customer->[0]; + $name = $customer->[5] . " " . $customer->[4]; + $customer_name_lookup->{ $id } = $name; +} + +$customer_lookup = {}; +for $customer (@customers) { + $id = $customer->[0]; + $customer_name_lookup->{ $id } = $customer; +} + +$order_status_lookup = {}; +for $os (@order_status) { + $id = $os->[0]; + $name = $os->[1]; + $order_status_lookup->{ $id } = $name; +} + +$sku_id_lookup = {}; +for $sku (@skus) { + $sku_id = $sku->[0]; + $sku_name = $sku->[1]; + # $product_name = $product_name_lookup->{ $sku_name }; + $sku_id_lookup->{ $sku_id } = $sku_name; +} + +$order_customer_lookup = {}; +for $order (@orders) { + $order_id = $order->[0]; + $customer_id = $order->[3]; + # $customer_name = $customer_name_lookup->{ $customer_id }; + $order_customer_lookup->{ $order_id } = $customer_id; +} + +$order_sku_lookup = {}; +for $order_sku (@order_skus) { + $order_id = $order_sku->[1]; + $sku_id = $order_sku->[2]; + $sku_name = $sku_id_lookup->{ $sku_id }; + $customer_id = $order_customer_lookup->{ $order_id }; + if ( not exists($order_sku_lookup->{ $customer_id })) { + $order_sku_lookup->{ $customer_id } = {}; + } + $order_sku_lookup->{ $customer_id }->{ $sku_name } = 1; +} + +# print Dumper( $order_sku_lookup ); + +@report = (); +@reported_keys = ("STBVOL1", "STBVOL2", "301MM", "303MM", "330MM", "340MM", "SPSTB", "Volumes 2 & 3", "Volumes 2 & 4", "Volumes 3 & 4", "Volumes 2, 3 & 4"); + +for $customer (@customers) { + $has_purchased = 0; + $customer_id = $customer->[0]; + if (! exists($order_sku_lookup->{ $customer_id })) { + next; + } + $customer_skus = $order_sku_lookup->{ $customer_id }; + $r = [ + $customer->[0], + $customer->[2], + $customer->[4], + $customer->[5], + $customer->[6], + $customer->[7], + $customer->[8], + $customer->[9], + $customer->[10], + ]; + for $key (@reported_keys) { + if ( exists( $customer_skus->{$key} ) ) { + $has_purchased = 1; + push(@$r, $key); + } + else { + push(@$r, ""); + } + } + if ($has_purchased) { + print Dumper($r); + push(@report, $r); + } +} + +my $csv = Text::CSV->new ( { binary => 1 } ) # should set binary attribute. + or die "Cannot use CSV: ".Text::CSV->error_diag (); + +$fn = "cv_stb_report.csv"; +open $fh, ">:encoding(utf8)", $fn or die "$fn: $!"; +for $row (@report) { + $csv->print ($fh, $row); + print $fh "\n"; +} +close $fh or die "$fn: $!"; + + + + + + + + + + + + + +sub load_csv () { + my $filename = shift; + my @rows; + my $csv = Text::CSV->new ( { binary => 1 } ) # should set binary attribute. + or die "Cannot use CSV: ".Text::CSV->error_diag (); + + open my $fh, "<:encoding(utf8)", $filename or die "$filename: $!"; + while ( my $row = $csv->getline( $fh ) ) { + push @rows, $row; + } + $csv->eof or $csv->error_diag(); + close $fh; + return @rows; +} + diff --git a/perl/cw_correspondences_reduced.pl b/perl/cw_correspondences_reduced.pl new file mode 100644 index 0000000..a2b36ef --- /dev/null +++ b/perl/cw_correspondences_reduced.pl @@ -0,0 +1,183 @@ +#!/usr/bin/perl + +use Text::CSV; +use Data::Dumper; + +# cw_products +# 0 id 1 sku 2 product_name + +# cw_skus +# 0 sku_id 1 sku 2 product_id + +# cw_orders +# 0 order_id 1 date 2 status 3 customer_id + +# cw_order_skus +# 0 id 1 order_id 2 sku_id + +# cw_customers +# 0 customer_id 1 customer_type 2 date_added 3 date_modified 4 first_name 5 last_name +# 6 7 8 9 10 = address + +@products = load_csv("cw_products.csv"); +@skus = load_csv("cw_skus.csv"); +@orders = load_csv("cw_orders.csv"); +@order_skus = load_csv("cw_order_skus.csv"); +@customers = load_csv("cw_customers.csv"); +@order_status = load_csv("cw_order_status.csv"); + +$product_name_lookup = {}; +for $product (@products) { + $sku_name = $product->[1]; + $product_name = $product->[2]; + $product_name_lookup->{ $sku_name } = $product_name; +} + +$customer_name_lookup = {}; +for $customer (@customers) { + $id = $customer->[0]; + $name = $customer->[5] . " " . $customer->[4]; + $customer_name_lookup->{ $id } = $name; +} + +$customer_lookup = {}; +for $customer (@customers) { + $id = $customer->[0]; + $customer_name_lookup->{ $id } = $customer; +} + +$order_status_lookup = {}; +for $os (@order_status) { + $id = $os->[0]; + $name = $os->[1]; + $order_status_lookup->{ $id } = $name; +} + +$sku_id_lookup = {}; +for $sku (@skus) { + $sku_id = $sku->[0]; + $sku_name = $sku->[1]; + # $product_name = $product_name_lookup->{ $sku_name }; + $sku_id_lookup->{ $sku_id } = $sku_name; +} + +$order_customer_lookup = {}; +for $order (@orders) { + $order_id = $order->[0]; + $customer_id = $order->[3]; + # $customer_name = $customer_name_lookup->{ $customer_id }; + $order_customer_lookup->{ $order_id } = $customer_id; +} + +$order_sku_lookup = {}; +for $order_sku (@order_skus) { + $order_id = $order_sku->[1]; + $sku_id = $order_sku->[2]; + $sku_name = $sku_id_lookup->{ $sku_id }; + $customer_id = $order_customer_lookup->{ $order_id }; + if ( not exists($order_sku_lookup->{ $customer_id })) { + $order_sku_lookup->{ $customer_id } = {}; + } + $order_sku_lookup->{ $customer_id }->{ $sku_name } = 1; +} + +# print Dumper( $order_sku_lookup ); + +@report = (); + +for $customer (@customers) { + $has_v1 = 0; + $has_v2 = 0; + $has_v3 = 0; + $has_v4 = 0; + $customer_id = $customer->[0]; + if (! exists($order_sku_lookup->{ $customer_id })) { + next; + } + $customer_skus = $order_sku_lookup->{ $customer_id }; + $r = [ + $customer->[0], + $customer->[2], + $customer->[4], + $customer->[5], + $customer->[6], + $customer->[7], + $customer->[8], + $customer->[9], + $customer->[10], + ]; + if ( exists( $customer_skus->{"STBVOL1"} ) + || exists( $customer_skus->{"301MM"} ) + ) { + $has_v1 = 1 + } + if ( exists( $customer_skus->{"STBVOL2"} ) + || exists( $customer_skus->{"303MM"} ) + || exists( $customer_skus->{"Volumes 2 & 3"} ) + || exists( $customer_skus->{"Volumes 2 & 4"} ) + || exists( $customer_skus->{"Volumes 2, 3 & 4"} ) + ) { + $has_v2 = 1 + } + if ( exists( $customer_skus->{"330MM"} ) + || exists( $customer_skus->{"Volumes 2 & 3"} ) + || exists( $customer_skus->{"Volumes 3 & 4"} ) + || exists( $customer_skus->{"Volumes 2, 3 & 4"} ) + ) { + $has_v3 = 1 + } + if ( exists( $customer_skus->{"340MM"} ) + || exists( $customer_skus->{"Volumes 2 & 4"} ) + || exists( $customer_skus->{"Volumes 3 & 4"} ) + || exists( $customer_skus->{"Volumes 2, 3 & 4"} ) + ) { + $has_v4 = 1 + } + push(@$r, $has_v1 ? "VOLUME 1" : ""); + push(@$r, $has_v2 ? "VOLUME 2" : ""); + push(@$r, $has_v3 ? "VOLUME 3" : ""); + push(@$r, $has_v4 ? "VOLUME 4" : ""); + if ($has_v1 || $has_v2 || $has_v3 || $has_v4) { + print Dumper($r); + push(@report, $r); + } +} + +my $csv = Text::CSV->new ( { binary => 1 } ) # should set binary attribute. + or die "Cannot use CSV: ".Text::CSV->error_diag (); + +$fn = "cv_stb_report_reduced.csv"; +open $fh, ">:encoding(utf8)", $fn or die "$fn: $!"; +for $row (@report) { + $csv->print ($fh, $row); + print $fh "\n"; +} +close $fh or die "$fn: $!"; + + + + + + + + + + + + + +sub load_csv () { + my $filename = shift; + my @rows; + my $csv = Text::CSV->new ( { binary => 1 } ) # should set binary attribute. + or die "Cannot use CSV: ".Text::CSV->error_diag (); + + open my $fh, "<:encoding(utf8)", $filename or die "$filename: $!"; + while ( my $row = $csv->getline( $fh ) ) { + push @rows, $row; + } + $csv->eof or $csv->error_diag(); + close $fh; + return @rows; +} + diff --git a/perl/cw_customers.csv b/perl/cw_customers.csv new file mode 100644 index 0000000..1c5f6d1 --- /dev/null +++ b/perl/cw_customers.csv @@ -0,0 +1,2534 @@ +3d9f0e12-23-11,1,11/23/2012 19:20,4/14/2016 9:11,Brandy,King,King & Associates,PO BO,NULL,Bangor,ME,Brandy King,King & Associates,NULL,PO BO,NULL,Bangor,ME,2071111212,NULL,webmaster@msana.com,brandyjk,edgemere101,0
+c4c7ff13-24-01,1,1/24/2013 8:50,1/25/2013 13:22,George,Braatz,MSA,6475 Upper Lake Circle,NULL,Westerville,43082-8122,George Braatz,NULL,NULL,6475 Upper Lake Circle,NULL,Westerville,43082-8122,614 7949747,614 7949747,gmbraatz@gmail.com,gbraatz@freemason.com,gbraatz,0
+438c8b13-24-01,1,1/24/2013 9:35,1/24/2013 9:35,Judith,Fletcher,NULL,8708 First Avenue,Apt. 503,Silver Spring,20910,Judith Fletcher,NULL,NULL,8708 First Avenue,Apt. 503,Silver Spring,20910,301-587-0745,240-535-0394,jfdoobie@gmail.com,jfdoobie@gmail.com,9503807,1
+d3645613-01-02,1,2/1/2013 11:42,2/1/2013 11:42,Jane,Smith,NULL,55 Spring St.,NULL,Boca Raton,23334,Jane Smith,NULL,NULL,55 Spring St.,NULL,Boca Raton,23334,222-440-5454,222-340-5456,jfdoobie@gmail.com,jfdoobie@gmail.com,1103878,1
+38bd5913-02-02,1,2/2/2013 10:36,2/2/2013 10:36,Brandy,PayPal,NULL,PO Box 816,NULL,Bangor,4402,Brandy PayPal,NULL,NULL,PO Box 816,NULL,Bangor,4402,2079515557,NULL,brandyjk@gmail.com,brandyjk@gmail.com,2274234,1
+1b208113-02-02,1,2/2/2013 10:41,2/26/2016 11:20,Brandy,Webmaster,King & Associates,PO Box 816,NULL,Bangor,4402,Brandy Webmaster,King & Associates,NULL,PO Box 816,NULL,Bangor,4402,2070515557,NULL,brandyjk@gmail.com,webmaster,Frumpy77,1
+2ce33113-02-02,1,2/2/2013 14:03,2/2/2013 14:03,Jane,Jones,NULL,555 Stay St.,NULL,Springfield,22222,Jane Jones,NULL,NULL,555 Stay St.,NULL,Springfield,22222,301-587-0745,NULL,jfdoobie@gmail.com,jfdoobie@gmail.com,2250477,1
+a62dc113-05-02,1,2/5/2013 12:02,12/2/2013 3:06,George F,Roach,,11417 E. 25th PL,,YUMA,85367-3649,George F Roach,,NULL,11417 E. 25th PL,,YUMA,85367-3649,928-580-6336,928-580-6336,roachgf@gmail.com,gfroach,george55,0
+344efb13-10-02,1,2/10/2013 16:14,11/7/2014 8:36,Scott,Helm,NULL,5187 Paes Road,NULL,New Holland,17557,S J Helm,NULL,NULL,5187 Paes Road,NULL,New Holland ,17557,4849051938,4849051938,sjhelm0328@gmail.com,sjhelm0328,ffmedic67,0
+a597d213-10-02,1,2/10/2013 17:25,2/10/2013 17:25,James,Rogerson,NULL,PO Box 121637,NULL,Arlington,76012,James Rogerson,NULL,NULL,PO Box 121637,NULL,Arlington,76012,817-274-8273,214-675-7831,j.rogerson@sbcglobal.net,j.rogerson@sbcglobal.net,5385210,1
+3adf2013-11-02,1,2/11/2013 13:54,2/11/2013 13:54,Kenneth,Puckett,Kenneth L Puckett,3886 Greenridge Drive,NULL,Decatur,62526,Kenneth Puckett,Kenneth L Puckett,NULL,3886 Greenridge Drive,NULL,Decatur,62526,217-791-6344,NULL,kjpuckett_1971@comcast.net,kjpuckett_1971@comcast.net,5833380,1
+932e1313-11-02,1,2/11/2013 18:35,2/11/2013 18:35,Frederick,Baribeault,Fred Baribeault,24382 Eastview Road,NULL,Laguna Hills,92653-6256,Frederick Baribeault,Fred Baribeault,NULL,24382 Eastview Road,NULL,Laguna Hills,92653-6256,9498319073,NULL,fredhb1@cox.net,fredhb1,elliottr1,0
+7a49ae13-12-02,1,2/12/2013 10:19,2/13/2013 13:03,George,Braatz,NULL,643 Concerto Lane,NULL,Silver Spring,20901,George Braatz,NULL,NULL,643 Concerto Lane,NULL,Silver Spring,20901,614-579-5845,614-579-5844,gbraatz@freemason.com,georgebraatz,braatz45,0
+8ecadc13-12-02,1,2/12/2013 12:58,2/12/2013 12:58,Judith,Fletcher,NULL,8708 First Avenue,Apt. 503,Silver Spring,20910,Judith Fletcher,NULL,NULL,8708 First Avenue,Apt. 503,Silver Spring,20910,301-587-0745,240-535-0394,jfdoobie@gmail.com,jfdoobie@gmail.com,5323473,1
+476afe13-12-02,1,2/12/2013 14:39,2/12/2013 14:39,Judith,Fletcher,NULL,8708 First Avenue,Apt. 503,Silver Spring,20910,Judith Fletcher,NULL,NULL,8708 First Avenue,Apt. 503,Silver Spring,20910,301-587-0745,240-575-0745,jfdoobie@gmail.com,jfdoobie@gmail.com,3061308,1
+d5b22713-12-02,1,2/12/2013 14:47,2/12/2013 14:56,Michael,Watson,Grand Lodge of Ohio,1 Masonic Drive,NULL,Springfield,45504,Michael Watson,Grand Lodge of Ohio,NULL,1 Masonic Drive,NULL,Springfield,45504,614-885-5318,NULL,dshirk@freemason.com,Grand Lodge of Ohio,masonicdrive,0
+23e39113-12-02,1,2/12/2013 18:45,2/12/2013 18:45,Judith,Fletcher,NULL,8708 First Avenue,Apt. 503,Silver Spring,20910,Judith Fletcher,NULL,NULL,8708 First Avenue,Apt. 503,Silver Spring,20910,301-587-0745,240-535-0394,jfdoobie@gmail.com,jfdoobie@gmail.com,9376023,1
+eb6f3a13-13-02,1,2/13/2013 14:54,7/9/2013 10:05,Judith,Fletcher,NULL,8708 First Avenue,Apt. 503,Silver Spring,J1J 2S4,Judith Fletcher,NULL,NULL,8708 First Avenue,Apt. 503,Silver Spring,20910,301-587-0745,24-535-0394,jfdoobie@gmail.com,jfdoobie,grkids11,0
+75b07413-14-02,1,2/14/2013 15:13,2/14/2013 15:13,Michael,Porter,Porter Realty,503 Main Street,NULL,Alamosa,81101,Michael Porter,Porter Realty,NULL,503 Main Street,NULL,Alamosa,81101,719-589-5899,NULL,mp@porterrealty.com,mp@porterrealty.com,7325576,1
+6a06af13-14-02,1,2/14/2013 18:21,2/14/2013 18:21,Jason,Himsey,NULL,9189 Sheffield Hunt Ct,NULL,Lorton,22079,Jason Himsey,NULL,NULL,9189 Sheffield Hunt Ct,NULL,Lorton,22079,7035671030,7039802769,Jhimsey@gmail.com,Jhimsey,babydoll,0
+c614b413-14-02,1,2/14/2013 21:26,2/14/2013 21:26,Paul,Rea,West Lafayette Lodge #602,121 S. Kirk Street,NULL,West Lafayette,43845,Paul Rea,NULL,NULL,23684 TR167,NULL,Fresno,43824,740-545-6966,NULL,pasurea@att.net,pasurea@att.net,3806538,1
+e760b313-14-02,1,2/14/2013 22:04,2/14/2013 22:04,Larry,Landals,Summit Lodge #213,3631 E. Aurora Rd.,NULL,Twinsburg,44087,Larry Landals,Summit Lodge #213,NULL,3631 E. Aurora Rd.,NULL,Twinsburg,44087,330-425-1509,330-842-9034,wm@summit213.org,Landalsl,fam213blue,0
+2b950913-15-02,1,2/15/2013 11:42,2/15/2013 11:42,james,amos,NULL,4719 Fredonia Place,NULL,Bensalem,19020-3815,james amos,NULL,NULL,4719 Fredonia Place,NULL,Bensalem,19020-3815,2156394719,2158067321,a01soma@hotmail.com,a01soma@hotmail.com,4688759,1
+fef1e213-15-02,1,2/15/2013 11:43,2/15/2013 11:43,james,amos,NULL,4719 Fredonia Place,NULL,Bensalem,19020-3815,james amos,NULL,NULL,4719 Fredonia Place,NULL,Bensalem,19020-3815,2156394719,2158067321,a01soma@hotmail.com,a01soma@hotmail.com,8048580,1
+df17a013-15-02,1,2/15/2013 11:52,2/15/2013 11:52,james,amos,NULL,4719 Fredonia Place,NULL,Bensalem,19020-3815,james amos,NULL,NULL,4719 Fredonia Place,NULL,Bensalem,19020-3815,2156394719,NULL,a01soma@hotmail.com,a01soma@hotmail.com,9205034,1
+34ee6013-15-02,1,2/15/2013 11:56,2/15/2013 11:56,james,amos,NULL,4719 Fredonia Place,NULL,Bensalem,19020-3815,james amos,NULL,NULL,4719 Fredonia Place,NULL,Bensalem,19020-3815,2156394719,NULL,a01soma@hotmail.com,a01soma@hotmail.com,8919101,1
+77a43513-15-02,1,2/15/2013 15:08,2/15/2013 15:08,Steven,Aberblatt,NULL,6820 Horrocks Street,NULL,Philadelphia,19149,Steven Aberblatt,NULL,NULL,6820 Horrocks Street,NULL,Philadelphia,19149,215-725-5448,NULL,steveab@comcast.net,steveab@comcast.net,7478469,1
+2c8d1e13-15-02,1,2/15/2013 20:00,2/15/2013 20:00,James,Rogerson,NULL,PO Box 121637,NULL,Arlington,76012,James Rogerson,NULL,NULL,PO Box 121637,NULL,Arlington,76012,817-274-8273,214-675-7831,j.rogerson@sbcglobal.net,j.rogerson@sbcglobal.net,5867031,1
+ad089a13-16-02,1,2/16/2013 13:58,4/22/2016 10:40,John,LeRoy,NULL,16161 Point Lookout Rd.,NULL,Lexington Park,20653,John LeRoy,NULL,NULL,16161 Point Lookout Rd.,NULL,Lexington Park,20653,301-862-9659,NULL,leroypac@md.metrocast.net,leroypac,Msc722,0
+e919f413-16-02,1,2/16/2013 16:20,2/16/2013 16:33,Billy,Childress,NULL,3902 Goshen LN N,NULL,Augusta,30906,Billy Childress,NULL,NULL,3902 Goshen LN N,NULL,Augusta,30906,000-000-0000,706-495-2333,billy.childress@att.net,flmg718,H7nR29,0
+af1d2d13-16-02,1,2/16/2013 17:21,2/16/2013 17:21,William,Renner,NULL,18834 Porterfield Way,NULL,Germantown,20874,William Renner,NULL,NULL,18834 Porterfield Way,NULL,Germantown,20874,3015373836,3015373836,wsrenner@verizon.net,wsrenner,Digital1,0
+05ae4013-16-02,1,2/16/2013 21:00,2/16/2013 21:00,Tim,Klawon,NULL,po box 88,NULL,Larimore,58251,Tim Klawon,NULL,NULL,po box 88,NULL,Larimore,58251,0,NULL,harley1@midco.net,harley1@midco.net,9572957,1
+41063313-16-02,1,2/16/2013 22:25,2/16/2013 22:25,john,Doherty,NULL,93 whitney st,NULL,Northboro,1532,john Doherty,NULL,NULL,93 whitney st,NULL,Northboro,1532,5088479081,NULL,Johnsdoherty@verizon.net,Johndoherty,dumbbell,0
+c9452913-17-02,1,2/17/2013 15:06,2/17/2013 15:06,Kermit,Huttar,NULL,417 Dunham Pt. Rd.,NULL,Deer Isle,4627,Kermit Huttar,NULL,NULL,417 Dunham Pt. Rd.,NULL,Deer Isle,4627,2073486057,2073486057,kermhuttar@gmail.com,kermhuttar@gmail.com,2694863,1
+8d6c3a13-18-02,1,2/18/2013 7:01,2/18/2013 7:31,Larry,Rubenacker Sr,NULL,483 Gregory Drive,NULL,Batavia,45103,Larry Rubenacker Sr,NULL,NULL,483 Gregory Drive,NULL,Batavia,45103,513-732-6696,513-560-6693,rube2@fuse.net,lrubenacker,6r83661,0
+c1ff0713-19-02,1,2/19/2013 23:33,2/19/2013 23:33,Mark,Chapman,Widows Sons Lodge No. 60,PO Box 6262,NULL,Charlottesville,22906,Mark Chapman,Widows Sons Lodge No. 60,NULL,PO Box 6262,NULL,Charlottesville,22906,434.971.1332,NULL,agw123@earthlink.net,WSL601799,MMmark1799,0
+f1e78d13-20-02,1,2/20/2013 0:57,2/20/2013 0:57,Christopher,Hodapp,NULL,9310 Seascape Drive,NULL,Indianapolis,46256,Christopher Hodapp,NULL,NULL,9310 Seascape Drive,NULL,Indianapolis,46256,317-842-1103,317-443-9354,hodapp@aol.com,hodapp@aol.com,9520888,1
+36ebb813-20-02,1,2/20/2013 1:09,7/14/2015 18:23,Wilson,Moses,Wilson Moses,P.O. Box 1567,NULL,Fair Oaks,95628,Wilson S. Moses,Sacramento Masonic Service Bureau,NULL,4440 Bijan Court,NULL,Fair oaks,95628,916-965-0119,(916) 524-5286,wmoses06@pacbell.net,wmoses06,clarissa09,0
+327ca113-20-02,1,2/20/2013 9:04,2/20/2013 9:04,Wes,Tapp,NULL,9724 Southwind Circle,NULL,Tecumseh,49286,Wes Tapp,NULL,NULL,9724 Southwind Circle,NULL,Tecumseh,49286,517-424-0631,517-902-4148,tapp.wes@gmail.com,tapp.wes@gmail.com,2312675,1
+8bb5cf13-20-02,1,2/20/2013 9:51,2/20/2013 9:51,Adam,Lang,NULL,4812 W 5th St,NULL,Duluth,55807,Adam Lang,NULL,NULL,4812 W 5th St,NULL,Duluth,55807,2183496215,NULL,atlang@charter.net,atlang,atreides,0
+8b1a4413-20-02,1,2/20/2013 12:16,2/20/2013 12:16,Chuck,Brust,NULL,421 11th Ave SE,NULL,Rochester,55904,Chuck Brust,NULL,NULL,421 11th Ave SE,NULL,Rochester,55904,5072545712,5072545712,brust.charles@mayo.edu,brust.charles@mayo.edu,7108045,1
+7a97eb13-20-02,1,2/20/2013 13:58,2/20/2013 13:58,Stephen,Zacharzuk,Monumental Lodge #374,PO Box 309,NULL,Tivoli,12583,Steve Zacharzuk,NULL,NULL,92 Cambridge Dr,NULL,Red Hook,12571,845-758-3240,518755-6727,zacharzuk@gmail.com,szacharzuk,tara@4231,0
+186e9313-20-02,1,2/20/2013 14:10,2/20/2013 14:33,Don,Stivers,Don Stivers,499 Fisher Street,NULL,Middleport,45760,Don Stivers,Don Stivers,NULL,499 Fisher Street,NULL,Middleport,45760,740-992-6879,740-416-3212,dstivers120@yahoo.com,dstivers120,1moonbeam,0
+46c0ed13-20-02,1,2/20/2013 18:07,2/20/2013 18:07,Matthew,Appel,NULL,18229 60th Ave. W,NULL,Lynnwood,98037-7337,Matthew Appel,NULL,NULL,18229 60th Ave. W,NULL,Lynnwood,98037-7337,4256730867,NULL,mappel3@comcast.net,mappel3@comcast.net,2302970,1
+a436ed13-21-02,1,2/21/2013 8:35,2/21/2013 8:35,Frank,Little,Leeds Lodge # 446,P. O. Box 757,NULL,Leeds,35094,Leeds Lodge # 446,NULL,NULL,1453 Montevallo Road,NULL,Leeds,35094,205-699-1010,NULL,fwlittle@windstream.net,fwlittle@windstream.net,5857264,1
+1ba88613-21-02,1,2/21/2013 15:27,2/21/2013 15:27,Steve,Almager,NULL,PO Box 251,NULL,Eunice,88231,Steve Almager,NULL,NULL,PO Box 251,NULL,Eunice,88231,575-394-3322,575-631-0926,stevealmager@gmail.com,salmager,tylera44,0
+a455a513-21-02,1,2/21/2013 19:09,2/21/2013 19:09,Adam ,Kendall,Henry W. Coil Library & Museum of Freemasonry,1111 California Street,NULL,San Francisco,94108,Adam Kendall,Henry W. Coil Library & Museum of Freemasonry,NULL,1111 California Street,NULL,San Francisco,94108,(415) 292-9137,NULL,akendall@freemason.org,akendall@freemason.org,9791914,1
+ea581113-22-02,1,2/22/2013 9:44,2/22/2013 9:44,ROGER,POAGE,FLOYDADA LODGE # 712,P. O. BOX 372,NULL,FLOYDADA,79235,ROGER POAGE,FLOYDADA LODGE # 712,NULL,P. O. BOX 372,NULL,FLOYDADA,79235,806-983-3550,806-983-7523,rbpoage@att.net,rbpoage@att.net,8209113,1
+7de26b13-22-02,1,2/22/2013 9:59,2/22/2013 10:00,William,Roach,William Roach,401 W 2nd,NULL,DeWitt,72042,William Roach,William Roach,NULL,401 W 2nd,NULL,DeWitt,72042,870-946-1234,NULL,james996@centurytel.net,sonnyr,doghouse,0
+919caa13-22-02,1,2/22/2013 11:11,8/23/2014 16:07,William,Short,NULL,4615 Stone Mill Dr,NULL,Indianapolis,46237,William Short,NULL,NULL,4615 Stone Mill Dr,NULL,Indianapolis,46237,317-782-0923,317-258-3061,wm.short@att.net,whshort,uscg375513,0
+6cd60413-22-02,1,2/22/2013 11:25,8/7/2015 12:07,Philip,Buchholz,Mr.,PO Box 597,1105 W Rochester Ave,Saratoga,82331,Philip Buchholz,NULL,NULL,PO Box 597,1105 W Rochester Ave,Saratoga,82331,3077607509,307-760-7509,phil@pnjb.net,pgbuchholz,4meUR2Ys,0
+1cba2e13-23-02,1,2/23/2013 18:22,12/6/2015 11:44,Philip A.,Cole,NULL,1305 Apollo Dr.,NULL,Arnold,63010,Philip A. Cole,NULL,NULL,1305 Apollo Dr.,NULL,Arnold,63010,314-596-2653,314-596-2653,pcmasonic@gmail.com,pcole314,pc314ole,0
+00c7c813-24-02,1,2/24/2013 12:06,2/24/2013 19:47,Albert,Farmer,"Ionic Lodge 186, AF & AM",Duluth Masonic Center,4 West 2nd St,Duluth,55802-2015,Albert Farmer,"Ionic Lodge 186, AF & AM",NULL,329 W. 3rd St.,NULL,Duluth,55806-2601,"218-722-4553, Ext 30",NULL,ionic.lodge.186@gmail.com,ionic186,tubalcain,0
+c2532b13-24-02,1,2/24/2013 17:15,2/24/2013 17:15,Bill,Jacobs,ROGER LACEY LODGE #722,P. O. BOX 16475,NULL,SAVANNAH,31416,Bill Jacobs,Roger Lacey Lodge#722,NULL,P. O. BOX 16475,NULL,SAVANNAH,31416,912-657-1410,912-657-1410,w.jacobs001@comcast.net,Bill Jacobs,ROGER#722,0
+6e52c513-24-02,1,2/24/2013 19:55,2/24/2013 19:55,jon,gimmy,jon gimmy,4630 ripley st,NULL,davenport,52806,jon gimmy,jon gimmy,NULL,4630 ripley st,NULL,davenport,52806,5633916121,NULL,gimmyabreak@hotmail.com,gimmyabreak@hotmail.com,6257227,1
+d8424c13-24-02,1,2/24/2013 23:01,2/24/2013 23:01,Charles,Harris,NULL,108 Allison Rd Apt A3,NULL,Horsham,19044,Charles Harris,NULL,NULL,108 Allison Rd Apt A3,NULL,Horsham,19044,2158708999,NULL,tek112@gmail.com,TEK112,1480689,0
+fcfa1713-25-02,1,2/25/2013 10:39,2/28/2013 18:03,Brian,Page,NULL,4068 Sandalwood Drive,NULL,Erie,16506,Brian Page,NULL,NULL,4068 Sandalwood Drive,NULL,Erie,16506,8147460636,8147460636,ANSKY_23@hotmail.com,ANSKY_23@hotmail.com,6334361,1
+4030db13-25-02,1,2/25/2013 12:00,2/25/2013 12:00,Richard,Braley,Braley Pipe Tool LLC,202 South Byrd St,NULL,Tishomingo,73460,Richard Braley,Braley Pipe Tool LLC,NULL,202 South Byrd St,NULL,Tishomingo,73460,580-371-0088,NULL,richardbraley@sbcglobal.net,richardbraley@sbcglobal.net,9809149,1
+9e320413-25-02,1,2/25/2013 13:32,2/25/2013 13:32,Stormy,Thorson,NULL,4937 Briarwood Lane,NULL,Portsmouth,23703,Stormy Thorson,NULL,NULL,4937 Briarwood Lane,NULL,Portsmouth,23703,757.686.8034,757.737.2156,Stormythor@aol.com,Stormythor,Hooters,0
+f5d0f513-26-02,1,2/26/2013 10:26,2/26/2013 10:26,ROBERT L ,CROWE,rlcrowe,6750 miller rd,NULL,girard,16417,ROBERT L CROWE,rlcrowe,NULL,6750 miller rd,NULL,girard,16417,814 774 9332,8144401331,rlcrowe@velocity.net,rlcrowe,gearman,1
+b5ae0d13-27-02,1,2/27/2013 11:07,2/27/2013 11:07,Robert,Weed,Kingman Lodge 22,212 N 4th Street Ste 4,NULL,Kingman,86401-5850,Robert Weed,Kingman Lodge 22,NULL,212 N 4th Street Ste 4,NULL,Kingman,86401-5850,602 284-2834,NULL,bobweed2@gmail.com,Bobweed,19vbucher1422,0
+e68ba513-28-02,1,2/28/2013 9:17,2/28/2013 9:17,Tim,Earle,NULL,1975 Kelsey Drive,NULL,Cuyahoga Falls,44221,Tim Earle,NULL,NULL,1975 Kelsey Drive,NULL,Cuyahoga Falls,44221,330-923-6897,NULL,duke1@linuxmail.org,duke1@linuxmail.org,2631980,1
+7801bf13-28-02,1,2/28/2013 9:19,2/28/2013 9:19,Tim,Earle,NULL,1975 Kelsey Drive,NULL,Cuyahoga Falls,44221,Tim Earle,NULL,NULL,1975 Kelsey Drive,NULL,Cuyahoga Falls,44221,330-923-6897,NULL,Duke1@linuxmail.org,Duke1@linuxmail.org,8829343,1
+c7e0f913-28-02,1,2/28/2013 11:24,11/4/2015 9:31,Donald,Combs,Frank F. Baker Lodge#46 F&AM,1262 Meadow Lane SE,NULL,Darien,31305,Donald Combs,Frank F. Baker Lodge#46 F&AM,NULL,1262 Meadow Lane SE,NULL,Darien,31305,912-625-0233,478-235-3750,don_combs@juno.com,frankfbaker46,baker46,0
+0c84fe13-28-02,1,2/28/2013 18:22,2/28/2013 18:22,Tim,Earle,NULL,1975 Kelsey Drive,NULL,Cuyahoga Falls,44221,Tim Earle,NULL,NULL,1975 Kelsey Drive,NULL,Cuyahoga Falls,44221,330-923-6897,NULL,duke1@linuxmail.org,duke1@linuxmail.org,7768128,1
+5c181b13-01-03,1,3/1/2013 9:45,3/1/2013 9:45,Garret,Wikoff,NULL,9494 Pendergast Rd,NULL,Phoenix,13135,Garret Wikoff,NULL,NULL,9494 Pendergast Rd,NULL,Phoenix,13135,315-695-4271,NULL,gawikoff@windstream.net,gawikoff,dr1ftw00d,0
+cd048613-01-03,1,3/1/2013 17:35,3/1/2013 17:35,Paul,Dangreau,Carmel Lodge #680,27 Paradise Park,NULL,Santa Cruz,95060,Paul Dangreau,Carmel Lodge #680,NULL,27 Paradise Park,NULL,Santa Cruz,95060,8314235766,8314235766,pddndld@sbcglobal.net,dangreau,ptpinos1,0
+06821213-01-03,1,3/1/2013 22:54,3/1/2013 22:54,Virgil L.,Johnston,Virgil L. Johnston,7063 W. Cinnabar Ave.,NULL,Peoria,85345-6895,Virgil L. Johnston,Virgil L. Johnston,NULL,7063 W. Cinnabar Ave.,NULL,Peoria,85345-6895,623-486-8367,NULL,v.johnson1@cox.net,v.johnson1@cox.net,4646285,1
+c8fd9a13-01-03,1,3/1/2013 22:59,4/16/2014 16:15,Virgil,Johnston,NULL,7063 W. Cinnabar Ave.,NULL,Peoria,85345-6895,Virgil Johnston,NULL,NULL,7063 W. Cinnabar Ave.,NULL,Peoria,85345-6895,623-486-8367,NULL,v.johnson1@cox.net,himmel1,Viles630,1
+0c44a513-03-03,1,3/3/2013 22:42,3/3/2013 22:42,Russ,Todd,NULL,12 Stonewood Drive,NULL,Old Lyme,6371,Russ Todd,NULL,NULL,12 Stonewood Drive,NULL,Old Lyme,6371,8604347073,NULL,Spybandit@aol.com,Spybandit@aol.com,2849882,1
+73c3a013-04-03,1,3/4/2013 15:09,3/4/2013 15:09,August,Molitano,NULL,PO Box 427,NULL,Riverton,06065-0427,August Molitano,NULL,NULL,PO Box 427,NULL,Riverton,06065-0427,860-379-1185,NULL,cdb1865@snet.net,cdb1865@snet.net,5231715,1
+12d6ac13-05-03,1,3/5/2013 0:31,3/5/2013 9:08,Leslie,Reeves,Grenada Lodge # 31,P.O. Box 657,NULL,Grenada,38902,Leslie Reeves,Grenada lodge # 31,NULL,24311 Hwy 8 East,NULL,Grenada,38901,662-230-2287,662-230-2287,lesliereeves@cableone.net,secretary,grenada31,0
+777bb513-05-03,1,3/5/2013 21:01,3/5/2013 21:01,Franklin ,Cole,NULL,1121 Hillcrest Path,NULL,Manasquan,8736,Franklin Cole,NULL,NULL,1121 Hillcrest Path,NULL,Manasquan,8736,732-223-6058,732-492-4954,cfa3@icloud.com,cfa3@icloud.com,7268655,1
+9ef1fe13-06-03,1,3/6/2013 18:02,3/6/2013 18:02,Roy,McConkey,NULL,529 Saline Pump Rd.,NULL,Moriarty,87035,Roy McConkey,NULL,NULL,529 Saline Pump Rd.,NULL,Moriarty,87035,505-832-4590,505-321-3323,roymcconkey@yahoo.com,roymcconkey@yahoo.com,6071965,1
+0bd1cd13-07-03,1,3/7/2013 9:46,3/7/2013 9:46,William,Ohle,NULL,28 Dorothy E Lucey Drive,NULL,Newburyport,01950-1781,William Ohle,NULL,NULL,28 Dorothy E Lucey Drive,NULL,Newburyport,01950-1781,978-979-1587,978-979-1587,w.ohle@comcast.net,w.ohle@comcast.net,2322914,1
+cae2e413-07-03,1,3/7/2013 20:35,3/7/2013 20:35,troy,brown,troy brown,7259 407th street,NULL,northbranch,55056,troy brown,troy brown,NULL,7259 407th street,NULL,northbranch,55056,6512371118,6512069756,troyabrown123@gmail.com,troynick0,theboys,0
+c99f1f13-09-03,1,3/9/2013 8:12,3/9/2013 8:12,Neil,Welch,NULL,1032-15th Ave. N.W.,NULL,Demotte,46310,Neil Welch,NULL,NULL,1032-15th Ave. N.W.,NULL,Demotte,46310,219-987-9540,NULL,neilwelch@netnitco.net,neilwelch,TigGer,0
+e7694813-11-03,1,3/11/2013 16:26,3/11/2013 16:26,JUDY,FLETCHER,NULL,8708 first ave,503,silver spring,20910,JUDY FLETCHER,NULL,NULL,8708 first ave,503,silver spring,20910,301-587-0745,NULL,jfdoobie@gmail.com,jfdoobie@gmail.com,4762074,1
+e91ed313-11-03,1,3/11/2013 16:26,3/11/2013 16:26,Douglas,Stam,NULL,37376 Ponderilla Dr.,NULL,Polson,59860,Douglas Stam,NULL,NULL,37376 Ponderilla Dr.,NULL,Polson,59860,404-883-4480,NULL,douglas302@centurytel.net,douglas302@centurytel.net,3382135,1
+0167ed13-12-03,1,3/12/2013 14:27,3/12/2013 14:27,tim,schupfer,Potomac Lodge,14505 bourbon street sw,NULL,Cumberland,21502,tim schupfer,Potomac Lodge,NULL,14505 bourbon street sw,NULL,Cumberland,21502,301-697-9760,NULL,susan@atlanticbb.net,susan@atlanticbb.net,9880998,1
+b5f63413-12-03,1,3/12/2013 22:22,3/12/2013 22:22,Calvin,Helmick,NULL,536 Crestpark Drive,NULL,Glen Burnie,21061,Calvin Helmick,NULL,NULL,536 Crestpark Drive,NULL,Glen Burnie,21061,410969275,NULL,cghel54@aol.com,cghel54@aol.com,3739398,1
+d6015813-15-03,1,3/15/2013 8:47,3/15/2013 8:47,jacky,Brady,Dorchester Masonic lodge, 8639 Arthur hills circle,na, north Charleston,29420,jacky Brady,Dorchester Masonic lodge,NULL, 8639 Arthur hills circle,na, north Charleston,29420,8435522483,8432700226,jackybrady@hotmail.com,jackybrady@hotmail.com,8505588,1
+2ecac613-15-03,1,3/15/2013 9:17,3/15/2013 9:17,jacky,brady,Dorchester Masonic Lodge,8639 Arthur Hills Circle,NULL,North Charleston,29420,jacky brady,Dorchester Masonic Lodge,NULL,8639 Arthur Hills Circle,NULL,North Charleston,29420,843 552 2483,NULL,bradyjr@att.net,bradyjr@att.net,9848600,1
+4d8dc713-17-03,1,3/17/2013 13:47,3/17/2013 13:47,Sean,McMonagle,NULL,1917 Bergdoll Ave.,NULL,Boothwyn,19061,Sean C McMonagle,NULL,NULL,1917 Bergdoll Ave.,NULL,Boothwyn,19061,(302) 598-3013,(302) 598-3013,mcmonsean@comcast.net,s422mcm,t422bone,0
+53cb9113-17-03,1,3/17/2013 19:55,7/3/2013 12:35,Douglas,Knowles,NULL,6588 Montrose Trail,NULL,Tallahassee,32309,Douglas Knowles,NULL,NULL,6588 Montrose Trail,NULL,Tallahassee,32309,850-893-8279,850-212-0448,Tallyone@aol.com,Tallyone,JacksonLodge1,0
+78fdfa13-18-03,1,3/18/2013 10:41,12/12/2014 0:24,Christopher,Houser,NULL,PO Box 601,NULL,Dallas,28034,Christopher Houser,NULL,NULL,PO Box 601,NULL,Dallas,28034,7046788842,7046788842,cbhouser1@yahoo.com,cbhouser1,usmc1775,0
+26a3a113-19-03,1,3/19/2013 12:48,7/28/2015 19:35,Raymond,Dotson,Raymond Dotson,174 Quail Drive,Sleepy Creek Club,Dudley,28333,Raymond Dotson,Raymond Dotson,NULL,174 Quail Drive,Sleepy Creek Club,Dudley,28333,919 648-1789,NULL,ray.son@earthlink.net,Raymond,ray2dot,0
+c3076813-19-03,1,3/19/2013 19:12,3/19/2013 19:12,Jack,Levitt,Jack Levitt,2570 Fairway Drive,NULL,Bozeman,59715,Jack Levitt,Jack Levitt,NULL,2570 Fairway Drive,NULL,Bozeman,59715,406 585 9711,406 585 9711,jklevitt@aol.com,jklevitt,dauben32,0
+fb72f213-20-03,1,3/20/2013 18:38,8/5/2014 15:50,Kevin,Swartz,NULL,509 W 3rd Ave,NULL,Ritzville,99169,Kevin Swartz,NULL,NULL,509 W 3rd Ave,NULL,Ritzville,99169,5097509236,NULL,cbtinker@yahoo.com,cbtinker,1yamhgielhsa,0
+adddc313-20-03,1,3/20/2013 19:12,3/20/2013 19:12,Douglas,Eichen,NULL,16691 Simmone Lane,NULL,Huntington Beach,92647,Douglas Eichen,NULL,NULL,16691 Simmone Lane,NULL,Huntington Beach,92647,7148420206,7148265634,dbeichen@aol.com,dbeichen,Tigger1945,0
+81964b13-20-03,1,3/20/2013 23:12,5/16/2016 11:06,Jeffrey D,Maynor,NULL,16079 Confederate Ave,NULL,Baton Rouge,70817,Jeffrey D Maynor,NULL,NULL,16079 Confederate Ave,NULL,Baton Rouge,70817,225-485-7069,NULL,jmaynor@alumni.lsu.edu,jdmaynor,4913Flyer,0
+53a51413-22-03,1,3/22/2013 8:27,3/22/2013 8:27,Matthew,Winters,NULL,10505 118th Ave,NULL,Largo,33773,Matthew Winters,NULL,NULL,10505 118th Ave,NULL,Largo,33773,727-452-8846,727-452-8846,winters7715@yahoo.com,winters7715,Starbuck1,0
+9829b613-22-03,1,3/22/2013 12:06,3/22/2013 12:06,Jim,Roach,NULL,15208 Glossy Ibis Road,NULL,Weeki Wachee,34614-1107,Jim Roach,NULL,NULL,15208 Glossy Ibis Road,NULL,Weeki Wachee,34614-1107,3527542424,3522634892,jroachsr@gmail.com,jroachsr,jfrank49,0
+55a32413-22-03,1,3/22/2013 13:52,3/25/2016 14:54,William,Bangerter,NULL,3439 Pickett Road,NULL,Saint Joseph,64503-1431,William Bangerter,NULL,NULL,3439 Pickett Road,NULL,Saint Joseph,64503-1431,816-232-7246,816-261-4668,billbang@aol.com,bbangerter,1467Wing,0
+24f7d213-22-03,1,3/22/2013 20:04,3/22/2013 20:04,Robert,Buecker,NULL,5 Walnut St,NULL,Selbyville,19975,Robert Buecker,NULL,NULL,5 Walnut St,NULL,Selbyville,19975,443-879-9197,NULL,rbuecker@gmail.com,rbuecker,msana7359,0
+2c383313-24-03,1,3/24/2013 10:56,3/24/2013 10:56,Mark,Teale,NULL,PO Box 157,NULL,Marlette,48453,Mark Teale,NULL,NULL,PO Box 157,6270 Orchard Drive,Marlette,48453,n/a,n/a,markteale@aol.com,markteale,Elmer1,0
+8035fe13-25-03,1,3/25/2013 7:49,3/5/2016 16:34,Olafur,Magnusson,Donna ehf,Mohella 2,Hafnarfjordur,ICELAND,IS220,Olafur Magnusson,Donna ehf,NULL,Mohella 2,Hafnarfjordur,ICELAND,IS220,3545553104,3548962911,olafur.magnusson@donna.is,donna@donna.is,vaskur,0
+a2491513-25-03,1,3/25/2013 8:36,2/3/2015 11:10,Timothy ,Nicely,NULL,4221 County Road 15,NULL,South Point,45680,Timothy Nicely,NULL,NULL,4221 County Road 15,NULL,South Point,45680,740-894-0691,740-479-0727,tsnicely@gmail.com,tsnicely,molonlabe,0
+8e1e5513-25-03,1,3/25/2013 10:58,3/25/2013 10:58,James,Rakes,NULL,410 Viola Ct N,NULL,Bel Air,21015,James Rakes,NULL,NULL,410 Viola Ct N,NULL,Bel Air,21015,443-504-6754,NULL,james.rakes@wslife.com,james.rakes@wslife.com,3878434,1
+d6dc1d13-25-03,1,3/25/2013 15:31,3/25/2013 15:43,Everett,Thompson,Ferndale Lodge #264,P O Box 183,NULL,Ferndale,98248,Everett Thompson,NULL,NULL,8706 White Road,NULL,Blaine,98230,(360) 332 7535,NULL,thompco@premier1.net,Ferndale Lodge #264,pasofino,0
+05c42913-25-03,1,3/25/2013 17:24,3/25/2013 17:24,Frank,Rockabrand,Coronado Lodge 1406,6441 Via Aventura Dr,NULL,El Paso,79912,Frank Rockabrand,Coronado Lodge 1406,NULL,6441 Via Aventura Dr,NULL,El Paso,79912,915-760-4737,905-203-2436,rocka2@icloud.com,Rockabrand,R1o2c3k4,0
+72494513-25-03,1,3/25/2013 21:17,3/25/2013 21:21,michael,sorbin,NULL,5253 e. 117 st. ,NULL,garfield heights,44125,michael sorbin,NULL,NULL,5253 e. 117 st. ,NULL,garfield heights,44125,2164750777,2167987337,trestleboard714@aol.com,letitwide,bikermike,0
+5c7f1d13-25-03,1,3/25/2013 21:20,3/25/2013 21:20,David,Williamson,NULL,245 Todd Ave,NULL,Hermitage,16148,David Williamson,NULL,NULL,245 Todd Ave,NULL,Hermitage,16148,724-413-3734,NULL,DWilliamson@pafreemasons.org,DWilliamson@pafreemasons.org,4247451,1
+20128013-26-03,1,3/26/2013 12:16,3/26/2013 12:16,Frank,Loui,San Francisco Scottish Rite,2850 19th Avenue,NULL,San Francisco,94132,Frank Loui,San Francisco Scottish Rite,NULL,2850 19th Avenue,NULL,San Francisco,94132,4156646401,4156098839,frankloui@aol.com,frankloui,2012GrandMaster,0
+509c1a13-27-03,1,3/27/2013 11:06,3/27/2013 11:06,Max ,Miller,NULL,710 N 11th St,NULL,"Geneva, ",68361,Max Miller,NULL,NULL,710 N 11th St,NULL,"Geneva, ",68361,402-759-4633,402-366-2622,millermax1@me.com,millermax1@me.com,8343294,1
+27f7ab13-28-03,1,3/28/2013 12:28,3/27/2014 7:27,Gilbert I.,Mundy,NULL,754 Mountain Avenue,NULL,Bound Brook,08805-1402,Gilbert I. Mundy,NULL,NULL,754 Mountain Avenue,NULL,Bound Brook,08805-1402,7324694511,NULL,gilbert08805@yahoo.com,Gilbert,Gilmo33,0
+5cfd8c13-28-03,1,3/28/2013 15:15,3/28/2013 15:15,Abraham,Lee,NULL,144 Bundy Road,NULL,Ithaca,14850,Abraham Lee,NULL,NULL,144 Bundy Road,NULL,Ithaca,14850,(607)327-1900,(607)327-1900,abelee1@hotmail.com,Abelee32,branton32,1
+58b36013-29-03,1,3/29/2013 16:42,3/29/2013 16:42,Frank ,King ,Daylight Lodge #348,1482 McAfee St. ,NULL,Saint Paul ,55106-1435,Frank King ,Daylight Lodge #348,NULL,1482 McAfee St. ,NULL,Saint Paul ,55106-1435,651 774-0997,NULL,kingx063@umn.edu,kingx063@umn.edu,5687053,1
+c8cfeb13-29-03,1,3/29/2013 19:29,3/29/2013 19:29,Michael,DiGiacomo,NULL,5517 N 3rd Street,NULL,Phoenix,85012,Michael DiGiacomo,NULL,NULL,5517 N 3rd Street,NULL,Phoenix,85012,6025704476,6025704476,masmyk1@gmail.com,masmyk,mu5cle,0
+0c912313-31-03,1,3/31/2013 12:37,4/5/2016 21:08,Raymond,Feyes,NULL,10307 Kirkwren Dr,NULL,Houston,77089,Raymond Feyes,NULL,NULL,10307 Kirkwren Dr,NULL,Houston,77089,281-484-6272,281-731-6709,r.feyes@yahoo.com,txmason,lodge1399,0
+02849c13-31-03,1,3/31/2013 15:46,9/17/2015 4:00,David,Colbeth,NULL,21816 113th Street East,NULL,Bonney Lake,98391,David Colbeth,NULL,NULL,21816 113th Street East,NULL,Bonney Lake,98391,2537786423,2537786423,david@colbeth.com,davidcolbeth,Davc3201,0
+1e6a2f13-31-03,1,3/31/2013 18:24,8/19/2014 9:54,Chet,Russell,Frederick Franklin Lodge #14,P.O. Box 223,NULL,Plainville ,6062,Chet Russell,NULL,NULL,P.O. Box 281,NULL,Plainville ,6062,860-585-7888,860-221-5241,secretary14@gmail.com,secretary14,frederick,0
+d75a7613-01-04,1,4/1/2013 2:10,4/2/2013 2:50,David,McCormick,Carnelian Lodge 40,PO Box 152,NULL,Lake City,55041,Secretary,Carnelian Lodge 40,NULL,PO Box 152,NULL,Lake City,55041,651-380-9125,NULL,secretary.carnelian40@gmail.com,Carnelian 40,Car40@MN,0
+fe7e4a13-01-04,1,4/1/2013 10:05,3/18/2016 15:02,Charles,Hobson,Fred S Kile,290 Cramer Creek Ct,NULL,Dublin,43017,Fred S Kile,"AASR, Valley of Columbus",NULL,290 Cramer Creek Ct,NULL,Dublin,43017,614-766-2272,NULL,charles@valleyofcolumbus.com,hobsonch,future01,0
+f8683313-01-04,1,4/1/2013 12:35,4/1/2013 12:35,Victor,Palla,Houston Scottish Rite,PO Box 20788,NULL,Houston,77225-0788,Victor Palla,Houston Scottish Rite,NULL,1000 North Post Oak Rd,Suite 210,Houston,77055,713.432.1980,NULL,info@houstonscottishrite.org,info@houstonscottishrite.org,7888552,1
+75f09d13-01-04,1,4/1/2013 17:23,4/1/2013 17:23,Norman P,Royall jr,Corpus Christi Lodge No. 189,P O Box 6704,NULL,Corpus Christi,78466,N P Royall Jr,NULL,NULL,133 Atlantic St,NULL,Corpus Christi,78404,361.442.2336,NULL,nproyall@aol.com,nproyall,royster,0
+9785d113-02-04,1,4/2/2013 10:08,4/2/2013 10:08,John,Brewer,NULL,P.O. Box 505,NULL,Stanton,40380,John Brewer,NULL,NULL,P.O. Box 505,NULL,Stanton,40380,606-663-4382,NULL,tetsuhara@gmail.com,tetsuhara@gmail.com,2430333,1
+36edea13-02-04,1,4/2/2013 23:15,5/10/2016 14:16,Charles,Roberts,Charles Roberts,6101 Velonia Drive,NULL,West Richland,99353,Charles Roberts,Charles Roberts,NULL,6101 Velonia Drive,NULL,West Richland,99353,5093922337,NULL,glacierlanding@gmail.com,Lodge153cwr,FlyBoy50%,0
+b24bd213-04-04,1,4/4/2013 23:03,4/4/2013 23:03,Paul,Hulseapple,NULL,5 Garrison Ln,NULL,Ballston Lake,12019,Paul Hulseapple,NULL,NULL,5 Garrison Ln,NULL,Ballston Lake,12019,518-265-4211,518-265-4211,phulseapple@nycap.rr.com,phulseapple,2be1Ask1!,0
+93a6ed13-05-04,1,4/5/2013 13:12,4/5/2013 13:12,Peter,Jensen,NULL,"4211 Ridge Top Road, #2415",NULL,Fairfax,22030,Peter Jensen,NULL,NULL,"4211 Ridge Top Road, #2415",NULL,Fairfax,22030,703-968-3368,703-989-3368,pjensen@hl57.com,pjensen,aj1921,0
+6d6b9513-05-04,1,4/5/2013 13:20,8/26/2016 8:41,William R.,Fuzia,NULL,2115 Fulton Street,NULL,Bluefield,24701,William R. Fuzia,NULL,NULL,2115 Fulton Street,NULL,Bluefield,24701,304-325-9598,503-440-5185,twobay@teleport.com,twobayranch,OldDragoon,0
+ee97c213-05-04,1,4/5/2013 13:34,10/21/2016 14:36,Mark,Genung,ASBI.com,8247 Indy Court,NULL,Indianapolis,46214,Mark Genung,ASBI.com,NULL,8247 Indy Court,NULL,Indianapolis,46214,317-271-4000,317-222-30030,mark@indymason.com,magenung,parke4389,0
+4cdd8313-06-04,1,4/6/2013 3:41,4/6/2013 3:41,Kevin,McCans,NULL,P.O. Box 61264,NULL,Boulder City,89006,Kevin McCans,NULL,NULL,P.O. Box 61264,NULL,Boulder City,89006,7022730181,7022730181,cl2injector02@cox.net,cl2injector02@cox.net,1355294,1
+9d603a13-06-04,1,4/6/2013 9:00,4/6/2013 9:00,Arnold,Cobb,NULL,2916 Wicker ST,NULL,Sanford,27330,Arnold Cobb,NULL,NULL,2916 Wicker ST,NULL,Sanford,27330,919-671-4960,NULL,agcobb@nccumc.org,agcobb,brendakc1,0
+fa80a313-07-04,1,4/7/2013 13:43,4/7/2013 13:43,Paul R,Harrison,Paul R. Harrison CPA PC,PO Box 370404,NULL,Denver,802370404,Paul R Harrison,Paul R. Harrison CPA PC,NULL,PO Box 370404,NULL,Denver,802370404,3035780237,3035780237,prh@prharrisoncpa.com,PRHarrison,Fr33m@$0n,0
+953cc213-09-04,1,4/9/2013 13:29,4/9/2013 13:29,Marshal,Shichtman,NULL,5 New York Avenue,Apartment I,Long Beach,11561,Marshal Shichtman,NULL,NULL,5 New York Avenue,Apartment I,Long Beach,11561,516-652-5220,516-652-5220,shichtm@aol.com,shichtm,msaacct,0
+7d0c0013-09-04,1,4/9/2013 14:13,4/7/2016 17:07,Edward,Howard,NULL,2617 Camino Pl W,NULL,Kettering,45420-3932,Edward J Howard,NULL,NULL,2617 Camino Pl W,NULL,Kettering,45420-3932,9372931562,NULL,edhoward@juno.com,edhoward,"e4051.J,6968h",0
+268faf13-10-04,1,4/10/2013 14:05,4/10/2013 14:07,Richard A,Chipman,Richard A Chipman,561 N Dayton Lakeview road,NULL,New Carlisle,45344,Richard A Chipman,Richard A Chipman,NULL,561 N Dayton Lakeview road,NULL,New Carlisle,45344,937-845-5992,NULL,dickchipman@outlook.com,Dick Chipman,chipper123,0
+0bc91213-10-04,1,4/10/2013 22:31,3/19/2016 2:45,Bruce,Vesper,NULL,1557 Desert Springs Ave,NULL,Richland,99352,Bruce Vesper,NULL,NULL,1557 Desert Springs Ave,NULL,Richland,99352,509-627-3967,509-531-1150,nukenight@hotmail.com,nukenight,templar1,0
+c02d0913-11-04,1,4/11/2013 10:25,4/11/2013 10:25,ABC,BJK,Testing,123 Asmm,NULL,Toronto,11111,ABC BJK,Testing,NULL,123 Asmm,NULL,Toronto,11111,2.07105E+11,NULL,brandyjk@gmail.com,brandyjk@gmail.com,8392531,1
+d01c9313-11-04,1,4/11/2013 14:32,4/11/2013 14:32,RICHARD,KUTSCHINSKI,NULL,1156 ANGELS TRACE DR SW,NULL,WYOMING,49509,RICHARD KUTSCHINSKI,NULL,NULL,1156 ANGELS TRACE DR SW,NULL,WYOMING,49509,616-551-8328,616-551-8328,richardkutschinski@att.net,rkutschi,clancy,0
+a8161a13-12-04,1,4/12/2013 13:15,4/12/2013 13:15,p,pascali,p. pascali,3534 ave du musee,NULL,montreal,h3g2c7,p pascali,p. pascali,NULL,3534 ave du musee,NULL,montreal,h3g2c7,5148134111,5148134111,ppascali@pyrogenesis.com,ppascali@pyrogenesis.com,8345137,1
+cb36f213-13-04,1,4/13/2013 21:53,3/25/2016 15:12,Ridge,Smith,NULL,PO Box 851123,NULL,Yukon,73085,Ridge Smith,NULL,NULL,PO Box 851123,NULL,Yukon,73085,405-324-2995,405-990-8835,ridge_s@hotmail.com,ridges,hauptman,0
+e0404c13-14-04,1,4/14/2013 17:44,7/31/2016 10:08,Jose,Perez,(personal),16141 SW 42nd. Ter,NULL,MIami,33185-3825,Jose Perez,(personal),NULL,16141 SW 42nd. Ter,NULL,MIami,33185-3825,305-551-8360,305-987-4873,joseitoperez@hotmail.com,joseitoperez,maurici0,0
+53422913-15-04,1,4/15/2013 18:27,4/15/2013 18:27,Michael,Forte,Mr.,3100 N. Jackson Rd.,NULL,Pharr,78577,Michael Forte,Mr.,NULL,3100 N. Jackson Rd.,NULL,Pharr,78577,6784718179,6784718179,90BlueXJ@Gmail.com,90BlueXJ@Gmail.com,6509657,1
+0736c213-15-04,1,4/15/2013 18:36,4/15/2013 18:36,Michael,Forte,NULL,3100 N. Jackson Rd.,NULL,Pharr,78577,Michael Forte,NULL,NULL,3100 N. Jackson Rd.,NULL,Pharr,78577,6784718179,6784718179,90BlueXJ@Gmail.com,90BlueXJ@Gmail.com,5046179,1
+b3022913-16-04,1,4/16/2013 12:01,4/16/2013 12:02,Gaylord,Ambrose,NULL,P O Box 305,NULL,Franklin,23851-0305,Gaylord Ambrose,NULL,NULL,P O Box 305,NULL,Franklin,23851-0305,757-516-6664,757-510-8182,ggambrose9@verizon.net,Gaylord,tyfns2diati,0
+de067713-17-04,1,4/17/2013 13:21,4/17/2013 13:21,Tom,Mickey,NULL,1413 Holly St.,NULL,Whitehorse,Y1A4V2,Tom Mickey,NULL,NULL,1413 Holly St.,NULL,Whitehorse,Y1A4V2,335-0586,335-0586,tmickey@gmx.com,tmickey@gmx.com,Bonanza,0
+a462f813-17-04,1,4/17/2013 13:55,4/17/2013 13:55,Tom,Fisher,Valley of Cambridge,PO Box 1825 935 Wheeling Av,NULL,Cambridge,43725,Tom Fisher,Valley of Cambridge,NULL,PO Box 1825 935 Wheeling Av,NULL,Cambridge,43725,740-432-3956,NULL,cambridge32@roadrunner.com,cambridge32@roadrunner.com,3212472,1
+53cea213-18-04,1,4/18/2013 13:23,4/18/2013 13:23,August,Molitano,NULL,PO Box 427,NULL,Riverton,6065,August Molitano,NULL,NULL,PO Box 427,NULL,Riverton,6065,8603791185,NULL,cdb1865@snet.net,cdb1865@snet.net,3353705,1
+6d96dd13-18-04,1,4/18/2013 15:49,4/18/2013 15:49,Jared,Decker,NULL,PO Box 8710,NULL,Kodiak,99615,Jared Decker,NULL,NULL,PO Box 8710,NULL,Kodiak,99615,907-301-5838,907-301-5838,Decker08@gmail.com,Decker08@gmail.com,5174592,1
+01b2e213-18-04,1,4/18/2013 21:21,4/18/2013 21:38,Richard,Greever,Richard Greever,3409 N Maple St,NULL,Hutchinson,67502,Richard Greever,Richard Greever,NULL,3409 N Maple St,NULL,Hutchinson,67502,620-662-0031,620-728-9499,richard@richardgreever.com,richardgreever,dduck2,0
+d2d29613-19-04,1,4/19/2013 16:37,5/9/2016 8:53,Craig,Harm,NULL,425 Maple St,NULL,Fontanelle,50846,Craig Harm,NULL,NULL,425 Maple St,NULL,Fontanelle,50846,6417452880,4023505458,stude51@iowatelecom.net,magnum108,heyford@1,0
+991dbe13-20-04,1,4/20/2013 10:07,4/13/2014 18:01,Wayne,Mac Culloch,NULL,1815 Chopin Place,NULL,Orleans,K1C 5G1,Wayne Mac Culloch,NULL,NULL,1815 Chopin Place,NULL,Orleans,K1C 5G1,613-834-8274,613-851-8044,wrmac50@rogers.com,wrmac50@rogers.com,luchs853,0
+b8005213-20-04,1,4/20/2013 11:06,4/20/2013 11:06,Denis,Castelli,NULL,22 Starr Lea Road,NULL,North Salem,10560,Denis Castelli,NULL,NULL,12 Main Street,NULL,Brewster,10509,8459999999,8459999999,punty305-bs@yahoo.com,punty305-bs@yahoo.com,2981587,1
+c9b2c613-21-04,1,4/21/2013 10:19,4/21/2013 10:19,Jeffery,Marlatt,Jeffery Marlatt,28675 S Raber Rd,NULL,Goetzville,49736,Jeffery Marlatt,Jeffery Marlatt,NULL,28675 S Raber Rd,NULL,Goetzville,49736,(906)297-2288,NULL,jm22358@hotmail.com,JDMarlatt,Bethel358,0
+936a4d13-21-04,1,4/21/2013 18:48,4/21/2013 18:48,Stephen,Tharaldsen,NULL,PO Box 75,NULL,Gouverneur,13642,Stephen Tharaldsen,NULL,NULL,PO Box 75,NULL,Gouverneur,13642,315-287-4603,315-408-8874,a17viking@gmail.com,a17viking@gmail.com,7098782,1
+3a6bbf13-21-04,1,4/21/2013 20:09,4/21/2013 20:09,P,Pascali,NULL,3534 ave du musee,NULL,montreal,h3g2c7,P Pascali,NULL,NULL,3534 ave du musee,NULL,montreal,h3g2c7,514-813-4111,514-813-4111,ppascali@pyrogenesis.com,ppascali@pyrogenesis.com,4359675,1
+d7d4f113-21-04,1,4/21/2013 20:12,4/22/2013 12:01,p,pascali,NULL,3534 ave du musee,NULL,montreal,h3g2c7,p pascali,NULL,NULL,3534 ave du musee,NULL,montreal,h3g2c7,5148134111,5148134111,ppascali@pyrogenesis.com,jetsetter503,mason503,1
+eaaee913-21-04,1,4/21/2013 20:43,4/21/2013 20:43,Julian ,Strickland,NULL,504 Smithville Rd N,NULL,Leesburg,31763,Secretary,Triangle Lodge 708,NULL,PO Box 5542,NULL,Albany,31706-5542,229-759-8081,NULL,jstrickjr@aol.com,jstrickjr,ryne33,0
+26c47a13-22-04,1,4/22/2013 16:08,4/22/2013 16:08,John,Bowers,NULL,408 San Sebastian Prado,NULL,Altamonte Springs,32714,John Bowers,NULL,NULL,408 San Sebastian Prado,NULL,Altamonte Springs,32714,321.214.5992,407.928.3344,j.bowers.mm@hotmail.com,John_Bowers,malichi1369,0
+c048a413-22-04,1,4/22/2013 17:16,4/22/2013 17:16,R James,Rocha,NULL,519 Humphries Road,NULL,Safety Harbor,34695-4921,R James Rocha,NULL,NULL,519 Humphries Road,NULL,Safety Harbor,34695-4921,7277249088,NULL,jrocha18@msn.com,jrocha18@msn.com,7157362,1
+aab58013-23-04,1,4/23/2013 8:10,4/23/2013 8:10,Richard,Saboda,Fayetteville Lodge 711,5007 Pineview Terrace,NULL,Fayetteville,30214,Richard Saboda,Fayetteville Lodge 711,NULL,5007 Pineview Terrace,NULL,Fayetteville,30214,7704613376,NULL,busybeewoodcrafters@hotmail.com,dalmech,nea1964,0
+c4d13f13-23-04,1,4/23/2013 8:17,4/23/2013 8:17,bobby,beckum,Vidalia Lodge No.330,P O Box 1142,NULL,Vidalia,30475,bobby beckum,Vidalia Lodge No.330,NULL,P O Box 1142,NULL,Vidalia,30475,9125380062,9122453699,beckumb@ymail.com,vidalia330,secretary,0
+c320a313-24-04,1,4/24/2013 10:15,4/24/2013 10:15,Scott,Stanton,NULL,1513 Palm Valley Drive,NULL,Garland,75043,Scott Stanton,NULL,NULL,1513 Palm Valley Drive,NULL,Garland,75043,469-867-6749,469-867-6749,sds0094@gmail.com,sds0094,Forever7,0
+27071f13-24-04,1,4/24/2013 16:46,4/24/2013 16:46,Felix,Lopez,NULL,17304 Norwalk Blvd,NULL,Ceritos,90703,Felix Lopez,NULL,NULL,17304 Norwalk Blvd,NULL,Ceritos,90703,562-572-2301,562-402-1737,fblopez0001@sbcglobal.net,fblopez0001@sbcglobal.net,1082250,1
+19bf0c13-25-04,1,4/25/2013 12:23,4/25/2013 12:23,Frank,Milne,NULL,804-1550 Dresden Row,NULL,Halifax,B3j4a2,Frank Milne/Burnell,NULL,NULL,5900 Bahia del Mar,Suite 240,St Petersburg,33715-3329,902-421-1144,902-421-1144,frankmilne@gmail.com,Frankmilne,carlyle,0
+09182613-25-04,1,4/25/2013 14:40,4/25/2013 14:40,Michael,Sutton,NULL,1975 Ardella Drive,NULL,Pocatello,83201-2627,Michael Sutton,NULL,NULL,1975 Ardella Drive,NULL,Pocatello,83201-2627,208-232-4003,208-317-1846,suttonmichael541@gmail.com,fatantelope2745,hazelmas258,0
+c6b7b013-26-04,1,4/26/2013 19:24,4/26/2013 19:24,Everett,Hampton,Massena Masonic Lodge #513 F&AM,PO Box 8,NULL,Massena ,13662,Everett Hampton,Massena Masonic Lodge #513 F&AM,NULL,PO Box 8,NULL,Massena ,13662,315-769-3282,NULL,ehampton@twcny.rr.com,ehampton41,bighhh72,0
+2af68a13-28-04,1,4/28/2013 4:06,4/28/2013 4:06,Owen,Shieh,NULL,98-418 Kaonohi St.,Apt. 3,Aiea,96701,Owen Shieh,NULL,NULL,98-418 Kaonohi St.,Apt. 3,Aiea,96701,3212129905,3212129905,owen@journeyonthelevel.com,owen@journeyonthelevel.com,9881169,1
+361ce613-28-04,1,4/28/2013 10:04,3/18/2014 18:35,Robert,Kliaman,"Robert Kliaman, CPA, CA",46 Knightshade Drive,NULL,Thornhill,L4J8Z2,Robert Kliaman,"Robert Kliaman, CPA, CA",NULL,46 Knightshade Drive,NULL,Thornhill,L4J8Z2,905-707-6886,905-707-6886,rkliaman@cpa-ca.com,rkliaman,RkhK0413,0
+08401113-28-04,1,4/28/2013 20:56,11/9/2016 23:25,Donald,Poling,NULL,1210 NW 43 Street,NULL,Fort Lauderdale,33309,Donald Poling,NULL,NULL,1210 NW 43 Street,NULL,Fort Lauderdale,33309,9549371106,9549371106,experrectus@yahoo.com,natas09,samhain,0
+45338f13-28-04,1,4/28/2013 21:58,3/14/2016 12:17,Charles,Knapp Jr,NULL,PO Box 194,NULL,Narrowsburg,12764,Charles Knapp Jr,NULL,NULL,5 4th Avenue,NULL,Narrowsburg,12764,5706858027,8455885360,Ceknappjr@att.net,ceknappjr,Shift4$$,0
+ab9d4413-29-04,1,4/29/2013 7:57,4/29/2013 7:57,Alan,France,Alan France,54319 National Rd.,NULL,Bridgeport,43912,Alan France,Alan France,NULL,54319 National Rd.,NULL,Bridgeport,43912,740-633-6820,NULL,afrantz.alan@gmail.com,Al France,alf181alf,0
+4daa3713-29-04,1,4/29/2013 12:07,4/29/2013 12:07,Charles,Lord,NULL,1232 Mildred Avenue,NULL,Roslyn,19001,Charles Lord,NULL,NULL,1232 Mildred Avenue,NULL,Roslyn,19001,2158852706,2156941486,clownchuckles@gmail.com,Chuckles,Grandpa01,0
+c8725013-30-04,1,4/30/2013 14:17,4/30/2013 14:17,Mikel,Stoops,NULL,15234 W 88th Terrace,NULL,Lenexa,66219,Mikel Stoops,NULL,NULL,15234 W 88th Terrace,NULL,Lenexa,66219,9139803382,9139803382,mstoops@desotolodge40.org,mstoops@desotolodge40.org,1127725,1
+23583313-01-05,1,5/1/2013 12:03,3/3/2014 21:50,William,Loerch,AASR,208 Pine Forest Drive,NULL,Wetumpka,36093,William Loerch,AASR,NULL,208 Pine Forest Drive,NULL,Wetumpka,36093,334-567-4429,334-224-3495,wwilloe@bellsouth.net,WJLoerch,N4bjKa4J,0
+f9890813-01-05,1,5/1/2013 15:52,5/1/2013 15:52,Jay,Morris,NULL,918 2nd st,NULL,Mukilteo,98275,Jay Morris,NULL,NULL,918 2nd st,NULL,Mukilteo,98275,425-348-0748,NULL,jay.morris@juno.com,jay.morris@juno.com,3518365,1
+5a956013-01-05,1,5/1/2013 15:57,5/1/2013 15:57,Jay,Morris,NULL,918 2nd st,NULL,Mukilteo,98275,Jay Morris,NULL,NULL,918 2nd st,NULL,Mukilteo,98275,425-348-0748,NULL,jay.morris@juno.com,jay.morris@juno.com,8092582,1
+06693d13-01-05,1,5/1/2013 16:05,5/1/2013 16:05,Jay,Morris,NULL,918 2nd st,NULL,Mukilteo,98275,Jay Morris,NULL,NULL,918 2nd st,NULL,Mukilteo,98275,425-348-0748,NULL,jay.morris@juno.com,jay.morris@juno.com,6826140,1
+1e8eac13-01-05,1,5/1/2013 22:54,5/1/2013 22:55,Paul,Honaker,NULL,4109 SW 29th Street,NULL,Topeka,66614,Paul Honaker,NULL,NULL,4109 SW 29th Street,NULL,Topeka,66614,7852860214,7852216100,bordereb@juno.com,phonaker,r0sQuDnX,0
+6c19ff13-02-05,1,5/2/2013 7:11,3/17/2016 12:32,Col JD,Stevens,NULL,18309 Allora Dr,NULL,Edmond,73012,Col JD Stevens,NULL,NULL,18309 Allora Dr,NULL,Edmond,73012,405-808-8673,NULL,coljstevens@yahoo.com,coljstevens,keystone,0
+0a081213-02-05,1,5/2/2013 15:01,5/2/2013 15:01,Paul,McCullough,NULL,8519 E Angus Dr,NULL,Scottsdale,85251,Paul McCullough,NULL,NULL,8519 E Angus Dr,NULL,Scottsdale,85251,n/a,480-254-6177,bropaulmac@gmail.com,bropaulmac@gmail.com,3366605,1
+05152913-05-05,1,5/5/2013 21:23,3/5/2016 12:11,James,Drury,NULL,120 Drummond Drive,NULL,Elizabeth City,27909,James Drury,NULL,NULL,120 Drummond Drive,NULL,Elizabeth City,27909,2523400915,2523400915,Imagalwayguy@yahoo.com,Druidhealer ,Hiramd1964,0
+12d2fe13-06-05,1,5/6/2013 11:34,9/20/2016 19:53,Michael,Fischer,NULL,135 Amersham Ct,NULL,Kernersville,27284,Michael Fischer,NULL,NULL,135 Amersham Ct,NULL,Kernersville,27284,336-993-3055,336-337-6892,im4unc86@bellsouth.net,im4unc86@bellsouth.net,chari87,0
+20fa5f13-07-05,1,5/7/2013 21:42,5/7/2013 21:42,George,Allen,NULL,1772 McCleary Bend Rd,NULL,Sevierville,37876,George Allen,NULL,NULL,1772 McCleary Bend Rd,NULL,Sevierville,37876,865-429-0036,305-302-0147,gallen1772@gmail.com,gallen1772@gmail.com,6614122,1
+3622b413-08-05,1,5/8/2013 6:52,5/8/2013 6:52,Philip,Brooks,NULL,405 Greear Place,NULL,Herndon,20170,Philip Brooks,NULL,NULL,405 Greear Place,NULL,Herndon,20170,7037078150,NULL,Brookspjbe@aol.com,Brookspjbe@aol.com,1166319,1
+07cac113-08-05,1,5/8/2013 10:35,5/8/2013 10:35,Michael,Flagg,NULL,2208 Sunflower St,NULL,Columbia,65202,Michael Flagg,NULL,NULL,2208 Sunflower St,NULL,Columbia,65202,5734650355,5734650355,maflagg@usa.net,Flagg707,pi314159,0
+0eeec913-08-05,1,5/8/2013 17:10,5/8/2013 17:10,Dave,Daugherty,kofu,740 Lucky ave,NULL,Abingdon,21009,Dave Daugherty,kofu,NULL,740 Lucky ave,NULL,Abingdon,21009,4106769144,NULL,dmdj@kofu33.org,dmdj@kofu33.org,5713443,1
+9a355e13-08-05,1,5/8/2013 18:39,5/8/2013 18:39,keith,madden,Tulsa Scottish Rite,PO Box 472150,NULL,Tulsa,74147-2150,Keith Madden,Tulsa Scottish Rite,NULL,9525H East 51st St.,NULL,Tulsa,74145,918-622-7760,NULL,gensec@tulsascottishrite.org,gensec@tulsascottishrite.org,2163547,1
+5c0e3413-08-05,1,5/8/2013 21:03,5/8/2013 21:03,Odis ,Denney,NULL,378 Governors Lane,NULL,Greenwood,46142,Odis Denney,NULL,NULL,378 Governors Lane,NULL,Greenwood,46142,3174732837,3174732837,denfam3@sbcglobal.net,denneyo,mastermason,0
+47576a13-09-05,1,5/9/2013 5:23,5/9/2013 5:23,Carl,Nelson,NULL,P.O. Box 902,NULL,Marsahll ,72650,Carl Nelson,NULL,NULL,P.O. Box 902,NULL,Marsahll ,72650,870-504-2245,NULL,carlnelson66@gmail.com,campbell115,arkansas1930,0
+f49c5d13-09-05,1,5/9/2013 10:52,5/9/2013 10:52,David ,Carter,Grand Lodge of Kentucky,300 Masonic Home Dr.,NULL,Masonic Home,40041,Joseph Conway,Grand Lodge of Kentucky,NULL,300 Masonic Home Dr.,NULL,Masonic Home,40041,5025949120,NULL,davidcarterpgm@bellsouth.net,davidcarterpgm@bellsouth.net,2458813,1
+05098813-09-05,1,5/9/2013 17:57,5/9/2013 17:57,Vernon,Pruitt,NULL,7030 Saddlebrook Dr.,NULL,Millington,38053,Vernon Pruitt,NULL,NULL,7030 Saddlebrook Dr.,NULL,Millington,38053,901-873-2334,NULL,vernon_pruitt38053@yahoo.com,vernon_pruitt38053@yahoo.com,6354510,1
+313af413-09-05,1,5/9/2013 21:29,5/9/2013 21:29,Kerry,Kirk,NULL,3826 Charles Stewart Drive,NULL,Fairfax,22033,Kerry Kirk,NULL,NULL,3826 Charles Stewart Drive,NULL,Fairfax,22033,703-716-0399,703-217-7921,kerrydkirk@aol.com,kerrydkirk@aol.com,8857515,1
+0172a413-10-05,1,5/10/2013 12:46,5/19/2014 22:38,Jason,Hale,NULL,1809 Beechnut Cove,NULL,Cedar Park,78613,Jason Hale,NULL,NULL,1809 Beechnut Cove,NULL,Cedar Park,78613,512-948-9581,512-948-9581,jason.d.hale@me.com,hdj4265,6Brodie6Colt6,0
+44a35813-12-05,1,5/12/2013 18:20,8/11/2016 12:16,James,Loudermilk,NULL,9416 Chatham Street,NULL,Manassas,20110-3604,James Loudermilk,NULL,NULL,9416 Chatham Street,NULL,Manassas,20110-3604,703-330-0317,202-436-0105,james.loudermilk@ieee.org,Loudermilk,jal2milk,0
+15f4c113-12-05,1,5/12/2013 20:03,5/12/2013 20:03,Jeff,Bartlett,NULL,20 Woodland Way,NULL,Ridgefield,6877,Jeff Bartlett,NULL,NULL,20 Woodland Way,NULL,Ridgefield,6877,2032445665,2039401039,digital.roadwarrior@gmail.com,digital.roadwarrior@gmail.com,6134504,1
+ff41a313-14-05,1,5/14/2013 9:13,5/14/2013 9:13,Gaylord,Thomas,NULL,1403 West Cleveland Avenue,NULL,Guthrie,73044,Gaylord Thomas,NULL,NULL,1403 West Cleveland Avenue,NULL,Guthrie,73044,4052939281,4054712747,gzthomas@cox.net,gzthomas@cox.net,4Linzi88,0
+6dc01913-14-05,1,5/14/2013 14:36,5/14/2013 14:36,P.,van Oosten,NULL,p.o. box 817,NULL,wilmette,60091,P. van Oosten,NULL,NULL,p.o. box 817,NULL,wilmette,60091,225-4258669,224-4258669,pvo@vanoosten.us,pvo@vanoosten.us,1053055,1
+32ed7e13-14-05,1,5/14/2013 18:28,5/14/2013 18:28,Karl,Grose,NULL,311 Bell Avenue,NULL,Scott City,63780,Karl Grose,NULL,NULL,311 Bell Avenue,NULL,Scott City,63780,573-264-3415,NULL,kegrosejr@gmail.com,kegrosejr@gmail.com,6664530,1
+ef1a6213-15-05,1,5/15/2013 10:50,5/15/2013 10:50,Edward,Sisson,NULL,1966 Elm St. #2,NULL,Manchester,3104,Edward Sisson,NULL,NULL,1966 Elm St. #2,NULL,Manchester,3104,5083444313,5083444313,tedsisson@gmail.com,tedsisson@gmail.com,7740416,1
+c26d8913-16-05,1,5/16/2013 12:27,8/26/2016 10:20,Robert,Drzewucki,Robert Drzewucki,118 Brockmoore Drive,NULL,East Amherst,14051,Robert Drzewucki,Robert Drzewucki,NULL,118 Brockmoore Drive,NULL,East Amherst,14051,(716) 689-2317,(716) 982-1538,rdrzewu@yahoo.com,rdrzewu,sabres22,0
+72c60e13-17-05,1,5/17/2013 20:04,5/17/2013 20:04,Michael,Hampton,NULL,900 S. Rock Cliff Road,NULL,Ponca City ,74604,% Mindy Neville,NULL,NULL,7 Maddie Way,NULL,Bellingham,2019,580-762-2648,580-716-1074,mindyneville@comcast.net,mindyneville@comcast.net,8766143,1
+23ce9513-17-05,1,5/17/2013 22:56,8/30/2014 11:42,Robert,Moore,Robert Moore,30 CSA Dr,NULL,Grenada,38901,Robert Moore,NULL,NULL,30 CSA Dr,NULL,Grenada,38901,662-417-0688,NULL,robert.moore558@gmail.com,rdmoore85,kmggt558,0
+60aaed13-18-05,1,5/18/2013 11:49,5/18/2013 11:49,Lowell,Fleenor,NULL,19263 wyndale rd.,NULL,Abingdon,24210,Lowell Fleenor,NULL,NULL,19263 wyndale rd.,NULL,Abingdon,24210,276-623-0993,NULL,magnus@embarqmail.com,magnus,marleyandbella,0
+0d173713-19-05,1,5/19/2013 0:45,5/19/2013 0:45,Raymond,Hunter,NULL,"13650 North Frontage Road, #152",NULL,Yuma,85367-7423,Raymond Hunter,NULL,NULL,"13650 North Frontage Road, #152",NULL,Yuma,85367-7423,720+849-7686,720-849-7686,rayehunter@hotmail.com,rayehunter@hotmail.com,1080752,1
+7831db13-19-05,1,5/19/2013 1:40,5/19/2013 1:40,Phillip,Cheek,NULL,6339 Dr Thomas Walker Rd,NULL,Rose Hill,24281,Phillip Cheek,NULL,NULL,6339 Dr Thomas Walker Rd,NULL,Rose Hill,24281,276-445-5157,NULL,Sgtcheek@msn.com,Sgtcheek@msn.com,5534512,1
+0629d813-19-05,1,5/19/2013 20:08,5/19/2013 20:08,Eric,Gillett,NULL,15595 E. Twp. Rd. 12,NULL,Attica,44807,Eric Gillett,NULL,NULL,15595 E. Twp. Rd. 12,NULL,Attica,44807,419-571-9302,419-571-9302,degillett@frontier.com,degillett@frontier.com,5011075,1
+e8e16a13-19-05,1,5/19/2013 21:20,7/3/2013 22:14,Agnes ,Herrera Quesada,Capt. Rosendo C. Herrera c/o Mr. Carmelo Delos Santos,213 North Ave.,NULL,Highwood,60040,Capt. Rosendo C. Herrera c/o Mr. Carmelo Delos Santos,NULL,NULL,213 North Ave.,NULL,Highwood,60040,6328256612,6.39175E+11,aaoriman@yahoo.com,agnes herrera quesada,rhsecretariat,0
+fada0d13-20-05,1,5/20/2013 22:29,6/19/2013 15:56,Peter ,Tucker,NULL,132 Jerusalem Avenue,NULL,Massapequa Park,11762-1701,Peter Tucker,NULL,NULL,132 Jerusalem Avenue,NULL,Massapequa Park,11762-1701,(516) 287-6385,(516) 287-6385,petucker@yahoo.com,Petucker@yahoo.com,jester195,0
+41a9f613-21-05,1,5/21/2013 9:27,5/21/2013 9:27,Daniel,Barston,NULL,15 Clark St,NULL,Auburn,01501-1743,Daniel Barston,NULL,NULL,15 Clark St,NULL,Auburn,01501-1743,508-792-0074,508-612-2952,dbarston@charter.net,DDGM24MA,Cornerstone01,0
+08f4e013-21-05,1,5/21/2013 11:15,10/6/2016 15:50,William,Chapman,NULL,77 Pascal Ave.,NULL,Rockport,4856,William Chapman,NULL,NULL,77 Pascal Ave.,NULL,Rockport,4856,207-236-2468,NULL,william.chapman77@earthlink.net,wchapman77,WBSEarp81t48,0
+05b3c413-21-05,1,5/21/2013 15:24,3/20/2016 17:27,Donald,MacCormick,NULL,17000 E. 44th Street,NULL,Independence,64055,Donald MacCormick,NULL,NULL,17000 E. 44th Street,NULL,Independence,64055,8168301396,NULL,dmaccormick@mac.com,dmaccormick,squid1320,0
+b1197c13-22-05,1,5/22/2013 9:23,5/22/2013 9:23,douglas,stanley,NULL,8156 rt 63 n,NULL,dansville,14437,douglas stanley,NULL,NULL,8156 rt 63 n,NULL,dansville,14437,5852454395,NULL,lurasboy@hotmail.com,lurasboy,roxy4878,0
+05d55613-22-05,1,5/22/2013 10:42,5/22/2013 10:42,Andrew,Smith,Retired Military,1506 S. Plaza Ave.,NULL,Springfield,65804,Andrew Smith,Retired Military,NULL,1506 S. Plaza Ave.,NULL,Springfield,65804,417-881-6287,NULL,andy4519@hotmail.com,andy4519,hpb1888s,0
+1360af13-22-05,1,5/22/2013 11:59,5/22/2013 11:59,William L.,"Mills, III","Mills Law, PA",P. O. Box 528,49 Means Avenue SE,Concord,28026-0528,"William L. Mills, III","Mills Law, PA",NULL,P. O. Box 528,49 Means Avenue SE,Concord,28026-0528,704-782-3315,704-305-1497,msna@millslaw.org,msna@millslaw.org,wlm0485,0
+9678fc13-24-05,1,5/24/2013 7:43,5/24/2013 7:43,Ellan ,Rice,Ellan Rice,3137 Ashford Square,NULL,Vero Beach,32966,Ellan Rice,Ellan Rice,NULL,3137 Ashford Square,NULL,Vero Beach,32966,7727942077,7723328511,ellanr@att.net,ellanr@att.net,7152688,1
+6cd1c513-24-05,1,5/24/2013 7:55,5/24/2013 7:55,Ellan,Rice,Ellan Rice,3137 Ashford Sq,NULL,Vero Beach,32966,Ellan Rice,Ellan Rice,NULL,3137 Ashford Sq,NULL,Vero Beach,32966,7727942077,7723328511,ellanr@att.net,ellanrice,anri6183,1
+1a1c9313-24-05,1,5/24/2013 13:26,5/24/2013 13:26,Jlander,Stevens Jr,NULL,3816 community,NULL,npn,44115,Jlander Stevens Jr,NULL,NULL,3816 community,NULL,npn,44115,757-405-1284,757-405-1284,jlanderjr1@gmail.com,jlanderjr1@gmail.com,9342421,1
+b0354b13-24-05,1,5/24/2013 18:07,5/24/2013 18:07,James,Plamondon,James Plamondon,10204 125 street NW,Suite 200,Edmonton,T5N1S9,James Plamondon,James Plamondon,NULL,10204 125 street NW,Suite 200,Edmonton,T5N1S9,7809032754,NULL,james_plamondon@hotmail.com,jimmyh15,legacy1,0
+1be5ca13-25-05,1,5/25/2013 21:01,5/25/2013 21:01,Michael,Christie,NULL,43600 Benson Park Road,NULL,Shawnee,74801,Michael Christie,NULL,NULL,43600 Benson Park Road,NULL,Shawnee,74801,4058781390,4058333666,funmath6@aol.com,ColCalculus,2013Summer!,0
+6afd7713-27-05,1,5/27/2013 14:18,5/27/2013 14:18,Michael,Mudrey,NULL,106 Ravine Road,NULL,Mount Horeb,53572,Michael Mudrey,NULL,NULL,106 Ravine Road,NULL,Mount Horeb,53572,6084373701,NULL,mgmudrey@mhtc.net,mgmudrey,radonone,0
+5d87e513-28-05,1,5/28/2013 14:31,5/28/2013 14:31,Ernie,Gelwicks,EG Outdoors,312 N Seton Ave,NULL,Emmitsburg,21727,Ernie Gelwicks,EG Outdoors,NULL,312 N Seton Ave,NULL,Emmitsburg,21727,301-447-2923,NULL,pegpalmbay@aol.com,pegpalmbay@aol.com,5419657,1
+7f212113-28-05,1,5/28/2013 15:06,5/7/2014 20:17,Douglas ,Collins,NULL,1520 Hillside Drive,NULL,Kamloops,V2E 1B1,Douglas Collins,NULL,NULL,1520 Hillside Drive,NULL,Kamloops,V2E 1B1,250-828-1760,250-319-6870,dougjc55@shaw.ca,dougjc55,countymayo,0
+98133913-01-06,1,6/1/2013 12:30,6/1/2013 12:30,Patricia,Hipsher,NULL,5297 Frisco Drive,NULL,Hilliard,43026,Patricia Hipsher,NULL,NULL,5297 Frisco Drive,NULL,Hilliard,43026,6147775742,6145884276,phipsher@columbus.rr.com,phipsher@columbus.rr.com,4617443,1
+bb16b013-01-06,1,6/1/2013 12:37,6/1/2013 12:37,Patricia,Hipsher,NULL,5297 Frisco Drive,NULL,Hilliard,43026,Patricia Hipsher,NULL,NULL,5297 Frisco Drive,NULL,Hilliard,43026,6147775742,6145884276,phipsher@columbus.rr.com,phipsher@columbus.rr.com,8422661,1
+d3c3ba13-01-06,1,6/1/2013 14:53,6/1/2013 14:53,Blair,Healy,Tinta Lodge No 116,PO Box 87,211 Hickory St,Langford,57454,Blair Healy,Tinta Lodge No 116,NULL,PO Box 87,211 Hickory St,Langford,57454,605-493-6738,605-228-6691,blairhealy@yahoo.com,blairhealy@yahoo.com,8823787,1
+fb50cd13-03-06,1,6/3/2013 14:01,6/3/2013 14:01,Keith,Dreier,Covington Scottish Rite,1553 Madison Avenue,NULL,Covington,41011,Keith Dreier,NULL,NULL,241 Colony Drive,NULL,Edgewood,41017,859-431-0021,513-607-3876,covsr@fuse.net,covsr@fuse.net,6787984,1
+3d8e7e13-03-06,1,6/3/2013 23:42,10/16/2014 8:42,Blake,Hansen,Brother Blake,58 North 750 East,NULL,American Fork,84043,Blake Hansen,Brother Blake,NULL,58 North 750 East,NULL,American Fork,84043,(801)7631897,(801)850-2434,brotherblake7@gmail.com,brotherblake,superEM323,0
+8121af13-04-06,1,6/4/2013 10:32,6/4/2013 10:32,Michael,Kolometz,NULL,1046 Ridge road,NULL,Lewiston,14092,Michael Kolometz,NULL,NULL,1046 Ridge road,NULL,Lewiston,14092,7167541433,7165315450,Michael@Kolometz.com,Michael@Kolometz.com,3742514,1
+1169b613-04-06,1,6/4/2013 11:29,6/4/2013 11:29,Steven,Koch,NULL,43 Robert Lane,NULL,Wappingers Falls,12590,Steven Koch,NULL,NULL,43 Robert Lane,NULL,Wappingers Falls,12590,845-298-2502,845-702-7430,stevenpkoch@aol.com,SPKoch,WL671spk,0
+56a87913-04-06,1,6/4/2013 15:45,6/10/2016 13:57,Bob,Reid,NULL,13600 Princeton Circle,NULL,Savage,55378,Bob Reid,NULL,NULL,13600 Princeton Circle,NULL,Savage,55378,612 428-4881,NULL,n0bhc@aol.com,N0BHCMason,Ruxton,0
+4db45913-05-06,1,6/5/2013 23:15,6/5/2013 23:15,Tracy,Chastain,NULL,1250 Bee Lane,NULL,Geneva,32732,Tracy Chastain,NULL,NULL,1250 Bee Lane,NULL,Geneva,32732,707-291-3913,NULL,tdchastain@yahoo.com,tdchastain@yahoo.com,9824474,1
+4b904d13-07-06,1,6/7/2013 14:33,6/7/2013 14:33,Chris,Germaine,NULL,1313 Water Street,NULL,Lumberton,28358,Chris Germaine,NULL,NULL,P.O. Box 1241,NULL,Fairmont,28340,910-374-5292,NULL,detcdg@yahoo.com,detcdg@yahoo.com,2344232,1
+2c462a13-10-06,1,6/10/2013 1:06,6/10/2013 1:06,Timothy,Kelley,NULL,P.O. Box 88764,NULL,Atlanta,30356,Timothy Kelley,NULL,NULL,P.O. Box 88764,NULL,Atlanta,30356,678-860-1901,NULL,timpatkel@yahoo.com,timpatkel@yahoo.com,9187468,1
+354d8413-11-06,1,6/11/2013 11:56,6/11/2013 13:52,Burx,Norrod,NULL,8072 Hilliard Dr.,NULL,Manassas,20109,Justin Matthews,NULL,NULL,112 Woodgate Ct.,NULL,Sterling,20164,7038618807,7038618807,burx@live.com,burxnorrod,jeanie76,0
+ab4d0113-11-06,1,6/11/2013 15:14,6/11/2013 15:14,Charles,Rogers,NULL,209 Chandra Way,NULL,Hinesville,31313,Charles Rogers,NULL,NULL,209 Chandra Way,NULL,Hinesville,31313,9123692309,9123692309,crmfrogers@clds.net,crmfrogers@clds.net,7171474,1
+9073f113-12-06,1,6/12/2013 13:10,6/12/2013 13:10,Bill,Goldwire,NULL,97189 Eagle Ln,NULL,Yulee,32097,Bill Goldwire,NULL,NULL,97189 Eagle Ln,NULL,Yulee,32097,9042616226,NULL,gbill1111@gmail.com,gbill1111@gmail.com,1553828,1
+f179fd13-12-06,1,6/12/2013 16:06,6/12/2013 16:06,Gary S,Yost,NULL,610 Sunset Dr,NULL,Salisbury,28147,Gary S Yost,NULL,NULL,610 Sunset Dr,NULL,Salisbury,28147,704-555-5555,NULL,gyost1@carolina.rr.com,gyost1@carolina.rr.com,1356070,1
+3516db13-12-06,1,6/12/2013 17:30,6/12/2013 17:30,James,Harvey,NULL,3114 Robinwood Drive,NULL,Taylorsville,84129,James Harvey,NULL,NULL,3114 Robinwood Drive,NULL,Taylorsville,84129,8018401770,NULL,WyomingGeezer@gmail.com,WyomingGeezer@gmail.com,8193310,1
+9010b313-13-06,1,6/13/2013 10:33,6/13/2013 10:33,paul,tourville,NULL,n62w28562 rybeck road,NULL,hartland,53029,paul tourville,NULL,NULL,n62w28562 rybeck road,NULL,hartland,53029,414-615-4955,414-659-5205,pttourville@gmail.com,pttourville@gmail.com,6346762,1
+a5c82713-13-06,1,6/13/2013 17:46,6/19/2013 15:20,George,Ingles,Grand Lodge,3601 N. Vienna Woods Dr.,NULL,Muncie,47304,George Ingles,Grand Lodge,NULL,3601 N. Vienna Woods Dr.,NULL,Muncie,47304,765-284-1557,317-417-2952,ginglespgc@comcast.net,ginglespgc,ra15674,0
+72d95413-14-06,1,6/14/2013 12:07,6/14/2013 12:07,Christopher,Key,NULL,4122 Moody Pkwy,NULL,Moody,35004,Christopher Key,NULL,NULL,4122 Moody Pkwy,NULL,Moody,35004,2052752243,2052752243,medic115@windstream.net,medic115,fender01,0
+00c2af13-14-06,1,6/14/2013 13:16,6/14/2013 13:16,Steven,Tiner,NULL,16 Cliffwood Circle,NULL,North Little Rock,72118,Steven Tiner,Levy Baptist Church,NULL,3501 Pike Avenue,NULL,North Little Rock,72118,5017537347,NULL,steventiner@levybaptist.com,steventiner@levybaptist.com,3418752,1
+ae007c13-14-06,1,6/14/2013 15:34,6/14/2013 15:34,Jessica,Cruey,NULL,2548 NC Hwy 45 S,NULL,Colerain,27924,Jessica Cruey,NULL,NULL,2548 NC Hwy 45 S,NULL,Colerain,27924,2523564467,NULL,jaroll@centurylink.net,jaroll@centurylink.net,2553745,1
+84fd1113-14-06,1,6/14/2013 17:38,6/14/2013 17:38,Harold,Birt,Harold Birt,47 Beech St.,NULL,East Millinocket,4430,Harold Birt,Harold Birt,NULL,47 Beech St.,NULL,East Millinocket,4430,207-746-3020,NULL,halbirt@yahoo.com,halbirt,Schenck69,0
+ba27b613-14-06,1,6/14/2013 22:08,6/16/2013 14:13,arnold w.,appelt,NULL,1117 western ave,NULL,brookings,57006,arnie appelt,NULL,NULL,1844 county rd 120 ne,NULL,alexandria,56308,6056976784,NULL,arcin@swiftel.net,arcin@swiftel.net,9463984,1
+58601b13-14-06,1,6/14/2013 22:24,6/14/2013 22:24,Oscar,Fielder,NULL,343 Lemay Trail,NULL,Jacksonville,72076,Oscar Fielder,NULL,NULL,343 Lemay Trail,NULL,Jacksonville,72076,5019828323,5019828323,otfielder@yahoo.com,otfielder@yahoo.com,2125687,1
+6d962013-14-06,1,6/14/2013 22:25,6/14/2013 22:25,Oscar,Fielder,NULL,343 Lemay Trail,NULL,Jacksonville,72076,Oscar Fielder,NULL,NULL,343 Lemay Trail,NULL,Jacksonville,72076,5019828323,5019828323,otfielder@yahoo.com,otfielder@yahoo.com,4471396,1
+25a4de13-15-06,1,6/15/2013 13:22,6/15/2013 13:22,Jeffrey,Chan,Jeffrey Chan,220 Oak Ave,NULL,River Edge,07661-1028,Jeffrey Chan,Jeffrey Chan,NULL,220 Oak Ave,NULL,River Edge,07661-1028,2014877524,2017237422,jchan11918@msn.com,JRC692WLD,LewHing,1
+50e29113-15-06,1,6/15/2013 16:01,6/15/2013 16:01,J.J.,Fontana,NULL,3520 Indiana Ave,NULL,Baker City ,97814,J.J. Fontana,NULL,NULL,3520 Indiana Ave,NULL,Baker City ,97814,541.524.9515,NULL,joesan62@hotmail.com,joesan62@hotmail.com,6816849,1
+00d4ae13-15-06,1,6/15/2013 17:31,6/15/2013 17:31,peter,guerry,NULL,183 gray squirrel ln,NULL,newport,28570,peter guerry,NULL,NULL,183 gray squirrel ln,NULL,newport,28570,2522235868,NULL,pguerry@aol.com,pguerry@aol.com,6517331,1
+24c97013-16-06,1,6/16/2013 2:00,6/16/2013 2:00,Ryan E,Reid,NULL,2243 Russell Dr,NULL,Iowa City,52240,Ryan E Reid,NULL,NULL,2243 Russell Dr,NULL,Iowa City,52240,3195042836,NULL,ryanereid@gmail.com,ryanereid,master2010,0
+23390413-16-06,1,6/16/2013 10:15,3/11/2014 11:35,Robert,Judah II,R. E. Judah II,P. O. Box 192,NULL,Fairland,46126,Robert Judah II,R. E. Judah II,NULL,P. O. Box 192,NULL,Fairland,46126,317-835-2904,NULL,docjudah3@sbcglobal.net,docjudah,tschudi1,0
+ec972b13-16-06,1,6/16/2013 17:32,6/16/2013 17:32,gary,solberg,NULL,1229 78 st,NULL,NY,11228,gary solberg,NULL,NULL,1229 78 st,NULL,NY,11228,7188365972,7188365972,grsolberg@verizon.net,solberg,janice,0
+24c7cf13-16-06,1,6/16/2013 19:23,6/16/2013 19:23,Ronald,Murphy,NULL,po box 6093,NULL,Hermon,4402,Ronald Murphy,NULL,NULL,po box 6093,NULL,Hermon,4402,2078485462,2079441518,ronmasonic08@roadrunner.com,ronmasonic08@roadrunner.com,3509680,1
+a1c39213-16-06,1,6/16/2013 23:57,6/16/2013 23:57,Dale,Sirkle,NULL,11395 aspen dr,NULL,plymouth,48170,Dale Sirkle,NULL,NULL,11395 aspen dr,NULL,plymouth,48170,7344594143,7344594143,dsirkle@gmail.com,dsirkle@gmail.com,9713324,1
+3ec69813-17-06,1,6/17/2013 7:34,6/17/2013 7:34,Daniel,Enyart,NULL,479 Kelsall Drive,NULL,Richmond Hill,31324,Daniel Enyart,NULL,NULL,479 Kelsall Drive,NULL,Richmond Hill,31324,678-829-1205,NULL,daniel.enyart@us.army.mil,daniel.enyart@us.army.mil,2588148,1
+a2e92e13-17-06,1,6/17/2013 9:37,6/17/2013 9:37,Charles,Anderson,NULL,6926 Dale Dr. Unit 12,NULL,Racine,53402,Charles Anderson,NULL,NULL,6926 Dale Dr. Unit 12,NULL,Racine,53402,262-939-8747``,NULL,cnj59@wi.rr.com,cnj59@wi.rr.com,5693118,1
+b7775813-17-06,1,6/17/2013 13:23,8/27/2016 10:16,William,Sexton,"Secretary, Etowah Masonic Lodge #222",Dawsonville,United States,GEORGIA,30534,William Sexton,"Secretary, Etowah Masonic Lodge #222",NULL,Dawsonville,United States,GEORGIA,30534,6789369368,6789369368,shadow1@windstream.net,shadow1,wd4000,0
+677bb313-17-06,1,6/17/2013 15:44,6/17/2013 15:44,deborah,murray,NULL,PO Box 745,NULL,Knightdale,27545,Debbie Murray,NULL,NULL,109 S Smithfield Rd,NULL,Knightdale,27545,9192663584,NULL,dog5murray@gmail.com,dog5murray@gmail.com,9948696,1
+a6d18713-17-06,1,6/17/2013 16:47,6/17/2013 16:47,Douglas,Adams,Doug Adams,30 Woodland Dr.,NULL,Carmel,10512,Doug Adams,NULL,NULL,30 woodland Dr.,NULL,Carmel,10512,8452229434,8452229434,dda21@verizon.net,dwa82360,mason368,0
+2bc02c13-17-06,1,6/17/2013 18:54,10/1/2016 14:29,Clarence,Tucker,NULL,4 Johnson Road,NULL,LaGrangeville,12540-5708,Clarence Tucker,NULL,NULL,4 Johnson Road,NULL,LaGrangeville,12540-5708,(845)223-5476,n/a,LarryTucker@optimum.net,LarryTucker,lrrytckr1946,0
+22d6d613-17-06,1,6/17/2013 19:47,6/17/2013 19:48,Don,Robinett,Don Robinett PGM,651 Highway 28,NULL,Randall,66963,Don Robinett,Don Robinett PGM,NULL,651 Highway 28,NULL,Randall,66963,785-739-2468,785-738-0277,donrob@nckcn.com,Don Robinett,D8864R,1
+d357f313-17-06,1,6/17/2013 22:42,6/17/2013 22:42,James ,Barron,NULL,17 Squiresgate Rd ,NULL,Hilton Head Island ,29926,James Barron,NULL,NULL,17 Squiresgate Rd ,NULL,Hilton Head Island ,29926,8433415513,NULL,Jbalone@aol.com,Jbalone@aol.com,5454068,1
+d9e4b013-18-06,1,6/18/2013 9:25,6/18/2013 9:25,Tom,Ostrander,NULL,118 N. Hoopes Ave.,NULL,Auburn,13021,Tom Ostrander,NULL,NULL,118 N. Hoopes Ave.,NULL,Auburn,13021,3152533320,3152533320,tomo7948@roadrunner.com,tomo7948@roadrunner.com,3386416,1
+7ebbc513-18-06,1,6/18/2013 13:28,6/18/2013 13:28,Richard,Bradbury,NULL,5874 Lexington Drive,NULL,Pipersville,18947,Richard Bradbury,NULL,NULL,5874 Lexington Drive,NULL,Pipersville,18947,215-852-3532,215-852-3532,rhbradbury@verizon.net,rhbradbury@verizon.net,5008418,1
+c75e5513-19-06,1,6/19/2013 11:19,6/19/2013 11:19,Tim,Barthels,Tim Barthels,538 Forest Blvd,NULL,Sheboygan Falls,53085,Tim,Barthels,NULL,538 Forest Blvd,NULL,Sheboygan Falls,53085,920-980-2157,NULL,timbarthels@charter.net,timbarthels@charter.net,2571093,1
+7b1bdc13-19-06,1,6/19/2013 12:45,6/19/2013 12:45,Fred,Timm,NULL,41763 Vardon Dr,NULL,Temecula,92591-3950,Fred Timm,NULL,NULL,41763 Vardon Dr,NULL,Temecula,92591-3950,951-587-2618,909-731-1382,ffnt3@verizon.net,122746,CaBo91,0
+2e86b213-19-06,1,6/19/2013 13:17,6/19/2013 13:17,Walt,Wheeler,Michigan Masonic Charitable Foundation,1200 Wright Ave. ,NULL,Alma,48801,Walt Wheeler,Michigan Masonic Museum & Library,NULL,233 E. Fulton St.,NULL,Grand Rapids,49503,989 466-4339,616 262-9406,w.wheeler@comcast.net,wfwheeler,wheaton1,0
+36dd4a13-19-06,1,6/19/2013 15:33,6/19/2013 15:33,Roy,Weingarten,NULL,9205 Meade St.,NULL,Westminster,80031,Roy F. Weingarten,NULL,NULL,9205 Meade St.,NULL,Westminster,80031,303-426-8006,303 426-8006,rfwein@mac.com,rfwein@mac.com,rag2tag,0
+1a703d13-19-06,1,6/19/2013 20:24,11/24/2014 19:43,Robert,Bigelow,none,4420 Carmel Drive,NULL,Cheyenne,82009,Robert Bigelow,none,NULL,4420 Carmel Drive,NULL,Cheyenne,82009,3076384056,NULL,robertj_bigelow@msn.com,robroy87,Night1926Hawk,0
+70517713-19-06,1,6/19/2013 20:44,6/19/2013 20:44,Eric,Sergeant,NULL,128 North 13th Street,#504,Lincoln,68508,Eric Sergeant,NULL,NULL,128 North 13th Street,#504,Lincoln,68508,xxxxxxxxxx,4027707960,sibilantstar@yahoo.com,sibilantstar@yahoo.com,2229385,1
+23099613-19-06,1,6/19/2013 23:16,6/19/2013 23:16,William,Turner,NULL,5264 S Lisbon Way,NULL,Centennial,80017,William Turner,NULL,NULL,5264 S Lisbon Way,NULL,Centennial,80017,7208707030,7202815997,execextremellc@msn.com,turnerwi,(67M#Mts),0
+0b521c13-20-06,1,6/20/2013 7:36,6/20/2013 7:36,Artemas,Coffin,NULL,P.O.Box 42,251 Masardis Rd.,Ashland,04732-0042,Artemas Coffin,NULL,NULL,P.O.Box 42,251 Masardis Rd.,Ashland,04732-0042,207-435-6955,207-227-7993,aocash@me.com,artie123,frostypaws,0
+5a398313-20-06,1,6/20/2013 15:43,6/20/2013 15:43,robert,eckbreth,Lodge 45,4915 lougean ave,NULL,pittsburgh,15207,robert eckbreth,Lodge 45,NULL,4915 lougean ave,NULL,pittsburgh,15207,412-461-1936,412-726-0047,lemoyne@comcast.net,lemoyne,re5419,0
+9d9fab13-20-06,1,6/20/2013 19:50,6/20/2013 19:50,Eric,Sergeant,NULL,128 North 13th Street,#504,Lincoln,68508,Eric Sergeant,NULL,NULL,128 North 13th Street,#504,Lincoln,68508,xxxxxxxxxx,4027707960,sibilantstar@yahoo.com,sibilantstar@yahoo.com,4885312,1
+30120213-20-06,1,6/20/2013 22:48,6/20/2013 22:48,Eric,Sergeant,NULL,128 North 13th Street,#504,Lincoln,68508,Eric Sergeant,NULL,NULL,128 North 13th Street,#504,Lincoln,68508,xxxxxxxxxx,4027707960,sibilantstar@yahoo.com,sibilantstar@yahoo.com,8058773,1
+af1be213-21-06,1,6/21/2013 5:46,4/27/2016 6:28,Stephen,Inzer,NULL,445 Shelmire Rd,NULL,Downingtown,19335,Stephen Inzer,NULL,NULL,445 Shelmire Rd,NULL,Downingtown,19335,610-873-4802,NULL,seinzer@yahoo.com,seinzer@yahoo.com,7CY2seXGvk,0
+15f77713-21-06,1,6/21/2013 14:49,6/21/2013 14:49,Lawrence,Inglis,NULL,42707 N. Crawford Road,NULL,Antioch,60002,Lawrence Inglis,NULL,NULL,42707 N. Crawford Road,NULL,Antioch,60002,847-395-9442,NULL,inglis33@gmail.com,inglis33@gmail.com,2251329,1
+f78eb513-21-06,1,6/21/2013 22:07,6/21/2013 22:07,John,O'Hara,NULL,58636 Javelina Ln,NULL,Kearny,85137-4000,John O'Hara,NULL,NULL,58636 Javelina Ln,NULL,Kearny,85137-4000,520-363-9824,520-357-4313,johnohara@cnsiwireless.net,johnohara@cnsiwireless.net,9976342,1
+d7baf913-22-06,1,6/22/2013 15:01,6/22/2013 15:01,Larry,Derr,NULL,715 Terrace Ave.,NULL,Mount Joy,17552,Larry Derr,NULL,NULL,715 Terrace Ave.,NULL,Mount Joy,17552,717-653-1246,717-329-4221,luke715@comcast.net,LarryD,BlueLodge1,0
+a0787913-22-06,1,6/22/2013 17:46,6/22/2013 17:46,Robert,Grunin,NULL,32 Myerson Lane,NULL,Newton,2459,Robert Grunin,NULL,NULL,32 Myerson Lane,NULL,Newton,2459,617-244-2098,NULL,robert_grunin@yahoo.com,robert_grunin@yahoo.com,7474750,1
+8dae1c13-22-06,1,6/22/2013 21:11,6/22/2013 21:11,DONALD H,GAGE,NULL,25583 CROSS STREET,NULL,SAN BERNARDINO,92404-5620,DONALD H GAGE,NULL,NULL,25583 CROSS STREET,NULL,SAN BERNARDINO,92404-5620,9096484597,9096484597,gagehaus@peoplepc.com,gagehaus@peoplepc.com,1174693,1
+c1cc2513-23-06,1,6/23/2013 9:32,6/23/2013 9:32,Larry,Derr,NULL,715 Terrace Avenue,NULL,Mount Joy,17552,Larry Derr,NULL,NULL,715 Terrace Avenue,NULL,Mount Joy,17552,717-653-1246,717-329-4221,luke715@comcast.net,luke715@comcast.net,3170327,1
+7c88b913-23-06,1,6/23/2013 20:57,8/4/2015 12:44,Jason,Crowder,NULL,10606 NE Skidmore St,NULL,Portland,97220,Jason Crowder,NULL,NULL,10606 NE Skidmore St,NULL,Portland,97220,503-866-6743,503-866-6743,losthermit@gmail.com,losthermit,atlkvbd00,0
+2c67a613-24-06,1,6/24/2013 9:41,6/24/2013 9:41,Bill,Moser,NULL,5499 Las Palmas,NULL,Las Cruces,88007,Bill Moser,NULL,NULL,5499 Las Palmas,NULL,Las Cruces,88007,5755243383,NULL,bands5499@msn.com,bands5499@msn.com,5548263,1
+37d19b13-25-06,1,6/25/2013 9:20,6/25/2013 9:20,Robert,Wiley,NULL,3186 Lander Road NW,NULL,Malvern,44644,Robert Wiley,NULL,NULL,3186 Lander Road NW,NULL,Malvern,44644,330-476-9221,NULL,bob@bobwiley.net,rhwiley,carrollton1987,0
+22dc1213-26-06,1,6/26/2013 12:40,6/26/2013 12:40,Jamshed,Ghadiali,NULL,2686 Belcher St,NULL,Baldwin,11510-3937,Jamshed Ghadiali,NULL,NULL,2686 Belcher St,NULL,Baldwin,11510-3937,516 965-9675,NULL,ghad@optonline.net,ghad@optonline.net,7991501,1
+5824e513-26-06,1,6/26/2013 13:42,6/26/2013 13:42,JOSEPH,BOHNER,NULL,HOLGATE,United States,Ohio,43527,Joe Bohner,NULL,NULL,739 Chicago Ave,Ohio,Holgate,43527,4192640005,4192640005,carlsson43@msn.com,carlsson43,karlsboy43,0
+6b3a8c13-26-06,1,6/26/2013 16:14,6/26/2013 16:14,Sherrill,Baker,NULL,32 Snuggs Circle,NULL,Mayflower,72106,Sherrill Baker,NULL,NULL,32 Snuggs Circle,NULL,Mayflower,72106,501-470-0410,501-472-4677,bakersherrill@hotmail.com,bakersherrill@hotmail.com,6313304,1
+e50be313-26-06,1,6/26/2013 20:32,6/26/2013 20:32,John,Rose Jr,NULL,207 Big Road,POBox 91,Zieglerville,19492,John Rose Jr,NULL,NULL,207 Big Road,POBox 91,Zieglerville,19492,6102878773,6105479566,jarosejr@aol.com,jarosejr,aboz+BOAZ,0
+4c8ff313-26-06,1,6/26/2013 21:55,6/26/2013 21:55,Kent,Lyon,NULL,39 Erie ave,NULL,Dayton,45410,Kent Lyon,NULL,NULL,39 Erie ave,NULL,Dayton,45410,937-253-6266,NULL,Kcl.masonic@sbcglobal.net,Kcl.masonic@sbcglobal.net,7709861,1
+c9be6413-26-06,1,6/26/2013 21:58,6/26/2013 21:58,Michael ,Malloy,NULL,291 Blackswoods Road,NULL,Freedom,15042,Michael Malloy,NULL,NULL,291 Blackswoods Road,NULL,Freedom,15042,724 371 0388,NULL,mlm903@comcast.net,mlm09031935,sall0521,0
+4a8e0713-27-06,1,6/27/2013 9:14,6/27/2013 9:19,Owen,Walton,NULL,69 Edgecombe Crescent,NULL,Dartmouth,B2V2A7,Larry Gullett,NULL,NULL,32 Sioux Avenue,NULL,Nashua,3063,902-462-6645,NULL,owalton@ns.sympatico.ca,owalton,tummybird8,0
+64b0e913-27-06,1,6/27/2013 10:32,6/27/2013 10:32,Tom,Turner,NULL,340 W. St. Joseph Street #3,NULL,Green Bay,54301,Tom Turner,NULL,NULL,340 W. St. Joseph Street #3,NULL,Green Bay,54301,920*217-8440,920*217-8440,tturner5@new.rr.com,tturner5@new.rr.com,2019601,1
+9a2bb513-27-06,1,6/27/2013 12:34,6/27/2013 12:34,alfred,shikany,NULL,3534 principio av,NULL,cincinnati,45208,alfred shikany,NULL,NULL,N4508 State Highway M35,NULL,Menominee,49858,5133211494,5133211494,alfred.shikany@gmail.com,alfred.shikany@gmail.com,9520493,1
+dc71b713-27-06,1,6/27/2013 20:41,6/27/2013 20:41,Thomas,Muncy,Thomas Muncy,142 Manhattan Avenue,NULL,Oak Ridge,37830,Thomas Muncy,Thomas Muncy,NULL,142 Manhattan Avenue,NULL,Oak Ridge,37830,865-482-4123,NULL,tmuncy@comcast.net,tom muncy,newton,0
+88776913-28-06,1,6/28/2013 9:36,6/28/2013 9:36,Dan,Kemble,NULL,1540 St. Clair Street,NULL,Covington,41011,Dan Kemble,NULL,NULL,1540 St. Clair Street,NULL,Covington,41011,8598013095,NULL,dkemble@fbtlaw.com,dkemble@fbtlaw.com,2106007,1
+25607e13-28-06,1,6/28/2013 12:18,7/2/2013 19:32,Louis,Devillon,NULL,1573 Smith Mountain Road,NULL,Rockwood,37854,Louis Devillon,NULL,NULL,1573 Smith Mountain Road,NULL,Rockwood,37854,8653548367,NULL,ldevillon@gmail.com,ldevillon@gmail.com,2920344,1
+4cb88e13-28-06,1,6/28/2013 16:20,6/30/2013 14:48,Ben,Bulluck,"Benjamin J. Bulluck, Jr.",808 Joshua Clay Drive,NULL,Rocky Mount,27803-1547,Ben Bulluck,NULL,NULL,808 Joshua Clay Drive,NULL,Rocky Mount,27803-1547,252-977-1232,252-883-1757,bjbulluckjr@suddenlink.net,bjbulluckjr@suddenlink.net,2629016,1
+1009c713-30-06,1,6/30/2013 9:57,6/30/2013 9:57,Dieter ,Hees,NULL,700 Vassar Ave,Suite 3,Lakewood,8701,Dieter Hees,NULL,NULL,700 Vassar Ave,Suite 3,Lakewood,8701,732-300-4860,732-300-4860,dieterhees@yahoo.com,dieterhees@yahoo.com,9642431,1
+d50d0f13-30-06,1,6/30/2013 11:00,6/30/2013 11:00,CARLO,SALAS,NULL,15924 KATIE RIDGE DR,NULL,EDMOND,73013,CARLO SALAS,NULL,NULL,15924 KATIE RIDGE DR,NULL,EDMOND,73013,405-8085446,405-80854465,ccdsalas@yahoo.com,ccdsalas@yahoo.com,6454068,1
+95396d13-30-06,1,6/30/2013 11:46,6/30/2013 11:46,Blake,Northington,NULL,18 County Road 17,NULL,Dennis,38838,Blake Northington,NULL,NULL,18 County Road 17,NULL,Dennis,38838,662-279-0495,NULL,Bnorthington_06@live.com,Bnorthington_06@live.com,5078558,1
+0992fa13-30-06,1,6/30/2013 15:23,6/30/2013 15:23,Dishan,Panchal,asdf,45 Fremont Street,Suite 2000,San Francisco,94105,Dishan Panchal,asdf,NULL,45 Fremont Street,Suite 2000,San Francisco,94105,800-200-2000,NULL,dishanp@gmail.com,dishanp@gmail.com,9532422,1
+e0346913-30-06,1,6/30/2013 15:57,6/30/2013 15:57,Randy,Cassetty,NULL,PO BOX 46,NULL,VEGA,79092,Randy Cassetty,NULL,NULL,PO BOX 46,NULL,VEGA,79092,8062672786,8062672786,cassetty3@aol.com,cassetty3@aol.com,6130533,1
+dbf10a13-30-06,1,6/30/2013 19:11,6/30/2013 19:11,Larry,Britton,NULL,1075 Crestview Drive,NULL,Troy,45373,Larry Britton,NULL,NULL,1075 Crestview Drive,NULL,Troy,45373,937-573-6077,NULL,larry.britton@gmail.com,lbritton1075,frodo7,0
+19d7ae13-30-06,1,6/30/2013 19:18,6/24/2015 23:10,Richard ,Maag,Masonic Temple Association Company of Sandusky,304 Wayne Street,NULL,Sandusky,44870,Richard Maag,Masonic Temple association Company of Sandusky,NULL,1104 Wayne Street,NULL,Sandusky,44870,4196255168,NULL,mooraker@aol.com,mooraker@aol.com,2Schooner,0
+fc84d713-01-07,1,7/1/2013 7:25,9/24/2013 18:49,Mark,Spear,NULL,13126 W. Picadilly St.,NULL,Boise,83713,Mark Spear,NULL,NULL,13126 W. Picadilly St.,NULL,Boise,83713,6035455452,6035455452,markspear@reagan.com,markaspear,sinjin3211,0
+53d0a613-01-07,1,7/1/2013 16:18,7/1/2013 16:18,Brian,Finger,NULL,27 Cambria Road,NULL,Syosset,11791,Brian Finger,NULL,NULL,27 Cambria Road,NULL,Syosset,11791,516-872-2892,516-906-2230,Brianfinger@gmail.com,brianfinger,Server45,0
+52364213-01-07,1,7/1/2013 16:19,7/1/2013 16:19,Steven,Tiner,NULL,16 Cliffwood Circle,NULL,North Little Rock,72118,Steven Tiner,Levy Baptist Church,NULL,3501 Pike Avenue,NULL,North Little Rock,72118,5017537347,NULL,office@levybaptist.com,office@levybaptist.com,3651816,1
+ce611213-01-07,1,7/1/2013 16:59,7/1/2013 16:59,David,Larsen,NULL,501 Dogwood Ave.,NULL,Marshall,56258-2416,David Larsen,NULL,NULL,501 Dogwood Ave.,NULL,Marshall,56258-2416,507-532-4826,507-829-5075,dave.larsen@zieglercat.com,dave.larsen@zieglercat.com,9630140,1
+31e41813-01-07,1,7/1/2013 19:43,7/1/2013 19:43,Jack D.,Chasteen,Bellwood Nursing Center,105 Eastern Ave.,NULL,Bellwood,60140,Jack D. Chasteen,NULL,NULL,2297 Club House Ave.,NULL,Naperville,60563-1795,630-305-8927,NULL,DDGHP_Jackchasteen@comcast.net,Buckeyejack,PIKC-MSA71,0
+544b2a13-02-07,1,7/2/2013 8:46,7/2/2013 8:46,Stan,Bennett,NULL,2118 SE Hemlock,NULL,Blue Springs,64014,Stan Bennett,NULL,NULL,2118 SE Hemlock,NULL,Blue Springs,64014,8162951029,NULL,swingmanstan@yahoo.com,swingmanstan,Washington614,0
+0ca12213-02-07,1,7/2/2013 10:15,7/2/2013 10:15,Ronald,Reed,NULL,180 Van Buskirk Rd,NULL,Teaneck,7666,Ronald Reed,NULL,NULL,180 Van Buskirk Rd,NULL,Teaneck,7666,2018331712,2017099608,doubler826@yahoo.com,doubler826@yahoo.com,4408447,1
+0191d813-02-07,1,7/2/2013 10:41,7/2/2013 10:41,Brian,Dodson,NULL,2707 Lakeside Village,NULL,Missouri City,77459,Brian Dodson,NULL,NULL,2707 Lakeside Village,NULL,Missouri City,77459,281-340-8823,281-844-5747,brdodson33@aol.com,brdodson33@aol.com,2662922,1
+92522c13-02-07,1,7/2/2013 10:56,7/3/2013 10:22,Joseph,Daniels,NULL,7680 Highland Drive,NULL,Gasport,14067,Joseph Daniels,NULL,NULL,7680 Highland Drive,NULL,Gasport,14067,716-772-2538,716-863-1521,danjoe707@aol.com,supertech,8587076,0
+636f2d13-02-07,1,7/2/2013 17:51,7/10/2013 13:20,Jack,Gillis,NULL,4000 Sigma Rd.,Apt. 7102,Dallas,75244,Jack Gillis,NULL,NULL,4000 Sigma Rd.,Apt. 7102,Dallas,75244,214-718-4910,214-718-4910,Jackcgillis@gmail.com,jackgillis,59565956,0
+8723b913-03-07,1,7/3/2013 16:31,7/3/2013 16:31,Jim,Morehead,NULL,2788 Morning Star,NULL,Benton,72015,Jim Morehead,NULL,NULL,2788 Morning Star,NULL,Benton,72015,5013154472,5015909430,jim_morehead@att.net,jim_morehead@att.net,9533986,1
+63541813-03-07,1,7/3/2013 23:58,7/3/2013 23:58,Miguel,Gomez,NULL,6714 Branca Way,NULL,Elk Grove,95757,Miguel Gomez,NULL,NULL,6714 Branca Way,NULL,Elk Grove,95757,916.205.1289,916.205.1289,third.degree357@gmail.com,primegem,6714Branca,0
+90d8aa13-04-07,1,7/4/2013 12:26,7/4/2013 12:26,Daniel,Ragsdale,n/a,9203 Standing Creek Ln.,NULL,San Antonio,78230,Daniel Ragsdale,n/a,NULL,9203 Standing Creek Ln.,NULL,San Antonio,78230,210 344 2784,n/a,drags0241@sbcglobal.net,drags0241@sbcglobal.net,8283607,1
+548e4d13-04-07,1,7/4/2013 12:43,7/4/2013 12:43,James,Finnegan,NULL,940 Fenton Lane,Unit 14,Lakeland,33809,James Finnegan,NULL,NULL,940 Fenton Lane,Unit 14,Lakeland,33809,863895850,NULL,jimfinnegan@me.com,jim999,alp999,0
+a1bedf13-04-07,1,7/4/2013 15:37,7/4/2013 15:37,Emmanuel,Hires,Emmanuel Hires,17320 N W Angle St,NULL,Blountstown,32424,Emmanuel Hires,Emmanuel Hires,NULL,17320 N W Angle St,NULL,Blountstown,32424,850-674-5710,NULL,elhires@fairpoint.net,manuelhires,h8bra46,0
+fa9e0213-05-07,1,7/5/2013 4:44,7/5/2013 4:44,carmelo ,delos santos,oriental shipmanagement,"highwood, illinois",NULL,chicago,60601,carmelo delos santos,oriental shipmanagement,NULL,"highwood, illinois",NULL,chicago,60601,6.39178E+11,NULL,aaoriman@yahoo.com,aaoriman@yahoo.com,9975127,1
+f868cf13-05-07,1,7/5/2013 13:01,7/5/2013 13:01,Ian,McDONELL,NULL,11 Cobblestone Court,NULL,Fort Saskatchewan,T8L 4E1,Ian McDONELL,NULL,NULL,11 Cobblestone Court,NULL,Fort Saskatchewan,T8L 4E1,780-998-7237,780-721-9701,glengarry@shaw.ca,Glengarry,Traffic1,0
+46e30013-05-07,1,7/5/2013 20:58,7/5/2013 20:58,thomas r,gillespie jr,NULL,229 cimarron,NULL,elkhart,67950,thomas r gillespie jr,NULL,NULL,229 cimarron,NULL,elkhart,67950,6206972496,6203604653,tcgil@elkhart.com,tcgil@elkhart.com,9428148,1
+16384213-06-07,1,7/6/2013 5:33,3/3/2014 18:04,James,Reed,NULL,203 Yale Drive,NULL,Tullahoma,37388-5638,James Reed,NULL,NULL,203 Yale Drive,NULL,Tullahoma,37388-5638,931.455.5023,931.581.6181,srmason@charter.net,jimareed,vigil1994,0
+3c6aca13-06-07,1,7/6/2013 8:20,7/6/2013 8:20,John,Kerry,Zodno,2011 Dalls Street,Suite 1001,Glen Arbor,49636,John Kerry,Zodno,NULL,2011 Dalls Street,Suite 1001,Glen Arbor,49636,732-635-9527,NULL,john.kerry@est.com,john.kerry@est.com,7871392,1
+73adb113-06-07,1,7/6/2013 8:21,7/6/2013 8:22,John,Kerry,Zodno,2011 Dalls Street,Suite 1001,Glen Arbor,49636,John Kerry,Zodno,NULL,2011 Dalls Street,Suite 1001,Glen Arbor,49636,732-635-9527,NULL,john.kerry@est.com,john.kerry@est.com,8880481,1
+2c067f13-06-07,1,7/6/2013 11:37,7/6/2013 11:37,joel,rich,NULL,po box 225884,NULL,dallas,75222,joel rich,NULL,NULL,po box 225884,NULL,dallas,75222,2142219536,NULL,joel.rich@att.net,joel.rich@att.net,1421918,1
+6c15b013-06-07,1,7/6/2013 15:03,7/10/2013 21:36,David,Varnicle,NULL,PO Box 124,NULL,Mifflintown,17059,David Varnicle,NULL,NULL,3688 William Penn Hwy.,NULL,Mifflintown,17059,717-319-1015,NULL,varnicle@hotmail.com,stavern,dstavern12,0
+99c87713-07-07,1,7/7/2013 8:30,7/7/2013 8:31,B. Daniel,Bishop,NULL,1571 Marett Blvd Ext,NULL,Rock Hill,29732,B. Daniel Bishop,NULL,NULL,1571 Marett Blvd Ext,NULL,Rock Hill,29732,3262051,8035178905,jethro1@comporium.net,barneybishop,smokeyone,0
+5797fc13-10-07,1,7/10/2013 0:39,7/10/2013 0:39,Rey,Santaanadent,NULL,7694 lisbon pl unit#2,NULL,rancho cucamonga,91739,Rey Santaanadent,NULL,NULL,7694 lisbon pl unit#2,NULL,rancho cucamonga,91739,909-803-8055,818-203-4171,dentrey@yahoo.com,reydent,bendog1818,0
+d3cf9113-10-07,1,7/10/2013 13:05,7/10/2013 13:05,Ernest,Webster,NULL,1270 Wright Dr.,NULL,Albert Lea,56007,Ernest Webster,NULL,NULL,1270 Wright Dr.,NULL,Albert Lea,56007,507-373-1799,NULL,billwebster5897@msn.com,billwebster5897@msn.com,3192770,1
+e19a8713-10-07,1,7/10/2013 18:50,7/10/2013 18:50,walter,schlenvogt,NULL,w6748 cty rd gg,NULL,crivitz,54114,walter schlenvogt,NULL,NULL,w6748 cty rd gg,NULL,crivitz,54114,7158452303,NULL,walter176@centurytel.net,walter176@centurytel.net,1457169,1
+19da0713-10-07,1,7/10/2013 22:35,3/6/2014 18:56,Denny,Robinson,NULL,PO Box 994,NULL,Mitchell,57301,Denny Robinson,NULL,NULL,1130 S Burr St,NULL,Mitchell,57301,605-996-7554,605-770-7342,drobinsonglsd@gmail.com,drobinsonglsd@gmail.com,sdchip01,0
+82d7dc13-10-07,1,7/10/2013 22:59,3/8/2016 7:10,James,Pilson,NULL,719-A Summer Lane,NULL,Prattville,36066,James Pilson,NULL,NULL,719-A Summer Lane,NULL,Prattville,36066,334 300-3909,NULL,packerpil@aol.com,pil159,sheila66,0
+0368de13-11-07,1,7/11/2013 11:01,7/11/2013 11:01,Shem,Peachey,Sacramento Lodge No. 24,1100 Vermont Ave,NULL,Alamogordo,88310,Shem Peachey,Attn: Sacramento Lodge No. 24,NULL,3110 Abbott Ave,NULL,Alamogordo,88310,575-491-2023,NULL,stpeachey@gmail.com,stpeachey@gmail.com,8529220,1
+15634913-11-07,1,7/11/2013 12:11,7/11/2013 12:11,Kevin L.,Day,NULL,612 Marsolan Avenue,NULL,Solana Beach,92075,Kevin L. Day,NULL,NULL,612 Marsolan Avenue,NULL,Solana Beach,92075,8587556672,8583826672,klddai@aol.com,klddai@aol.com,8411200,1
+5763e513-11-07,1,7/11/2013 13:29,7/11/2013 13:29,Ken,Lary,NULL,80 NH Rte 118,NULL,Canaan,3741,Ken Lary,NULL,NULL,80 NH Rte 118,NULL,Canaan,3741,603-523-4573,NULL,k.lary80@comcast.net,k.lary80@comcast.net,2599613,1
+a5f1b013-11-07,1,7/11/2013 13:34,7/11/2013 13:34,Shem,Peachey,Sacramento Lodge No. 24,1100 Vermont Ave,NULL,Alamogordo,88310,Shem Peachey,Sacramento Lodge No. 24,NULL,1100 Vermont Ave,NULL,Alamogordo,88310,575-437-2521,575-491-2023,stpeachey@gmail.com,stpeachey@gmail.com,9617256,1
+3a8c8513-12-07,1,7/12/2013 0:26,7/12/2013 0:26,Ennis,Kanawi,NULL,566 Roadrunner ave,NULL,New Braunfels,78130,Ennis Kanawi,NULL,NULL,566 Roadrunner ave,NULL,New Braunfels,78130,5126369422,NULL,ekfire@yahoo.com,ekfire@yahoo.com,8883789,1
+a85c2e13-12-07,1,7/12/2013 2:42,7/12/2013 2:50,Casey,Lynn,NULL,6030 Oakhaven Dr,NULL,Paducah,42003,Casey Lynn,NULL,NULL,6030 Oakhaven Dr,NULL,Paducah,42003,270-554-6998,270-210-2784,calynn07@gmail.com,calynn07,clynn123,0
+cb5cf613-13-07,1,7/13/2013 22:27,7/22/2016 21:46,Rodger,Ellingwood,NULL,4461 Summerlin Place,NULL,Rock Hill,29732,Rodger Ellingwood,NULL,NULL,4461 Summerlin Place,NULL,Rock Hill,29732,803-324-4560,NULL,elling@comporium.net,rodgerw,ta11c72a,0
+993aed13-14-07,1,7/14/2013 11:46,7/14/2013 11:46,Andrew,Elson,NULL,146 riverview rd,NULL,Kerrville ,78028,Andrew Elson,NULL,NULL,146 riverview rd,NULL,Kerrville ,78028,830-329-6318,830-329-6318,Txruffian@gmail.com,Txruffian@gmail.com,6127123,1
+98383613-14-07,1,7/14/2013 17:20,7/14/2013 17:20,FRED,MAIDES,NULL,Box 403,(7020-51st St.N.E.),Canoe,V0E 1K0,FRED MAIDES,NULL,NULL,Box 403,(7020-51st St.N.E.),Canoe,V0E 1K0,2508040367,2505150287,femaides@shaw.ca,Fred Maides,MUF17fin,0
+dab3d513-14-07,1,7/14/2013 20:01,7/14/2013 20:01,Dan,Brewer,Dan Brewer,2502 Senator ave,NULL,District Heights,20747,Dan Brewer,Dan Brewer,NULL,2502 Senator ave,NULL,District Heights,20747,301-736-8959,NULL,sgt3421@aol.com,sgt3421@aol.com,8383536,1
+ce622a13-15-07,1,7/15/2013 9:02,7/15/2013 9:02,Eric,Milks,Eric P Milks CPA PC,"519 Pleasant Home Road, B1",NULL,Augusta,30907-0549,Eric Milks,Eric P Milks CPA PC,NULL,"519 Pleasant Home Road, B1",NULL,Augusta,30907-0549,7068637321,7063992304,eric@ericpmilks.com,eric@ericpmilks.com,4652137,1
+62c67513-15-07,1,7/15/2013 10:31,7/15/2013 14:44,thomas,weber,NULL,107 verlynn ave.,NULL,hamilton,45013,thomas w weber,NULL,NULL,107 verlynn ave.,NULL,hamilton,45013,5138942985,5138942985,gwndl@yahoo.com,thomas weber,purple,0
+46f87113-15-07,1,7/15/2013 12:10,7/15/2013 12:10,FRED,MAIDES,NULL,Box 403,(7020-51st St.N.E.),Canoe,V0E 1K0,FRED MAIDES,NULL,NULL,Box 403,(7020-51st St.N.E.),Canoe,V0E 1K0,2508040367,2505150287,femaides@shaw.ca,femaides@shaw.ca,8107373,1
+59212d13-15-07,1,7/15/2013 13:12,7/15/2013 13:12,Mark,Adler,NULL,6485 Booth Street,Apt. 4B,Rego Park,11374-4020,Mark Adler,NULL,NULL,6485 Booth Street,Apt. 4B,Rego Park,11374-4020,7189970681,7189970681,markadler@verizon.net,markadler,lolobear,0
+4dffe113-15-07,1,7/15/2013 15:27,9/4/2014 16:47,Robert,Gooch,Clarksville Lodge No. 89,111 Tobacco Rd,NULL,Clarksville,37042,Robert Gooch,Clarksville Lodge No. 89,NULL,111 Tobacco Rd,NULL,Clarksville,37042,(931) 645-7741,NULL,rgooch@charter.net,rgooch,Doghouse4864,0
+1e299513-15-07,1,7/15/2013 15:53,7/15/2013 15:53,William,Barker,Menifee Valley Lodge No.. 289,35290 Pashal Pl.,NULL,Wildomar,92595-9516,William Barker,Menifee Valley Lodge No.. 289,NULL,35290 Pashal Pl.,NULL,Wildomar,92595-9516,951 678-4214,951 203-53044,tishka1@ez2.net,twicepm,ggs1devon,0
+cc77dd13-15-07,1,7/15/2013 19:01,7/15/2013 19:01,Robert,Schvey,NULL,3057 Haley Lane,NULL,Jacksonville,32257,Robert Schvey,NULL,NULL,3057 Haley Lane,NULL,Jacksonville,32257,904-268-9980,NULL,Rmschvey@yahoo.com,Rmschvey,rmsrs22,0
+4a533f13-16-07,1,7/16/2013 0:32,7/22/2016 13:46,Kurt,Gazow,NULL,4223 Northridge Way,NULL,Bellingham,98226,Kurt Gazow,NULL,NULL,4223 Northridge Way,NULL,Bellingham,98226,3603148665,3603148665,Kegazow@comcast.net,kegazow,m1cr0s0ftmsa,0
+830d6913-16-07,1,7/16/2013 12:21,7/16/2013 12:21,William,Moser,NULL,5499 Las Palmas,NULL,Las Cruces,88007,William Moser,NULL,NULL,5499 Las Palmas,NULL,Las Cruces,88007,5755243383,NULL,bands5499@msn.com,bands5499@msn.com,9349553,1
+90ff9113-16-07,1,7/16/2013 12:47,7/16/2013 12:47,Teodulo,Henriquez,NULL,225 Broadway,Suite 3604,New York,10007,Teodulo Henriquez,NULL,NULL,225 Broadway,Suite 3604,New York,10007,212-233-0101,NULL,Teodulo@verizon.net,Teodulo@verizon.net,2711033,1
+13823b13-16-07,1,7/16/2013 14:41,4/25/2016 11:41,Miguel,Banagan,Miguel Banagan,318 Locust St,NULL,Vienna,22180,Miguel Banagan,Miguel Banagan,NULL,7633 Leesburg Pike,Suite 100,Falls Church,22043,7038480777,NULL,mbanagan@hotmail.com,mbanagan,compass,0
+4242b713-16-07,1,7/16/2013 20:13,7/16/2013 20:13,Charles,Cunningham,NULL,5301 Fallgatter St,NULL,Bakersfield,93308,Charles Cunningham,NULL,NULL,5301 Fallgatter St,NULL,Bakersfield,93308,661-324-7376,NULL,chuckcunningham@bak.rr.com,Charles Cunningham,koztarr,0
+e901f613-16-07,1,7/16/2013 20:25,7/16/2013 20:25,Roscoe,Reeves,NULL,401 county road 422,NULL,Gorman,76454,Roscoe Reeves,NULL,NULL,401 county road 422,NULL,Gorman,76454,254-734-2812,NULL,roscoereeves@gmail.com,roscoereeves@gmail.com,6318169,1
+0359e613-17-07,1,7/17/2013 10:02,7/17/2013 10:02,Ross,Moore,NULL,5633 Oak St. ,P.O. Box 104,Onondaga,49264,Ross Moore,NULL,NULL,5633 Oak St. ,P.O. Box 104,Onondaga,49264,5176273042,NULL,rayanne1@frontier.com,raymoore,andrew,0
+2f10fa13-17-07,1,7/17/2013 10:40,7/17/2013 10:40,Joseph,Arriola,NULL,101 Purvis St.,Apt #4A,Waco,76705,Joseph Arriola,NULL,NULL,101 Purvis St.,Apt #4A,Waco,76705,254-498-6793,NULL,cyrax57091@yahoo.com,Cyrax57091,joe8655,0
+ebf5cf13-17-07,1,7/17/2013 15:32,7/17/2013 15:32,Tom,McGuire,NULL,614 Walsh Hill Trail,NULL,Cedar Park,78613,Tom McGuire,NULL,NULL,614 Walsh Hill Trail,NULL,Cedar Park,78613,512-547-7521,512-547-7521,tmcguire@pinwire.com,tmcguire@pinwire.com,1552607,1
+add04d13-17-07,1,7/17/2013 21:07,8/29/2014 2:22,Lawrence,Jolma,NULL,PO Box 637,NULL,Seaside,97138,Lawrence Jolma,NULL,NULL,PO Box 637,NULL,Seaside,97138,703-967-7066,703-967-7066,lnjolma@gmail.com,ljolma,mbyrnes,0
+12d32913-18-07,1,7/18/2013 13:14,7/18/2013 13:14,Guy,Chalmers,NULL,50 Lohrman Lane,NULL,Petaluma,94952-3609,Guy Chalmers,NULL,NULL,50 Lohrman Lane,NULL,Petaluma,94952-3609,707 763-0741,707 477-3046,jmc329@aol.com,jmc329@aol.com,1788605,1
+e205a813-18-07,1,7/18/2013 16:30,7/18/2013 16:30,Jerry,Pinion,NULL,PO Box 112446,NULL,Anchorage,99511,Jerry Pinion,NULL,NULL,PO Box 112446,NULL,Anchorage,99511,907-244-9517,NULL,QckAgJP@aol.com,Quicksilver,dad239,0
+3c49aa13-19-07,1,7/19/2013 9:25,5/20/2016 16:46,Dennis,Block,NULL,194 Lewis Road,NULL,Hampstead,28443,Dennis Block,NULL,NULL,194 Lewis Road,NULL,Hampstead,28443,9102975041,same,dblock3117@bellsouth.net,dblock3117,dr7054BL,0
+25718213-19-07,1,7/19/2013 13:00,7/20/2013 9:18,john,grubb,NULL,Po Box 642,NULL,Tioga,58852,john grubb,NULL,NULL,Po Box 642,NULL,Tioga,58852,7012160307,7012160307,jkgrubb@outlook.com,jkgrubb@outlook.com,9212582,1
+20f81f13-20-07,1,7/20/2013 3:39,7/20/2013 3:39,Peter,DERRICK,individual,1850 Main Street,Apt. 207,Saskatoon,S7H 5T2,Peter DERRICK,individual,NULL,1850 Main Street,Apt. 207,Saskatoon,S7H 5T2,13066513666,13063712666,peterderrick@gmail.com,peterd,tubalcain,0
+1d1ae313-20-07,1,7/20/2013 9:09,7/20/2013 9:09,Lawrence,Thompson,NULL,805 Shorewood Dr,NULL,Coppell,75019,Lawrence Thompson,NULL,NULL,805 Shorewood Dr,NULL,Coppell,75019,214-416-6960,214-416-6960,larry_thompson99@yahoo.com,larry_thompson99@yahoo.com,7007559,1
+31661413-20-07,1,7/20/2013 10:42,7/20/2013 10:42,Jimmie,West,Jimmie West,124 Cross Creek Dr,NULL,Paris,40361,Jimmie West,Jimmie West,NULL,124 Cross Creek Dr,NULL,Paris,40361,859-707-4458,859-707-4458,wjimann@bellsouth.net,jnwest,s10truck,0
+c2eaa613-21-07,1,7/21/2013 8:35,7/21/2013 8:35,Anthony,Brogna,NULL,16016 W. Beckett Lane,NULL,Olathe,66062,Anthony Brogna,NULL,NULL,16016 W. Beckett Lane,NULL,Olathe,66062,913-221-7143,NULL,abrogna1@msn.com,abrogna1,sbrogna2,0
+10ba0b13-21-07,1,7/21/2013 13:26,7/21/2013 13:26,Will P,Gray,NULL,431 Forest Cir,NULL,Ruston,71270,Will P Gray,NULL,NULL,431 Forest Cir,NULL,Ruston,71270,3182512219,3182512219,WPGRAYPM@GMAIL.COM,anita_h_gray@juno.com,bridge,0
+b2484913-21-07,1,7/21/2013 19:45,7/21/2013 19:46,Richard,"Morgan, PM",NULL,522 Fort Johnson Rd,NULL,Charleston,29412,"Richard Morgan, PM",NULL,NULL,522 Fort Johnson Rd,NULL,Charleston,29412,843-795-1617,NULL,rbmorgan522@gmail.com,rmorgan522,83097,0
+50ec8a13-21-07,1,7/21/2013 22:06,7/22/2013 18:23,norris ,quinn,NULL,368 lewis circle,NULL,commerce,30529,norris quinn,NULL,NULL,368 lewis circle,NULL,commerce,30529,706-870-0303,NULL,quinnatv@windstream.net,quinnatv@windstream.net,7398764,1
+b8700013-22-07,1,7/22/2013 12:26,8/10/2016 16:40,William,"Clark, Jr.",NULL,"666 Walnut St., Ste 1550",NULL,Des Moines,50309-3972,"William R. Clark, Jr.","Herrick, Langdon & Langdon",NULL,666 Walnut Street,Suite 1550,DES MOINES,50309-3972,515-240-3672,NULL,jester46@dwx.com,Jester46,William1,0
+fc44e313-22-07,1,7/22/2013 13:47,7/22/2013 13:47,Jorge,Filgueira,NULL,191 Chippewa Street,NULL,Miami Springs,33166,Jorge Filgueira,NULL,NULL,191 Chippewa Street,NULL,Miami Springs,33166,754-264-4195,754-264-4195,jfilgueirams@gmail.com,jfilgueirams@gmail.com,7553124,1
+86cfbb13-22-07,1,7/22/2013 17:01,7/22/2013 17:01,Bob,Van Lorynen,NULL,4594 Durbin Ln,NULL,Holt,32564,Bob Van Lorynen,NULL,NULL,4594 Durbin Ln,NULL,Holt,32564,850-537-9894,NULL,vanlorynenr@yahoo.com,vanlorynenr@yahoo.com,2116893,1
+8e04fc13-23-07,1,7/23/2013 3:31,7/23/2013 3:31,Todd,James,NULL,10870 redwood ave,NULL,Davenport,52804,Todd James,NULL,NULL,10870 redwood ave,NULL,Davenport,52804,5635703913,NULL,Knightjames2010@gmail.com,Knightjames,fraternal,0
+d4d9d513-23-07,1,7/23/2013 9:57,7/23/2013 9:57,Steve,Singleton,Steve Singleton,4908 Loper Ave,NULL,Stillwater,74074,Steve Singleton,Steve Singleton,NULL,4908 Loper Ave,NULL,Stillwater,74074,405-372-3356,405-612-1918,steve.singleton76@gmail.com,bulldog76,Bu!!dog76,0
+3b979b13-23-07,1,7/23/2013 23:45,7/23/2013 23:45,Russ,Hobbs,NULL,4717 Newcastle Dr,NULL,Tyler,75703,Russ Hobbs,NULL,NULL,4717 Newcastle Dr,NULL,Tyler,75703,9035613970,NULL,rhobbs@jrh-enterprises.com,rhobbs,blackcat,0
+81625813-24-07,1,7/24/2013 6:39,7/24/2013 6:39,Barrie ,Miller,Walter lanier Lodge,6057 Bayou Black Dr.,NULL,Gibson ,70356,Barrie Miller,Walter lanier Lodge,NULL,6057 Bayou Black Dr.,NULL,Gibson ,70356,9855752500,9858556043,theballpark1@aol.com,theballpark1@aol.com,9758806,1
+147e7513-24-07,1,7/24/2013 10:38,7/24/2013 10:38,Fredric,Silver,NULL,3822 Canot Lane,NULL,Addison,75001,Fredric Silver,NULL,NULL,3822 Canot Lane,NULL,Addison,75001,972-247-2596,NULL,fredmsilver@att.net,Silver,sterling,0
+ce1ab913-24-07,1,7/24/2013 14:31,3/12/2014 12:10,Donald,Pardo,NULL,804-300 Sherk St.,NULL,Leamington,N8H 4N7,Donald Pardo,NULL,NULL,804-300 Sherk St.,NULL,Leamington,N8H 4N7,519-724-2360,NULL,drm.pardo@gmail.com,drpardo,sodrap33,0
+36128313-24-07,1,7/24/2013 15:18,7/24/2013 15:19,Lloyd ,Stahl,NULL,3827 Mt Hayden Drive,NULL,Montrose,81403,Lloyd Stahl,NULL,NULL,3827 Mt Hayden Drive,NULL,Montrose,81403,970-417-4677,970-275-3228,lestahl@bresnan.net,LEStahl,Sr.Warden,0
+94407213-24-07,1,7/24/2013 20:52,7/24/2013 20:52,Glenn E.,Chandler,NULL,5360 Redrac Street,NULL,Jacksonville,32205-9603,Glenn E. Chandler,NULL,NULL,5360 Redrac Street,NULL,Jacksonville,32205-9603,9047817263,9042548155,gechandlersnr@bellsouth.net,gechandlersnr@bellsouth.net,5891886,1
+44eae713-24-07,1,7/24/2013 21:56,7/24/2013 21:56,George,Katchue,NULL,4818 Sandtyn Dr,NULL,waxhaw,28173,George Katchue,NULL,NULL,4818 Sandtyn Dr,NULL,waxhaw,28173,704 243-0962,704 502-2822,shroom3@aol.com,shroom3@aol.com,9761853,1
+fe17a113-25-07,1,7/25/2013 5:41,7/25/2013 5:41,Pierre,Meste,NULL,50 ch. Fontaine St Sernin,NULL,"Labege, France",31670,Pierre Meste,NULL,NULL,50 ch. Fontaine St Sernin,NULL,"Labege, France",31670,33675202153,33675202153,pmeste31@orange.fr,Pmeste,pierre,0
+caefd513-25-07,1,7/25/2013 11:53,7/25/2013 11:53,Timothy,Ory,NULL,1525 Shenandoah Lane,NULL,Naperville,60563,Timothy Ory,NULL,NULL,1525 Shenandoah Lane,NULL,Naperville,60563,6303551744,6303551744,tjory@sbcglobal.net,tjory65,Euclid65,0
+564b8713-25-07,1,7/25/2013 13:25,7/25/2013 13:25,Dana,DeWeese,NULL,1100 Jobe Drive,NULL,Jefferson City,65101,Dana DeWeese,NULL,NULL,1100 Jobe Drive,NULL,Jefferson City,65101,573-644-2226,NULL,PresidentDeWeese2004@yahoo.com,PresidentDeWeese2004@yahoo.com,2492259,1
+81813a13-25-07,1,7/25/2013 13:29,7/25/2013 13:29,Dana,DeWeese,NULL,1100 Jobe Drive,NULL,Jefferson City,65101,Dana DeWeese,NULL,NULL,1100 Jobe Drive,NULL,Jefferson City,65101,573-644-2226,573-644-2226,PresidentDeWeese2004@yahoo.com,PresidentDeWeese2004@yahoo.com,3395915,1
+0d999013-26-07,1,7/26/2013 11:32,7/26/2013 11:32,Tad,Fithian,NULL,10891 Blott Rd,NULL,North Jackson,44451,Tad C. Fithian,Western Star Lodge #21,NULL,8387 Tod Ave,NULL,Boardman,44512-6367,3303605278,3303605278,tadsmaps@sbcglobal.net,tadman1750,thad8235,0
+d0bb6b13-26-07,1,7/26/2013 11:57,7/26/2013 11:57,Jim,Scott,"Custom Consulting Associates, LLC",1112 SW 118th Place,NULL,Oklahoma City,73170,Jim Scott,"Custom Consulting Associates, LLC",NULL,1112 SW 118th Place,NULL,Oklahoma City,73170,4056913417,NULL,blueicediver@yahoo.com,blueicediver@yahoo.com,4498680,1
+0caf0213-27-07,1,7/27/2013 12:06,7/27/2013 12:06,Darryl,Knight,NULL,1039 N Glenview Ct,NULL,Palatine,60067,Darryl Knight,NULL,NULL,1039 N Glenview Ct,NULL,Palatine,60067,515-798-2477,515-708-2477,ironmajor.jake@gmail.com,deknight,Mrepoman6,0
+b96fec13-27-07,1,7/27/2013 13:05,7/27/2013 16:57,John M.,Klaus,NULL,509 2nd St. NW,NULL,Mount Vernon,52314,John M. Klaus,John M. Klaus,NULL,509 2nd St. NW,NULL,Mount Vernon,52314,319-895-8763,NULL,jmklaus@qwest.net,jmklaus,sualkmj5,0
+6ec50a13-27-07,1,7/27/2013 13:53,7/27/2013 13:53,Dale,Vanderpool,Eugene Scottish Rite,29720 Jeans RD Space 40,NULL,Venetq,97487,Dale Vanderpool,Eugene Scottish Rite,NULL,29720 Jeans RD Space 40,NULL,Venetq,97487,541-344-1288,NULL,dalevan46@gmail.com,dalevan46@gmail.com,4663445,1
+4c583a13-27-07,1,7/27/2013 13:55,7/27/2013 13:55,Dale,Vanderpool,Eugene Scottish Rite,29720 Jeans RD Space 40,NULL,Venetq,97487,Dale Vanderpool,Eugene Scottish Rite,NULL,29720 Jeans RD Space 40,NULL,Venetq,97487,54,NULL,dalevan46@gmail.com,dalevan46@gmail.com,5150131,1
+ce82f913-27-07,1,7/27/2013 13:58,7/27/2013 13:58,Dale,Vanderpool,Eugene Scottish Rite,29720 Jeans RD Space 40,NULL,Veneta,97487,Dale Vanderpool,Eugene Scottish Rite,NULL,29720 Jeans RD Space 40,NULL,Veneta,97487,541-344-1288,NULL,dalevan46@gmail.com,dalevan46@gmail.com,2094322,1
+1aab7813-28-07,1,7/28/2013 12:03,8/21/2016 10:58,Michael,Simmons,NULL,17 Aldrich St,NULL,Shortsville,14548-9302,Michael Simmons,NULL,NULL,17 Aldrich St,NULL,Shortsville,14548-9302,5857031305,5857031305,kiltz60@gmail.com,Inglesider,5667sr53,0
+cabbb113-28-07,1,7/28/2013 17:06,7/28/2013 17:06,Daniel,Fulks,NULL,9153 Constitution Avenue,NULL,Orient,43146,Danny R. Fulks,NULL,NULL,414 Monticello Road,NULL,Circleville,43113,740-474-1021,740-412-1271,danielfulks@att.net,danielfulks@att.net,1900587,1
+5853c313-29-07,1,7/29/2013 9:37,7/29/2013 9:37,Michael,Bigbee,NULL,2135 Meadowcreek Dr.,NULL,Plano,75074,Michael Bigbee,NULL,NULL,2135 Meadowcreek Dr.,NULL,Plano,75074,972-342-1461,972-342-1461,mbigbee@hotmail.com,mbigbee,bigsair,0
+b8708113-29-07,1,7/29/2013 18:31,7/29/2013 18:31,Will,Gray,NULL,431Forest Circle,NULL,Ruston,71270,Will Gray,NULL,NULL,431Forest Circle,NULL,Ruston,71270,3182512219,3182652976,wpgraypm@gmail.com,wpgraypm@gmail.com,4879363,1
+3875af13-30-07,1,7/30/2013 11:04,7/30/2013 11:04,JIM,FINNEGAN,NULL,940 FENTON LN #14,NULL,LAKELAND,33809,JIM FINNEGAN,NULL,NULL,940 FENTON LN #14,NULL,LAKELAND,33809,(863) 859-5850,(863) 738-8545,jimfinnegan@me.com,jimfinnegan@me.com,7133032,1
+dd5de613-30-07,1,7/30/2013 11:58,9/6/2015 22:32,George,Morris,George Morris,5806 Vernedale Road,NULL,Charlotte,28212,George Morris,George Morris,NULL,5806 Vernedale Road,NULL,Charlotte,28212,(704)563.8559,(704)307.3965,sfcmorris2@me.com,sfcmorris2,boazone1,0
+a07e3313-30-07,1,7/30/2013 15:58,7/30/2013 15:58,Frederick,Kleyn,NULL,11073 Plum Tree Ln,NULL,Spring Valley,91977,Frederick Kleyn,NULL,NULL,11073 Plum Tree Ln,NULL,Spring Valley,91977,619-461-5724,619-248-5456,fkleyn@cox.net,fkleyn@cox.net,2854593,1
+1c8dcd13-30-07,1,7/30/2013 20:37,7/30/2013 20:37,Arleigh,Rice,NULL,386 North Anna Dr,NULL,Louisa,23093-5506,Arleigh Rice,NULL,NULL,386 North Anna Dr,NULL,Louisa,23093-5506,5409670118,7034755992,ahrjrva@yahoo.com,ahrjrva@yahoo.com,1644883,1
+5d635f13-31-07,1,7/31/2013 11:30,7/31/2013 11:30,Ronald,Andress,NULL,2509 Lakewood Circle,NULL,Tuscaloosa,35404,Ronald Andress,NULL,NULL,2509 Lakewood Circle,NULL,Tuscaloosa,35405,205-764-9559,205-799-2796,rgandress@comcast.net,rgandress,fishing,0
+d42f3a13-31-07,1,7/31/2013 18:06,7/31/2013 18:06,Louis,Gordon,NULL,2941 Ashwood Dr.,NULL,Corvallis,97330,Louis Gordon,NULL,NULL,2941 Ashwood Dr.,NULL,Corvallis,97330,541.752.5052,541.990.1267,viz6louie@gmail.com,viz6louie@gmail.com,williedog,0
+fcd4f513-31-07,1,7/31/2013 20:57,7/31/2013 20:57,William,"Nophlin, Jr",NULL,212 Preston Ct Apt. D,NULL,Baltimore,21228,Bro William S. Nophlin jr,NULL,NULL,212 Preston Ct Apt. D,NULL,Baltimore,21228,4434284367,4434284367,Williamsn.pln3@gmail.com,The3rdLodge,1st degreeeajachin,0
+f3b27913-01-08,1,8/1/2013 8:35,8/1/2013 8:35,randy,gunn,randy gunn,7518 taw street,NULL,richmond,23237,randy gunn,randy gunn,NULL,7518 taw street,NULL,richmond,23237,804-271-0701,804-271-0701,randybbgunn@comcast.net,randybbgunn@comcast.net,1114482,1
+98ad5413-01-08,1,8/1/2013 12:34,8/1/2013 12:34,Wallace,Saval,NULL,1675 Shirley Avenue,NULL,Petersburg,23805,Wallace Saval,NULL,NULL,1675 Shirley Avenue,NULL,Petersburg,23805,804 732-5153,NULL,wsaval@msn.com,wsaval@msn.com,7103126,1
+9ba8d113-02-08,1,8/2/2013 14:52,8/2/2013 14:52,Dean,Rein,NULL,2161 N. Gunsight Dr.,NULL,St. George,84770,Dean Rein,NULL,NULL,2161 N. Gunsight Dr.,NULL,St. George,84770,4356802604,4356802604,deanr@infowest.com,deanr@infowest.com,7319598,1
+01f9b613-03-08,1,8/3/2013 14:35,2/3/2014 20:34,Donald,Eastlake,NULL,155 Beaver Street,NULL,Milford,1757,Donald Eastlake,NULL,NULL,155 Beaver Street,NULL,Milford,1757,1-508-333-2270,1-508-333-2270,d3e3e3@gmail.com,d3e3e3,NN5amma,0
+9336dd13-03-08,1,8/3/2013 20:10,8/11/2013 14:35,Richard,Ingham,NULL,603 Cherry Street,NULL,Punxsutawney,15767,Richard Ingham,NULL,NULL,603 Cherry Street,NULL,Punxsutawney,15767,(814)938-2213,NULL,rjingham@verizon.net,Ratchet,v*a2z9&Gt,0
+77af4213-04-08,1,8/4/2013 7:01,12/9/2013 9:08,James,Werman,James Werman,4330 Comanche Dr.,NULL,Pahrump,89061,James Werman,James Werman,NULL,4330 Comanche Dr.,NULL,Pahrump,89061,775 513 3362,NULL,justjim@air-internet.com,justjim,master30105,0
+b625cd13-04-08,1,8/4/2013 15:17,8/4/2013 15:17,Doyle,Clark,NULL,2212 Glory Dr,NULL,Clarksville,37043,Doyle Clark,NULL,NULL,2212 Glory Dr,NULL,Clarksville,37043,9317218323,NULL,d@doyleclark.com,doyleclark,m3gan01g,0
+fc0aa813-04-08,1,8/4/2013 19:13,8/4/2013 19:13,fred,beeman,fredbeeman,1810mingtreeln,NULL,pahrump,89060,fred beeman,fredbeeman,NULL,1810mingtreeln,NULL,pahrump,89060,7757512771,7028586165,fabeeman@hotmail.com,fabeeman,106s10,0
+fac29713-05-08,1,8/5/2013 19:16,8/5/2013 19:16,Howard W.,Hoffman,NULL,P.O. Box 447,107 Sherman St,Delavan,61734,Howard W. Hoffman,NULL,NULL,P.O. Box 447,107 Sherman St,Delavan,61734,3092447434,NULL,hwh@a5.com,hwh@a5.com,2481970,1
+516e5313-06-08,1,8/6/2013 19:41,8/6/2013 19:41,John,Smith,NULL,7775 Jury St.,NULL,Smithtown,20910,John Smith,NULL,NULL,7775 Jury St.,NULL,Smithtown,20910,555-555-5555,NULL,judyifletcher@gmail.com,judyifletcher@gmail.com,6241215,1
+4908cb13-07-08,1,8/7/2013 9:26,8/7/2013 9:26,Robert,Knott,Bellaire Lodge #398,P.O. Box 672,NULL,Bellaire,49615,Robert Knott,Bellaire Lodge #398,NULL,P.O. Box 672,NULL,Bellaire,49615,231-533-8482,NULL,knott@torchlale.com,torchlight,resort,0
+ebf04e13-07-08,1,8/7/2013 19:39,10/1/2016 20:31,Rex,Hasty,NULL,244 JC Bryant Rd,NULL,Hattiesburg,39401,Rex Hasty,NULL,NULL,244 JC Bryant Rd,NULL,Hattiesburg,39401,6016582048,NULL,Rhasty@ptialaska.net,RexHasty,R5231cH,0
+ef11c913-10-08,1,8/10/2013 20:45,2/5/2016 21:27,david,saunders,NULL,1129 bellevue rd,NULL,halifax,24558,david saunders,NULL,NULL,1129 bellevue rd,NULL,halifax,24558,4345751575,NULL,dsaunders2012@yahoo.com,dsaund,nollid04,0
+5a339d13-11-08,1,8/11/2013 6:46,8/11/2013 6:46,Michael,Stein,NULL,1288 Paddington Road,NULL,Mahwah,7430,Michael Stein,NULL,NULL,1288 Paddington Road,NULL,Mahwah,7430,201-785-8858,NULL,masrpac@yahoo.com,masrpac,gussie60,0
+b14c4113-13-08,1,8/13/2013 13:00,8/13/2013 13:00,Robert,Whittlesey,Guthrie Bethel Lodge 669,PO Box 644,NULL,Guthrie,42234-0644,Robert Whittlesey,Guthrie Bethel Lodge 669,NULL,PO Box 644,418 W. 2nd. Street,Guthrie,42234-0644,270-483-2650,270-404-1989,bjwhittlesey@yahoo.com,bjwhittlesey@yahoo.com,1245243,1
+ea3b5113-13-08,1,8/13/2013 13:50,8/13/2013 13:50,Robert,Whittlesey,Guthrie Bethel Lodge 669,PO Box 644,NULL,Guthrie,42234-0644,Robert Whittlesey,Guthrie Bethel Lodge 669,NULL,PO Box 644,418 W. 2nd Street,Guthrie,42234-0644,270-483-2650,270-484-1989,bjwhittleset@yahoo.com,bjwhittleset@yahoo.com,3795273,1
+5734cf13-13-08,1,8/13/2013 14:53,8/13/2013 14:53,John ,Brewer,NULL,P.O. Box 505,NULL,Stanton,40380,John Brewer,NULL,NULL,P.O. Box 505,NULL,Stanton,40380,606-663-4382,NULL,tetsuhara@gmail.com,tetsuhara,4510dragon,0
+78424313-14-08,1,8/14/2013 15:38,8/14/2013 15:38,Robert H,Eisenhardt,NULL,9043 SE Hawks Nest Ct.,NULL,Hobe Sound,33455,Robert H Eisenhardt,NULL,NULL,9043 SE Hawks Nest Ct.,NULL,Hobe Sound,33455,772-546-5672,NULL,rheisen7@comcast.net,rheisen7@comxcast.net,r7449e,0
+62f88513-15-08,1,8/15/2013 3:18,8/15/2013 3:18,Mathias,Erschen,NULL,1029 Dean St,NULL,Schenectady,12309-5719,Mathias Erschen,NULL,NULL,1029 Dean St,NULL,Schenectady,12309-5719,518-382-8983,NULL,mjerschen@verizon.net,mjerschen@verizon.net,8467843,1
+df0e8d13-15-08,1,8/15/2013 8:49,8/15/2013 9:11,GAUVAIN,BENZONAN,NULL,2714 MEDIA CENTER DRIVE,NULL,LOS ANGELES,90065,C/O CECERO ROY BLABAGNO,NULL,NULL,2714 MEDIA CENTER DRIVE,NULL,LOS ANGELES,90065,6.39189E+11,6.39189E+11,ILLGJB33@YAHOO.COM,ILLGJB33,GJB357933,0
+50a70813-15-08,1,8/15/2013 15:17,8/15/2013 15:17,Dean,Hodgson,Flying Dutchman Firearms,1936 Country View Dr,NULL,Derby,67037,Dean Hodgson,Flying Dutchman Firearms,NULL,1936 Country View Dr,NULL,Derby,67037,316-788-1131,316-680-3285,djnsk@cox.net,SantaDean,Asher5,0
+5e3a7913-17-08,1,8/17/2013 1:45,11/9/2016 9:39,David,Carroll,NULL,10100 Horsehoe Lane,NULL,McKinney,75070,David Carroll,NULL,NULL,10100 Horsehoe Lane,NULL,McKinney,75070,6612037697,6612037697,drcarroll82@gmail.com,JustDave82,"@{$co/].dtoku!\5j,#2}*g'q!5`7438h8yd}yjw\e",0
+889f7e13-17-08,1,8/17/2013 7:32,8/17/2013 7:32,Stephen,Carroll,NULL,91-1255 Kaileolea Dr,NULL,Ewa Beach,96706,Stephen Carroll,NULL,NULL,91-1255 Kaileolea Dr,NULL,Ewa Beach,96706,800-555-6666,808-220-7846,sdcarroll@gmail.com,sdcarroll@gmail.com,5330967,1
+a87c4f13-18-08,1,8/18/2013 15:31,8/18/2013 15:31,Jeremy,Vaughn,NULL,1409 Lauren Lane,NULL,Filer,83328,Jeremy Vaughn,NULL,NULL,1409 Lauren Lane,NULL,Filer,83328,208-339-6849,NULL,jvaughn311@gmail.com,jvaughn311,Wawookia400,0
+f549cd13-18-08,1,8/18/2013 17:06,8/18/2013 17:06,Dick,Perkins,NULL,2302 W Mandalay Lane,NULL,Phoenix,85023,Dick Perkins,NULL,NULL,2302 W Mandalay Lane,NULL,Phoenix,85023,602 863-6372,NULL,perk32@cox.net,perk32@cox.net,3644334,1
+3b6b3113-18-08,1,8/18/2013 19:09,8/18/2013 19:09,Leonard,Mayo,NULL,212 Lighthouse Drive,NULL,Hampton,23664-1918,Leonard Mayo,NULL,NULL,212 Lighthouse Drive,NULL,Hampton,23664-1918,7578512478,NULL,lsmayo@aol.com,lsmayo@aol.com,4604626,1
+b40f7e13-18-08,1,8/18/2013 19:23,4/6/2015 13:32,Carlton,Wood,NULL,672 Maple Valley Road,NULL,Coventry,2816,Carlton Wood,NULL,NULL,672 Maple Valley Road,NULL,Coventry,2816,401-385-9011,401-316-0837,cwood826@gmail.com,cwent2,mastermason,0
+6e4eae13-18-08,1,8/18/2013 21:50,8/18/2013 21:50,Robert,Keene,Lebanon Lodge #22,511 Julie Drive,NULL,Gallup,87301,Robert Keene,Lebanon Lodge #22,NULL,511 Julie Drive,NULL,Gallup,87301,505-615-8053,505-615-8053,robertkeene2003@yahoo.com,robertkeene2003@yahoo.com,3257851,1
+3d004f13-19-08,1,8/19/2013 10:53,1/8/2014 12:31,WILLIAM,MULLEN,N.A,108 WILLIAMS COURT,NULL,MOBILE,36606,WILLIAM MULLEN,N.A,NULL,108 WILLIAMS COURT,NULL,MOBILE,36606,251-554-9991,251-554-9991,williammullenO@gmail.com,mullwill,47875033,0
+450b9b13-19-08,1,8/19/2013 12:46,7/13/2015 17:49,Leonard,Demoranville,NULL,3456 Lexington Road,NULL,Danville,40422,Leonard Demoranville,NULL,NULL,2410 Waterworks Rd.,NULL,Danville,40422,7744542664,7744542664,demlen@hotmail.com,demlen,2Jachin02,0
+a28d8f13-19-08,1,8/19/2013 18:02,4/16/2016 21:30,Tom,Hancock,NULL,2801 Collard Road,NULL,Arlington,76017,Tom Hancock,NULL,NULL,2801 Collard Road,NULL,Arlington,76017,8174672462,8174544262,tomhancock47@rocketmail.com,thancock,501947,0
+c06a0f13-20-08,1,8/20/2013 7:51,8/20/2013 7:51,Alexander,Gillespie,NULL,9 John Glenn Road,NULL,Morristown,7960,Alexander Gillespie,NULL,NULL,9 John Glenn Road,NULL,Morristown,7960,9732920082,9732074099,alexgillespie@verizon.net,alexgillespie@verizon.net,9982646,1
+47b9f413-20-08,1,8/20/2013 10:50,8/20/2013 10:50,Spence,Campbell,Kedron Lodge #387,229 5th Ave W,NULL,Hendersonville,28739,Spence Campbell,Kedron Lodge #387,NULL,229 5th Ave W,NULL,Hendersonville,28739,828-697-5970,828-243-9067,spen150@bellsouth.net,volsok1,rdskat44,0
+84720e13-20-08,1,8/20/2013 18:32,7/21/2016 7:26,James,Earle,James Earle,1762 Crown Point Road,Unit 586,Thorofare,8086,James Earle,NULL,NULL,1762 Crown Point Road,"Unit 586, Lot 803DN",West Deptford,8086,8568451216,6098204680,james.earle@att.net,James Earle,kittery,0
+fd30a013-21-08,1,8/21/2013 15:48,9/1/2014 15:53,Brian,Rountree,Grand Lodge of Manitoba,420 Corydon Ave.,NULL,Winnipeg,R3L 1N8,Brian Rountree,Grand Lodge of Manitoba,NULL,420 Corydon Ave.,NULL,Winnipeg,R3L 1N8,2044537410,NULL,rountree@mts.net,rountree,Wallsend48,0
+21f51213-21-08,1,8/21/2013 18:22,8/21/2013 18:22,Alvin ,Bailey,NA,4415 Casa Blanca Dr,NULL,Odessa,79762,Alvin Bailey,NA,NULL,4415 Casa Blanca Dr,NULL,Odessa,79762,432-363-1925,432-257-8117,alvinbailey0108@gmail.com,alvinbailey0108@gmail.com,willie1,0
+14ccec13-21-08,1,8/21/2013 21:28,8/21/2013 21:28,George,Deblon,NULL,P.O. Box 512,113 Hadley Lane,Pittsfield,5762,George Deblon,NULL,NULL,P.O. Box 512,113 Hadley Lane,Pittsfield,5762,802-746-8527,NULL,GJDeblon@aol.com,GJDeblon@aol.com,7900505,1
+f6458713-21-08,1,8/21/2013 21:52,8/21/2013 21:52,Josef,Pronnet,NULL,4570 Imperial Dr.,NULL,Brookfield,53045,Josef Pronnet,NULL,NULL,4570 Imperial Dr.,NULL,Brookfield,53045,262-790-9989,NULL,imperialjcp@milwpc.com,Aurora # 30,sepp/35,0
+3930ab13-22-08,1,8/22/2013 3:42,8/22/2013 4:00,John,Hix,NULL,2410 Spicer Dr,NULL,Beavercreek,45431-2487Jhix,John Hix,NULL,NULL,2410 Spicer Dr,NULL,Beavercreek,45431-2487Jhix,937.427.2114,NULL,jhix@woh.rr.com,John Hix,glasseye4,0
+d6117113-22-08,1,8/22/2013 15:35,8/22/2013 15:35,Nathan,Devermann,NULL,428 S. Concord Rd.,NULL,Oconomowoc,53066,Nathan Devermann,NULL,NULL,428 S. Concord Rd.,NULL,Oconomowoc,53066,262-719-44673,NULL,nathandevermann@yahoo.com,natedogg235,skiing8,0
+e77efe13-22-08,1,8/22/2013 15:51,8/22/2013 15:51,J. Bruce,Hagadorn,NULL,3136 West Club Drive,NULL,Salem,24153,J. Bruce Hagadorn,NULL,NULL,3136 West Club Drive,NULL,Salem,24153,540-387-1341,NULL,hagis1940@gmail.com,hagis1940@gmail.com,5600945,1
+70a2e213-22-08,1,8/22/2013 19:21,8/22/2013 19:21,Eric,Dupree,NULL,8501 E. Louise Dr,NULL,Tucson,85730,Eric Dupree,NULL,NULL,8501 E. Louise Dr,NULL,Tucson,85730,5203702736,NULL,edupreesr@gmail.com,edupreesr,shayanna,0
+5b96da13-22-08,1,8/22/2013 23:53,8/22/2013 23:53,ben,taylor,NULL,500 S. Third,NULL,Saint Joe,72675,ben taylor,NULL,NULL,500 S. Third,NULL,Saint Joe,72675,8704392814,NULL,bentaylor360@gmail.com,bent870,gavinkidder8,0
+a909f213-23-08,1,8/23/2013 0:26,8/23/2013 0:26,Russ,Swinney,Russ Swinney,5977 Born Drive,NULL,Pensacola,32504-6345,Russ Swinney,Russ Swinney,NULL,5977 Born Drive,NULL,Pensacola,32504-6345,850-982-3939,850-982-3939,masoniclodge348@hotmail.com,FerryPassLodge348,80939842,0
+cd7dbd13-23-08,1,8/23/2013 11:03,8/23/2013 11:03,James,Karr,NULL,628 Yukon Ave.,NULL,Elko,89801-4152,James Karr,NULL,NULL,628 Yukon Ave.,NULL,Elko,89801-4152,775-738-8693,NULL,karrj@frontiernet.net,karrj@frontiernet.net,6397238,1
+c51f1c13-23-08,1,8/23/2013 12:00,8/23/2013 12:00,Edward,Sisson,NULL,1966 Elm St. #2,NULL,Manchester,3104,Edward Sisson,NULL,NULL,1966 Elm St. #2,NULL,Manchester,3104,5083444313,NULL,tedsisson@gmail.com,tedsisson@gmail.com,6629483,1
+9a17c513-23-08,1,8/23/2013 12:56,4/6/2016 7:50,Christopher,Morgan,NULL,35960 Grand River Ave,Apt. 214,Farmington Hills,48335,Chris Morgan,NULL,NULL,38000 Hills Tech Drive,NULL,Farmington Hills,48331,7168124156,7168124156,chrismorgan583@hotmail.com,sleeper583,penguin02,0
+05aca713-23-08,1,8/23/2013 15:41,8/23/2013 15:41,William,Parks,NULL,PO Box 1175,NULL,Covington,24426,William Parks,NULL,NULL,PO Box 1175,NULL,Covington,24426,540-962-2222,540-968-0230,wparks22@aol.com,wparks22,blue52,0
+b807dd13-24-08,1,8/24/2013 18:21,8/24/2013 18:21,Tom,Johnson,NULL,688 Levac Drive,NULL,Orleans,K4A2P6,Tom Johnson,NULL,NULL,688 Levac Drive,NULL,Orleans,K4A2P6,613-837-6172,NULL,tjohns6172@yahoo.ca,tjohns6172,JdY361,0
+14d53a13-25-08,1,8/25/2013 0:07,8/25/2013 0:07,Gregory,Gustafson,NULL,300 Cobb island court,NULL,Chesapeake,23322,Gregory Gustafson,NULL,NULL,300 Cobb island court,NULL,Chesapeake,23322,7576813731,7576813731,Gregory.gustafson@yahoo.com,Gustafson1,vikings3,0
+4df65113-26-08,1,8/26/2013 9:54,8/26/2013 9:54,Roger,White,NULL,6889 Autumn Mist Court,NULL,Mason,45040,Roger White,NULL,NULL,6889 Autumn Mist Court,NULL,Mason,45040,513-673-2710,513-673-2710,wingshockeynut@gmail.com,wingshockeynut,Baby77brother,0
+3e9d4113-26-08,1,8/26/2013 12:31,8/26/2013 12:31,Jim,McLeod,NULL,4504 Heidi Drive,NULL,Waycross,31503,Jim McLeod,NULL,NULL,4504 Heidi Drive,NULL,Waycross,31503,9122889391,NULL,jemcleod@outlook.com,Jim McLeod,JesusChrist.4,0
+f5161013-26-08,1,8/26/2013 13:24,8/26/2013 13:24,Bradley,Baker,Bradley Baker,151 Lamont Pkwy,NULL,Bartlett,60103,Bradley Baker,Bradley Baker,NULL,151 Lamont Pkwy,NULL,Bartlett,60103,630-289-9015,NULL,bkrs3@sbcglobal.net,abejo1,23374761,0
+738c2513-26-08,1,8/26/2013 13:34,8/26/2013 13:34,William,White,NULL,250 Eagle Drive,NULL,Blairsville,30512,William White,NULL,NULL,250 Eagle Drive,NULL,Blairsville,30512,478-997-1011,478-997-1011,whiteyinga@av8rstuff.com,whiteyinga,zaq1!QAZ,0
+33824313-26-08,1,8/26/2013 18:33,8/26/2013 18:33,Larry,Zwahlen,Meyerhardt Lodge 314 F&AM,PO Box 501,NULL,Kennesaw,30156-0501,Larry Zwahlen,Meyerhardt Lodge 314 F&AM,NULL,PO Box 501,NULL,Kennesaw,30156-0501,7707046663,NULL,larryzwahlen@comcast.net,Meyerhardt314,Compass314,0
+4f1d9013-26-08,1,8/26/2013 22:59,8/26/2013 22:59,Tim,Lange,NULL,2406 Oak Ave,NULL,Slayton,56172,Tim Lange,NULL,NULL,2406 Oak Ave,NULL,Slayton,56172,507-476-1678,NULL,tlange@iw.net,tlange,Vm75eU2Ft0uMkM,0
+dbbc2e13-27-08,1,8/27/2013 12:29,8/27/2013 12:29,Theodore,Williams,NULL,1757 Highland Blvd #2,NULL,Bozeman,59715,Theodore Williams,NULL,NULL,1757 Highland Blvd #2,NULL,Bozeman,59715,4065877669,4066983072,tsquarew@aol.com,tsquarew@aol.com,9940345,1
+9951e413-27-08,1,8/27/2013 13:47,9/6/2014 16:35,Robert,Ierien,NULL,134 Post Oak Road,NULL,La Vernia,78121,Robert Ierien,NULL,NULL,134 Post Oak Road,NULL,La Vernia,78121,830-779-5617,210-896-2797,gcandpp@gmail.com,rpdrbt,seguin44,0
+91691713-27-08,1,8/27/2013 17:03,8/27/2013 17:03,Zachary,Holmes,NULL,368 Day Lily St,NULL,Auburn,36832,Zachary Holmes,NULL,NULL,368 Day Lily St,NULL,Auburn,36832,2563101953,2563101953,zachholmes32@gmail.com,ZHolmes32,dodge75,0
+617a6213-27-08,1,8/27/2013 22:29,8/27/2013 22:29,David,Mason,NULL,84 Cobb Lane,NULL,N. Clarendon,05759-9312,David Mason,NULL,NULL,84 Cobb Lane,NULL,N. Clarendon,05759-9312,802-775-2204,802-282-6274,damasonvt@comcast.net,damasonvt,dam10840,0
+c89d7213-27-08,1,8/27/2013 23:14,8/27/2013 23:14,John ,Deiker,NULL,33 Coralvine Ct. ,NULL,The Woodlands,77380,Michael Deiker,NULL,NULL,5 Coralvine Ct. ,NULL,The Woodlands,77380,8064413998,8064413998,jdeiker@yahoo.com,jdeiker,jgekko,0
+aea04c13-28-08,1,8/28/2013 11:29,8/28/2013 11:29,Lance,Atchison,NULL,111 Chacahoula Ln,NULL,Mandeville,70471,Lance Atchison,NULL,NULL,111 Chacahoula Ln,NULL,Mandeville,70471,9855907334,NULL,Lance.atchison@mac.com,Lance.atchison@mac.com,dorsai.,0
+a3174213-28-08,1,8/28/2013 14:05,8/28/2013 17:46,Dennis D,Reader,NULL,1402 Surecrop Ln,NULL,Pasadena,77504,Dennis D Reader,NULL,NULL,1402 Surecrop Ln,NULL,Pasadena,77504,713-553-8917,713-553-8917,ddreader@comcast.net,Dennis D. Reader,littlebit,0
+4e8cd513-28-08,1,8/28/2013 15:07,8/28/2013 15:07,V. Stuart,Cook,NULL,10341 Pollard Creek Rd,NULL,Mechanicsville,23116,Stuart Cook,NULL,NULL,10341 Pollard Creek Rd,NULL,Mechanicsville,23116,8047469831,8047469831,vsc611@verizon.net,V. Stuart Cook,Barbara99,0
+4ab0af13-29-08,1,8/29/2013 11:03,9/23/2016 13:31,Mark,Anderson,NULL,11220 Windrow Dr,NULL,Eden Prairie,55344,Mark Anderson,NULL,NULL,11220 Windrow Dr,NULL,Eden Prairie,55344,9529412597,6123255736,markandersonep@gmail.com,FiatLux,CatsI3T4,0
+7df4ad13-29-08,1,8/29/2013 15:33,8/29/2013 15:33,Cal,Turner,NULL,PO Box 272,Cabin 583 Sunrise Hwy,Mount Laguna,91948,Cal Turner,NULL,NULL,1941 3rd Loop Road,NULL,Florence ,29501,6199852175,6199852175,calscabin@gmail.com,calscabin@gmail.com,8520595,1
+b05e1c13-29-08,1,8/29/2013 22:23,8/29/2013 22:29,George,Wright,NULL,27 Lakeside Ct.,NULL,Yorkville,60560+9412,George Wright,NULL,NULL,27 Lakeside Ct.,NULL,Yorkville,60560+9412,1-630-553-7532,n/a`,geo.wright.secy@att.net,geo.wright.secy@att.net,6855574,1
+57311d13-30-08,1,8/30/2013 12:51,8/30/2013 12:51,Thos.,Caldwell,NULL,P.O. Box 280,NULL,Jacksonville,62651,Thos. L. Caldwell,NULL,NULL,1849 Mound Rd.,NULL,Jacksonville,62650,2173701793,2173701793,tlcaldwell74@gmail.com,tlcaldwell74@gmail.com,9359092,1
+bee52c13-30-08,1,8/30/2013 22:56,3/18/2016 1:46,Don,Springler,NULL,PO Box 73455,NULL,Metairie,70033-3455,Don Springler,NULL,NULL,PO Box 73455,NULL,Metairie,70033-3455,5047380457,NULL,springler@att.net,DonSpringler,boaz3579,0
+788d5013-31-08,1,8/31/2013 2:01,8/31/2013 2:01,Michael,Starkey,NULL,1004 Black Bear Turnaround,NULL,North Pole,99705,Michael Starkey,NULL,NULL,1004 Black Bear Turnaround,NULL,North Pole,99705,9074883546,9074883546,starkey@gci.net,starkey@gci.net,5154221,1
+ab79f413-31-08,1,8/31/2013 20:14,8/31/2013 20:14,Lawrence,Rosen,NULL,24 westshore rd,PO box 206,Alburgh,5440,Lawrence Rosen,NULL,NULL,24 westshore rd,PO box 206,Alburgh,5440,8027963761,8023721515,Larryr@fairpoint.net,Larryr@fairpoint.net,7250287,1
+403c4b13-31-08,1,8/31/2013 20:24,8/31/2013 20:24,Andrew,Kaffes,NULL,44086 Macedonia Court,NULL,Ashburn,20147,Andrew Kaffes,NULL,NULL,44086 Macedonia Court,NULL,Ashburn,20147,5712913588,2024415099,akaffes@verizon.net,akaffes@verizon.net,4012440,1
+b350e213-31-08,1,8/31/2013 23:47,8/31/2013 23:47,Patrick,Murphrey,NULL,2030 Nicklaus Drive,NULL,Suffolk,23435,Patrick Murphrey,NULL,NULL,2030 Nicklaus Drive,NULL,Suffolk,23435,7578715376,7578715376,Patrick.murphrey@gmail.com,Pcm10sprep,sigep2001,0
+cc4c4b13-01-09,1,9/1/2013 12:41,9/1/2013 12:41,Aram,Adishian,NULL,260 Country Club Dr.,NULL,Oradell,7649,Aram Adishian,NULL,NULL,260 Country Club Dr.,NULL,Oradell,7649,9173271712,NULL,adishian@gmail.com,adishian@gmail.com,4991437,1
+38a7da13-01-09,1,9/1/2013 16:41,9/1/2013 16:41,Donald D ,Walden,Retired Military,15800 E121st Ave D5,NULL,Brighton,80603,Donald D Walden,Retired Military,NULL,15800 E121st Ave D5,NULL,Brighton,80603,303 659 3002,NULL,donwalden@q.com,donwalden@q.com,3610617,1
+0d4e3613-01-09,1,9/1/2013 20:28,9/1/2013 20:28,Steven,Kazda,Evening Star Lodge No 30 F&AM,"c/o Steven L. Kazda, Secretary",PO Box 122,Pomeroy,99347,Steven Kazda,NULL,NULL,1210 Columbia,PO Box 122,Pomeroy,99347,509-843-3831,NULL,skazda@pomeroy-wa.com,skazda,mason30,0
+566eb313-01-09,1,9/1/2013 22:20,9/1/2013 22:20,Robert,Chapman,NULL,401 14th Avenue,NULL,Greeley,80631,Robert Chapman,NULL,NULL,401 14th Avenue,NULL,Greeley,80631,970-352-8194,NULL,chapmancorvette@hotmail.com,chapmancorvette@hotmail.com,4104182,1
+c8ecd013-02-09,1,9/2/2013 1:21,9/2/2013 1:21,John,Brobst,NULL,5 West Elm Street,NULL,Tamaqua,18252,John Brobst,NULL,NULL,5 West Elm Street,NULL,Tamaqua,18252,5706681664,NULL,jtbrobst@verizon.net,jtbrobst@verizon.net,2606970,1
+96a1e213-02-09,1,9/2/2013 11:34,9/2/2013 11:34,PORTER ,BAILEY,NULL,506 WOLF CREEK RD. S.,NULL,PELL CITY,35128,PORTER BAILEY,NULL,NULL,506 WOLF CREEK RD. S.,NULL,PELL CITY,35128,205.338.2834,NULL,pdbailey.20@gmail.com,pdbailey,53185748,0
+05941113-02-09,1,9/2/2013 11:58,9/2/2013 11:58,Michael,Nicholas,NULL,22015 Guilford Station Terrace,NULL,Sterling,20166,Michael Nicholas,NULL,NULL,22015 Guilford Station Terrace,NULL,Sterling,20166,571-338-4002,571-338-4002,michael.nicholas.sr@gmail.com,NickMDN,OTISA35,0
+27cac013-02-09,1,9/2/2013 13:19,9/2/2013 13:19,Johnny,Grimes,NULL,12993 F.M.1277,NULL,SanAugustine,75972,Johnny Grimes,NULL,NULL,12993 F.M.1277,NULL,SanAugustine,75972,936-275-5024,NULL,actanonverba1977@yahoo.com,actanonverba1977@yahoo.com,3560043,1
+b555f513-02-09,1,9/2/2013 13:25,9/2/2013 13:25,William,Carter,William Carter,14611 Water Company Road,NULL,Cascade,21719,William Carter,NULL,NULL,956 Brickenridge Drive,NULL,Richmond,47374,301-241-4501,NULL,wdchscarter@verizon.net,Bill Carter,SiggyC18,0
+cd2a5513-03-09,1,9/3/2013 11:42,9/3/2013 11:42,Charles Brent,Stewart,NULL,5325 South Bearfield Road,NULL,Columbia,65201,Brent Stewart,AMEC,NULL,2722 East McCarty Street,P.O. Box 1645,Jefferson City,65102,(573) 659-3442,NULL,cbsmmason@aol.com,cbsmmason,cbs594,0
+246eec13-03-09,1,9/3/2013 12:32,9/3/2013 12:32,Domenic,Corbo,Union Lodge No. 5 AF&AM,47 Kirkham Place,NULL,Stamford,6906,Domenic Corbo,Union Lodge No. 5 AF&AM,NULL,47 Kirkham Place,NULL,Stamford,6906,203-348-2511,203-912-9633,domeniccorbo@gmail.com,unionlodge5,357Steps,0
+de20cf13-05-09,1,9/5/2013 10:08,9/5/2013 10:08,Ed,Smith,NULL,222 Diamond Pt. Rd.,NULL,Diamond Pt.,12824,Ed Smith,NULL,NULL,222 Diamond Pt. Rd.,NULL,Diamond Pt.,12824,5186234427,NULL,ednmart@nycap.rr.com,masonicartefacts,jimburke,0
+22d6f113-06-09,1,9/6/2013 17:09,9/6/2013 17:22,Richard,Weible,NULL,196 Creek Bottom Road,NULL,Labadie,63055,Richard Weible,NULL,NULL,196 Creek Bottom Road,NULL,Labadie,63055,6364515510,3146160938,rlweible@att.net,Fraternal363,addler1228,0
+145bd613-06-09,1,9/6/2013 22:43,9/6/2013 22:43,William ,Biggs,Casper Lodge No. 15,2705 E. 5th,NULL,Casper,82609-2547,William Biggs,Casper Lodge No. 15,NULL,2705 E. 5th,NULL,Casper,82609-2547,307-237-2178,307-797-1671,bbiggs53@wyoming.com,bbiggs53@wyoming.com,4058640,1
+13427313-07-09,1,9/7/2013 2:34,9/7/2013 2:34,Clint,Stevens,NULL,5502 Pinewood Springs,NULL,Houston,77066,Clint Stevens,NULL,NULL,5502 Pinewood Springs,NULL,Houston,77066,(281)382-8184,NULL,Clint_Stevens@sbcglobal.net,Clint_Stevens@sbcglobal.net,4639992,1
+1b13dc13-07-09,1,9/7/2013 10:22,9/4/2014 8:46,Timothy,Bagley,Timothy L. Bagley,665 Langlois St.,NULL,Sherbrooke,J1E 1P3,Timothy Bagley,Timothy L. Bagley,NULL,665 Langlois St.,NULL,Sherbrooke,J1E 1P3,819-563-7743,NULL,timothybagley@hotmail.com,timothybagley,400217,0
+94a2c613-08-09,1,9/8/2013 4:50,9/8/2013 4:50,COL William Michael,Alexander,NULL,PSC 311,Box 28,APO,96258,COL William Michael Alexander,NULL,NULL,PSC 311,Box 28,APO,96258,82167276771,82318779710,ltcalexander@hotmail.com,ltcalexander@hotmail.com,4831543,1
+2cb60613-08-09,1,9/8/2013 8:57,9/8/2013 8:57,Tobby,Small,NULL,8311 Cherokee Rd,NULL,Richmond,23235,Tobby Small,NULL,NULL,8311 Cherokee Rd,NULL,Richmond,23235,704-232-2552,704-232-2552,tobbysmall@icloud.com,Diqtracy,alainalaina,0
+9abbf713-09-09,1,9/9/2013 21:42,9/9/2013 21:42,Fran,Rojas,NULL,701 11th Ave NW,NULL,Isani,55040,Fran Rojas,NULL,NULL,701 11th Ave NW,NULL,Isani,55040,763-444-8610,NULL,franrojas@ymail.com,Fran Rojas,Connor,0
+f62ce813-10-09,1,9/10/2013 10:21,9/11/2013 10:29,Boyd ,Weaver,Boyd Weaver,715 Leedsfield Ct,NULL,Arlington,76017,Boyd Weaver,Boyd Weaver,NULL,715 Leedsfield Ct,NULL,Arlington,76017,254-717-9147,254-717-9147,scorpio4life74@gmail.com,bawntx74,724turner,0
+bbaf2a13-10-09,1,9/10/2013 15:25,9/10/2013 15:25,Gerald,Peck,Red Oak Masonic Lodge #461,c/o Secretary,412 Sorrel Lane,Red Oak,75154,Gerald Peck,Red Oak Masonic Lodge #461,NULL,c/o Secretary,412 Sorrel Lane,Red Oak,75154,2145879610,2145879610,gpeck44@sbcglobal.net,gpeck44,gander44,0
+eb197613-10-09,1,9/10/2013 16:41,9/10/2013 16:41,Thomas,Lima,William Sutton Lodge,300 Central Street,NULL,Saugus,1906,Thomas Lima,William Sutton Lodge,NULL,104 Broadway,#3,Saugus,1906,781-231-5303,NULL,talima@comcast.net,talima@comcast.net,2155981,1
+987ab213-11-09,1,9/11/2013 12:36,9/11/2013 12:36,Michael,Sica,NULL,10 Tunes Brook Drive,NULL,Brick,8723,Michael T. Sica,NULL,NULL,117 Corbin Court,NULL,Lakewood,8701,7325220768,7325220768,MichaelSica@hotmail.com,TheMasonicPooh,Daisy1972,0
+821fec13-12-09,1,9/12/2013 12:47,9/12/2013 12:47,Larry,Berry,NULL,"71 Kentucky Hollow Rd.,",NULL,Bedford,47421,Larry Berry,NULL,NULL,"71 Kentucky Hollow Rd.,",NULL,Bedford,47421,(812)854-1729,NULL,larry.berry@navy.mil,Larry Berry,hoonjun,1
+60866e13-13-09,1,9/13/2013 11:47,9/13/2013 11:47,Peter,Pelke,NULL,301 Briarwood Lane,NULL,Algonquin,60102,Peter Pelke,NULL,NULL,301 Briarwood Lane,NULL,Algonquin,60102,847.658.4939,NULL,railroader9999@sbcglobal.net,railroader9999@sbcglobal.net,6093919,1
+d1627613-13-09,1,9/13/2013 11:49,9/13/2013 11:49,Peter,Pelke,NULL,301 Briarwood Lane,NULL,Algonquin,60102,Peter Pelke,NULL,NULL,301 Briarwood Lane,NULL,Algonquin,60102,847.658.4939,NULL,railroader9999@sbcglobal.net,railroader9999@sbcglobal.net,3787874,1
+56736e13-15-09,1,9/15/2013 14:31,9/15/2013 14:31,phil,spadaccini,phil spadaccini,po box 49,NULL,waddington,13694,phil spadaccini,phil spadaccini,NULL,po box 49,NULL,waddington,13694,3153887805,NULL,pas51@myway.com,pas51@myway.com,1834765,1
+4a0ec913-16-09,1,9/16/2013 12:06,9/16/2013 12:06,David,Frogner,NULL,613 Iverson Rd,NULL,Colfax,54730,David Frogner,NULL,NULL,613 Iverson Rd,NULL,Colfax,54730,715-962-3217,NULL,defrog3034@centurytel.net,Dfrogner,Duchess1,0
+1c960f13-16-09,1,9/16/2013 13:52,9/16/2013 13:52,TIMOTHY,KIRSHMAN,NULL,4892 SOUTHRIDGE DRIVE,NULL,TAYLORSVILLE,84129,TIMOTHY KIRSHMAN,NULL,NULL,4892 SOUTHRIDGE DRIVE,NULL,TAYLORSVILLE,84129,8018652958,8018652958,KIRSHMAN42@GMAIL.COM,KIRSHMAN42@GMAIL.COM,6925214,1
+3106ff13-16-09,1,9/16/2013 14:54,9/16/2013 14:54,Secretary,Roswell #18,Roswell Lodge #18,PO Box 1512,NULL,Roswell,88202,Secretary Roswell #18,Roswell Lodge #18,NULL,PO Box 1512,NULL,Roswell,88202,5756233853,5756374068,kaliths@hotmail.com,roswell18,roswell18,0
+d93fe713-16-09,1,9/16/2013 22:15,9/16/2013 22:15,Henry G.,"Scanlan ,Jr.","George Scanlan, Inc.",4043 Aletha Dr.,4043 Aletha Dr.,Baton Rouge,70814,"Henry G. Scanlan ,Jr.","George Scanlan, Inc.",NULL,4043 Aletha Dr.,4043 Aletha Dr.,Baton Rouge,70814,225-2754220,225-4855010,h.g.scanlan@att.net,h.g.scanlan@att.net,12_w_B0n-R3,0
+e13b7e13-16-09,1,9/16/2013 22:37,9/16/2013 22:38,H.G.,"Scanlan,Jr.","H.G.Scanlan,Jr.",4043 Aletha Dr..,NULL,Baton Rouge,70814,"H.G. Scanlan,Jr.","H.G.Scanlan,Jr.",NULL,4043 Aletha Dr..,NULL,Baton Rouge,70814,225-2754220,225-4855010,h.g.scanlan@att.net,h.g.scanlan@att.net,9921699,1
+4e2b9513-17-09,1,9/17/2013 2:27,9/17/2013 2:27,DENNIS,SUARINO,NULL,3888 N STIRRUP DR,NULL,BEVERLY HILLS,34465,DENNIS SUARINO,NULL,NULL,3888 N STIRRUP DR,NULL,BEVERLY HILLS,34465,352-527-6847,NULL,DOGMAN134@AOL.COM,DOGMAN134,RUSTY134,0
+3cfb8b13-19-09,1,9/19/2013 11:12,9/19/2013 11:12,Richard,Beecher,NULL,7033 SW 42nd Ave,NULL,Amarillo,79109,Richard Beecher,NULL,NULL,7033 SW 42nd Ave,NULL,Amarillo,79109,8063593878,NULL,richardbeecher@suddenlink.net,richardbeecher@suddenlink.net,7673026,1
+26dfdd13-20-09,1,9/20/2013 13:06,9/20/2013 13:06,Jesse,Ruch,NULL,6200 Old Harding Highway,Apartment L-3,Mays Landing,8330,Jesse Ruch,NULL,NULL,6200 Old Harding Highway,Apartment L-3,Mays Landing,8330,6095017694,NULL,jsruch@gmail.com,jsruch,Jo09Mju7,0
+b1022513-22-09,1,9/22/2013 16:51,9/22/2013 16:51,Randy,Brill,NULL,7341 Park View Court,#155,Santee,92071,Dan Brill,NULL,NULL,2700 De Cook Ave.,NULL,Park Ridge,60078,6192794688,6192794688,brillrl@yahoo.com,brillrl@yahoo.com,5622404,1
+b8d09913-22-09,1,9/22/2013 20:30,9/22/2013 20:30,Russ,Todd,NULL,12 Stonewood Drive,NULL,Old Lyme,6371,Russ Todd,NULL,NULL,12 Stonewood Drive,NULL,Old Lyme,6371,8604347073,NULL,Spybandit@aol.com,Spybandit@aol.com,7401994,1
+4ee49f13-23-09,1,9/23/2013 12:24,9/23/2013 12:24,Randy,Brill,NULL,7341 Park View Court,#155,Santee,92071,Dan Brill,NULL,NULL,2700 De Cook Ave.,NULL,Park Ridge,60078,619-279-4688,619-279-4688,brillrl@yahoo.com,brillrl@yahoo.com,3859198,1
+fefe5b13-23-09,1,9/23/2013 13:37,11/4/2013 14:29,Randy,Veroline,NULL,1451 Moccasin Creek Rd,NULL,Murphy,28906,Randy Veroline,NULL,NULL,1451 Moccasin Creek Rd,NULL,Murphy,28906,386-931-0891,NULL,mrv1787@yahoo.com,rveroline,689142200,0
+432e2a13-24-09,1,9/24/2013 14:01,9/24/2013 14:01,William,White,NULL,542 E. Radburn St.,NULL,Tucson,85704,William White,NULL,NULL,542 E. Radburn St.,NULL,Tucson,85704,520-887-9523,NULL,Tucsonaznative@comcast.net,Tucsonaznative@comcast.net,5927283,1
+defdee13-24-09,1,9/24/2013 16:39,9/24/2013 16:39,Ramesh,Raghavan,NULL,7325 Stanford Ave,NULL,St. Louis,63130,Ramesh Raghavan,NULL,NULL,7325 Stanford Ave,NULL,St. Louis,63130,(314) 570-2991,(314) 570-2991,raghavan@me.com,rameshraghavan,tinhau,0
+066bde13-26-09,1,9/26/2013 15:36,9/26/2013 15:36,Palmer,Martin,Grand Lodge of Vermont,49 East Rd,NULL,Barre,05641-5390,Palmer Martin,Grand Lodge of Vermont,NULL,49 East Rd,NULL,Barre,05641-5390,(802) 223-1883,NULL,glsec@vtfreemasons.org,glsec@vtfreemasons.org,2667787,1
+e6999913-28-09,1,9/28/2013 10:47,9/28/2013 10:47,Phillip,Hurwitz,NULL,72 Long Pond Road,NULL,Rochester,14612,Phillip Hurwitz,NULL,NULL,72 Long Pond Road,NULL,Rochester,14612,585-720-9653,NULL,phurwitz@frontiernet.net,phurwitz@frontiernet.net,8315176,1
+3267b313-28-09,1,9/28/2013 10:53,9/28/2013 10:53,Phillip,Hurwitz,NULL,72 Long Pond Road,NULL,Rochester,14612,Phillip Hurwitz,NULL,NULL,72 Long Pond Road,NULL,Rochester,14612,585-720-9653,NULL,phurwitz@frontiernet.net,phurwitz,phurwitz1!,1
+826a7313-01-10,1,10/1/2013 19:04,10/1/2013 19:04,Peter,Stein,NULL,3519 Wallace Dr.,NULL,Grand Island,14072,Peter Stein,NULL,NULL,3519 Wallace Dr.,NULL,Grand Island,14072,7164327751,7164327751,Firemanpcs@gmail.com,firemanpcs,OLiver1234,0
+6ed50a13-02-10,1,10/2/2013 16:44,10/2/2013 16:44,DONALD,CURTIS,NULL,7305 WHITEHALL DR,NULL,INDIANAPOLIS,46256,DONALD CURTIS,NULL,NULL,7305 WHITEHALL DR,NULL,INDIANAPOLIS,46256,3174081444,3174081444,don221b@yahoo.com,don221b,3195dec,0
+41a35813-03-10,1,10/3/2013 22:42,10/3/2013 22:42,H. Thurl,Ray,H. thurl Ray,160 Stafford Road,NULL,Brighton,38011-6844,H. Thurl Ray,NULL,NULL,160 Stafford Road,NULL,Brighton,38011-6844,901-475-4883,901-413-6914,hthurl@msn.com,OldChief,5337347usnret,0
+2aa91913-05-10,1,10/5/2013 13:03,10/5/2013 13:03,Walt,Atchley,Thomas B Hunter Lodge #1356,PO Box 531406,NULL,Grand Prairie,75053,Walt Atchley,Thomas B Hunter Lodge #1356,NULL,PO Box 531406,NULL,Grand Prairie,75053,972-2626650,214-507-9071,tbh1356@att.net,tbh1356,1t3b5h6,0
+27937313-06-10,1,10/6/2013 17:34,10/6/2013 17:34,Alex,Tambrini,NULL,12 Bonnie Court North,NULL,Homosassa,34446,Alex Tambrini,NULL,NULL,12 Bonnie Court North,NULL,Homosassa,34446,3525035137,3522126908,atambrini@yahoo.com,atambrini,ZZ97qq009,0
+fc746c13-06-10,1,10/6/2013 20:02,10/6/2013 20:23,Donald,Hale,NULL,P.O. Box 240211,NULL,Douglas,9984-0211,Donald Hale,NULL,NULL,P.O. Box 240211,NULL,Douglas,9984-0211,907-723-0008,907-723-8232,dehale@msn.com,dehale,81518210,0
+6b2f0813-07-10,1,10/7/2013 23:33,10/7/2013 23:33,MARK,STJOHN,NULL,417 N 21st Ave,NULL,Bozeman,59718-3133,MARK STJOHN,NULL,NULL,417 N 21st Ave,NULL,Bozeman,59718-3133,4065951219,NULL,jimtownster@gmail.com,mstjohn,mark18,0
+b4808a13-08-10,1,10/8/2013 20:32,10/8/2013 20:32,TROY,BENNETT,NULL,10 BENNETT DRIVE,NULL,PIEDMONT,29673,TROY BENNETT,NULL,NULL,10 BENNETT DRIVE,NULL,PIEDMONT,29673,8648457812,8644492408,troyebennett@bellsouth.net,grovestationlodge,lodge166,0
+6d331513-10-10,1,10/10/2013 11:25,10/10/2013 11:25,alvin,davis,NULL,84 hall street,NULL,concord,3301,alvin davis,NULL,NULL,84 hall street,NULL,concord,3301,603-225-9691,NULL,alvinona@comcast.net,alvinona@comcast.net,7291839,1
+a5755113-10-10,1,10/10/2013 11:46,10/10/2013 11:46,alvin,davis,NULL,84 hall street,NULL,concord,3301,alvin davis,NULL,NULL,84 hall street,NULL,concord,3301,603-225-9691,NULL,alvinona@comcast.net,alvinona@comcast.net,7996763,1
+25549913-10-10,1,10/10/2013 14:38,8/30/2014 22:38,Michael,Horton,NULL,PO BOX 242063,NULL,Anchorage,99524,Michael Horton,NULL,NULL,PO BOX 242063,NULL,Anchorage,99524,9072294502,9072294502,michael.horton86@gmail.com,MJHorton,Mastermason907,0
+4a788313-14-10,1,10/14/2013 15:41,10/14/2013 15:41,Andrew,Ellis,NULL,79 Barnes Street,NULL,Gouverneur,13642,Andrew Ellis,NULL,NULL,79 Barnes Street,NULL,Gouverneur,13642,315-287-2085,NULL,aellis@northnet.org,aellis,ae012464,0
+7880a813-14-10,1,10/14/2013 17:18,10/16/2013 14:49,Michael,Williamson,NULL,12445 N. 55th St. W.,NULL,Sedgwick,67135,Michael Williamson,NULL,NULL,12445 N. 55th St. W.,NULL,Sedgwick,67135,316-772-0136,316-640-9492,mrwillie@prodigy.net,mrwillie,kiwi7576,0
+1cbb8313-22-10,1,10/22/2013 8:17,9/29/2014 21:34,gerald,gilman,gerald gilman,141 elm street,NULL,mercer,4957,gerald gilman,gerald gilman,NULL,141 elm street,NULL,mercer,4957,207-649-5449,NULL,inthewind1550@yahoo.com,gerald gilman,stella,0
+97451d13-22-10,1,10/22/2013 14:32,10/22/2013 14:32,Thomas,Nielsen,NULL,309 Union Street,NULL,Carlstadt,7072,Thomas Nielsen,NULL,NULL,309 Union Street,NULL,Carlstadt,7072,201-933-8843,NULL,tn414@verizon.net,tn414@verizon.net,4611320,1
+39581b13-24-10,1,10/24/2013 11:17,10/24/2013 11:17,Jason,Yeager,NULL,1341 Charles Road,NULL,Jefferson Twp,18436,Jason Yeager,NULL,NULL,1341 Charles Road,NULL,Jefferson Twp,18436,5704990454,NULL,jasonpyeager@gmail.com,jandmoutdoors,77tahiti,0
+d7691613-24-10,1,10/24/2013 14:33,10/24/2013 14:38,Michael,Shobe,A.A.S.R. - Valley of Toledo,"302 W. Sophia St, Unit C",NULL,Maumee,43537,Michael Shobe,A.A.S.R. - Valley of Toledo,NULL,"302 W. Sophia St, Unit C",NULL,Maumee,43537,419-893-2942,567-686-9658,secretary@toledoaasr.com,mshobe237,33rddegree,0
+8ae14413-25-10,1,10/25/2013 21:29,10/25/2013 21:29,Clifford,Rodecker,NULL,3110 Cantara Cir,NULL,Sparks,89346,Clifford Rodecker,NULL,NULL,3110 Cantara Cir,NULL,Sparks,89346,775 848 9791,NULL,Kipster1@gmail.com,Kipster1@gmail.com,9121988,1
+938a3413-26-10,1,10/26/2013 20:31,10/26/2013 20:31,William,Meyer,NULL,110 Franklin Ave.,NULL,La Grange,40031,William Meyer,NULL,NULL,110 Franklin Ave.,NULL,La Grange,40031,5022221761,5027584685,billmeyer@twc.com,billmeyer@twc.com,3271628,1
+ebc1e613-28-10,1,10/28/2013 3:52,10/28/2013 3:52,Jamal,Khan,NULL,10118 Limewood Ln,NULL,Sugarland,77478,Jamal Khan,NULL,NULL,10118 Limewood Ln,NULL,Sugarland,77478,8329104492,8329104492,jamalk2050@yahoo.com,juiceoutoftexas,bball99,0
+44ec3d13-28-10,1,10/28/2013 11:59,10/28/2013 11:59,Jay,Custer,NULL,1470 6th Ave,NULL,Baldwin,54002,Jay Custer,NULL,NULL,1470 6th Ave,NULL,Baldwin,54002,715-684-2208,NULL,collinslodge@centurytel.net,collinslodge@centurytel.net,1651973,1
+bd76dc13-28-10,1,10/28/2013 13:59,10/28/2013 13:59,Cynthia,Fabbri,NULL,237 Crest Ct.,NULL,Bloomingdale,60108,Cynthia Fabbri,NULL,NULL,237 Crest Ct.,NULL,Bloomingdale,60108,630/750-8216,NULL,Cfabbri@SBCGlobal.Net,Cfabbri@SBCGlobal.Net,9797352,1
+1df50413-28-10,1,10/28/2013 23:24,10/28/2013 23:24,Ted,Hotham,NA,44 Mahalas Lane,NULL,Owls Head,4854,Ted Hotham,NA,NULL,44 Mahalas Lane,NULL,Owls Head,4854,NA,207 441 8970,tdbahr@msn.com,thotham,ms825tdh,0
+276f8413-30-10,1,10/30/2013 16:46,10/30/2013 16:46,Jim,Kudless,James Kudless,PO Box 617,NULL,Lebanon,8833,Jim Kudless,James Kudless,NULL,PO Box 617,NULL,Lebanon,8833,9085681502,9085681502,jim_kudless@att.net,jim_kudless,hostlodge6,0
+6c313313-30-10,1,10/30/2013 18:06,10/30/2013 18:06,Floyd,McGuirt,NULL,5924 Millstone Lane,NULL,Stone Mountain,30087,Floyd McGuirt,NULL,NULL,5924 Millstone Lane,NULL,Stone Mountain,30087,770 923 8946,NULL,merlin4670@comcast.com,merlin4670,d78isney,0
+696a7513-31-10,1,10/31/2013 11:59,10/31/2013 11:59,HOWARD,DUNCAN,HOWARD DUNCAN,P.O. BOX 56 ,208 CLARK STREET,LECOMPTON,66050-0056,HOWARD DUNCAN,HOWARD DUNCAN,NULL,P.O. BOX 56 ,208 CLARK STREET,LECOMPTON,66050-0056,785-887-6477,NULL,howbeaux@sbcglobal.net,REENACTOR,Author,0
+cc9dd013-31-10,1,10/31/2013 14:36,10/31/2013 14:36,Jeremy,Mead,NULL,4621 Blossom View Ct NE,NULL,Cedar Rapids,52411,Jeremy Mead,NULL,NULL,210 2nd Street SE Ste 400,NULL,Cedar Rapids,52407,3193643041,NULL,jmead@tld-inc.com,jmead@tld-inc.com,4662755,1
+de985613-01-11,1,11/1/2013 8:19,11/1/2013 8:19,Timur Mehmet,Gucluer,Timur Mehmet Gucluer,34 Oak Lane,NULL,Randolph,7869,Timur Mehmet Gucluer,Timur Mehmet Gucluer,NULL,34 Oak Lane,NULL,Randolph,7869,90164650360,9.05333E+11,tgucluer@gmail.com,tgucluer@gmail.com,5780426,1
+38225f13-03-11,1,11/3/2013 20:54,11/3/2013 20:54,ovil ,winburn,n/a,42 se 62nd ave.,NULL,ocala,34472,ovil winburn,n/a,NULL,42 se 62nd ave.,NULL,ocala,34472,n/a,352-425-3161,oaocala@aol.com,oaocala@aol.com,1891949,1
+a677fe13-04-11,1,11/4/2013 9:52,11/19/2016 10:05,James,VanDeHey,NULL,3197 Primrose Ln,NULL,Green Bay,54313,James VanDeHey,NULL,NULL,3197 Primrose Ln,NULL,Green Bay,54313,9206761471,9206761471,jimvan68@gmail.com,jimvan68,chester63,0
+46d6c213-04-11,1,11/4/2013 15:12,1/20/2016 13:57,James,Voelkle,NULL,13510 Zion Rd.,NULL,Tomball,77375,James Voelkle,NULL,NULL,13510 Zion Rd.,NULL,Tomball,77375,2813518525,NULL,jpvoelkle@hotmail.com,jpvoelkle,peckzion,0
+30120413-05-11,1,11/5/2013 10:47,11/5/2013 10:48,Larry,Odom,NULL,415 E. 7th St.,NULL,Trenton,64683,Larry Odom,NULL,NULL,415 E. 7th St.,NULL,Trenton,64683,6603593054,NULL,lodom@cebridge.net,lodom@cebridge.net,golfer78,0
+fc651d13-05-11,1,11/5/2013 17:16,11/5/2013 17:16,James,Buchanan,NULL,2568 Wimbledon Park Blvd,NULL,Toledo,43617,James Buchanan,NULL,NULL,2568 Wimbledon Park Blvd,NULL,Toledo,43617,419-843-3499,419-461-2110,jwbuchanan@accesstoledo.com,jwbuchanan,jwb725,0
+6255fc13-07-11,1,11/7/2013 22:46,11/7/2013 22:46,Joe,Bean,NULL,1114 S Main St,NULL,DeSoto,63020,Joe Bean,NULL,NULL,1114 S Main St,NULL,DeSoto,63020,636-586-7116,NULL,joebean1953@gmail.com,joebean,Mylinda#1,0
+e1245513-08-11,1,11/8/2013 10:19,11/10/2013 16:50,Andre,Dudley,NULL,4237 Merriman Loop,NULL,Howell,48843,Andre Dudley,NULL,NULL,4237 Merriman Loop,NULL,Howell,48843,734-657-4459,734-657-4459,andretdudley@gmail.com,dre3030,andre000,0
+1c1b4013-08-11,1,11/8/2013 15:09,11/8/2013 15:09,Stephen,Saunders,NULL,9021 Rocky Point Road,NULL,Soddy Daisy,37379,Stephen Saunders,NULL,NULL,9021 Rocky Point Road,NULL,Soddy Daisy,37379,423-847-6683,NULL,saun6683@sjsaunders.net,saun6683@sjsaunders.net,4870315,1
+2643c813-08-11,1,11/8/2013 22:34,11/8/2013 22:34,Stan,Miller,masonic lodge #45,2520 Oliver Av,NULL,Crescent City,95531,Stan Miller,masonic lodge #45,NULL,2520 Oliver Av,NULL,Crescent City,95531,707-954-5534,707-954-5534,randsmiller@rontier.com,randsmiller@rontier.com,3856675,1
+5b5bfa13-08-11,1,11/8/2013 22:43,11/8/2013 22:43,Stan,Miller,masonic lodge #45,2520 Oliver Av,NULL,Crescent City,95531,Stan Miller,masonic lodge #45,NULL,2520 Oliver Av,NULL,Crescent City,95531,707-954-5534,NULL,randsmiller@frontier.com,randsmiller@frontier.com,4599639,1
+fbe4a613-08-11,1,11/8/2013 22:46,11/8/2013 22:46,Kenneth,Thompson,NULL,1682 Smokehouse Drive,NULL,Cordova,38016,Kenneth Thompson,NULL,NULL,1682 Smokehouse Drive,NULL,Cordova,38016,901-590-8815,NULL,kathomp74@gmail.com,kathomp74@gmail.com,3930686,1
+a5814b13-10-11,1,11/10/2013 21:32,11/10/2013 21:32,Albert,Gaylord,NULL,873 East Monbo Rod,NULL,Statesville,28677,Albert Gaylord,NULL,NULL,873 East Monbo Rod,NULL,Statesville,28677,7045285761,7046579640,albert.gaylord@yahoo.com,albert.gaylord@yahoo.com,7930928,1
+987a3513-10-11,1,11/10/2013 22:54,11/10/2013 22:54,Laurence,Weed,Ramah Lodge #165,4235 Cromwell Court,NULL,Colorado Springs,80906,Laurence Weed,Ramah Lodge #165,NULL,4235 Cromwell Court,NULL,Colorado Springs,80906,719-576-3433,719-310-2298,lweed1@comcast.net,lweed1,Funone01,0
+90298913-11-11,1,11/11/2013 14:44,11/11/2013 14:44,James,Sweaney,NULL,P O Box 613,NULL,Gardiner,59030,James Sweaney,NULL,NULL,P O Box 613,NULL,Gardiner,59030,(406) 848-7602,NULL,jns@wispwest.net,jns@wispwest.net,4392889,1
+d6b55a13-11-11,1,11/11/2013 20:50,11/11/2013 20:50,Scott,Meyerhoeffer,NULL,2338 Upper Trent Way,NULL,Vandalia,45377,Scott Meyerhoeffer,NULL,NULL,2338 Upper Trent Way,NULL,Vandalia,45377,937-742-7430,NULL,smeyerho@woh.rr.com,smeyerho,zeppelin1,0
+e7cd2413-12-11,1,11/12/2013 18:39,11/12/2013 18:39,David K.,Hansch,NULL,24981 Dana Point Harbor Drive,Suite 110,Dana Point,92629,David K. Hansch,NULL,NULL,24981 Dana Point Harbor Drive,Suite 110,Dana Point,92629,949-661-5225,949-310-5225,david@hanschfinancial.com,dhansch,waving,0
+181a5d13-13-11,1,11/13/2013 0:18,11/13/2013 0:18,Richard,Hacker,NULL,14322 139th Ave Ct. W,NULL,Taylor Ridge,61284,Richard Hacker,NULL,NULL,14322 139th Ave Ct. W,NULL,Taylor Ridge,61284,3097951461,3097951461,Rich@Rhackerfamily.com,Rich@Rhackerfamily.com,2365424,1
+23916913-13-11,1,11/13/2013 22:48,11/13/2013 22:48,Larry,Sutton,Larry Sutton,800 Garrison Road,NULL,Lula,30554,Larry Sutton,Larry Sutton,NULL,800 Garrison Road,NULL,Lula,30554,706-870-2001,706-870-2001,larrytsutton@gmail.com,Lulalodge,Lula352,0
+3071af13-14-11,1,11/14/2013 17:58,11/14/2013 17:58,Richard,Brown,NULL,6630 North Park Circle,NULL,Shreveport,71107-9518,Richard Brown,NULL,NULL,6630 North Park Circle,NULL,Shreveport,71107-9518,318-929-3252,318-465-2395,rdonbrown1@yahoo.com,rdonbrown1@yahoo.com,123R1e2D3don,0
+c4ad0413-14-11,1,11/14/2013 18:35,11/14/2013 18:35,Robert,Powers,NULL,47 Foxboro Drive,NULL,Rising Sun,21911,Robert Powers,NULL,NULL,47 Foxboro Drive,NULL,Rising Sun,21911,4433093024,4433093024,427pilot@zoominternet.net,427pilot@zoominternet.net,9490300,1
+55dbdb13-15-11,1,11/15/2013 13:51,6/14/2015 16:57,Dennis,Vernon,NULL,2458 Five Shillings Road,NULL,Frederick,21701,Dennis Vernon,NULL,NULL,2458 Five Shillings Road,NULL,Frederick,21701,301-694-8003,240-215-7935,dennis.vernon@hq.doe.gov,knight21702,sotl*1AH,0
+95ad2013-18-11,1,11/18/2013 13:53,11/18/2013 13:53,Richard ,Powell,NULL,7 White Oak Lane,NULL,Wayne,7470,Richard Powell,NULL,NULL,7 White Oak Lane,NULL,Wayne,7470,862-221-9537,NULL,ricksworld@optonline.net,RickMSArep,msarep1,0
+48b7bd13-22-11,1,11/22/2013 11:50,11/22/2013 11:50,Bill,Boulter,Lockart Masonic lodge 690,11101 FM 1854,NULL,Dale,78616colr,Bill Boulter,lockhart Masonic Lodge 690,NULL,11101 FM 1854,NULL,Dale,78616,512-376-2500,512-567-2502,rock374@earthlink.net,colrock,bud2715,0
+8671a313-25-11,1,11/25/2013 20:06,11/25/2013 20:06,Joseph,Revette,NULL,1873 County Route 26,NULL,climax,12042,Joseph Revette,NULL,NULL,1873 County Route 26,NULL,climax,12042,5187316506,5183649476,joerevette@gmail.com,jodee911,glide2010,0
+53e76413-26-11,1,11/26/2013 11:14,3/29/2016 13:39,PJ,Bridenstine,NULL,310 West Main St.,NULL,Osakis,56360,PJ Bridenstine,NULL,NULL,310 West Main St.,NULL,Osakis,56360,3207608819,3207608819,pjstine@charter.net,PJStine,1976197960!*,0
+e7685713-26-11,1,11/26/2013 21:37,11/26/2013 21:39,MELVIN,POWE SR,NULL,3746 SOUTHRIDGE BLVD,NULL,MURFREESBORO,37128,MELVIN POWE SR,NULL,NULL,3746 SOUTHRIDGE BLVD,NULL,MURFREESBORO,37128,7733071581,7733071581,sgtrock2ndtonone@yahoo.com,GUNNERPOWE01,PASSWORD01,0
+1bf1cb13-02-12,1,12/2/2013 10:34,12/2/2013 10:34,Lee,Stith,Lee Stith,444 N Gila Springs Blvd.,Apt. 1013,Chandler,85226,Lee Stith,Lee Stith,NULL,444 N Gila Springs Blvd.,Apt. 1013,Chandler,85226,480-464-5650,NULL,lestith@yahoo.com,Lee Stith,chandler34ls,0
+ca380013-02-12,1,12/2/2013 16:04,12/2/2013 16:04,bob,conner jr,NULL,po box 840,NULL,silver city,88062,bob conner jr,NULL,NULL,po box 840,NULL,silver city,88062,5755340432,NULL,bobconner0432@gmail.com,bobconner0432@gmail.com,7335414,1
+455ef113-03-12,1,12/3/2013 14:04,3/26/2016 8:47,Thomas,Winter,NULL,68 S Conger Avenue,NULL,Congers,10920,Thomas Winter,NULL,NULL,68 S Conger Avenue,NULL,Congers,10920,8452687752,9142611877,masonickilties@hotmail.com,twinter,Tyrian1770,0
+3846b813-03-12,1,12/3/2013 22:54,12/3/2013 22:54,Joshua,Dempsey,East Ridge Lodge #755,4115 Ringgold Road,NULL,East Ridge,37412,Joshua Dempsey,East Ridge Lodge #755,NULL,4115 Ringgold Road,NULL,East Ridge,37412,423-698-7612,NULL,eastridge755@gmail.com,eastridge755,eastridgelodge,0
+42f07913-04-12,1,12/4/2013 15:34,12/4/2013 15:34,Alan,Bohanan,NULL,105 Iowa Avenue,Suite 236,Iowa City,52240,Alan Bohanan,NULL,NULL,105 Iowa Avenue,Suite 236,Iowa City,52240,319.351.5335,NULL,abohanan@qwestoffice.net,abohanan,redsled,0
+355cea13-04-12,1,12/4/2013 16:21,12/4/2015 16:07,R Scott,Pless,NULL,530 Lee Road 960,NULL,Smiths Station,36877-3561,R Scott Pless,NULL,NULL,530 Lee Road 960,NULL,Smiths Station,36877-3561,706-593-3283,706-593-3283,SPless661@Gmail.com,SPless661,Shadow34,0
+c5e26913-05-12,1,12/5/2013 12:47,12/5/2013 12:47,Jamie,Simpson,NULL,118 Bellview Road,NULL,Rockmart,30153,Jamie Simpson,NULL,NULL,118 Bellview Road,NULL,Rockmart,30153,7706843078,7703240274,jtsimpso@charter.net,jtsimpso62,connie65,0
+4ebeeb13-06-12,1,12/6/2013 14:38,12/6/2013 14:38,Wiley,Hart,NULL,243 Beach Drive,NULL,Florahome,32140-1706,Wiley Hart,NULL,NULL,243 Beach Drive,NULL,Florahome,32140-1706,3866592628,9047048547,squatlo@windstream.net,squatlo,Cooter38,0
+a21f1013-08-12,1,12/8/2013 12:33,12/8/2013 12:33,Charlie,Babb,NULL,1300 Jamestown,NULL,Edmond,73003,Charlie Babb,NULL,NULL,1300 Jamestown,NULL,Edmond,73003,405-210-4441,NULL,ckbabb@sbcglobal.net,ckbabb@sbcglobal.net,2448684,1
+489a9c13-08-12,1,12/8/2013 14:56,12/8/2013 14:57,David,Westmeyer,NULL,14411 Lake Forest Drive,NULL,LOUISVILLE,40245,David Westmeyer,NULL,NULL,14411 Lake Forest Drive,NULL,LOUISVILLE,40245,5027678034,5027678034,dwstmyr@gmail.com,tuldav,rasam123,0
+7ebef913-12-12,1,12/12/2013 2:22,12/12/2013 2:23,John,Grose,Gaskets-N-More / Gasket Guy Inc.,6585 Arville Street,Suite A,Las Vegas,89118,John Grose,Gaskets-N-More / Gasket Guy Inc.,NULL,6585 Arville Street,Suite A,Las Vegas,89118,702-795-0040,702-353-6750,Jgrose@gasketsnmore.com,JFGroseJr.1815,Twinsmoving20,0
+d9881713-17-12,1,12/17/2013 0:18,12/17/2013 0:18,Dan,Collins,Dan Collins,4816 Sand Hill Dr.,NULL,Colorado Springs,80923,Dan Collins,Dan Collins,NULL,4816 Sand Hill Dr.,NULL,Colorado Springs,80923,(719)433-4444,same,masondan116@gmail.com,danielpcollins,patrick1975,0
+6de35f13-17-12,1,12/17/2013 13:43,12/14/2015 11:36,Dusty,Parsons,NULL,1549 Fairidge,NULL,Kingsport,37664,Dusty Parsons,NULL,NULL,1549 Fairidge,NULL,Kingsport,37660,4232454877,4233418798,dustyparsons@earthlink.net,dustyparsons,phoenix,0
+99f74613-17-12,1,12/17/2013 16:04,12/17/2013 16:04,James,Salmond,NULL,2297 Cross Creek Trail,NULL,Cuyahoga Falls,44223-1271,James Salmond,NULL,NULL,2297 Cross Creek Trail,NULL,Cuyahoga Falls,44223-1271,3309298100,3302836075,jsalm2297@aol.com,jsalmond,skylane1,0
+51269a13-18-12,1,12/18/2013 16:09,12/18/2013 16:09,Andrew,Neufer,NULL,219 Winter Street,NULL,Duboistown,17702,Andrew Neufer,NULL,NULL,219 Winter Street,NULL,Duboistown,17702,5704476833,5704476833,alneufer@live.com,alneufer@live.com,1465709,1
+3c901013-23-12,1,12/23/2013 13:11,12/23/2013 13:11,John,Porteus,NULL,55144 County Road 5,NULL,West Lafayette,43845,John Porteus,NULL,NULL,55144 County Road 5,NULL,West Lafayette,43845,740-545-9130,NULL,johnporteus@yahoo.com,johnporteus@yahoo.com,3683919,1
+03e66e13-23-12,1,12/23/2013 14:08,12/23/2013 14:08,Anthony,Waterson,NULL,7814 Ridghurst PL,NULL,Louisville ,40299,Anthony Waterson,NULL,NULL,7814 Ridghurst PL,NULL,Louisville ,40299,8127223626,NULL,twaterson25@gmail.com,waterson25,knight,0
+b47bcd13-26-12,1,12/26/2013 22:46,12/26/2013 22:46,Ryan,Powers,NULL,3403 Monroe Rd,NULL,Allegan,49010,Ryan Powers,NULL,NULL,3403 Monroe Rd,NULL,Allegan,49010,6168227616,6168227616,ryanjackpowers@yahoo.com,ryanjackpowers,remfurpu,0
+7de18713-29-12,1,12/29/2013 22:17,12/29/2013 22:17,Danny,Ortega,NULL,31 North 22nd St,NULL,Kenilworth ,7033,Danny Ortega,NULL,NULL,31 North 22nd St,NULL,Kenilworth ,7033,973-493-9046,973-493-9046,Danmortega@yahoo.com,Danmortega ,Up$ilon4,0
+e5feb013-30-12,1,12/30/2013 17:34,12/30/2013 17:39,Alan,McCollum,NULL,306 E Semands,NULL,Conroe,77301,Alan McCollum,NULL,NULL,306 E Semands,NULL,Conroe,77301,936-828-2355,936-537-1973,admcc56@reagan.com,admcc56,2611am,0
+74a98714-02-01,1,1/2/2014 15:42,1/2/2014 15:42,Edward,Howard,NULL,2617 Camino Pl W,NULL,Kettering,45420,Edward Howard,NULL,NULL,2617 Camino Pl W,NULL,Kettering,45420,9372931562,NULL,edhoward@juno.com,edhoward@juno.com,8595401,1
+e6153314-02-01,1,1/2/2014 17:41,1/2/2014 17:41,William,Taylor,NULL,302 SW 8th Circle,NULL,Troutdale,97060,William Taylor,NULL,NULL,302 SW 8th Circle,NULL,Troutdale,97060,5036745022,5036745022,billt812@hotmail.com,billt812,Snoopy812,1
+985af614-03-01,1,1/3/2014 17:26,1/3/2014 17:26,Jon,Sage,NULL,902 West Second St,NULL,Seymour,47274,Jon Sage,NULL,NULL,902 West Second St,NULL,Seymour,47274,8125301936,8125301936,jonpatricksage@yahoo.com,jonpatricksage@yahoo.com,8066533,1
+7464dc14-03-01,1,1/3/2014 19:41,1/3/2014 19:41,RICH,KINSEY,NULL,21 HICKORY,NULL,CHELSEA,48118-9417,RICH KINSEY,NULL,NULL,21 HICKORY,NULL,CHELSEA,48118-9417,(734) 475-0228,(734) 475-0228,rlkinsey323@gmail.com,rlkinsey323@gmail.com,strohman,0
+555c2614-04-01,1,1/4/2014 22:12,1/4/2014 22:12,Robert,Sherk,B&B Global Associates Inc.,806 Nowlin Avenue,NULL,Greendale,47025,Robert Sherk,B&B Global Associates Inc.,NULL,806 Nowlin Avenue,NULL,Greendale,47025,8125770126,3522504090,yicdream@gmail.com,yicdream,lakeview#4MI,0
+11068514-09-01,1,1/9/2014 12:53,1/9/2014 12:53,Chris,Stokes,NULL,14311-11 Runabout Ct,NULL,Laurel,20707,Chris Stokes,NULL,NULL,14311-11 Runabout Ct,NULL,Laurel,20707,240 620 8211,NULL,stokes123@gmail.com,stokes123@gmail.com,4488095,1
+a4c66f14-09-01,1,1/9/2014 13:17,1/9/2014 13:17,Douglas,McFarland,NULL,216 Sioux Pass,NULL,Brookings,57006,Douglas McFarland,NULL,NULL,216 Sioux Pass,NULL,Brookings,57006,605-692-1295,605-690-3991,McFarlaS@Brookings.net,McFarlaS@Brookings.net,9239507,1
+94804014-09-01,1,1/9/2014 20:26,1/9/2014 20:26,John,Wright,John Wright,P.O. Box 16,NULL,Geneva,14456,John Wright,G Wright.Co.,NULL,143 Wadsworth St,NULL,Geneva,14456,315-789-2055,NULL,jack@ghwright.com,Lockdoc,2496lock,0
+f570c714-10-01,1,1/10/2014 20:28,1/10/2014 20:28,Dennis,Wilkins,Unity Lodge #198,PO Box 563,NULL,North Bend,98045-0563,Lodge Secretary,Unity Lodge #198,NULL,161 141st PL NE,NULL,Bellevue,98007-6911,866-417-7238,4254665786,dennis@unity198.org,dennis198,mMSApwi198,0
+085c9f14-11-01,1,1/11/2014 13:34,1/11/2014 13:34,Christopher,Carrott,NULL,124 colonial rd,NULL,Plainfield,6374,Christopher Carrott,NULL,NULL,124 colonial rd,NULL,Plainfield,6374,860-564-7710,4014472488,Chriscarrott@sbcglobal.net,Chriscarrott,eb8e444,0
+267a3a14-13-01,1,1/13/2014 8:07,1/13/2014 8:07,Christopher,Smith,NULL,5840 Liska Drive,NULL,Jacksonville,32244,Christopher Smith,NULL,NULL,5840 Liska Drive,NULL,Jacksonville,32244,904-434-1213,904-434-1213,task.smith@gmail.com,csmith297,c8rr0ts0up,0
+3d810f14-13-01,1,1/13/2014 14:32,1/13/2014 14:32,Lawrence,Renfro,JL ENTERPRISES,100 Carrollton Ave,NULL,Shreveport,71105,Lawrence Renfro,JL ENTERPRISES,NULL,100 Carrollton Ave,NULL,Shreveport,71105,3184697680,3184697680,sleepyjet1@bellsouth.net,sleepy,457MASON,0
+bb200914-13-01,1,1/13/2014 15:15,1/13/2014 15:15,Richard,Holst,NULL,267 Burlington Rd,NULL,Freehold,7728,Richard Holst,NULL,NULL,267 Burlington Rd,NULL,Freehold,7728,7327800522,7327800522,rwholst@gmail.com,rwholst,M1tikhtaeh,0
+f178d314-13-01,1,1/13/2014 23:09,1/13/2014 23:09,Bill,Reynar,NULL,10253 NE 129th LN,NULL,Kirkland,98034,Bill Reynar,NULL,NULL,10253 NE 129th LN,NULL,Kirkland,98034,206-856-5988,NULL,wjreynar@gmail.com,wjreynar@gmail.com,7524017,1
+cc758c14-13-01,1,1/13/2014 23:10,1/13/2014 23:10,Bill,Reynar,NULL,10253 NE 129th LN,NULL,Kirkland,98034,Bill Reynar,NULL,NULL,10253 NE 129th LN,NULL,Kirkland,98034,206-856-5988,NULL,wjreynar@gmail.com,wjreynar@gmail.com,3735579,1
+941bad14-18-01,1,1/18/2014 17:59,1/18/2014 17:59,Conley,Dykes,NULL,111 Dawn Ct,NULL,Lavergne,37086,Conley Dykes,NULL,NULL,111 Dawn Ct,NULL,Lavergne,37086,615-459-2945,615-714-5817,consher@comcast.net,consher@comcast.net,7810134,1
+f3ef5114-19-01,1,1/19/2014 6:23,1/19/2014 7:06,Matthew,Simpson,NULL,28 Lafayette St.,NULL,Goose Creek,29445,Matthew Simpson,NULL,NULL,28 Lafayette St.,NULL,Goose Creek,29445,(843) 764-9465,(843) 441-5243,Mesimpson66@yahoo.com,mesimpson66,97f250,0
+bb648214-19-01,1,1/19/2014 7:35,1/19/2014 7:35,James,Blake,NULL,6 Carolee Dr,NULL,Dover,19901,James Blake,NULL,NULL,6 Carolee Dr,NULL,Dover,19901,3027369854,3023829957,delawarecajun@gmail.com,delawarecajun,BooBoo42!,0
+3e4d5214-19-01,1,1/19/2014 10:34,1/19/2014 10:34,Bennie,Woods,NULL,124 Jae Ct,NULL,Moyock,27958,Bennie Woods,NULL,NULL,124 Jae Ct,NULL,Moyock,27958,252.562.0262,NULL,benniewoods@hotmail.com,zamarrita,asbe15b,0
+f3e33814-21-01,1,1/21/2014 9:11,1/21/2014 9:11,Michael,Kula,NULL,42983 Park Creek Drive,NULL,Broaldands,20148,Michael Kula,NULL,NULL,42983 Park Creek Drive,NULL,Broaldands,20148,703-853-3270,703-853-3270,mkula81@gmail.com,mkula81,Alison05,0
+fce45214-21-01,1,1/21/2014 10:23,1/21/2014 10:23,Jon,Seabaugh,grand river lodge 276,1905 E 281 street,NULL,cleveland,64734,Jon Seabaugh,grand river lodge 276,NULL,1905 E 281 street,NULL,cleveland,64734,8168992304,8167186625,jhlk@midwest-connections.com,jhlk@midwest-connections.com,6345751,1
+d1c0b114-22-01,1,1/22/2014 11:39,1/22/2014 11:39,Duane,Logan,NULL,329 Woodmont Drive,NULL,Cornelia,30531,Duane Logan,NULL,NULL,329 Woodmont Drive,NULL,Cornelia,30531,7067786988,6788734784,snowburt@yahoo.com,wm2014,usmc1976,0
+4421e314-25-01,1,1/25/2014 9:41,1/25/2014 9:41,Ralph,Frazier,NULL,6400 Murray Lane,NULL,Brentwood,37027,Ralph Frazier,NULL,NULL,6400 Murray Lane,NULL,Brentwood,37027,615-890-1702,615-594-4436,al@alfrazier.com,alfrazier,felix27,0
+3f005414-26-01,1,1/26/2014 10:11,1/26/2014 10:11,WAYNE,SPOONER,NULL,1820 W NORWOOD ST # C,NULL,CHICAGO,60660,WAYNE SPOONER,NULL,NULL,1820 W NORWOOD ST # C,NULL,CHICAGO,60660,312-613-9943,312-613-9943,wayne_spooner@hotmail.com,nemcraft,was411,0
+758e5914-26-01,1,1/26/2014 15:29,1/26/2014 15:30,Ernie,Runyon,NULL,5732 Starling Circle,NULL,Haltom City,76117,Ernest Runyon,NULL,NULL,5732 Starling Circle,NULL,Haltom City,76117,8174286321,8178002500,ernie@runyon.org,erunyon,7vainfc,0
+b8db3014-27-01,1,1/27/2014 12:20,1/27/2014 12:20,Peter,Rompf,NULL,29 Bullard St,NULL,Mastic,11950,Peter Rompf,NULL,NULL,29 Bullard St,NULL,Mastic,11950,6316648914,NULL,iamretiredhappy@hotmail.com,peterrompf,Bismark01,1
+98463b14-27-01,1,1/27/2014 18:56,7/1/2014 12:05,Elmer,Etgen,NULL,3523 East 4th Street,NULL,Lubbock,79403,Elmer Etgen,NULL,NULL,3523 East 4th Street,NULL,Lubbock,79403,806 535-2311,806 535-2311,coke_e@sudenlink.net,coke_e@suddenlink.net,cokecb750,0
+51434414-28-01,1,1/28/2014 8:26,6/6/2016 12:38,Gerald,Tait,Gerald Tait,142 E Hazel St,NULL,Homeland,31537,Gerald Tait,Gerald Tait,NULL,142 E Hazel St,NULL,Homeland,31537,4962672921,4962672921,nocents@hotmail.com,retiredx2,amtired,0
+d16bab14-28-01,1,1/28/2014 11:26,1/28/2014 11:26,James,Billig,NULL,744 15 Ave S,NULL,St. Cloud,56301-4118,James Billig,NULL,NULL,744 15 Ave S,NULL,St. Cloud,56301-4118,(320) 253-2865,(320) 260-1036,j.b.billig@charter.net,Wayfaring,WayfaringMan,0
+f85fc614-28-01,1,1/28/2014 19:28,1/28/2014 19:28,Franklyn,Gallup,Franklyn Gallup,22111 Old Hwy 99 SW,NULL,Centralia,98531,Franklyn Gallup,Franklyn Gallup,NULL,22111 Old Hwy 99 SW,NULL,Centralia,98531,3608073122,NULL,Franklyn@woodfloorist.com,woodfloorist,fdsadr5,0
+8e3d2f14-28-01,1,1/28/2014 19:49,1/28/2014 19:49,David,Hochman,NULL,1311- 6224 17th Ave. S.E.,NULL,Calgary,T2A 7X8,David Hochman,NULL,NULL,1311- 6224 17th Ave. S.E.,NULL,Calgary,T2A 7X8,403-204-3786,403-818-5151,david.hochman@hotmail.ca,david.hochman@hotmail.ca,9795761,1
+7c2fd814-29-01,1,1/29/2014 11:15,1/29/2014 11:15,gary,brown,NULL,9024 Fieldchat Rd.,NULL,Baltimore,21236,gary brown,NULL,NULL,9024 Fieldchat Rd.,NULL,Baltimore,21236,4105294753,4439120452,gwbusaf@verizon.net,gwbusaf@verizon.net,pmaster2004,1
+6269e414-29-01,1,1/29/2014 15:19,11/24/2016 12:31,Barry,White,Camon Masonic Lodge No.343,6119 Meadow Ridge Rd.,NULL,Columbus,47203,Barry White,Camon Masonic Lodge #343,NULL,6119 Meadow Ridge Rd.,NULL,Columbus,47203,(812)372-3199,(812)343-0274,barrywhite8098@gmail.com,White1402,Secretary02,0
+a5e4d214-29-01,1,1/29/2014 17:32,1/29/2014 17:32,William,Leser,NULL,2824 Cheyenne Drive,NULL,Freeport,61032,William Leser,NULL,NULL,2824 Cheyenne Drive,NULL,Freeport,61032,8152328380,NULL,themudmaster@gmail.com,themudmaster@gmail.com,3504023,1
+b4c49714-29-01,1,1/29/2014 20:11,1/29/2014 20:11,Mark,Cowlishaw,NULL,109 Leola St,NULL,Silsbee,77656,Mark Cowlishaw,NULL,NULL,109 Leola St,NULL,Silsbee,77656,4098402106,4093634748,mlcowli@yahoo.com,mlcowli@yahoo.com,2089129,1
+762a0b14-29-01,1,1/29/2014 20:19,1/29/2014 20:19,Mark,Cowlishaw,NULL,109 Leola St,NULL,Silsbee,77656,Mark Cowlishaw,NULL,NULL,109 Leola St,NULL,Silsbee,77656,4098402106,4093634748,mlcowli@yahoo.com,mlcowli@yahoo.com,8777294,1
+13969b14-30-01,1,1/30/2014 14:40,1/30/2014 14:40,Richard,Garren,NULL,14725 Aspen View Way,NULL,Leo,46765,Richard Garren,NULL,NULL,14725 Aspen View Way,NULL,Leo,46765,2606275271,2607503337,spud61152@gmail.com,Master,55651537,0
+c7d4bb14-31-01,1,1/31/2014 0:43,1/31/2014 0:43,calvin,Kimball,rocky mountain rail,583 N 100 E,NULL,tooele,84074,Calvin Kimball,Rocky mountain rail,NULL,915 N 620 E,NULL,Tooele,84074,4358493257,NULL,calvinkimball@gmail.com,ckimba20,asdfghj1,0
+2afe3a14-31-01,1,1/31/2014 13:01,1/31/2014 13:01,Jim ,Craig,Albert Pike Lodge #303,401 S Seneca,NULL,Wichita,67213,Jim Craig,Albert Pike #303,NULL,401 S Seneca,NULL,Wichita,67213,316-269-7851,NULL,sec@albertpike303.org,apike303,sjjahc,0
+93bba314-31-01,1,1/31/2014 16:30,1/31/2014 16:30,Leonardo,Wiley,Nelson&W. and Assoc,3700 West Congress Pkwy,Aprt#504,Chicago,60624,Leonardo O Wiley,Nelson&W. and Associates,NULL,3700 West Congress Pkwy,Aprt#504,Chicago,60624,3126620862,NULL,leonardoowiley@gmail.com,LeonardoOWiley,wiley12345,0
+e73d9414-01-02,1,2/1/2014 15:29,2/1/2014 15:29,Eugene D.,Racz,NULL,16755 Melville Road,NULL,Henderson,21640-1670,Eugene D. Racz,NULL,NULL,16755 Melville Road,NULL,Henderson,21640-1670,410.482.8251,NULL,generacz@aol.com,Gene Racz,Dam77Man,0
+f712c614-03-02,1,2/3/2014 12:02,2/3/2014 12:02,Brian,Kush,NULL,PSC 41 Box 4139,NULL,APO,9464,Brian Kush,NULL,NULL,PSC 41 Box 4139,NULL,APO,9464,573-234-4491,NULL,capt_mojo1974@yahoo.com,capt_mojo1974@yahoo.com,9966615,1
+7f155f14-05-02,1,2/5/2014 14:21,2/5/2014 14:21,Don,Duplisea,NULL,158 Sunbury Drive,NULL,Fredericton Junction,E5L 1R4,Don Duplisea,NULL,NULL,158 Sunbury Drive,NULL,Fredericton Junction,E5L 1R4,506-368-1116,`506-461-1776,ddupl@nbnet.nb.ca,ddupl@nbnet.nb.ca,3893189,1
+33e81314-05-02,1,2/5/2014 16:47,2/5/2014 16:47,David,Reilly,reilly,2718 27thWay,NULL,West Palm Beach,33407,David Reilly,reilly,NULL,2718 27thWay,NULL,West Palm Beach,33407,5616157408,NULL,reillydj@att.net,djreilly,sunday3,0
+bbefd814-05-02,1,2/5/2014 20:37,2/5/2014 20:37,John,Karroum,NULL,4814 Orchard Lane,NULL,Delray Beach,33445,John Karroum,NULL,NULL,4814 Orchard Lane,NULL,Delray Beach,33445,5618431219,5618431219,jkarroum@comcast.net,jkarroum@comcast.net,4475505,1
+364bbf14-11-02,1,2/11/2014 18:41,4/18/2014 20:03,Todd,Bennicas,NULL,226 Perthshire Dr.,NULL,Lancaster,17603,Todd Bennicas,NULL,NULL,226 Perthshire Dr.,NULL,Lancaster,17603,7173934643,NULL,tbennicas@comcast.net,tbennicas,bigben,0
+397c1014-12-02,1,2/12/2014 23:38,2/12/2014 23:38,Charles,Ansell,NULL,233 St Helens Ave,Suite 508,Tacoma,98402,Charles Ansell,NULL,NULL,233 St Helens Ave,Suite 508,Tacoma,98402,2533631424,NULL,chuck.ansell@me.com,chuck.ansell@me.com,5344361,1
+f9ee6814-13-02,1,2/13/2014 9:44,2/13/2014 9:44,Robert,Bianchi,NULL,4 Rainbow Dr,NULL,Nashua,30602,Herb Steinberg,NULL,NULL,148 Warner St,NULL,Manchester,03102-4164,6033200789,6033200789,rbianchi1@comcast.net,rbianchi1@comcast.net,7572687,1
+a7681814-15-02,1,2/15/2014 15:38,2/15/2014 15:38,Allan,Martin,NULL,6 Cliffside Rd,NULL,Marblehead,1945,Allan Martin,NULL,NULL,6 Cliffside Rd,NULL,Marblehead,1945,781-639-9109,NULL,ajmartin91@hotmail.com,ajmartin91@hotmail.com,5894348,1
+9ac70214-16-02,1,2/16/2014 16:34,2/16/2014 16:34,Edward,Sisson,NULL,1966 Elm St. #2,NULL,Manchester,3104,Edward Sisson,NULL,NULL,1966 Elm St. #2,NULL,Manchester,3104,5083444313,5083444313,tedsisson@gmail.com,tedsisson,noT44you,0
+b06c1114-17-02,1,2/17/2014 20:48,2/17/2014 20:48,Henry G.,"Scanlan, Jr.",NULL,4043 Aletha Dr.,4043 Aletha Dr.,Baton Rouge,70814,"Henry G. Scanlan, Jr.",NULL,NULL,4043 Aletha Dr.,4043 Aletha Dr.,Baton Rouge,70814,225-2754220,NULL,h.g.scanlan@att.net,h.g.scanlan@att.net,1359330,1
+9383c114-20-02,1,2/20/2014 22:37,2/20/2014 22:37,William,Taylor,NULL,302 SW 8th Circle,NULL,Troutdale,97060,William Taylor,NULL,NULL,302 SW 8th Circle,NULL,Troutdale,97060,503-674-5022,503-319-5893,billt812@hotmail.com,billt812,PastMaster2010,0
+db661614-21-02,1,2/21/2014 13:38,2/21/2014 13:38,George F,Morrow,NULL,110 Applewood Drvie,NULL,Gibsonia,15044-9223,George F Morrow,NULL,NULL,110 Applewood Drvie,NULL,Gibsonia,15044-9223,724-443-0071,412-855-0798,gmorrow@consolidated.net,gmorrow@consolidated.net,6688205,1
+4ce3f114-21-02,1,2/21/2014 16:35,2/21/2014 16:35,William,Hall,Star of the East Lodge # 843,P.O. Box 926,NULL,East Hampton,11937,William Hall,Star of the East Lodge # 843,NULL,P.O. Box 926,NULL,East Hampton,11937,1-631-324-6336,1-516-443-5744,snappy9857@aol.com,snappy9857@aol.com,6601774,1
+70548a14-23-02,1,2/23/2014 12:30,2/23/2014 12:47,Glenda,Dunning,NULL,7224 Edenville Drive,NULL,Sarasota,34243,Glenda Dunning,NULL,NULL,7224 Edenville Drive,NULL,Sarasota,34243,9415045195,9415045195,vernell.electronics1@verizon.net,vernell1997,36157224bg,0
+41b1e414-24-02,1,2/24/2014 13:55,2/24/2014 13:55,Alicia,Busso,NULL,2320 Albion Pl,NULL,St. Louis,63104,Alicia Busso,NULL,NULL,2320 Albion Pl,NULL,St. Louis,63104,3145609779,NULL,aliciamhaywood@yahoo.com,aliciamhaywood@yahoo.com,3529018,1
+36495814-25-02,1,2/25/2014 23:00,2/16/2016 20:52,Michael,Carpenter,NULL,6021 Riverbend Blvd,NULL,Baton Rouge,70820,Michael Carpenter,NULL,NULL,6021 Riverbend Blvd,NULL,Baton Rouge,70820,(225) 766-7385,NULL,mikecar@bellsouth.net,Mike Carpenter,Lo9MBR,0
+a385f414-26-02,1,2/26/2014 11:43,2/26/2014 11:43,John L,Logan,NULL,13913 Kirkland Ridge,NULL,Edmond,73013,John Logan,Masonic Charity Foundation,NULL,PO Box 2406,NULL,Edmond,73083,4053487500,4054350318,jllogan@sbcglobal.net,jllogan@sbcglobal.net,5592321,1
+39f0f014-26-02,1,2/26/2014 22:53,2/26/2014 22:53,Robert ,Hadfield,NULL,1584 Lois Street,NULL,Belpre,45714,Robert Hadfield,NULL,NULL,1584 Lois Street,NULL,Belpre,45714,(304) 679-8765,(304) 679-8765,rhadfield@suddenlink.net,rhadfield@suddenlink.net,5552876,1
+7d909314-27-02,1,2/27/2014 5:40,2/27/2014 5:40,Joe,Pennington,Patesville Masonic :Lodge No. 295,712 Bayside Road,NULL,Hartsville,29550,Joe Pennington,Patesville Masonic :Lodge No. 295,NULL,712 Bayside Road,NULL,Hartsville,29550,843-383-1083,NULL,Jpennington55@roadrunner.com,jpennington55@roadrunner.com,knight55,1
+09b6f814-27-02,1,2/27/2014 9:14,11/22/2016 14:03,Stuart,Pelcyger,NULL,9074 NW 6th Court,NULL,Plantation,33324-1173,Stuart Pelcyger,NULL,NULL,9074 NW 6th Court,NULL,Plantation,33324-1173,9548926948,3475803380,spelcyger@gmail.com,spelcyger,nov231978,0
+89341414-27-02,1,2/27/2014 11:48,2/27/2014 11:48,Stephen,Pomper,NULL,2832 Forest Glen Dr,NULL,Baldwin,21013,Stephen Pomper,NULL,NULL,2832 Forest Glen Dr,NULL,Baldwin,21013,410-941-5187,NULL,spomper@comcast.net,spomper@comcast.net,8801327,1
+1a297114-27-02,1,2/27/2014 14:16,2/27/2014 14:16,Bruce,Tenney,NULL,5 Royal Dane Drive,Unit 46,Marshfield,2050,Bruce Tenney,NULL,NULL,5 Royal Dane Drive,Unit 46,Marshfield,2050,781-837-5078,NULL,tenneybruce@yahoo.com,tenneybruce@yahoo.com,7670365,1
+4a633514-02-03,1,3/2/2014 11:01,3/2/2014 11:01,Robert,Bean,Pulpit Rock Lodge,PO Box 33,NULL,Pelham,3076,Robert Bean,Pulpit Rock Lodge,NULL,22A Arlene Dr,NULL,Pelham,3076,6036353276,NULL,rsbean3@comcast.net,rbean3,prl0103,0
+7891e814-02-03,1,3/2/2014 11:37,3/2/2014 11:37,Shelt,Stargell,NULL,6795 Powers st.,NULL,Riverssale,30296,S. Stargell,NULL,NULL,5020,Old Dixie Hwy.,Forest Park,30297,404-395-3628,404-395-3628,sheltons@mid-southroof.com,Bro. Stargell,single4life,0
+15783d14-03-03,1,3/3/2014 13:16,3/3/2014 13:16,Tim,Hines,NULL,25 Greene Burch Drive,NULL,Bryson City,28713,Tim Hines,NULL,NULL,25 Greene Burch Drive,NULL,Bryson City,28713,8287361629,8287361629,hinestim@gmail.com,hinestim,Password1,0
+0955ff14-03-03,1,3/3/2014 13:52,3/3/2014 13:55,Douglas,Stam,Mission Valley Lodge #78,37376 Ponderilla Dr.,NULL,Polson,59860,Douglas Stam,Mission Valley Lodge #78,NULL,37376 Ponderilla Dr.,NULL,Polson,59860,406-883-4480,NULL,douglas302@centurytel.net,Masons,doug1001,0
+1bebb714-03-03,1,3/3/2014 17:45,3/3/2014 18:01,Daniel,Adams,NULL,130 Elizabeth Circle,NULL,Jackson,30233,Daniel Adams,NULL,NULL,130 Elizabeth Circle,NULL,Jackson,30233,7707750634,4048224734,danusadams@gmail.com,danusadams,mar0398,0
+e3df3314-03-03,1,3/3/2014 19:54,3/3/2014 19:58,Robert,Morrow,NULL,71603 N Pederson Rd,NULL,West Richland,99353,Robert Morrow,NULL,NULL,71603 N Pederson Rd,NULL,West Richland,99353,5095283050,NULL,lokismom96@gmail.com,lokismom96,ericka83,0
+eed5e414-03-03,1,3/3/2014 20:31,3/3/2014 20:31,JOEL,JONES,NULL,3438 S. MIFFLIN WESTFORK RD,NULL,ENGLISH,47118,JOEL JONES,NULL,NULL,3438 S. MIFFLIN WESTFORK RD,NULL,ENGLISH,47118,8123382018,NULL,mason97@juno.com,MASON97,akahAbiff,0
+999e5214-03-03,1,3/3/2014 21:03,3/3/2014 21:03,Matthew,Appel,NULL,18229 60th Ave. W,NULL,Lynnwood,98037,Matthew Appel,NULL,NULL,18229 60th Ave. W,NULL,Lynnwood,98037,4256730867,4254184713,mappel3@comcast.net,mappel3@comcast.net,1398038,1
+f83be014-03-03,1,3/3/2014 22:49,3/3/2014 22:49,Edward,Woods,NULL,106 E Arcadia Ave,NULL,Shelton,98584,Edward Woods,NULL,NULL,106 E Arcadia Ave,NULL,Shelton,98584,3600000000,3604906989,W00dsEdwardC_DDGM16@comcast.net,W00dsEC,MMas0n,0
+e02cb314-04-03,1,3/4/2014 6:56,3/4/2014 6:56,alan,lindsey,NULL,7920 haddon hall way,NULL,baldwinsville,13027,alan lindsey,NULL,NULL,7920 haddon hall way,NULL,baldwinsville,13027,3156381245,NULL,awlsr@hotmail.com,awlsr1,imalan,0
+7cbd7e14-04-03,1,3/4/2014 9:13,3/4/2014 9:13,Michael,Hoff,NULL,9632 Horseshoe Island Road,NULL,Clay,13041,Michael Hoff,NULL,NULL,9632 Horseshoe Island Road,NULL,Clay,13041,3159359582,NULL,k9hoff@aol.com,k9hoff,Wodans123,0
+a9b3a614-04-03,1,3/4/2014 12:39,3/4/2014 12:39,Russ,Charvonia,NULL,5536 N. Bryn Mawr,NULL,Ventura,93003,Russ Charvonia,NULL,NULL,5536 N. Bryn Mawr,NULL,Ventura,93003,8056507511,8052581037,rcharvonia@freemason.org,rcharvonia@freemason.org,3626713,1
+5c45cb14-04-03,1,3/4/2014 17:44,3/4/2014 17:44,Frank,Loui,A&ASR,2850 19th Avenue,NULL,San Francisco,94132-1602,Frank Loui,A&ASR,NULL,2850 19th Avenue,NULL,San Francisco,94132-1602,4156098839,4156098839,frankloui@aol.com,frankloui@aol.com,5039377,1
+22ad5214-04-03,1,3/4/2014 18:07,3/4/2014 18:07,john,justice,acacia lodge 155,5970 cullen drive,NULL,sabillasville,21780,john justice,acacia lodge 155,NULL,5970 cullen drive,NULL,sabillasville,21780,3015290502,3015290502,justiceje@aol.com,jjustice,whocares,0
+df3d9614-04-03,1,3/4/2014 23:51,3/4/2014 23:51,Russ,Todd,NULL,12 Stonewood Drive,NULL,Old Lyme,6371,Russ Todd,NULL,NULL,12 Stonewood Drive,NULL,Old Lyme,6371,8604347073,NULL,Spybandit@aol.com,Spybandit@aol.com,8310042,1
+ed9df314-05-03,1,3/5/2014 10:19,3/5/2014 10:19,Arthur,Polsey,Arthur Polsey,21716 Hyerwood,NULL,San Antonio,78259,Arthur Polsey,NULL,NULL,21716 Hyerwood,NULL,San Antonio,78259,(210) 437-1507,(210) 385-7370,apolsey@icloud.com,apolsey,Beerrules22,0
+b47e7d14-05-03,1,3/5/2014 14:15,3/5/2014 14:15,Smith,Boyd,NULL,PO Box 1057,NULL,Livingston,35470,Smith D Boyd,NULL,NULL,2606-8th St,Suite B,Meridian,39301,2056522127,2056090327,sumter_theatre@yahoo.com,Misskat,stpvdvd1,0
+c13cee14-05-03,1,3/5/2014 14:41,3/5/2014 14:41,Larry,Thomas,Larry Thomas,2068 Resort Street,NULL,Navarre,32566,Larry Thomas,Larry Thomas,NULL,2068 Resort Street,NULL,Navarre,32566,8509397332,8505011277,larry@elijahreyes.com,larry@elijahreyes.com,5119916,1
+20882914-05-03,1,3/5/2014 15:46,3/5/2014 15:46,Henry,Voegtle,NULL,9431 Loma Vista Dr,NULL,Dallas,75243,Henry J. Voegtle,NULL,NULL,PMB 363.,"9090 Skillman St, Ste 182-A",Dallas,75243,2143415840,2143415840,hvoegtle@ix.netcom.com,hvoegtle@ix.netcom.com,8514654,1
+d1269b14-06-03,1,3/6/2014 13:07,3/6/2014 13:07,ROBERT,ATTEBERY,NULL,9944 Killdeer Lane,NULL,Lakeland,33810,Robert R Attebery,NULL,NULL,9944 Killdeer Lane,NULL,Lakeland,33810,863-327-3610,863-327-3610,r.r.attebery@att.net,rrattebery,valdal6875,0
+c6e23c14-06-03,1,3/6/2014 14:15,3/6/2014 14:15,Charlie,Odorizzi,Next Millennium,3141 N. 93rd St.,NULL,Omaha,68134,Charlie Odorizzi,Next Millennium,NULL,3141 N. 93rd St.,NULL,Omaha,68134,402-393-1121,NULL,hypnos@ix.netcom.com,hypnos68134,25042504,0
+d2076914-06-03,1,3/6/2014 17:39,3/6/2014 17:39,Robert,Vighi,NULL,PO Box 88448,NULL,Carol Stream,60188-0448,Robert Vighi,NULL,NULL,PO Box 88448,NULL,Carol Stream,60188-0448,630-213-9656,630-992-9656,rvighi@dls.net,213024019rlv,Eagle50rlv$357,0
+a177e714-08-03,1,3/8/2014 9:32,3/8/2014 9:32,Roy,Miles,The Miles Company,1605 Craggie Hope Rd,NULL,Kingston Springs,37082,Roy Miles,The Miles Company,NULL,1605 Craggie Hope Rd,NULL,Kingston Springs,37082,615 952-9552,615 347-0112,Roy@TheMilesCo.Com,Roy@TheMilesCo.Com,Goat1855,0
+cd934b14-08-03,1,3/8/2014 10:02,3/8/2014 10:02,Phillip,Hurwitz,NULL,72 Long Pond Road,NULL,Rochester,14612,Phillip Hurwitz,NULL,NULL,72 Long Pond Road,NULL,Rochester,14612,585-720-9653,NULL,phurwitz@frontiernet.net,phurwitz@frontiernet.net,9969686,1
+7d7e4914-09-03,1,3/9/2014 0:35,5/30/2015 15:15,WALTER,TRINKALA,NULL,1500 PROSPECT DRIVE,NULL,Chesapeake,23322,WALTER TRINKALA,NULL,NULL,1500 PROSPECT DRIVE,NULL,Chesapeake,23322,7574827192,7574827192,mrfxtrade@gmail.com,fxtrade,wealth,0
+13b0b614-09-03,1,3/9/2014 16:21,3/9/2014 16:21,Robert,Gordon,NULL,1000 Azalea Drive,NULL,Roswell,30075-4747,Robert Gordon,NULL,NULL,1000 Azalea Drive,NULL,Roswell,30075-4747,770-998-2299,678-848-0140,gordonroberte@netzero.net,gordonroberte,UNicorn11**,0
+f241eb14-10-03,1,3/10/2014 12:29,3/10/2014 12:29,Jerry,Post,NULL,1541 Catherine Court,NULL,Suwanee,30024,Jerry Post,NULL,NULL,1541 Catherine Court,NULL,Suwanee,30024,7704760726,NULL,jerry_post@att.net,jerry_post@att.net,1039704,1
+3e9a4914-10-03,1,3/10/2014 18:36,3/10/2014 18:36,Ólafur,Magnusson,Donna ehf,Móhellu 2,NULL,Hafnarfjordur ICELAND,IS 221,Ólafur Magnusson,Donna ehf - ICELAND,NULL,Móhellu 2,ICELAND,Hafnarfjordur,IS 221,3545553100,3548962911,olafurmag@me.com,olafurmag@me.com,vaskur,0
+b1968a14-10-03,1,3/10/2014 19:50,3/10/2014 19:50,Tim,Stickney,NULL,1 Deer Lane,NULL,Epsom,3234,Tim Stickney,NULL,NULL,1 Deer Lane,NULL,Epsom,3234,603-736-0301,603-856-1957,Timothy.stickney72@gmail.com,sticti,ffemti,1
+62bd2f14-11-03,1,3/11/2014 12:37,11/2/2016 14:42,Jack,Weber,NULL,7005 Fallen Timbers Dr.,NULL,Dublin,43017,Jack Weber,NULL,NULL,7005 Fallen Timbers Dr.,NULL,Dublin,43017,614.579.0900,614.579.0900,jackweber@gmail.com,jackweber3,!225Riacwabor,0
+aa5c8b14-11-03,1,3/11/2014 15:34,3/11/2014 15:34,Adam,Kendall,"Grand Lodge of California, F. & A.M.",1111 California Street,NULL,San Francisco,94108,Adam Kendall,"Grand Lodge of California, F. & A.M.",NULL,1111 California Street,NULL,San Francisco,94108,415-292-9137,415-640-4317,akendall@freemason.org,akendall@freemason.org,3968644,1
+24bd6114-11-03,1,3/11/2014 19:08,5/13/2016 14:00,Paschal,King,NULL,PO Box 282,NULL,Rio Grande,45674,Paschal King,NULL,NULL,PO Box 282,NULL,Rio Grande,45674,7406823029,6143705545,paschal@sprintmail.com,hazben,cricket,0
+892c0014-11-03,1,3/11/2014 22:24,7/17/2016 17:29,James E,Acton,NULL,PO Box 862,NULL,League City,77574,James E Acton,NULL,NULL,PO Box 862,NULL,League City,77574,409.539.9489,409.539.9489,Bills@ElvesAtNight.com,BossDukeX1,Maryjane1121,0
+f0a3c214-11-03,1,3/11/2014 22:37,2/14/2015 20:12,Daniel,Ruiz-Isasi,NULL,8302 Our Road,NULL,Clermont,34714,Daniel Ruiz-Isasi,NULL,NULL,8302 Our Road,NULL,Clermont,34714,2125947600,2125947600,daniel.ruizisasi@gmail.com,Farfarelli,Mewlips,0
+f878b314-12-03,1,3/12/2014 10:18,3/12/2014 10:21,Robert,House,Amber Lodge 395,381 Nichols Road,NULL,Winthrop,13697,Robert House,Amber Lodge 395,NULL,381 Nichols Road,NULL,Winthrop,13697,3153894607,NULL,bob@fifeshirefarm.com,houserallen,F1feShire,0
+ea49f614-12-03,1,3/12/2014 15:34,6/23/2014 20:00,Larry,Perkins,NULL,16824 460th St.,NULL,Laurens,50554,Larry Perkins,NULL,NULL,16824 460th St.,NULL,Laurens,50554,7128452218,NULL,lperkins@ncn.net,lperkins@ncn.net,LP2218,0
+d5458d14-12-03,1,3/12/2014 20:33,3/12/2014 20:33,Jim,Olson,NULL,P.O.Box 883,NULL,Custer,57730,Jim Olson,NULL,NULL,P.O.Box 883,NULL,Custer,57730,6056734012,NULL,secretary@custerlodge66.org,secretary@custerlodge66.org,6534905,1
+14b70b14-12-03,1,3/12/2014 22:04,3/12/2014 22:04,Donald,Magill,NULL,2284 Farm to Market Rd,NULL,Johnson City,13790,Donald Magill,NULL,NULL,2284 Farm to Market Rd,NULL,Johnson City,13790,607-754-9219,NULL,Dutch744@aol.com,Dutch744@aol.com,3720378,1
+e0cccf14-13-03,1,3/13/2014 14:51,3/13/2014 14:51,JERRY,SPILLERS,JERRY SPILLERS,5591,MEADOW BROOK WAY,MARYSVILLE,95901,JERRY SPILLERS,JERRY SPILLERS,NULL,5591,MEADOW BROOK WAY,MARYSVILLE,95901,530-645-7457,530-434-3759,popjwss@gmail.com,popjwss@gmail.com,1010906,1
+f9fb4d14-13-03,1,3/13/2014 16:22,7/25/2016 13:59,David,Doan,NULL,12010 Alderbrook Street,NULL,Moorpark,93021-3130,David Doan,NULL,NULL,12010 Alderbrook Street,NULL,Moorpark,93021-3130,805-523-1748,805-990-6528,drdoan@at.net,drdoan@att.net,monte4us,0
+f42e4d14-14-03,1,3/14/2014 10:07,3/14/2014 10:07,Lawrence,Thompson,NULL,805 Shorewood Dr,NULL,Coppell,75019,Lawrence Thompson,NULL,NULL,805 Shorewood Dr,NULL,Coppell,75019,2144166960,2144166960,larry_thompson99@yahoo.com,larry_thompson99@yahoo.com,8360105,1
+3679b314-14-03,1,3/14/2014 13:39,3/26/2014 20:02,Preston,Schultz,Preston Schultz,13011 Elm Grove Rd,NULL,Buda,78610,Preston Schultz,Preston Schultz,NULL,13011 Elm Grove Rd,NULL,Buda,78610,512-517-1312,512-517-1312,pandbschultz@aol.com,pwschultz,samthea,0
+266abd14-15-03,1,3/15/2014 0:12,3/15/2014 0:12,Will ,Adams,Fairfax 43 AF&AM,19240 Rolling Hills Drive ,NULL,Culpeper,22701,Will Adams,Fairfax 43 AF&AM,NULL,19240 Rolling Hills Drive ,NULL,Culpeper,22701,540-359-0559,NULL,blackhawk23718@gmail.com,blackhawk23718,nvgplt23,0
+21831b14-15-03,1,3/15/2014 14:06,3/15/2014 14:06,Richard,ALe,Flagstaff Lodge #7,107 E. Birch Ave,NULL,Flagstaff,86001,Richard ALe,Flagstaff Lodge #7,NULL,107 E. Birch Ave,NULL,Flagstaff,86001,928 774 2861,NULL,Flagstaff7Secretary@gmail.com,flagstaff7secretary,richard8925,0
+7c82b214-16-03,1,3/16/2014 19:49,3/16/2014 19:49,Monte,Miller,NULL,2310 Zenith Ave N,NULL,Golden Valley,55422,Monte Miller,NULL,NULL,2310 Zenith Ave N,NULL,Golden Valley,55422,(612) 859-7019,(612) 859-7019,montekristo1@mac.com,mmmfsu49,4bailey,0
+dc171414-17-03,1,3/17/2014 16:22,3/17/2014 16:22,Peter,Varney,NULL,1520 East Worthington Avenue,NULL,Charlotte,28203,Peter Varney,NULL,NULL,1520 East Worthington Avenue,NULL,Charlotte,28203,4044846490,4044846490,petervarney@gmail.com,petermvarney,500nsharonamity,0
+9b3ef514-17-03,1,3/17/2014 19:00,3/17/2014 19:00,Dan,Ford,NULL,141 Sequester Dr,NULL,Stafford,22556,Dan Ford,Frank P. Moncure Masonic Lodge,NULL,141 Sequester Drive,NULL,Stafford,22556,5402860298,7034023673,dford10176@comcast.net,dford10176@comcast.net,3864808,1
+01e0ba14-18-03,1,3/18/2014 2:08,6/4/2016 1:18,Ed,Halpaus,NULL,612 McLean Street,NULL,Mora,55051,Ed Halpaus,NULL,NULL,612 McLean Street,NULL,Mora,55051,7635520466,7635164435,erhmasonic@gmail.com,edhalpaus,19labrodale94,0
+0ac9b114-18-03,1,3/18/2014 14:47,3/18/2014 14:47,Wm. J,Hollingsworth,Wm J. Hollingsworth,320 W. Torrance St.,NULL,Maryville,64468,Wm. J Hollingsworth,Wm J. Hollingsworth,NULL,320 W. Torrance St.,NULL,Maryville,64468,660 582-8573,NULL,x26729@centurylink.net,x26729@centurylink.net,3603997,1
+59b8b114-20-03,1,3/20/2014 11:25,3/20/2014 11:25,Douglas,Hammond,Doug Hammond Mining,405 Hammond Lane ,Box 705,Challis,83226,Douglas Hammond,Doug Hammond Mining,NULL,405 Hammond Lane ,Box 705,Challis,83226,208-879-4218,208-833-4218,cvfd1@custertel.net,cvfd1@custertel.net,9389950,1
+1792c014-20-03,1,3/20/2014 17:22,2/12/2015 21:38,Calvin D,Shaver,NULL,30333 Wellton Mohawk Dr,Coach Stop RV Park #63,Wellton,85356,Calvin D Shaver,NULL,NULL,30333 Wellton Mohawk Dr,Coach Stop RV Park #63,Wellton,85356,403.485.2821,403.540.9575,calvinshaver@cciwireless.ca,cshaver,Wellton63,0
+e9228114-20-03,1,3/20/2014 22:57,3/20/2014 22:57,Levone,Sutton,NULL,464 Sam Gibbs Road,NULL,Arab,35016,Levone Sutton,NULL,NULL,464 Sam Gibbs Road,NULL,Arab,35016,2565863548,2567383122,bro.sutton663@gmail.com,bro.sutton663@gmail.com,9774653,1
+1e247814-21-03,1,3/21/2014 0:11,3/21/2014 0:11,Dudley,Smith,NULL,PO Box 851123,NULL,Yukon,73085,Ridge Smith,NULL,NULL,621 West Main,NULL,Yukon,73099,405-324-2995,405-990-8835,ridge_s@hotmail.com,ridge_s@hotmail.com,8906097,1
+14aac014-21-03,1,3/21/2014 11:41,3/21/2014 11:41,Dean ,White,Valley of Freeport,305 W. Stephenson,NULL,Freeport,61032,Dean White,Valley of Freeport,NULL,305 W. Stephenson,NULL,Freeport,61032,815-233-0513,815-541-2772,masons@aeroinc.net,masons@aeroinc.net,3060634,1
+0a13f314-23-03,1,3/23/2014 13:54,3/23/2014 13:54,Matthew,Lewis,NULL,643 N. Main Street,NULL,Elizabethtown,42701,Matthew Lewis,NULL,NULL,643 N. Main Street,NULL,Elizabethtown,42701,000-000-0000,270-505-0497,supermatt139@yahoo.com,supermatt139@yahoo.com,4274637,1
+0ee65214-23-03,1,3/23/2014 13:54,3/23/2014 13:54,Matthew,Lewis,NULL,643 N. Main Street,NULL,Elizabethtown,42701,Matthew Lewis,NULL,NULL,643 N. Main Street,NULL,Elizabethtown,42701,000-000-0000,270-505-0497,supermatt139@yahoo.com,supermatt139@yahoo.com,8418403,1
+d8224614-23-03,1,3/23/2014 22:53,3/23/2014 22:53,Gregory,Curtin,NULL,P.O. Box 5159,NULL,Pahrump,89041,Gregory F. Curtin,Pahrump Lodge 54,NULL,3251 E. Kaibab St.,NULL,Pahrump,89048,7022370883,7022370883,Kingcurtin@yahoo.com,JuniorPahrump54,GFc23EBGct,0
+a4c31514-24-03,1,3/24/2014 11:45,4/12/2016 15:56,Richard,Strich,NULL,5824 DAVIS FORD RD,NULL,MANASSAS,20112-3039,Richard Strich,NULL,NULL,5824 DAVIS FORD RD,NULL,MANASSAS,20112-3039,7035903123,NULL,sbarons@verizon.net,dstrich,19bUICK68,0
+80cb5914-25-03,1,3/25/2014 7:54,3/25/2014 7:54,JOHN,KARROUM,NULL,4814 ORCHARD LANE,NULL,DELRAY BEACH,33445,JOHN KARROUM,NULL,NULL,4814 ORCHARD LANE,NULL,DELRAY BEACH,33445,5618431219,5618431219,JKARROUM@COMCAST.NET,JKARROUM@COMCAST.NET,4365806,1
+5a72a614-25-03,1,3/25/2014 11:33,3/25/2014 11:33,August,Molitano,NULL,PO Box 427,NULL,Riverton,6065,August Molitano,NULL,NULL,PO Box 427,NULL,Riverton,6065,860-379-1185,NULL,cdb1865@snet.net,cdb1865@snet.net,9361966,1
+7a5f0f14-25-03,1,3/25/2014 13:36,8/8/2016 20:01,KIRBY,MARCHAND,NULL,3402 Fieldcrest Drive,NULL,North Versailles,15137,KIRBY MARCHAND,NULL,NULL,3402 Fieldcrest Drive,NULL,North Versailles,15137,412-824-4354,412-370-0555,kirby.marchand@rocketmail.com,kirby.marchand@rocketmail.com,Valley#613,0
+1619dc14-25-03,1,3/25/2014 15:42,3/25/2014 15:42,Bruce,Douglass,NULL,3714 Marquita Ln.,NULL,Houston,77039-5749,Bruce Douglass,NULL,NULL,3714 Marquita Ln.,NULL,Houston,77039-5749,281-449-6872,381-594-0101,forgiven1@gmail.com,bruceb1,coy123138,0
+33463d14-25-03,1,3/25/2014 18:54,3/25/2014 18:54,Robert,Decelle,St. Matthews Lodge,44 Linwood St,NULL,Andover,1810,Robert Decelle,St. Matthews Lodge,NULL,44 Linwood St,NULL,Andover,1810,9784092375,NULL,rhdecelle@comcast.net,rhdecelle@comcast.net,9503616,1
+b8d1e514-25-03,1,3/25/2014 20:44,3/25/2014 20:44,Lawrence ,Rosen,NULL,Po box 206 ,NULL,Alburgh,5440,Larry Rosen,NULL,NULL,24 west shore rd,Po box 206,Alburgh,5440,802-796-3761,8023721515,Larryr409@hotmail.com,Larryr409@hotmail.com,3949569,1
+21d2c714-25-03,1,3/25/2014 23:45,3/25/2014 23:45,Chuck,Brust,NULL,421 11th Ave SE,NULL,Rochester,55904,Chuck Brust,NULL,NULL,421 11th Ave SE,NULL,Rochester,55904,5072545712,5072545712,brust.charles@mayo.edu,brust.charles@mayo.edu,6888341,1
+328b6714-26-03,1,3/26/2014 16:34,3/26/2014 16:34,D.Frank,Buchanan,NULL,302 Millbrook Ave,NULL,Randolph,7869,D.Frank Buchanan,NULL,NULL,302 Millbrook Ave,NULL,Randolph,7869,973-366-3871,NULL,frabar1@verizon.net,frabar1@verizon.net,1189480,1
+79221214-27-03,1,3/27/2014 11:43,3/27/2014 11:43,Jerry,Underwood,Grand Lodge of Alabama,P. O. Box 1070,NULL,Millbrook,36054,Jerry Underwood,Grand Lodge of Alabama,NULL,341 Monument Drive,NULL,Millbrook,36054,334-290-0961,NULL,Bkeeper@bellsouth.net,Bkeeper@bellsouth.net,8601125,1
+c90a6a14-27-03,1,3/27/2014 14:56,3/27/2014 14:56,Jorge,Filgueira,NULL,191 Chippewa Street,NULL,Miami Springs,33166,Jorge Filgueira,NULL,NULL,191 Chippewa Street,NULL,Miami Springs,33166,305-884-6229,754-264-4195,jfilgueirams@gmail.com,JFilgueirams,CGC046390,0
+be304114-27-03,1,3/27/2014 20:53,3/27/2014 20:53,Fred,Miller,Miller Realty,98 Picketts Ridge Road,NULL,West Redding,6896,Fred V. Miller Sr,NULL,NULL,98 Picketts Ridgfe Road,NULL,West Redding,6896,203-938-3289,NULL,millerrealty98@gmail.com,Fred V. Miller Sr,moose7,0
+a5607814-28-03,1,3/28/2014 5:48,6/16/2014 17:42,James C.,Clifford,"James C. Clifford, KYCH",P.O. Box 376,NULL,Ballentine,29002-0376,James C. Clifford,"James C. Clifford, KYCH",NULL,P.O. Box 376,NULL,Ballentine,29002-0376,803.407.9175,803.318.2134,JCClifford@scfreemasonry.org,JCClifford,JCClif4d,0
+86e1fc14-28-03,1,3/28/2014 9:15,3/28/2014 9:15,Darin,Lorenzen,NULL,103 Cypress Drive,NULL,Newark,19713,Darin Lorenzen,NULL,NULL,103 Cypress Drive,NULL,Newark,19713,3025405509,3025405509,darinlorenzen@yahoo.com,darinlorenzen,CyPress103,0
+7df48414-28-03,1,3/28/2014 9:54,3/28/2014 9:54,Gene,Porter Jr,Bristol Lodge #25,917 Park Ave,NULL,Bristol,19007,Gene Porter Jr,Bristol Lodge #25,NULL,917 Park Ave,NULL,Bristol ,19007,267-942-6000,215-431-6174,genep79@comcast.net,Bristollodge#25,Mason2014,0
+b5bf1814-28-03,1,3/28/2014 11:36,3/28/2014 11:36,John C,Edenfield Jr,NULL,1471 Johnson Corner Rd,NULL,Lyons,30436,John C Edenfield Jr,NULL,NULL,1471 Johnson Corner Rd,NULL,Lyons,30436,912-565-7167,912-293-3612,jedenfield@wildblue.net,jedenfield,3Redtailhawk,0
+076fe714-28-03,1,3/28/2014 13:09,3/28/2014 13:09,Richard,Maris,Eugene Lodge 11,513 Pinto Way,NULL,Eugene,97401,Richard G. Maris,Eugene Lodge 11,NULL,513 Pinto Way,NULL,Eugene,97401,541-344-9413,NULL,eugenelodge11@gmail.com,eugenelodge11@gmail.com,8793302,1
+37035414-28-03,1,3/28/2014 15:52,3/28/2014 15:52,Brian,Lester,NULL,PO Box 2635,NULL,Amagansett,11930,Brian Lester,"Tarbet & Lester, PLLC",NULL,PO Box 2635,524 Montauk Highway,Amagansett,11930,631-329-8141,NULL,bjl455@aol.com,bjl455@aol.com,5476903,1
+c5749414-28-03,1,3/28/2014 16:34,3/28/2014 16:34,Maier,Fein,NULL,12 Mayfield Ter,NULL,East Lyme,06333-1326,Maier Fein,NULL,NULL,12 Mayfield Ter,NULL,East Lyme,06333-1326,8607396842,NULL,feinmo@att.net,feinmo,maiero16,0
+8e9df614-28-03,1,3/28/2014 18:34,3/28/2014 18:34,Patrick,Stull,NULL,24 Willadell Road,NULL,Transfer,16145,Patrick Stull,NULL,NULL,24 Willadell Road,NULL,Transfer,16145,724-962-3573,NULL,pudpud2@veizon.net,pudpud2@veizon.net,9919296,1
+b440fc14-29-03,1,3/29/2014 6:34,3/29/2014 6:34,Paul,Keller,NULL,1409 Phillip Fulmer Pkwy,NULL,Winchester,37398,Paul Keller,NULL,NULL,1409 Phillip Fulmer Pkwy,NULL,Winchester,37398,9316360013,9316360013,pekeller@bellsouth.net,pekeller@bellsouth.net,9065176,1
+46090514-29-03,1,3/29/2014 16:35,3/29/2014 16:35,Michael,Henry,NULL,3308 El Camino Avenue,Ste 300-194,Sacramento,95821,Michael Henry,NULL,NULL,3308 El Camino Avenue,Ste 300-194,Sacramento,95821,916-483-3166,NULL,mhenrycmt@sbcglobal.net,mhenrycmt@sbcglobal.net,4851108,1
+0cd1fb14-29-03,1,3/29/2014 17:27,3/29/2014 17:27,Darren,Engelhart,NULL,PO Box 1822,NULL,Issaquah,98027,Darren Engelhart,NULL,NULL,PO Box 1822,NULL,Issaquah,98027,2069485073,2069485073,darren.engelhart@gmail.com,Lucemia,Kimberly37,0
+d67f0d14-29-03,1,3/29/2014 18:04,3/29/2014 18:05,Carl,Bliss,Konosioni Lodge # 950,116 East Genesee St ,NULL,Fayetteville,13066,Carl Bliss,Sec Konosioni #950,NULL,759 Taft Ave,NULL,Syracuse,13206,315-256-5349,315-256-5349,secretary950@gmail.com,K950ny14,P9a7332914,0
+c660d514-29-03,1,3/29/2014 19:52,4/28/2015 8:05,William,Mackey,NULL,29 Randal Avenue,NULL,West Hartford,06110-1744,William Mackey,NULL,NULL,29 Randal Avenue,NULL,West Hartford,06110-1744,8607133243,8607133243,will_mackey@yahoo.com,willmackey,01144141BEA5001,0
+b35f9214-30-03,1,3/30/2014 13:47,9/2/2016 21:34,Raymond,Robey,NULL,1201 Stanford Road,NULL,Bethlehem,18018-2215,Raymond Robey,NULL,NULL,1201 Stanford Road,NULL,Bethlehem,18018-2215,610-868-6424,610-657-5031,RARobey@hotmail.com,RARobey,11-Jul-87,0
+8330ce14-30-03,1,3/30/2014 15:29,3/30/2014 15:29,James W,Golladay Jr,James W Golladay JR,P O Box 159,NULL,Stephens City,22655,James W Golladay Jr,James W Golladay JR,NULL,P O Box 159,NULL,Stephens City,22655,540*869*3784,NULL,golladay01@verizon.net,golladay01@verizon.net,5443807,1
+51ea6914-30-03,1,3/30/2014 16:04,3/30/2014 16:04,tim,schupfer,potomac lodge 100,17 greene st,NULL,cumberland,21502,tim,schupfer,NULL,14505 bourbon st sw,NULL,cumberland,21502,301-697-9760,NULL,susan@atlanticbb.net,timmaster100,sentinels01,0
+1eab2a14-30-03,1,3/30/2014 16:36,8/11/2014 17:15,Patrick,Stull,NULL,24 Willadell Road,NULL,Transfer,16154,Patrick Stull,NULL,NULL,24 Willadell Road,NULL,Transfer,16154,724-962-3573,NULL,pudpud2@verizon.net,patrickpm,patrickpm,1
+f50d1d14-30-03,1,3/30/2014 17:17,10/3/2016 18:50,John,Blake,NULL,PO BOX 48,NULL,Weiser,83672,John Blake,NULL,NULL,PO BOX 48,NULL,Weiser,83672,208-549-1627,208-550-7743,blakejoh@yahoo.com,blakejoh,msa.4jhb,0
+eecb8214-30-03,1,3/30/2014 19:31,7/22/2016 22:09,KENNETH,KINSER,NULL,44 GEORGE BROWN STREET,NULL,BILLERICA,01821-2223,KENNETH KINSER,NULL,NULL,44 GEORGE BROWN STREET,NULL,BILLERICA,01821-2223,978-663-8835,978-808-1630,kenneth.kinser@comcast.net,kenkwk,rlk421953,0
+dc0d6d14-30-03,1,3/30/2014 21:43,3/30/2014 21:43,alvin,davis,NULL,3752 corte bella hills ave,NULL,north Las Vegas,89081,alvin davis,NULL,NULL,3752 corte bella hills ave,NULL,north Las Vegas,89081,000-000-0000,210-414-8004,adav99_99@yahoo.com,aldavis,amye81,0
+144d9c14-31-03,1,3/31/2014 10:04,9/10/2014 9:42,Elvis ,Willis,Solomon's Lodge No. 1,P. O. Box 1734,NULL,Savannah,31402,Elvis Willis,Solomon's Lodge No. 1,NULL,P. O. Box 1734,NULL,Savannah,31402,912-826-2514,912-704-8753,scoutrick@windstream.net,Solomon's,lodge1,0
+51e28c14-31-03,1,3/31/2014 11:10,3/31/2014 11:10,P.,van Oosten,NULL,PO Box 817,NULL,Wilmette,60091,P. van Oosten,NULL,NULL,PO Box 817,NULL,Wilmette,60091,224-425-8669,NULL,pvo@vanoosten.us,pvo@vanoosten.us,msana2008,0
+549a1e14-31-03,1,3/31/2014 21:54,3/31/2014 21:54,John,Bonnett,NULL,520 Parkwood Drive,NULL,Twin Falls,83301,John Bonnett,NULL,NULL,520 Parkwood Drive,NULL,Twin Falls,83301,2082125327,2082125327,clearlycomputer@gmail.com,clearlycomputer,hellno6668,0
+0892d514-01-04,1,4/1/2014 8:42,4/1/2014 8:42,Ken,Gilbreath,NULL,P.O. Box 32703,NULL,Knoxville,37930,Ken Gilbreath,NULL,NULL,P.O. Box 32703,NULL,Knoxville,37930,865-357-6970,NULL,kengilbreath999@gmail.com,broken,alpha*msana,0
+f10d3e14-01-04,1,4/1/2014 8:59,4/1/2014 8:59,Paul,Keller,NULL,1409 Phillip Fulmer Pkwy,NULL,Winchester,37398,Paul Keller,NULL,NULL,1409 Phillip Fulmer Pkwy,NULL,Winchester,37398,931-636-0013,931-636-0013,Paul.Keller@va.gov,Paul.Keller@va.gov,3883652,1
+85739314-01-04,1,4/1/2014 9:03,11/18/2016 9:52,Jim,Gleason,NULL,5573 Rockpointe Dr,NULL,Clifton,20124,Jim Gleason,NULL,NULL,5573 Rockpointe Dr,NULL,Clifton,20124,703 631-5010,703 999-9469,james.gleason5@verizon.net,JimGleason,240Sundeck,0
+e6779d14-01-04,1,4/1/2014 16:20,4/1/2014 16:20,Duilio,Solorzano,NULL,14466 sw 157 path,NULL,Miami,33196,Duilio Solorzano,NULL,NULL,14466 sw 157 path,NULL,Miami,33196,305-971-8460,786-457-1159,duiliosolorzano@bellsouth.net,duiliosolorzano@bellsouth.net,2208319,1
+242b7914-01-04,1,4/1/2014 18:54,10/17/2016 17:11,DOUG,JEROME,NULL,1346 SW LESCHI DR,NULL,OAK HARBOR,98277,DOUG JEROME,NULL,NULL,1346 SW LESCHI DR,NULL,OAK HARBOR,98277,3606720459,NULL,D.JEROME@FRONTIER.COM,QUACKER111,3159X0U,0
+5d87cd14-02-04,1,4/2/2014 5:49,4/2/2014 5:49,Kurtis,Lowe,19892 640 3/14,415 S Kensington St,NULL,Arlington,22204,Kurtis Lowe,19892 640 3/14,NULL,415 S Kensington St,NULL,Arlington,22204,7036640670,7038194398,proflowe@hotmail.com,lowefamily,krtt3203,0
+a27d4e14-02-04,1,4/2/2014 8:06,4/2/2014 8:06,Craig,Olson,NULL,112 S. Greenwood,NULL,Eureka,67045,Craig Olson,NULL,NULL,112 S. Greenwood,NULL,Eureka,67045,620-583-5135,620-717-2112,craig@invena.com,craigoslon,hiramole,0
+563ce914-02-04,1,4/2/2014 11:08,4/2/2014 11:09,David,Freeman,NULL,4008 West 204th Street,NULL,Fairview Park,44126,David Freeman,NULL,NULL,4008 West 204th Street,NULL,Fairview Park,44126,440-835-6814,NULL,david.freeman@morganstanley.com,david.freeman@morganstanley.com,6504361,1
+272bce14-02-04,1,4/2/2014 14:45,4/2/2014 14:45,Matthew,Appel,NULL,18229 60th Ave. W,NULL,Lynnwood,98037,Matthew Appel,NULL,NULL,18229 60th Ave. W,NULL,Lynnwood,98037,4256730867,NULL,mappel3@comcast.net,mappel3@comcast.net,9564740,1
+f7ac7814-02-04,1,4/2/2014 21:14,4/2/2014 21:14,RAYMOND,WALTERS,NULL,Post Office Box 635,Post Office Box 635,Weirton,26062,RAYMOND WALTERS,NULL,NULL,Post Office Box 635,Post Office Box 635,Weirton,26062,4123539075,4123539075,raymondswalters@gmail.com,raymondswalters,taegan1022,0
+f9e59a14-03-04,1,4/3/2014 11:17,4/3/2014 11:19,James,Lansford,NULL,"P.0. Box 148, Mountain Home Texas",NULL,Mountain Home,78058,James Lansford,NULL,NULL,"P.0. Box 148, Mountain Home Texas",NULL,Mountain Home,78058,8308663863,NULL,mountainhomejim@gmail.com,jimlans,2mother25,0
+d112ae14-03-04,1,4/3/2014 15:09,4/3/2014 15:09,Michael J,Welton,NULL,5539 Frontier DR Unit 3,NULL,Billings,59101,Michael J Welton,NULL,NULL,5539 Frontier DR Unit 3,NULL,Billings,59101,4068504949,NULL,navy1988ret@yahoo.com,navy1988ret@yahoo.com,6509040,1
+c3d8c914-03-04,1,4/3/2014 15:41,4/3/2014 15:41,Raymond,Hunter,NULL,"13650 North Frontage Road, #152",NULL,Yuma,85367-7423,Raymond Hunter,NULL,NULL,"13650 North Frontage Road, #152",NULL,Yuma,85367-7423,720-849-7686,720-849-7686,rayehunter@hotmail.com,rayehunter@hotmail.com,4189183,1
+f0574914-04-04,1,4/4/2014 15:21,4/4/2014 15:21,Robert,duMaire,NULL,197 Stonybrook Rd.,NULL,Waterford,5819,Robert duMaire,NULL,NULL,197 Stonybrook Rd.,NULL,Waterford,5819,8027481631,8025359695,rdumaire@myfairpoint.net,rdumaire,rfd2444,0
+be3b5f14-04-04,1,4/4/2014 20:48,4/4/2014 20:48,JAMES L,KEYES,NULL,243 MARION 7013,NULL,FLIPPIN,72634-9671,JAMES L KEYES,NULL,NULL,243 MARION 7013,NULL,FLIPPIN,72634-9671,8704532718,NULL,resistorguy@gmail.com,resistorguy,altronic4093,0
+75f40514-05-04,1,4/5/2014 15:27,4/5/2014 15:27,Clinton,Langford,NULL,142 deer run,NULL,Hawley,18428,Clinton Langford,NULL,NULL,142 deer run,NULL,Hawley,18428,570-269-0870,NULL,Eastw00d@ptd.net,Eastw00d@ptd.net,2977916,1
+2dea9c14-05-04,1,4/5/2014 18:29,4/5/2014 18:29,Lee,Grover,NULL,P.O. Box 4,NULL,Boalsburg,16827,Lee Grover,NULL,NULL,P.O. Box 4,NULL,Boalsburg,16827,814-466-7420,na,groverld01@yahoo.com,warrior,bell268,0
+b37bc614-06-04,1,4/6/2014 10:39,4/6/2014 10:39,Michael,Dreisch,NULL,629 Singer Rd,NULL,Laceyville,18623,Michael Dreisch,NULL,NULL,629 Singer Rd,NULL,Laceyville,18623,570-250-3732,570-250-3732,mc94dawg@gmail.com,mc94dawg,tavern11,0
+fbd38914-07-04,1,4/7/2014 9:57,3/30/2016 14:53,Marcus,Dugger,NULL,3416 estes Park Dr.,NULL,Snellville,30039-6937,Marcus Dugger,NULL,NULL,3416 estes Park Dr.,NULL,Snellville,30039-6937,770-985-4423,770-596-0311,mdugger@bellsouth.net,mcdugger,elm0re07,0
+2dcdf514-07-04,1,4/7/2014 11:21,4/7/2014 11:21,Michael,Rodriguez,Midel Tkg. Co.,101 Harper Dr.,NULL,Anderson,64831-1800,Michael Rodriguez,Midel Tkg. Co.,NULL,101 Harper Dr.,NULL,Anderson,64831-1800,4178451575,NULL,miker495@msn.com,miker495@msn.com,8379399,1
+d9a8ec14-10-04,1,4/10/2014 11:47,4/10/2014 11:47,William,Heine,NULL,336 W. Illinois Ave.,NULL,Palatine,60067,William W. Heine,NULL,NULL,336 W. Illinois Ave.,NULL,Palatine,60067,8479915974,NULL,wwheine@sbcglobal.net,3EERF0C,Q9ZH73V,0
+52cb3214-10-04,1,4/10/2014 21:49,4/10/2014 21:49,Michael,Seeley,NULL,1431 155th Street,NULL,Whitestone,11357,Michael Seeley,NULL,NULL,1431 155th Street,NULL,Whitestone,11357,9176136439,NULL,mseeley152@aol.com,seelem28,nyse28ms,1
+67262314-11-04,1,4/11/2014 15:13,4/11/2014 15:13,Keith ,MacRae,Keith W. MacRae,2 Stevie Rays Way,NULL,Corrales,87048,Tony Christofferson,Temple Lodge No. 6,NULL,3801 Osuna Road NE,NULL,Albuquerque,87109,(505) 856-1304,(505) 250-5779,kmacrae9@comcast.net,macraekw,gina6854,0
+c44eb214-11-04,1,4/11/2014 16:46,4/11/2014 16:46,Cleslie,Scott,Cleslie Scott,P O Box 975,NULL,Conyers,30012,Cleslie Scott,"Auto Glass by Scott, inc.",NULL,1300 S Main St.,NULL,Conyers,30012,7707857200,4044277327,chanddjscott@bellsouth.net,chanddjscott@bellsouth.net,3952384,1
+53c3e314-12-04,1,4/12/2014 12:54,4/12/2014 12:54,Edward,Accardi,NULL,po box 479,NULL,walker valley,12588,Edward Accardi,NULL,NULL,po box 479,NULL,walker valley,12588,845-699-0176,NULL,coltsaa4440@aol.com,mm143243,243marl,0
+009f0a14-14-04,1,4/14/2014 12:54,4/14/2014 12:54,George,Burt,NULL,97 Cooper drive,NULL,Schomberg,L0G 1T0,George Burt,NULL,NULL,97 Cooper drive,NULL,Schomberg,L0G 1T0,905-590-0139,NULL,cdnnoble@rogets.com,cdnnoble@rogets.com,4199764,1
+c3fbf714-14-04,1,4/14/2014 12:55,4/14/2014 12:55,Philip,Durell,NULL,14287 37th Avenue,NULL,Surrey,V4P 0C2,Philip Durell,NULL,NULL,14287 37th Avenue,NULL,Surrey,V4P 0C2,(604) 560 4901,NULL,durellphilip@gmail.com,durellphilip@gmail.com,2593089,1
+9473b214-14-04,1,4/14/2014 13:05,4/14/2014 13:05,Paul,Nigro,none,4164 Austin Bluffs Pkwy # 318,NULL,Colorado Springs,80918,Paul Nigro,none,NULL,4164 Austin Bluffs Pkwy # 318,NULL,Colorado Springs,80918,7195742935,7196615272,prnigro@msn.com,PaulN47,ERps0317#,0
+69ee0614-14-04,1,4/14/2014 18:01,4/14/2014 18:01,J.J.,Fontana,FONTANA,3520 Indiana Ave.,NULL,Baker City,97814,J.J. Fontana,FONTANA,NULL,3520 Indiana Ave.,NULL,Baker City,97814,541.542.9515,NULL,joesan62@hotmail.com,FONTANA,sedge402,0
+2ccef614-16-04,1,4/16/2014 10:46,4/16/2014 10:47,semoan,semoan,NULL,egypt,NULL,cairo,111111,semoan,NULL,NULL,cairo,NULL,cairo,111111,1111111111,11111111111,semoan2013@gmail.com,semoan,104078022,0
+69d5dd14-16-04,1,4/16/2014 11:40,4/16/2014 11:40,Ernie,Gelwicks,EG Outdoors,312 N Seton Ave,NULL,Emmitsburg,21727,Ernie Gelwicks,EG Outdoors,NULL,312 N Seton Ave,NULL,Emmitsburg,21727,301.447.2923,NULL,pegpalmbay@aol.com,pegpalmbay@aol.com,4625681,1
+4e9ab014-16-04,1,4/16/2014 16:16,4/16/2014 16:16,jason,leone,NULL,2062 lakeview rd,apt. b,bellmore,11710,jason leone,NULL,NULL,2062 lakeview rd,apt. b,bellmore,11710,516-857-0636,NULL,jleone32@gmail.com,jleone32,deltas,0
+d434cc14-17-04,1,4/17/2014 15:26,4/17/2014 15:26,Roger,Merrill,NULL,593 Lakeshore Dr,NULL,McCook Lake,57049,Roger Merrill,NULL,NULL,593 Lakeshore Dr,NULL,McCook Lake,57049,605-232-4395,712-574-2986,Rogerm@iw.net,merrill54,12Trucks,0
+44df5c14-17-04,1,4/17/2014 23:08,9/2/2015 22:25,Eric,Sims,NULL,1909 East 19th Street,NULL,Georgetown,78626-7331,Eric Sims,NULL,NULL,1909 East 19th Street,NULL,Georgetown,78626-7331,512-819-9207,512-818-5752,ericsims1964@yahoo.com,ess1113,buster1113,0
+5e042c14-18-04,1,4/18/2014 1:28,4/18/2014 1:28,J J ,Fontana,NULL,3520 Indiana Ave,NULL,Baker City,97814,J J Fontana,NULL,NULL,3520 Indiana Ave,NULL,Baker City,97814,541 524 9515,NULL,sanjoe@q.com,sanjoe@q.com,7234427,1
+cbfd4a14-19-04,1,4/19/2014 12:02,4/19/2014 12:02,Nicholas,Glassman,NULL,2736 country club road,NULL,Endwell,13760,Nicholas Glassman,NULL,NULL,2736 country club road,NULL,Endwell,13760,6072050942,NULL,nicholas.glassman@gmail.com,nicholas.glassman@gmail.com,5096738,1
+05050614-19-04,1,4/19/2014 17:13,4/19/2014 17:13,T. David,Wootten,NULL,1491 County Line Rd,NULL,Acworth,30101,T. David Wootten,NULL,NULL,1491 County Line Rd,NULL,Acworth,30101,770-795-1650,770-846-8369,yard-dawg@att.net,DavidW,DWPMKenn33,0
+5cc04014-20-04,1,4/20/2014 17:45,4/20/2014 17:45,Daniel,Fulks,NULL,9153 Constitution Avenue,NULL,Ohio,43146,Danny R. Fulks,NULL,NULL,414 Monticello Street,NULL,Circleville,43113,614-277-9608,740-412-1271,danielfulks@att.net,danielfulks@att.net,4507861,1
+6e4aa014-20-04,1,4/20/2014 17:49,4/20/2014 17:49,Daniel,Fulks,NULL,9153 Constitution Avenue,NULL,Orient,43146,Danny R. Fulks,NULL,NULL,414 Monticello Street,NULL,Circleville,43113,614-277-9608,740-412-1271,danielfulks@att.net,danielfulks@att.net,2205242,1
+4c03cb14-21-04,1,4/21/2014 14:28,6/27/2014 10:04,Adam,Osman,NULL,215 Reed Road,NULL,Alum Bank,15521,"Adam T. Osman, PM",NULL,NULL,215 Reed Road,NULL,Alum Bank,15521,8143301299,8143301299,adamtosman@yahoo.com,adamtosman,69000,0
+7859d214-21-04,1,4/21/2014 15:42,4/21/2014 15:42,PAUL,COTTRELL,NULL,25 Sherwood Circle,NULL,Hurricane,25526,PAUL COTTRELL,NULL,NULL,25 Sherwood Circle,NULL,Hurricane,25526,304-757-4281,NULL,paulvcottrell@frontier.com,paulvcottrell@frontier.com,8306819,1
+fcdd5414-22-04,1,4/22/2014 14:06,4/22/2014 14:06,Bill,Sherman,NULL,825 South Duquesne Rd,NULL,Joplin,64801,Bill Sherman,NULL,NULL,825 South Duquesne Rd,NULL,Joplin,64801,n/a,4174393115,wsherman@sbcglobal.net,PMWJSherman,gsaman,0
+12501114-22-04,1,4/22/2014 22:20,10/29/2014 13:26,Robert,Mercer,Robert Mercer Sr,1416 Beckwith Rd,NULL,Cornville,4976,Robert Mercer,Robert Mercer Sr,NULL,1416 Beckwith Rd,NULL,Cornville,4976,207-474-2908,207-431-5487,bob6034@hotmail.com,bob6034,Bm121639,0
+7d3f7b14-23-04,1,4/23/2014 10:11,4/23/2014 10:11,Arthur ,Laatz,Arthur Laatz,5151 E Clark Rd,NULL,Harrisville,48740,Gordon Laatz,NULL,NULL,15266 Markese,NULL,Allen Park,48101,989-724-5802,NULL,alaatz@charter.net,alaatz,honiker1966,0
+cb99dc14-23-04,1,4/23/2014 10:31,4/23/2014 10:31,Michael,Seeley,NULL,1431 155th Street,NULL,Whitestone,11357,Michael Seeley,NULL,NULL,1431 155th Street,NULL,Whitestone,11357,9176136439,NULL,mseeley152@aol.com,mseeley152@aol.com,4467318,1
+86120114-23-04,1,4/23/2014 11:16,4/23/2014 11:26,Willard E.,Lynch,"Myrtle Grove Lodge 352, F&AM",7101 Wymart Rd,NULL,Pensacola,32526-3903,Willard E. Lynch,"Myrtle Grove Lodge 352, F&AM",NULL,7101 Wymart Rd,NULL,Pensacola,32526-3903,850-944-1716,850-501-4258,jumpsuitwill352@yahoo.com,Myrtle Grove Lodge 352,7667wffld32506,0
+3d91b914-23-04,1,4/23/2014 16:02,4/23/2014 16:02,Loyd,Davis,NULL,12659 Elvan Road,NULL,Lovettsville,20180,Loyd Davis,NULL,NULL,12659 Elvan Road,NULL,Lovettsville,20180,540-822-5054,801-390-6559,k8ei@arrl.net,loyddavis,bountiful8,0
+9cfa8014-23-04,1,4/23/2014 17:10,4/23/2014 17:10,H. Wayne,Hoffman,NULL,PO BOX 447,NULL,DELAVAN,61734,H. Wayne Hoffman,NULL,NULL,PO BOX 447,NULL,DELAVAN,61734,3092447434,3092671055,hwh@a5.com,hwh@a5.com,4678707,1
+e6866014-23-04,1,4/23/2014 18:38,3/25/2016 12:49,R.S.,Watt Jr,NULL,2027 S. 292nd St,NULL,Federal Way,98003,R.S. Watt Jr,NULL,NULL,2027 S. 292nd St,NULL,Federal Way,98003,253-839-2086,NULL,watt@seanet.com,rswattjr,81581,0
+c7d6f714-24-04,1,4/24/2014 23:20,4/24/2014 23:20,Lee,Miller,NULL,14456 W Iliff Ave,NULL,Lakewood,80228,Lee Miller,NULL,NULL,14456 W Iliff Ave,NULL,Lakewood,80228,3039616455,NULL,jlmwrite@gmail.com,jlmwrite,jlema001,0
+5cb27c14-26-04,1,4/26/2014 12:46,6/11/2015 11:47,Frank,Rockabrand,NULL,1800 N Stanton St #604,NULL,El Paso,79902-3537,Frank Rockabrand,NULL,NULL,1800 N Stanton St #604,NULL,El Paso,79902-3537,(915) 760-4737,(915) 760-4737,rocka2@me.com,rocka2@icloud.com,021341Icl,1
+7e67c814-26-04,1,4/26/2014 16:03,4/26/2014 16:03,Christian,Moore,NULL,PO Box 3,NULL,Weimar,78962,Christian Moore,NULL,NULL,PO Box 3,NULL,Weimar,78962,9792635937,5128870775,cdmoore1981@gmail.com,cdmoore,TxState05,0
+a4a2b214-28-04,1,4/28/2014 11:04,4/28/2014 11:04,Jerry,Underwood,Grand Lodge of Alabama,P. O. Box 1070,NULL,Millbrook,36054,Jerry M. Underwood ,Grand Lodge of Alabama,NULL,341 Monument Drive,NULL,Millbrook,36054,334-290-09641,NULL,Bkeeper@bellsouth.net,Bkeeper1984,Shadow1984,1
+f17eb214-28-04,1,4/28/2014 19:18,4/28/2014 19:18,Herman,Mckinney,NULL,111 Mallory Ave Apt 7,NULL,Jersey City,7304,Herman Mckinney,NULL,NULL,111 Mallory Ave Apt 7,NULL,Jersey City,7304,2015361111,2019233936,square_man@verizon.net,square_man@verizon.net,9197810,1
+0dd89214-29-04,1,4/29/2014 7:26,4/29/2014 7:26,Thomas,Paxton,Queen City Lodge #131,P.O.Boz 1497,NULL,Cumberland,21502-1497,Thomas Paxton,Queen City Lodge #131,NULL,P.O.Boz 1497,NULL,Cumberland,21502-1497,3018760806,NULL,tpaxton@allconet.org,tpaxton@allconet.org,9693626,1
+1b62ae14-29-04,1,4/29/2014 21:41,4/29/2014 21:41,Roger,Bohn Jr,NULL,241 Locust Lane,NULL,Cinnaminson,8077,Roger Bohn Jr,NULL,NULL,241 Locust Lane,NULL,Cinnaminson,8077,609-923-4204,609-923-4204,rjbohn@gmial.com,Mozart121,burltree,0
+ed847814-30-04,1,4/30/2014 12:24,4/30/2014 12:24,Michael,Aulicino,NULL,7413 Falmouth Street,NULL,Springfield,22150,Michael R. Aulicino,NULL,NULL,7413 Falmouth Street,NULL,Springfield,22150,703-493-0557,NULL,michael.aulicino@gmail.com,michael.aulicino@gmail.com,8414604,1
+428f5314-30-04,1,4/30/2014 17:06,4/30/2014 17:06,curtis,mortenson,x,po box 190,x,fort pierre,57532,x,x,NULL,32 east main,x,fort pierre,57532,605-223-9040,x,mortcurt@midco.net,mortcurt@midco.net,all7419,0
+5cbce214-30-04,1,4/30/2014 21:26,4/30/2014 21:26,Robyn,Ryan,NULL,300 East Front St,NULL,Claremont,55924,Robyn Ryan,NULL,NULL,300 East Front St,NULL,Claremont,55924,6512467286,6512467286,robynryanradio@yahoo.com,robynryanradio@yahoo.com,5292507,1
+f0444414-01-05,1,5/1/2014 11:13,5/1/2014 11:13,Randall,Gurak,NULL,po box 341,1604 horseshoe trail,valley forge,19481,Randall Gurak,NULL,NULL,po box 341,1604 horseshoe trail,valley forge,19481,610 640 4750,610 470 3333,rgurak@aol.com,rgurak,nina94,0
+584be614-01-05,1,5/1/2014 20:43,6/29/2016 19:49,Marcy,Dupre,NULL,1503 Canyon Court,NULL,Port Orchard,98366,Marcy Dupre,NULL,NULL,1503 Canyon Court,NULL,Port Orchard,98366,360-876-2622,NULL,tigdupre@msn.com,tigdupre,h0sen0se,0
+4d8a1f14-04-05,1,5/4/2014 8:20,5/4/2014 8:20,Glenn E. ,Chandler,NULL,5360 Redrac Street,NULL,Jacksonville,32205-9603,Glenn E. Chandler,NULL,NULL,5360 Redrac Street,NULL,Jacksonville,32205-9603,9047817263,9042548155,gechandlersnr@bellsouth.net,gec1950,gec1950,0
+2c197114-04-05,1,5/4/2014 14:50,5/4/2014 14:50,Eric,Kuntz,NULL,56 Harmony Way,NULL,Ellsworth,4605,Eric Kuntz,NULL,NULL,56 Harmony Way,NULL,Ellsworth,4605,2076670635,2079445329,Ewkmyst@msn.com,Ewkuntz,timerunner,0
+81acf814-04-05,1,5/4/2014 22:46,5/4/2014 22:46,Edward,Graham,NULL,11 Bogandale Rd,NULL,West Roxbury,2132,Edward Graham,NULL,NULL,11 Bogandale Rd,NULL,West Roxbury,2132,6172305822,6172305822,esgraham@gmail.com,egraham37,lawwaufp,0
+94d9a814-05-05,1,5/5/2014 11:51,5/5/2014 11:51,Catherine,Giaimo,Masonic Library & Museum of Penna.,Masonic Temple,1 North Broad St.,Philadelphia,19107,Catherine Giaimo,Masonic Library & Museum of Penna.,NULL,Masonic Temple,1 North Broad St.,Philadelphia,19107,215-988-1933,NULL,clgiaimo@pagrandlodge.org,clgiaimo@pagrandlodge.org,4687206,1
+ea2c9e14-05-05,1,5/5/2014 12:28,7/14/2015 10:53,PAUL,MILLER,NULL,6073 RIVER ROAD,NULL,NORFOLK,23505-4718,PAUL MILLER,NULL,NULL,6073 RIVER ROAD,NULL,NORFOLK,23505-4718,7572339750,7576367312,47thproblem@cox.net,MillerPaul,g467342kMXcU,0
+f3b02b14-05-05,1,5/5/2014 14:45,5/5/2014 14:45,Stephen,Ponzillo,"Stephen J. Ponzillo, III",Marsteph Hall,4 Norgate Court,Ccokeysville,21030,Stephen Ponzillo,"Stephen J. Ponzillo, III",NULL,Marsteph Hall,4 Norgate Court,Ccokeysville,21030,410-666-0077,NULL,MarylandMWPGM@gmail.com,sponzillo,dulaney,0
+c08dbc14-05-05,1,5/5/2014 17:19,5/5/2014 17:19,David,Hochman,NULL,1311. 6224-17th Ave. S.E.,NULL,Calgary,T2A 7X8,David Hochman,NULL,NULL,1311. 6224-17th Ave. S.E.,NULL,Calgary,T2A 7X8,403-204-3786,NULL,david.hochman@shaw.ca,david.hochman@shaw.ca,6444101,1
+58dcda14-05-05,1,5/5/2014 21:23,5/5/2014 21:28,Gregory,Gunderson,NULL,911 4 th st sw,po box 885,Stanley,58784,Gregory Gunderson,NULL,NULL,911 4 th st sw,po box 885,Stanley,58784,7016290250,7016290250,gregorygunderson56@gmail.com,gregorygunderson56@gmail.com,4030574,1
+e6ab1b14-06-05,1,5/6/2014 7:27,7/11/2016 9:50,Matthew,Sanders,NULL,58 Boileau Ct,NULL,Middletown,21769,Matthew Sanders,NULL,NULL,58 Boileau Ct,NULL,Middletown,21769,3014019588,3014019588,mfsanders7@gmail.com,matthewfsanders,B0az2010,0
+14017214-06-05,1,5/6/2014 11:08,5/6/2014 11:08,Heidi,Burch,Oregon Masonic Grand Lodgw,2150 Masonic Way,NULL,Forest Grove,97064,Heidi Burch,Oregon Masonic Grand Lodgw,NULL,2150 Masonic Way,NULL,Forest Grove,97064,503-357-3158,NULL,hburch@masonic-oregon.com,Mastermason,2150Masonic,0
+0c58e214-06-05,1,5/6/2014 11:10,5/6/2014 11:10,Stephen,Kroman,Jackson Lodge #146,363 Redding Road,NULL,Seymour,47274,Stephen Kroman,Jackson Lodge #146,NULL,363 Redding Road,NULL,Seymour,47274,812-530-7385,812-530-7385,stephenp1510@gmail.com,stephenp1510@gmail.com,3607242,1
+82b4dc14-06-05,1,5/6/2014 17:34,5/6/2014 17:34,Daniel,Gardiner,NULL,1307 Boulder Ave,NULL,Helena,59601,Daniel Gardiner,NULL,NULL,1307 Boulder Ave,NULL,Helena,59601,2082301898,2082301898,ridingthegoat@gmail.com,felix_mason,Ultimate01,1
+326d5414-07-05,1,5/7/2014 11:32,5/7/2014 11:32,Michael,Durbin,NULL,717 HILLCREST AVE,NULL,NIXA,65714,Michael Durbin,NULL,NULL,717 HILLCREST AVE,NULL,NIXA,65714,4178184952,4178184952,durbinmj@gmail.com,durbinmj,$ecurityYZ350,0
+f8f91e14-07-05,1,5/7/2014 14:57,3/7/2016 9:25,Daniel,Rose,NULL,11196 Chippewa Drive,NULL,Warren,48093-1642,Daniel Rose,NULL,NULL,11196 Chippewa Drive,NULL,Warren,48093-1642,586-770-8200,586-770-8200,drose091@yahoo.com,Daniel091,ashlar091,0
+dcf5e314-07-05,1,5/7/2014 17:34,5/7/2014 17:34,Michael,Montgomery,NULL,105 Steven Street,NULL,Farmville,23901,Michael Montgomery,NULL,NULL,105 Steven Street,NULL,Farmville,23901,4342237614,4343907432,mbmonty@embarqmail.com,mbmonty,L1ghtF0r@ll,0
+11401614-08-05,1,5/8/2014 16:49,5/8/2014 16:49,Wilbert,Drecktrah,NULL,318 North Hunter Street,NULL,Berlin,54923,Wilbert Drecktrah,NULL,NULL,318 North Hunter Street,NULL,Berlin,54923,9203610810,NULL,blldreck@centurylink.net,blldreck@centurylink.net,7925313,1
+22daf414-09-05,1,5/9/2014 9:54,5/9/2014 9:54,Richard,Lowrey,Fellowship Lodge #345,505 S. Byers Ave.,NULL,Joplin,64801,Richard Lowrey,Fellowship Lodge #345,NULL,505 S. Byers Ave.,NULL,Joplin,64801,417-206-7695,417-439-1295,fellowshiplodge345@gmail.com,fellowshiplodge345@gmail.com,2740274,1
+dc484414-09-05,1,5/9/2014 19:57,5/9/2014 19:57,Gerald,Goodson,NULL,491 Fairway Dr,NULL,Somerset,2726,Gerald Goodson,NULL,NULL,491 Fairway Dr,NULL,Somerset,2726,5084156315,5084156315,dgoodson@jolministry.com,dgoodson,mantis69,0
+cd939e14-10-05,1,5/10/2014 13:31,5/10/2014 13:48,Ian,Donald,NULL,#17-5370 Lakeshore Rd,NULL,Burlington,L7L1C2,Ian Donald,NULL,NULL,#17-5370 Lakeshore Rd,NULL,Burlington,L7L1C2,905 681 0259,NULL,idonald2@gmail.com,iainmason,Sartin#52,0
+aaab9514-12-05,1,5/12/2014 1:28,5/12/2014 1:28,Alexander,Bragat,NULL,257 Hampshire Dr.,NULL,Plainsboro,8536,Alexander Bragat,NULL,NULL,257 Hampshire Dr.,NULL,Plainsboro,8536,609-720-0331,NULL,Bragat_D15@yahoo.com,Bragat_D15@yahoo.com,Angiotensin2,1
+eb8f2c14-13-05,1,5/13/2014 19:28,5/13/2014 19:28,keith,smith,NULL,225 lazy acre rd.,NULL,wausau,54401,keith smith,NULL,NULL,225 lazy acre rd.,NULL,wausau,54401,715-848-8228,NULL,keithsmith10@charter.net,keith smith//o,gus 848-8228,0
+da49ff14-13-05,1,5/13/2014 23:18,5/13/2014 23:18,Cecil O ,Akin,RW Cecil O Akin,71 N Elm St,NULL,LaBelle,33935,Cecil O Akin,RW Cecil O Akin,NULL,71 N Elm St,NULL,LaBelle,33935,863-675-3561,863-517-1359,coakin@akin-davis.com,coakin@akin-davis.com,4709518,1
+1b439614-14-05,1,5/14/2014 1:16,10/3/2016 17:00,William,Gerhardt,NULL,3102 Old Elm Way,NULL,SanAntonio,78230,William Gerhardt,NULL,NULL,3102 Old Elm Way,NULL,SanAntonio,78230,2816860828,2816860828,texhound@hotmail.com,texhound,gearshift1,0
+b9c9c014-14-05,1,5/14/2014 9:51,9/8/2014 10:23,Brian,Dillon,NULL,20420 Laggan Glenelg Rd,NULL,Dalkeith,K0B1E0,Brian Dillon,NULL,NULL,20420 Laggan Glenelg Rd,NULL,Dalkeith,K0B1E0,6135251622,NULL,giliads@aol.com,Brian Dillon,6974954,0
+70a27114-14-05,1,5/14/2014 23:59,5/14/2014 23:59,Tony,Gore,NULL,937 Sage St,NULL,Baytown,77521,Tony Gore,NULL,NULL,937 Sage St,NULL,Baytown,77521,8324700994,NULL,tonyjgore@gmail.com,tjgore,zzzopen777,0
+fd702814-15-05,1,5/15/2014 9:08,5/15/2014 9:08,Henry ,Booth,Henry Booth,PO Box 524,NULL,Monterey,24465,Henry Booth,Henry Booth,NULL,PO Box 524,NULL,Monterey,24465,540-468-3047,NULL,grundoon39@htcnet.org,grundoon39@htcnet.org,n3tg@R,0
+25075314-15-05,1,5/15/2014 10:29,5/15/2014 10:29,Pierre,Meste,NULL,50 ch. Fontaine St Sernin,NULL,Labege - France,31670,Pierre Meste,NULL,NULL,50 ch. Fontaine St Sernin,NULL,Labege - France,31670,33675202153,NULL,pmeste31@orange.fr,pmeste31@orange.fr,7868827,1
+14ef7314-15-05,1,5/15/2014 14:31,5/15/2014 14:31,Joe,Watson,Grand Lodge of Georgia F & AM,811 Mulberry Street,NULL,Macon,31201,Joe Watson,Grand Lodge of Georgia F & AM,NULL,811 Mulberry Street,NULL,Macon,31201,4787421475,NULL,fam2@bellsouth.net,jwwatson44,watson44,0
+a939a614-15-05,1,5/15/2014 15:37,5/15/2014 15:37,Bryan,Farley,Bryan Farley,P.O. Box 804,42 North Main Street,Robbinsville,28771,Bryan Farley,Bryan Farley,NULL,P.O. Box 804,42 North Main Street,Robbinsville,28771,828-479-3210,828-735-1019,bgfarley@dnet.net,bgfarley@dnet.net,jimtom,0
+2178e614-16-05,1,5/16/2014 9:18,8/7/2016 12:49,Chuck,Springer,NULL,6305 St James Pl,NULL,Denton,76210,Chuck Springer,NULL,NULL,6305 St James Pl,NULL,Denton,76210,940-383-1431,NULL,chuck.springer@live.com,Cuautemoc8,Cu@uh7X38!,0
+80c55414-16-05,1,5/16/2014 20:47,5/16/2014 20:47,charles,holloway,NULL,651 Four Points Rd,NULL,Jackson,30233-4266,charles holloway,NULL,NULL,651 Four Points Rd,NULL,Jackson,30233-4266,7707754285,706 476-2404,hollowaycharles@bellsouth.net,hollowaycharles@bellsouth.net,3501060,1
+c6029814-18-05,1,5/18/2014 12:16,5/18/2014 12:16,Joseph,Helminiak,NULL,1229 Pecan Station,NULL,San Antonio,78258-7843,Joseph Helminiak,NULL,NULL,1229 Pecan Station,NULL,San Antonio,78258-7843,210-843-5271,210-843-5271,josephh49@yahoo.com,josephh49@yahoo.com,4203688,1
+62383914-18-05,1,5/18/2014 14:54,5/18/2014 14:54,Steve,Hessler,NULL,628 1/2 North Sandusky Street,NULL,Bellevue,44811,Steve Hessler,NULL,NULL,628 1/2 North Sandusky Street,NULL,Bellevue,44811,4194835826,NULL,shessler32@hotmail.com,shessler,AASR2012^,0
+999c4a14-19-05,1,5/19/2014 10:05,5/19/2014 10:05,Dennis,Deitrich,Bellefonte Lodge ,7529 HWY 206 E,NULL,Harrison,72601-4339,Dennis Deitrich,Bellefonte Lodge ,NULL,7529 HWY 206 E,NULL,Harrison,72601-4339,8703658013,NULL,deitrich53@cox.net,deitrich53@cox.net,2835811,1
+98646b14-19-05,1,5/19/2014 15:09,5/19/2014 15:09,Jerry,Underwood,Grand Lodge of Alabama,P.O. Box 1070,NULL,Millbrook,36054,Jerry Underwood,Grand Lodge of Alabama,NULL,P.O. Box 1070,NULL,Millbrook,36054,334-290-0961,NULL,Gsecal@bellsouth.net,Gsecal@bellsouth.net,5766088,1
+b798f414-20-05,1,5/20/2014 15:14,5/20/2014 15:14,Franklin,Cline,Grand Lodge AF&AM of IL,2866 Via Verde St.,NULL,Springfield,62703,Franklin Cline,Grand Lodge AF&AM of IL,NULL,2866 Via Verde St.,NULL,Springfield,62703,(217) 529-8900,(217) 473-8861,fcline@afam-il.org,fcline,afam4147,0
+a9e37014-20-05,1,5/20/2014 16:04,5/20/2014 16:06,George S,Robinson Jr,NULL,2604 Horseshoe Trail,NULL,Chester Springs,19425,George S Robinson Jr,NULL,NULL,2604 Horseshoe Trail,NULL,Chester Springs,19425,610-827-7445,NULL,georgesrjr@verizon.net,georgesrjr,picton,0
+f6189f14-20-05,1,5/20/2014 18:06,8/28/2014 16:46,Richard,Buschman,NULL,8334 W. Nevada Pl.,NULL,Lakewood,80226,Richard Buschman,NULL,NULL,8334 W. Nevada Pl.,NULL,Lakewood,80226,3036538531,3036538531,russ-shirley1@comcast.net,russ-shirley1@comcast.net,weston22rb,0
+562c0c14-21-05,1,5/21/2014 10:51,3/29/2016 10:58,Paul,Harbord,NULL,86 9th Ave,NULL,Hawthorne,07506-1645,Paul Harbord,NULL,NULL,86 9th Ave,NULL,Hawthorne,07506-1645,9734274905,9178873668,pwharbord@gmail.com,paulwilhelmharbord,NYCm1kad0,0
+1d0d2f14-21-05,1,5/21/2014 23:18,5/21/2014 23:18,George,Sherman,NULL,1947 Cypress Dr,NULL,Bel Air,21015,George Sherman,NULL,NULL,1947 Cypress Dr,NULL,Bel Air,21015,4438078975,4438078975,gasherman55@gmail.com,gasherman55@gmail.com,8272264,1
+76a20e14-22-05,1,5/22/2014 0:55,5/22/2014 0:55,STEPHEN,HAXBY,NULL,1701 W. STATE BLVD.,NULL,FORT WAYNE,46808-1931,STEPHEN HAXBY,NULL,NULL,1701 W. STATE BLVD.,NULL,FORT WAYNE,46808-1931,260-420-7936,NULL,shaxby@aol.com,shaxby@aol.com,4910974,1
+93284914-22-05,1,5/22/2014 9:31,5/22/2014 9:31,Zach,Schmidt,NULL,W237 S4518 Big Bend Rd,NULL,Waukesha,53189,Zach Schmidt,NULL,NULL,W237 S4518 Big Bend Rd,NULL,Waukesha,53189,262-349-9093,414-430-4097,zschmidt5150@gmail.com,zschmidt5150,Freemason1,0
+795de114-26-05,1,5/26/2014 18:03,5/26/2014 18:09,Roger,Showalter,NULL,291 Matthews Ave,NULL,Ozark,36360,Roger Showalter,NULL,NULL,291 Matthews Ave,NULL,Ozark,36360,334-774-3765,334-733-4432,rogershowii@yahoo.com,Justin349,1140mangonia,0
+40412b14-27-05,1,5/27/2014 19:47,5/16/2016 15:32,Raymon,Bacchus,NULL,6009 Raina Drive,NULL,Centreville,20120,Raymon Bacchus,NULL,NULL,6009 Raina Drive,NULL,Centreville,20120,7038998590,7038998590,rwbacchus@gmail.com,Rbacchus,Micky12345,0
+6377ac14-01-06,1,6/1/2014 2:27,6/1/2014 2:27,RICK,SANTELLA,NULL,56 MAYFLOWER DRIVE,NULL,SICKLERVILLE,8081,RICK SANTELLA,NULL,NULL,56 MAYFLOWER DRIVE,NULL,SICKLERVILLE,8081,8567400623,2672498152,FUBS1@AOL.COM,FUBS1@AOL.COM,5119477,1
+55ffb914-01-06,1,6/1/2014 16:39,6/1/2014 16:39,Steven ,Aberblatt,NULL,6820 Horrocks Street,NULL,Philadelphia,19149,Steven Aberblatt,NULL,NULL,6820 Horrocks Street,NULL,Philadelphia,19149,215-725-5448,NULL,steveab@comcast.net,steveab@comcast.net,3822275,1
+73e2ad14-01-06,1,6/1/2014 17:13,6/25/2015 17:59,Richard,Muth,NULL,184 Richard Drive,NULL,Aliquippa,15001,Richard Muth,NULL,NULL,184 Richard Drive,NULL,Aliquippa,15001,724-203-0521,NULL,Richard.Muth@comcast.nwt,rfmuth,enon11,0
+62c88c14-01-06,1,6/1/2014 21:51,6/1/2014 21:51,Nathan,Mason,NULL,516 Golf View Drive,NULL,Peachtree City,30269,Nathan Mason,NULL,NULL,516 Golf View Drive,NULL,Peachtree City,30269,7704876482,7708554995,skipgolf@gmail.com,skipmason,Golf4Fun,0
+da77e514-01-06,1,6/1/2014 22:32,10/28/2016 15:35,Rex,Hasty,NULL,244 JC Bryant Rd,NULL,Hattiesburg,39401,Rex Hasty,NULL,NULL,244 JC Bryant Rd,NULL,Hattiesburg,39401,6016582048,NULL,rex.hasty@gmail.com,Rex Hasty,R5231cH,0
+8a163e14-02-06,1,6/2/2014 12:57,6/2/2014 12:57,Paul,Little,NULL,3 Gristmill Street ,NULL,Sutton,3221,Paul Little,NULL,NULL,3 Gristmill Street ,NULL,Sutton,3221,6039274123,6034969970,paul.m.little@gmail.com,paulnh,nikoalefaio,0
+03492614-03-06,1,6/3/2014 9:11,6/3/2014 9:11,Norman,Lincoln,NULL,PO Box 454,NULL,Eaton,45320,Norman Lincoln,NULL,NULL,P O Box 454,NULL,Eaton,45320,9374566859,NULL,norman.lincoln@yahoo.com,Norman Lincoln,grandhistorian,0
+adadda14-03-06,1,6/3/2014 9:59,6/3/2014 9:59,August,Moliotano,NULL,PO Box 427,NULL,Riverton,06065-0427,August Moliotano,NULL,NULL,PO Box 427,NULL,Riverton,06065-0427,860-379-1185,NULL,cdb1865@snet.net,cdb1865@snet.net,5096988,1
+5d4aaf14-07-06,1,6/7/2014 11:27,11/1/2016 3:39,matt,muller,NULL,713 moseley rd,NULL,fairport,14450,matt muller,NULL,NULL,713 moseley rd,NULL,fairport,14450,585-943-4009,585-943-4009,mullerma76@hotmail.com,muller76,snarfsp96,0
+2d680414-08-06,1,6/8/2014 20:03,6/8/2014 20:03,Kristian,Reninger,NULL,325 Andiron Lane,NULL,Rochester,14612,Kristian Reninger,NULL,NULL,325 Andiron Lane,NULL,Rochester,14612,(585) 723-5567,NULL,kreninger@aol.com,KReninger@aol.com,Bb8-3Ro-v6h-scV,0
+dd5e1e14-09-06,1,6/9/2014 9:30,6/9/2014 9:30,Joe,Christian,Brooklin Lodge #704,P.O. Box 1264,NULL,Sumiton,35148,Joe Christian,Brooklin Lodge #704,NULL,P.O. Box 1264,NULL,Sumiton,35148,2055271748,NULL,lodge704@aol.com,lodge704@aol.com,4827405,1
+585c5d14-09-06,1,6/9/2014 10:36,6/9/2014 10:36,Alan,Walls,Springs Lodge No. 378,12821 E. Big Buck Trail,NULL,Floral City,34436,Alan Walls,Springs Lodge No. 378,NULL,12821 E. Big Buck Trail,NULL,Floral City,34436,3526375177,3526375177,awalls37@gmail.com,awalls37@gmail.com,6780423,1
+46c05514-10-06,1,6/10/2014 7:34,6/10/2014 7:34,Wayne,Winsor,NULL,"P.O. Box 687, Stn. C",NULL,Goose Bay,A0P 1C0,Wayne Winsor,NULL,NULL,"P.O. Box 687, Stn. C",NULL,Goose Bay,A0P 1C0,709-896-3532,709-899-0772,wayne.winsor@nf.sympatico.ca,wayne.winsor@nf.sympatico.ca,4405964,1
+01fc3514-10-06,1,6/10/2014 10:48,6/10/2014 10:48,Nancy,Power,NULL,PO Box 365,NULL,Pocono Pines,18350,Nancy Power,NULL,NULL,PO Box 365,NULL,Pocono Pines,18350,570-643-4586,NULL,Nancylpower@gmail.com,Nancylpower@gmail.com,1481632,1
+0b86d914-10-06,1,6/10/2014 16:02,6/10/2014 16:02,Nancy,Power,NULL,PO Box 365,NULL,Pocono Pines,18350,Nancy Power,NULL,NULL,PO Box 365,NULL,Pocono Pines,18350,570-643-4586,NULL,nancylpower@gmail.com,nancylpower@gmail.com,5230398,1
+4b639514-10-06,1,6/10/2014 16:07,6/10/2014 16:07,Nancy,Power,NULL,PO Box 365,NULL,Pocono Pines,18350,Nancy Power,NULL,NULL,PO Box 365,NULL,Pocono Pines,18350,570-643-4586,NULL,nancylpower@gmail.com,nancylpower@gmail.com,7397553,1
+08e1b914-11-06,1,6/11/2014 17:12,6/11/2014 17:12,Kurt,Lowe,NULL,415 S Kensington Str,NULL,Arlington,22204,Kurt Lowe,NULL,NULL,415 S Kensington Str,NULL,Arlington,22204,7038194398,7038194398,proflowe@hotmail.com,proflowe@hotmail.com,5864605,1
+315e0a14-17-06,1,6/17/2014 13:41,6/17/2014 13:41,Albert,Henson,n/a,290 Calef Hwy. #C14,NULL,Epping,3042,Albert Henson,n/a,NULL,290 Calef Hwy. #C14,NULL,Epping,3042,603-682-7333,Same,dvldog5462@hotmail.com,dvldog5462@hotmail.com,9705347,1
+31136914-17-06,1,6/17/2014 14:19,6/17/2014 14:19,Michael,Postilli,NULL,56 Jersey Black Circle,NULL,Rochester,14626,Michael Postilli,NULL,NULL,56 Jersey Black Circle,NULL,Rochester,14626,5854530917,5857298400,mpostilli@gmail.com,Postilli,Jmpecp123,0
+05f0e914-17-06,1,6/17/2014 16:11,6/17/2014 16:16,john,tyler,tyler,23288 orange avenue #6,NULL,lake forest,92630,john tyler,tyler,NULL,23288 orange avenue #6,NULL,lake forest,92630,7143171915,7143171915,jacbri66@yahoo.com,john tyler,jacbri6669,0
+ed62cc14-18-06,1,6/18/2014 12:39,6/18/2014 12:39,leonard,peterson,NULL,414 n main st,Apt/Suite,shawano,54166,leonard peterson,NULL,NULL,414 n main st,Apt/Suite,shawano,54166,7152010432,NULL,lenpeterson67@gmail.com,lenpeterson67,ruger334,0
+4e220914-18-06,1,6/18/2014 16:53,6/18/2014 16:53,Rick,Giuliani,NULL,993 Jamesway Pass,NULL,Hubertus,53033,Rick Giuliani,NULL,NULL,993 Jamesway Pass,NULL,Hubertus,53033,2623722021,2623722021,rjgiuliani@gmail.com,rgiuliani,floating,0
+d0a18114-19-06,1,6/19/2014 12:54,6/19/2014 12:54,Greg,Vasquez,NULL,325 W. Knox Rd.,NULL,Tempe,85284,Greg Vasquez,NULL,NULL,325 W. Knox Rd.,NULL,Tempe,85284,480-639-7723,480-639-7723,gdvasquez@cox.net,Greg Vasquez,Rhaena08,0
+6793fc14-19-06,1,6/19/2014 13:49,6/19/2014 13:49,Jamie ,Guinn,NULL,19910 E. 45th St. S.,NULL,Broken Arrow,74014,Jamie Guinn,NULL,NULL,19910 E. 45th St. S.,NULL,Broken Arrow,74014,4057795049,4057795049,jamie.guinn@yahoo.com,jamieguinn,YHWHechad1,0
+50bb6314-20-06,1,6/20/2014 16:11,6/24/2015 15:10,Andrew,Werch,J. P. Luther Co.,PO BOX 344,NULL,Berlin,54923,Andrew Werch,J. P. Luther Co.,NULL,PO BOX 344,NULL,Berlin,54923,9203611555,9205731921,awerch@jpluther.net,awerch,jpl361,0
+2c357114-21-06,1,6/21/2014 13:46,6/21/2014 13:53,John,Hollowell,NULL,2509 Koepke St.,NULL,Corpus Christi,78407,John I. Hollowell II,Corpus Christi Masonic Lodge No. 189,NULL,P. O. Box 6704,NULL,Corpus Christi,78466,361.244.2725,361.244.2725,jhollowell75@outlook.com,jhollowell75,mykids02,1
+ecb36f14-24-06,1,6/24/2014 0:37,6/24/2014 0:37,George,Wong,NULL,842 Esquimalt Avenue,NULL,West Vancouver,V7T 1J8,George Wong,NULL,NULL,842 Esquimalt Avenue,NULL,West Vancouver,V7T 1J8,(604)9261052,(604)6491188,georgewong_wv@yahoo.ca,georgewong_wv@yahoo.ca,6984067,1
+8080fe14-24-06,1,6/24/2014 0:47,6/24/2014 0:47,George,Wong,NULL,842 Esquimalt Ave,NULL,West Vancovuer,V7T 1J8,George Wong,NULL,NULL,842 Esquimalt Ave,NULL,West Vancovuer,V7T 1J8,(604)9261052,(604)6491188,georgewong_wv@yahoo.ca,anguswong,Erika84,1
+787d5e14-25-06,1,6/25/2014 11:39,6/25/2014 11:39,William,Sexton,Etowah Lodge # 222,116 Shadow Lane,NULL,Dawsonville,30534,William Sexton,Etowah Lodge # 222,NULL,116 Shadow Lane,NULL,Dawsonville,30534,706-216-5438,NULL,shadow1@windstream.net,shadow1@windstream.net,1424201,1
+94d2e614-25-06,1,6/25/2014 17:00,6/25/2014 17:00,danford,Jesse,clintonville masons,2324 e richmond st,NULL,Shawano,54166,danford Jesse,clintonville masons,NULL,2324 e richmond st,NULL,Shawano,54166,715-754-5250,NULL,lenpeterson67@gmail.com,lenpeterson67@gmail.com,4969798,1
+bb990814-26-06,1,6/26/2014 14:06,6/26/2014 14:06,Raymond,Hunter,NULL,"13650 North Frontage Road, #152",NULL,Yuma,85367-7423,Raymond Hunter,NULL,NULL,"13650 North Frontage Road, #152",NULL,Yuma,85367-7423,720-849-7686,720-849-7686,rayehunter@hotmail.com,rayehunter@hotmail.com,3096212,1
+f7a39214-27-06,1,6/27/2014 19:34,8/5/2016 14:06,Daniel,Enyart,NULL,CMR 473 Box 281,NULL,APO,09606-0003,Daniel Enyart,NULL,NULL,CMR 473 Box 281,NULL,APO,09606-0003,912-321-9095,912-321-9095,danielenyart1@gmail.com,enyart1,mslacey19,0
+49052514-27-06,1,6/27/2014 22:38,6/27/2014 22:38,Freddie,Wade,NULL,3579 Dubarry Road,NULL,Indianapolis,46226,Freddie Wade,NULL,NULL,3579 Dubarry Road,NULL,Indianapolis,46226,3178985523,3174098538,f.d.wade@sbcglobal.net,PMwade,Brookside720,0
+d50ebe14-30-06,1,6/30/2014 12:56,6/30/2014 12:56,Orlando,Salvato,NULL,41 Kelmar Avenue,NULL,Frazer,19355,Orlando Salvato,NULL,NULL,41 Kelmar Avenue,NULL,Frazer,19355,6108647875,NULL,orlando@op.net,opsalvato,Orland005,0
+03330c14-02-07,1,7/2/2014 7:18,7/2/2014 7:18,Peter,Jones,NULL,450 Sunlight st,NULL,Cobbtown,30420,Peter Jones,NULL,NULL,450 Sunlight st,NULL,Cobbtown,30420,9123143863,NULL,pljones@pineland.net,pljones@pineland.net,1003715,1
+8a131c14-04-07,1,7/4/2014 8:33,7/4/2014 8:33,Andrew,Orcutt,NULL,7094 Brownstone Ct,NULL,Middletown,21769,Andrew Orcutt,NULL,NULL,7094 Brownstone Ct,NULL,Middletown,21769,301-371-4544,NULL,cloaco@me.com,spqrdx,crafty,0
+cb3b8714-04-07,1,7/4/2014 10:17,7/4/2014 10:17,BRIAN,CHARTRAND,NULL,6936 SW 148 LANE,NULL,DAVIE,33331,BRIAN CHARTRAND,NULL,NULL,6936 SW 148 LANE,NULL,DAVIE,33331,9544780387,NULL,BCHARTED@AOL.COM,BCHARTED,HISTORY,1
+01620514-06-07,1,7/6/2014 9:59,7/6/2014 9:59,Jeff,Bloemker,NULL,14601 Derry hale Way,NULL,Smithville,64089,Jeff Bloemker,NULL,NULL,14601 Derry hale Way,NULL,Smithville,64089,8168065404,NULL,bloemker@Gmail.com,bloemker@Gmail.com,4954909,1
+26598a14-07-07,1,7/7/2014 12:29,7/7/2014 12:29,David,Foote,NULL,1806 Cambridge Manor Drive,NULL,Scotia,12302,David Foote,NULL,NULL,1806 Cambridge Manor Drive,NULL,Scotia,12302,518-355-7806,518-618-7834,drfoote1@nycap.rr.com,footed1,carrie429,0
+681f5a14-08-07,1,7/8/2014 0:03,7/8/2014 0:03,Stevens,Moore,NULL,27406 Blue Cedar Lane,NULL,Spring,77386,Stevens Moore,NULL,NULL,27406 Blue Cedar Lane,NULL,Spring,77386,281-288-5410,832-491-2999,semoore822@att.net,semoore822@att.net,3824599,1
+696bc514-08-07,1,7/8/2014 21:10,7/9/2014 13:55,Thomas,Watson,Scottish Rite,138 Shady lane Dr.,NULL,wellford,29385,Thomas Watson,Scottish Rite,NULL,138 Shady lane Dr.,NULL,wellford,29385,8645050497,8645050497,tommy.watson21@gmail.com,twatson,02976WEt,0
+fc76fa14-08-07,1,7/8/2014 23:27,7/8/2014 23:27,Fred,Maynard,NULL,PO Box 1056,NULL,Leander,78646,Fred Maynard,NULL,NULL,2468 Millbrook Loop,NULL,Leander,78641,5124220452,5124220452,fred.maynard@att.net,fredmaynard,Alpha128A,0
+5b4f2a14-09-07,1,7/9/2014 13:54,7/9/2014 13:54,Jacquelynn,Morris,NULL,3950 National Drive,NULL,Burtonsville,20866,Jacquelynn Morris,NULL,NULL,3950 National Drive,NULL,Burtonsville,20866,3014767330,NULL,jmorris@msana.com,jmorris@msana.com,3276017,1
+f4b28114-09-07,1,7/9/2014 14:34,7/9/2015 13:55,Duane,Kemerley,Intuitive Options,5028 Road O,NULL,Pandora,45877,Duane Kemerley,Intuitive Options,NULL,5028 Road O,NULL,Pandora,45877,5673769741,5673769741,dkemerley@gmail.com,dkemerley,dk547016,0
+ae803214-11-07,1,7/11/2014 3:58,7/11/2014 3:58,Rah,Davis,NULL,13351 D riverside dr #422,NULL,Sherman Oaks,91423,Rah ,NULL,NULL,13351 D Riverside dr #422,NULL,Sherman Oaks,91423,3106402245,NULL,Bigrah@gmail.com,Bigrah,bigrah1,0
+b47fff14-11-07,1,7/11/2014 14:53,7/11/2014 15:14,Fred D,Thompson,Piedmont Lodge of Perfection,3451 Glenn Springs Road,NULL,Spartanburg ,29302-6222,Fred D. Thompson,Piedmont Lodge of Perfection,NULL,3451 Glenn Springs Road,NULL,Spartanburg,29302-6222,864-809-6286,NULL,aasr@charter.net,fdthompson,FredT911,0
+23dfae14-11-07,1,7/11/2014 20:26,7/11/2014 20:26,Johnny,Combs,NULL,230 Happy Valley Ln.,NULL,Hazard,41701,Johnny Combs,NULL,NULL,230 Happy Valley Ln.,NULL,Hazard,41701,606-436-4668,606-233-8678,jjcombs@windstream.net,jjcombs,Xelaxura52,0
+39515214-12-07,1,7/12/2014 9:44,7/12/2014 9:44,William,Russell,bjruss.com,P.O. Box 2029,NULL,Bandon,97411,William P. Russell,NULL,NULL,P.O. Box 2029,NULL,"Bandon, OR",97411,5413473683,5412908595,bill@bjruss.com,BillRuss,Ban#1Mas#130,0
+a1210a14-13-07,1,7/13/2014 13:28,7/13/2014 13:28,Brian,Spooner,Rocky River #703, 20149 Lake Roa,NULL,Rocky River,44116,Brian Spooner,NULL,NULL,4278 W 223rd St,NULL,Fairview Park,44126,4407342741,NULL,bspooner@spoonman.net,bspooner@spoonman.net,3313656,1
+24b95414-14-07,1,7/14/2014 12:14,7/14/2014 12:15,John,Harris,NULL,1124 Whelan Lane,NULL,Jeffersonville,47130,John Harris,NULL,NULL,1124 Whelan Lane,NULL,Jeffersonville,47130,8122826251,8122826251,jhscouter@yahoo.com,jharris,godfather,0
+10449a14-16-07,1,7/16/2014 13:27,7/16/2014 13:27,Randy,Davis,NULL,3495 Hempstead Street,NULL,Saint Charles,63301,Randy Davis,NULL,NULL,3495 Hempstead Street,NULL,Saint Charles,63301,314-920-6306,314-920-6306,randy.davis@gmail.com,randy.davis,!#Spirit69,0
+2cea8414-16-07,1,7/16/2014 15:10,7/16/2014 15:10,Tom,Bruce,NULL,1704 Gloucester Way,NULL,Tucker,30084,Tom Bruce,NULL,NULL,4426 Hugh Howell Road,Suite B-118,Tucker,30084,770-908-2700,NULL,47thproblem@bellsouth.net,47thproblem@bellsouth.net,4439810,1
+4807a414-16-07,1,7/16/2014 16:12,7/16/2014 16:12,HT,Banks,NULL,3058 Janerio Road,NULL,Arapahoe,28510,HT Banks,NULL,NULL,3058 Janerio Road,NULL,Arapahoe,28510,252-249-1980,NULL,cuccoowink@embarqmail.com,cuccoowink@embarqmail.com,5524667,1
+d6b95f14-17-07,1,7/17/2014 14:01,7/17/2014 14:01,Jerry,Tomlin,NULL,1317 south view rd,NULL,Baltimore ,21218,Jerry Tomlin,NULL,NULL,1317 south view rd,NULL,Baltimore ,21218,443-759-5543,443-414-5528,tomlin.jerry1@yahoo.com,Jerry Tomlin,planelove,0
+37770714-17-07,1,7/17/2014 14:37,7/17/2014 14:50,Michael,Villines sr,grand lodge of tn.,100 7ave north,NULL,nashville,37203,Michael Villines sr,grand lodge of tn.,NULL,100 7ave north,NULL,nashville,37203,6154260461,NULL,grandsecretary@grandlodge-tn.org,Michael,10131956,0
+171cbb14-17-07,1,7/17/2014 15:38,7/17/2014 15:38,Tracy,Bloom,Most Worshipful Grand Lodge of Kansas,320 SW 8th Ave,NULL,Topeka,66603,Tracy Bloom,Most Worshipful Grand Lodge of Kansas,NULL,320 SW 8th Ave,NULL,Topeka,66603,7852345518,7852345518,tlb1958@cox.net,oneyedjack,Gpsmap60csx,0
+d9ab6314-18-07,1,7/18/2014 8:58,7/18/2014 8:58,Daniel,Barston,Daniel Barston,15 Clark Street,NULL,Auburn,01501-1743,Daniel Barston,Daniel Barston,NULL,15 Clark Street,NULL,Auburn,01501-1743,508-792-0074,508-612-2952,pddgm24@gmail.com,Daniel B,Cornerstone1,0
+a2d73a14-18-07,1,7/18/2014 10:19,7/18/2014 10:19,steve,Belec,NULL,1321 south N street,NULL,Lake Worth,33460,steve Belec,NULL,NULL,1321 south N street,NULL,Lake Worth,33460,5613453443,5613453443,sbelec1@msn.com,sbelec1,pepper1,0
+89d6bf14-18-07,1,7/18/2014 15:00,7/18/2014 15:00,Richard,Smith,NULL, 2510 County Road 137,NULL, Burnet,78611,Richard Smith,NULL,NULL, 2510 County Road 137,NULL, Burnet,78611,512-715-8364,512-297-9157,rmsmithrick@yahoo.com,rmsmithrick,RMSjjs1404,0
+5cc87814-20-07,1,7/20/2014 7:51,7/20/2014 7:51,Randy,Brockman,NULL,512 - 1st Avenue,NULL,Clinton,52732,Randy Brockman,NULL,NULL,512 - 1st Avenue,NULL,Clinton,52732,563-242-5130,563-528-2109,Brockman512@gmail.com,Brockman512,OWJudd@512,0
+03de4014-21-07,1,7/21/2014 7:03,7/21/2014 7:03,John,Tyson,NULL,23521 Hwy64 W,NULL,Knoxville,72845,John Tyson,NULL,NULL,23521 Hwy64 W,NULL,Knoxville,72845,479-979-8112,479-979-8112,tarbait@yahoo.com,tarbait@yahoo.com,1347086,1
+97af8a14-21-07,1,7/21/2014 18:54,7/21/2014 18:54,Mike,Rodman,NULL,710 Odde Pl,NULL,Rapid City,57701,Mike Rodman,NULL,NULL,710 Odde Pl,NULL,Rapid City,57701,605-343-8852,605-391-8813,mrodman@rap.midco.net,mrodman@rap.midco.net,7907079,1
+21318814-22-07,1,7/22/2014 14:36,7/22/2014 14:36,Jay V ,Smith,"Jay V Smith, Secy",Ashara-Casiphia #551,4 E Brandt Blvd,Landisville,17538-1104,Jay V Smith,"Jay V Smith, Secy",NULL,Ashara-Casiphia #551,4 E Brandt Blvd,Landisville,17538-1104,717-898-7554,NULL,jvns4444@comcast.net,jvns4444@comcast.net,8333830,1
+4395d014-22-07,1,7/22/2014 17:28,7/22/2014 17:28,Rob,Gibbons,NULL,15132 Tangelo Blvd,NULL,West Palm Beach,33412,Rob Gibbons,NULL,NULL,15132 Tangelo Blvd,NULL,West Palm Beach,33412,5612484429,5612484429,gibfib@att.net,gibfib@att.net,5422445,1
+fa7f8314-23-07,1,7/23/2014 10:28,7/23/2014 10:28,Tim,Larkin,NULL,1505 Nautical Chart Drive,NULL,Charleston,29414,Tim Larkin,NULL,NULL,1505 Nautical Chart Drive,NULL,Charleston,29414,843-323-2595,843-323-2595,timlark2@hotmail.com,timlark2@hotmail.com,8382213,1
+6d47a214-23-07,1,7/23/2014 21:37,7/23/2014 21:37,John,MANNING,Hudson Lodge # 98,60 A Elm Avenue,NULL,Hudson,J0P1H0,John Manning,NULL,NULL,"69, Mount Victoria",NULL,Hudson,J0P1H0,450-458-7271,514-944-8446,manning@compas-orientation.com,manning@compas-orientation.com,JACM2055,0
+ed131014-24-07,1,7/24/2014 12:38,7/24/2014 12:38,Jay,St. John,Green Valley Lodge #71,P.O. Box 771,NULL,Green Valley,85622,Jay St. John,Green Valley Lodge #71,NULL,P.O. Box 771,NULL,Green Valley,85622,520-648-3339,520-260-8858,superdrj@yahoo.com,superdrj,5440ORfight,0
+73e9e214-02-09,1,9/2/2014 22:32,9/2/2014 22:32,Dean,Adams,NULL,212 Countrywood Circle,NULL,Sour Lake,77659,Dean Adams,NULL,NULL,212 Countrywood Circle,NULL,Sour Lake,77659,4096513419,NULL,Dadamstx@sbcglobal.net,Dadamstx@sbcglobal.net,2528675,1
+da7a5114-24-07,1,7/24/2014 16:52,7/24/2014 16:55,James,Nickels,NULL,111 Pecos St,NULL,Glen Rose,76043,James Nickels,NULL,NULL,111 Pecos St,NULL,Glen Rose,76043,254-897-7480,NULL,grlodge525@yahoo.com,James Nickels,Mango#8Rain,0
+a772af14-24-07,1,7/24/2014 17:32,7/24/2014 17:35,Hal,Smith,NULL,6290 W Tropical Pkwy.,NULL,Las Vegas,89130,Hal Smith,NULL,NULL,6290 W Tropical Pkwy.,NULL,Las Vegas,89130,7026451655,NULL,smithhal@embarqmail.com,smithhal1,second,0
+d8799814-24-07,1,7/24/2014 18:06,7/26/2015 20:21,John,Dennis,NULL,6013 Palmera Dr,NULL,Mason,45040-8040,John Dennis,NULL,NULL,6013 Palmera Dr,NULL,Mason,45040-8040,513-492-9612,513-256-7272,jedennis@zoomtown.com,approval99,dennis99,0
+bafe9f14-25-07,1,7/25/2014 8:39,7/25/2014 8:39,Lynn,Donaldson,Glendale Lodge No. 225,9563 State Hway 83 N.,NULL,DeFuniak Springs,32433,Lynn Donaldson,Glendale Lodge No. 225,NULL,9563 State Hway 83 N.,NULL,DeFuniak Springs,32433,850-859-2444,NULL,lyndon@embarqmail.com,glendale,publiX0525,0
+b494ba14-25-07,1,7/25/2014 8:47,7/25/2014 8:47,Lynn,Donaldson,Glendale Lodge No. 225,9563 State Hway 83 N.,NULL,DeFuniak Springs,32433,Lynn Donaldson,Glendale Lodge No. 225,NULL,9563 State Hway 83 N.,NULL,DeFuniak Springs,32433,850-859-2444,NULL,lyndon@embarqmail.com,lyndon@embarqmail.com,5478390,1
+44d79114-25-07,1,7/25/2014 14:54,7/24/2015 16:48,John,Aiken,NULL,1981 Pine Dr.,NULL,Snellville,30078,John Aiken,NULL,NULL,1981 Pine Dr.,NULL,Snellville,30078,678-488-0923,678-488-0923,jra007@netzero.net,jra007,seller,0
+6868ac14-25-07,1,7/25/2014 16:29,7/25/2014 16:29,Sam,Carson,Chinquapin Creek Realty,PO Box 178,120 W. Main St.,Pilot Mountain,27041,Sam Carson,Chinquapin Creek Realty,NULL,PO Box 178,120 W. Main St.,Pilot Mountain,27041,336-368-2500,336-391-6774,ccr@triad.twcbc.com,ccr@triad.twcbc.com,3954293,1
+18c6dd14-26-07,1,7/26/2014 17:52,7/26/2014 17:52,Robert,Robinson,KBR,4018 Creek Ridge Lane,NULL,Missouri City,77459-2342,Robert Robinson,KBR,NULL,4018 Creek Ridge Lane,NULL,Missouri City,77459-2342,281-403-2893,713-679-9867,bobr2257@gmail.com,bobr2257@gmail.com,7718951,1
+cd19cd14-26-07,1,7/26/2014 17:56,7/26/2014 17:56,Robert,Robinson,KBR,4018 Creek Ridge Lane,NULL,Missouri City,77459-2342,Robert Robinson,KBR,NULL,4018 Creek Ridge Lane,NULL,Missouri City,77459-2342,281-403-2893,713-679-9867,bobr2257@gmail.com,bobr2257@gmail.com,2854447,1
+0c2fb614-26-07,1,7/26/2014 20:59,7/26/2014 20:59,Walter,Siri,Walter Siri,402 Madison Street,NULL,Carlstadt,7072,Walter Siri,Walter Siri,NULL,402 Madison Street,NULL,Carlstadt,7072,2018047698,2015222635,waslake@verizon.net,Waslake,parkway11,0
+85bb3114-27-07,1,7/27/2014 7:22,7/27/2014 7:22,Brian,Bright,NULL,244 Carpenter road,NULL,Grant,35747,Brian Bright,NULL,NULL,244 Carpenter Road,NULL,Grant,35747-9728,256-505-9687,NULL,brian@nehp.net,BrianBright,Guntersville,0
+5eaa0614-27-07,1,7/27/2014 11:03,7/27/2014 11:03,Don,Weiner,NULL,156 Hilltop Drive,NULL,Churchville,18966,Don Weiner,NULL,NULL,156 Hilltop Drive,NULL,Churchville,18966,2153640812,2156306950,dweiner@donweinerassoc.com,dweiner@donweinerassoc.com,2762324,1
+6eb2c114-27-07,1,7/27/2014 17:22,7/27/2014 17:25,Jerry C. ,Templet,Jerry C ,Templet,81414 Bealer Rd.,Bush ,70431,Jerry C. Templet,Jerry C ,NULL,Templet,81414 Bealer Rd.,Bush ,70431,(985)630-8648,Same,tribal.jerry@outlook.com,tribal.jerry,gotto222,0
+46d79714-28-07,1,7/28/2014 14:43,7/28/2014 14:43,David,Carroll,NULL,10100 Horseshoe Ln,NULL,McKinney,75070,Rita Carroll,NULL,NULL,10100 Horseshoe Ln,NULL,McKinney,75070,6612037698,6612037698,thecarrolls5@sbcglobal.net,thecarrolls5@sbcglobal.net,6149997,1
+7f401a14-28-07,1,7/28/2014 15:11,7/28/2014 15:11,Carl,Turner,NULL,1188 Main St,NULL,Long Lake,12847,Carl Turner,NULL,NULL,1188 Main St,NULL,Long Lake,12847,(518) 624-2337,NULL,mtpine@frontier.com,mtpine,BroCarl,0
+e5915d14-28-07,1,7/28/2014 17:37,7/28/2014 17:37,Billy,Millhollin,NULL,PO Box 549,NULL,Forsyth,59327,Billy Millhollin,NULL,NULL,374 E. Front St,NULL,Forsyth,59327,`1-406-346-7516,NULL,billyandviolet@yahoo.com,billyandviolet@yahoo.com,6245610,1
+f8202e14-28-07,1,7/28/2014 18:15,7/28/2014 18:15,Mark,Dinsmore,NULL,10405 Olympic Place,NULL,Anderson Island,98303,Mark Dinsmore,NULL,NULL,10405 Olympic Place,NULL,Anderson Island,98303,2536173114,2536173114,dinzfam@msn.com,dinzfam@msn.com,8819588,1
+e6508b14-29-07,1,7/29/2014 9:54,7/29/2014 9:54,BILL,COCHRAN,NULL,161 e newman st,NULL,zanesville,43701,BILL COCHRAN,NULL,NULL,161 e newman st,NULL,zanesville,43701,7404392686,7404392686,wcochran2002@yahoo.com,wcochran2002@yahoo.com,4511965,1
+d9951714-29-07,1,7/29/2014 10:18,7/29/2014 10:18,Ralph,Brunson,NULL,11 George St,Apt 3,Westerly,2891,Ralph Brunson,NULL,NULL,11 George St,Apt 3,Westerly,2891,4013155930,4016444525,rbrunson23@cox.net,rbrunson23,yankees23,0
+c2b93c14-29-07,1,7/29/2014 13:56,7/29/2014 13:56,Ed ,Trego,NULL,8443 Limeridge Rd.,NULL,Ravenna,44266,Jon Trego,NULL,NULL,402 Madison St.,NULL,Ravenna,44266,330.297.1340`,330.819.4130,retrego@aol.com,retrego@aol.com,whiskers,0
+671e2a14-29-07,1,7/29/2014 15:07,7/29/2014 15:07,George,Walton,Reactives Management Corporation,1025 Executive Blvd,Suite 101,Chesapeake,23320,George Walton,Reactives Management Corporation,NULL,1025 Executive Blvd,Suite 101,Chesapeake,23320,757-436-1003,NULL,g.c.walton@reactives.com,g.c.walton@reactives.com,6108537,1
+cd9f4414-29-07,1,7/29/2014 16:26,7/29/2014 16:26,H. JAMES,BLUM,NULL,5509 MARTHA'S VINEYARD,NULL,CLARENCE CENTER,14032-9397,H. JAMES BLUM,NULL,NULL,5509 MARTHA'S VINEYARD,NULL,CLARENCE CENTER,14032-9397,716-741-5509,NULL,hjimb@verizon.net,hjimb@verizon.net,1955151,1
+8a9d7914-29-07,1,7/29/2014 16:41,7/29/2014 16:41,Michael,Day,NULL,PO Box 815,NULL,Pittsboro,27312,Michael Day,NULL,NULL,PO Box 815,NULL,Pittsboro,27312,919-616-5972,919-616-5972,mlday101@gmail.com,mlday101@gmail.com,3749407,1
+ebf92514-29-07,1,7/29/2014 17:02,5/13/2016 13:44,Jorge,Filgueira,NULL,191 Chippewa Street,NULL,Miami Springs,33166,Jorge Filgueira,NULL,NULL,191 Chippewa Street,NULL,Miami Springs,33166,305-884-6229,754-264-4195,jfilgueirams@gmail.com,jfilgueirams,CGC046390,1
+72d75114-30-07,1,7/30/2014 2:36,7/30/2014 2:36,Charles,Ward,NULL,4446 Mendenhall Boulevard,NULL,Juneau,99801,Charles Ward,NULL,NULL,4446 Mendenhall Boulevard,NULL,Juneau,99801,(907) 957-3582,(907) 957-3582,charlesward4@me.com,charlesward4@me.com,5617452,1
+13047c14-30-07,1,7/30/2014 9:09,7/30/2014 9:09,frederick ,Kemp,NULL,13103 W 126th pl,NULL,Overland Park,66213,frederick Kemp,NULL,NULL,13103 W 126th pl,NULL,Overland Park,66213,9133223664,9139059263,fredkemp@Everestkc.net,fredkemp,linda001,0
+ff0dfb14-31-07,1,7/31/2014 9:43,7/31/2014 9:43,Roy,Simpadian,NULL,535 Amsterdam Avenue,NULL,Ridgewood,7450,Roy Simpadian,NULL,NULL,535 Amsterdam Avenue,NULL,Ridgewood,7450,2016394611,NULL,simpadian@gmail.com,simpadian@gmail.com,1261684,1
+0894c914-31-07,1,7/31/2014 13:35,7/31/2014 13:35,John,Smigle,NULL,853 Ridge Rd,NULL,Ontario,14519,John Smigle,NULL,NULL,853 Ridge Rd,NULL,Ontario,14519,5853536397,NULL,jvs137@gmail.com,jvs137@gmail.com,9588599,1
+7835b114-31-07,1,7/31/2014 13:36,7/31/2014 13:36,John,Smigle,NULL,853 Ridge Rd,NULL,Ontario,14519,John Smigle,NULL,NULL,853 Ridge Rd,NULL,Ontario,14519,5853536397,NULL,jvs137@gmail.com,jvs137@gmail.com,6206899,1
+9a27b214-31-07,1,7/31/2014 18:22,7/31/2014 18:23,Danny,Thomas,Garland Masonic Lodge #441,P.O. Box 460702,NULL,Garland,75046-0702,Danny Thomas,Garland Masonic Lodge #441,NULL,P.O. Box 460702,NULL,Garland,75046-0702,972-276-7614,214-289-6775,dathomas59@hotmail.com,dathomas59,Grumpy1,0
+b4ad7414-01-08,1,8/1/2014 11:16,8/1/2014 11:16,Oscar,Orum,NULL,8607 Azalea Trail,NULL,Austin,78759-7501,Oscar Orum,NULL,NULL,8607 Azalea Trail,NULL,Austin,78759-7501,512-346-4310,512-529-0414,oorum@austin.rr.com,oorum@austin.rr.com,5061800,1
+b613db14-01-08,1,8/1/2014 12:22,8/1/2014 12:22,Bruce ,Katz,NULL,48 Kaywood Drive,NULL,Rochester,14626,Bruce Katz,NULL,NULL,48 Kaywood Drive,NULL,Rochester,14626,585-227-5553,585-729-6657,brucek8189@aol.com,brucek8189@aol.com,7907189,1
+49496114-01-08,1,8/1/2014 22:51,8/1/2014 22:51,Vincenzo,Macrino,NULL,5432 Lake Rd,NULL,Newfield,8344,Vincenzo Macrino,NULL,NULL,5432 Lake Rd,NULL,Newfield,8344,6093810481,(609) 381-0481,thewidowsson33@comcast.net,thewidowsson33@comcast.net,2493176,1
+07aa3e14-02-08,1,8/2/2014 21:06,8/10/2014 12:33,Yancey,Smith,NULL,3221 Conservation Way,NULL,Rapid City,57703,Yancey Smith,NULL,NULL,3221 Conservation Way,NULL,Rapid City,57703,605-393-2786,605-391-9996,yanceysmith@rap.midco.net,yanceysmith,elizabeth99,0
+b2f10a14-04-08,1,8/4/2014 21:48,7/28/2016 7:36,Nathan,Giesenschlag,NULL,9095 FM 2039,NULL,Somerville,77879,Nathan Giesenschlag,NULL,NULL,9095 FM 2039,NULL,Somerville,77879,979-219-1315,NULL,nathan.giesenschlag@gmail.com,nathan.giesenschlag,WAR!1914,0
+4761df14-04-08,1,8/4/2014 22:40,8/4/2014 22:40,John,Strickling,NULL,4203 Willow Bend Ct SE,NULL,Decatur,35603,John Strickling,NULL,NULL,4203 Willow Bend Ct SE,NULL,Decatur,35603,256-350-3892,256-227-0531,John.r.strickling@gmail.com,John.r.strickling@gmail.com,2689451,1
+6f15cf14-05-08,1,8/5/2014 1:20,8/5/2014 1:20,Paul,Mundy,St. Stephen's Lodge #63,349 Parker Ave,NULL,South Amboy,8879,Paul Mundy,St. Stephen's Lodge #63,NULL,349 Parker Ave,NULL,South Amboy,8879,7324916507,7324916507,pmundy@optonline.net,pmundy,chief2008,0
+031b2714-05-08,1,8/5/2014 13:40,8/5/2014 13:40,Michael,Forte,1948,3100 N. Jackson Rd.,NULL,Pharr,78577,Mike Forte,1948,NULL,3100 N. Jackson Rd.,NULL,Pharr,78577,678-471-8179,NULL,90BlueXJ@Gmail.com,BlueXJ,97869786,0
+ded39e14-05-08,1,8/5/2014 20:26,8/5/2014 20:26,William,Greenwood,NULL,PO Box 218521,NULL,Houston,77218,William Greenwood,NULL,NULL,PO Box 218521,NULL,Houston,77218,2814964332,7132997217,billgwd@sbcglobal.net,billgwd,wb5gmo,0
+62a29914-07-08,1,8/7/2014 12:24,8/7/2014 12:24,Gwen,Olson,Grand Lodge of South Dakota,520 S First Ave,NULL,Sioux Falls,57104,Gwen Olson,Grand Lodge of South Dakota,NULL,520 S First Ave,NULL,Sioux Falls,57104,605-332-2051,NULL,office@grandlodge.org,office@grandlodge.org,1787168,1
+918b7314-07-08,1,8/7/2014 15:55,8/7/2014 15:55,Gwen ,Olson,Grand Lodge of SD,520 S First Ave,NULL,Sioux Falls,57104,Gwen Olson,Grand Lodge of SD,NULL,520 S First Ave,NULL,Sioux Falls,57104,605-332-2051,NULL,office@grandlodge.org,office@grandlodge.org,1175916,1
+7d061b14-09-08,1,8/9/2014 21:15,8/9/2014 21:15,Michael,Bolen,Michael Bolen,32553 NC 740 Hwy,NULL,Albemarle,28001,Michael Bolen,Michael Bolen,NULL,32553 NC 740 Hwy,NULL,Albemarle,28001,7044223495,NULL,mbolen@ctc.net,mbolen@ctc.net,9995391,1
+5c321714-10-08,1,8/10/2014 8:46,7/2/2015 16:44,Tracy,Chastain,NULL,1250 Bee Lane,NULL,Geneva,32732,Tracy Chastain,NULL,NULL,1250 Bee Lane,NULL,Geneva,32732,407-687-3191,NULL,tdchastain@yahoo.com,tdchastain,tc6210,0
+3c023a14-10-08,1,8/10/2014 11:44,6/7/2015 9:46,Robert,Wade,NULL,608 West Main St,NULL,Austin,47102,Robert Wade,NULL,NULL,608 West Main St,NULL,Austin,47102,8127949527,8125958332,robwade757@gmail.com,robwade,teresa56,0
+c08b6c15-17-04,1,4/17/2015 16:00,4/17/2015 16:00,Jay,Brown,NULL,42 ASHLAR VILLAGE,NULL,WALLINGFORD,6492,Jay Brown,NULL,NULL,42 ASHLAR VILLAGE,NULL,WALLINGFORD,6492,203-679-2119,NULL,jay_m_brown@sbcglobal.net,amipres,deedee,0
+c8d62314-11-08,1,8/11/2014 11:45,8/11/2014 11:45,shawn,gorley,NULL,2645 Garner Rd,NULL,Edinburg,16116,shawn gorley,NULL,NULL,603 TAMPLIN ST APT A,NULL,SHARON,16146,7247301812,7247301812,gorleytruck@gmail.com,gorleytruck@gmail.com,5441932,1
+39798e14-11-08,1,8/11/2014 12:05,8/11/2014 12:05,Thomas M.,Richards,1936,1267 Genesee Ave.,none,mayfield heights,44124,Thomas M. Richards,1936,NULL,1267 Genesee Ave.,none,mayfield heights,44124,440-554-3460,440-554-3460,kaboom214@msn.com,kaboom214,shaboom1apr60,0
+b9b80014-12-08,1,8/12/2014 10:54,8/12/2014 10:54,Aaron,Poole,NULL,1020 Karel Park Rd.,NULL,Eldorado,62930,Aaron Poole,NULL,NULL,1020 Karel Park Rd.,NULL,Eldorado,62930,618-599-4386,NULL,aaron.poole@sic.edu,aaron.poole@sic.edu,9524669,1
+2bedff14-12-08,1,8/12/2014 12:47,8/12/2014 12:47,Rex E.,Harrison,Rex E. Harrison,PO Box 505,NULL,Double Springs,35553,Rex E. Harrison,NULL,NULL,25372 Highway 195,NULL,Double Springs,35553,205-489-8806,205-272-0173,harrisondrug@centurytel.net,RexHarrison,drugs123,0
+79ef0814-12-08,1,8/12/2014 21:53,8/12/2014 21:53,Dave,Olmstead,Behind The Scenes Productions,PO Box 501,NULL,Amelia,45102,Dave Olmstead,Behind The Scenes Productions,NULL,3 Glenpark Ct,NULL,Amelia,45102,5136170906,NULL,dave@behindscenesproductions.com,dave@behindscenesproductions.com,7288605,1
+c0bbab14-13-08,1,8/13/2014 2:38,8/13/2014 2:38,Paul,Van Laarhoven,NULL,38 N. Park St,NULL,Clintonville,54929,Paul Van Laarhoven,NULL,NULL,38 N. Park St,NULL,Clintonville,54929,715-823-6097,NULL,jester2@charter.net,Paulvan,Monkey546,0
+7ca59714-13-08,1,8/13/2014 7:05,8/13/2014 7:06,Bayani,Casanoiva,NULL,709 Gleneagles Drive,NULL,Fort Washington,20744,Bayani Casanoiva,NULL,NULL,709 Gleneagles Drive,NULL,Fort Washington,20744,3012037772,NULL,yanicasan@veerizon.net,yanicasa,1804cst,0
+81d31814-13-08,1,8/13/2014 7:06,8/13/2014 7:06,Mike,Johnson,NULL,121 Bobs Creek Road,PO Box 575,Crowheart,82512,Mike Johnson,NULL,NULL,121 Bobs Creek Road,PO Box 575,Crowheart,82512,307-486-2268,307-851-1956,mbjohnson@wyoming.com,mbjohnson@wyoming.com,8038388,1
+04c91514-13-08,1,8/13/2014 15:26,8/13/2014 15:26,Michael ,Sellick,Scottish Rite Masonic Center,6151 H Street,NULL,Sacramento,95819,Michael L. Sellick,Scottish Rite Masonic Center,NULL,6151 H Street,NULL,Sacramento,95819,916-452-5881,NULL,msellick@sacramentoscottishrite.org,msellick@sacramentoscottishrite.org,7766604,1
+bcc92a14-13-08,1,8/13/2014 15:28,8/13/2014 15:28,Daniel,Leger,NULL,833 21 Road,NULL,Fruita,81521,Daniel Leger,NULL,NULL,833 21 Road,NULL,Fruita,81521,9707124072,9707124072,danbroncfan@yahoo.com,danbroncfan,78proTege12,0
+866cfe14-14-08,1,8/14/2014 14:17,8/14/2014 14:17,GERALD,BURKS,BURKS' BOOKKEEPING & TAX SVC.,9310 WARWICK BLVD.,NULL,NEWPORT NEWS,23601-4535,GERALD BURKS,BURKS' BOOKKEEPING & TAX SVC.,NULL,9310 WARWICK BLVD.,NULL,NEWPORT NEWS,23601-4535,757-595-6966,757-810-6281,JERRY@BURKS.HRCOXMAIL.COM,JERRY@BURKS.HRCOXMAIL.COM,4205753,1
+f31bce14-14-08,1,8/14/2014 21:19,8/14/2014 21:19,John,McDowall,NULL,5595 Jaclyn Dr,NULL,Warrenton,20187,John McDowall,NULL,NULL,5595 Jaclyn Dr,NULL,Warrenton,20187,5403490305,NULL,john.d.mcdowall@gmail.com,john.d.mcdowall@gmail.com,7824762,1
+51c3d214-14-08,1,8/14/2014 21:29,8/14/2014 21:29,John,McDowall,1967,5595 Jaclyn Dr,NULL,Warrenton,20187,John McDowall,1967,NULL,5595 Jaclyn Dr,NULL,Warrenton,20187,5403490305,NULL,john.d.mcdowall@gmail.com,john.d.mcdowall@gmail.com,3147782,1
+43ea5714-14-08,1,8/14/2014 22:34,8/14/2014 22:34,Steven,Dooley,NULL,8472 W. Mier 27,NULL,Converse,46919,Steven Dooley,NULL,NULL,8472 W. Mier 27,NULL,Converse,46919,765 395 7075,NULL,dooley_s@hotmail.com,dooley_s@hotmail.com,6095987,1
+d16a8014-15-08,1,8/15/2014 0:34,8/15/2014 0:34,Angie,Nealis,NULL,5316 N Mitchell,NULL,Boise,83704,Nick Nealis,NULL,NULL,310 Ave D,NULL,Boise,83712,2083217865,2083217865,angie.nealis@gmail.com,angie.nealis@gmail.com,9532768,1
+9b84e814-15-08,1,8/15/2014 10:38,10/3/2016 11:06,Barbara L,Thames,NULL,P O Box 728,NULL,Reidsville,30453,Barbara L Thames,NULL,NULL,P O Box 728,NULL,Reidsville,30453,912.286.7817,912.286.7817,blthames@gmail.com,blthames,trey70,0
+32c89d14-15-08,1,8/15/2014 15:38,8/15/2014 15:38,Wayne,Grindle,Wayne Grindle,4216 High Ridge Road,NULL,Haymarket,20169,Wayne Grindle,Wayne Grindle,NULL,4216 High Ridge Road,NULL,Haymarket,20169,703-754-7651,703-407-5583,wwgrindle@comcast.net,wwgrindle@comcast.net,7136896,1
+550df214-15-08,1,8/15/2014 15:40,8/15/2014 15:40,Tom,Bruce,NULL,1704 Gloucester Way,NULL,Tucker,30084,Tom Bruce,NULL,NULL,4426 Hugh Howell Road,Suite B-118,Tucker,30084,770-908-2700,NULL,47thproblem@bellsouth.net,47thproblem@bellsouth.net,9329058,1
+0a8dd414-15-08,1,8/15/2014 18:09,8/15/2014 18:09,Michael,Davis,Michael Davis,224 Churchland Road,NULL,Saugerties,12477,Michael Davis,Michael Davis,NULL,224 Churchland Road,NULL,Saugerties,12477,845-246-2289,845-453-2171,mike2289@aol.com,mike1952,hydro1,0
+e39dec14-15-08,1,8/15/2014 23:05,8/15/2014 23:05,Paul,Jones,NULL,2500 GRANT ST APT 115,NULL,BETTENDORF,527227400,Paul Jones,NULL,NULL,2500 GRANT ST APT 115,NULL,BETTENDORF,527227400,5633557760,5635085539,mshplt@gmail.com,mshplt@gmail.com,7380277,1
+f7f4f714-16-08,1,8/16/2014 10:45,8/16/2014 10:45,Bruce,Whitaker,NULL,"14911 Missouri Ave., SW",NULL,Cresaptown,21502,Bruce Whitaker,NULL,NULL,"14911 Missouri Ave., SW",NULL,Cresaptown,21502,2403627538,NULL,brucew@atlanticbb.net,brucew,gunner,0
+e25e4914-16-08,1,8/16/2014 10:47,3/30/2016 11:13,Albert,Piatt,NULL,1721 Julian Ridge Road,NULL,Chattanooga,37421-3321,Albert Piatt,NULL,NULL,1721 Julian Ridge Road,NULL,Chattanooga,37421-3321,423 899-6507,NULL,bertpiatt@bellsouth.net,bertpiatt,acgl0822,0
+824a5414-16-08,1,8/16/2014 11:20,8/16/2014 11:20,Fred,Goodman,LaMonte Lodge568,121 W 3RD Ave,NULL,Derry,15627-1207,Fred Goodman,LaMonte Lodge568,NULL,121 W 3RD Ave,NULL,Derry,15627-1207,7246945166,NULL,Goodmanf@comcast.net,Goodmanf@comcast.net,4083214,1
+605ea614-16-08,1,8/16/2014 17:55,8/16/2014 17:55,Paul,Van Laarhoven,NULL,38 N. Park St.,NULL,Clintonville,54929,Paul Van Laarhoven,NULL,NULL,38 N. Park St.,NULL,Clintonville,54929,7158236097,NULL,jester2@charter.net,jester2@charter.net,1221722,1
+31036b14-17-08,1,8/17/2014 12:50,8/17/2014 12:50,Bradley,Morton,NULL,1014 Cleburne street,NULL,Greensboro,27408,Bradley Morton,NULL,NULL,1014 Cleburne street,NULL,Greensboro,27408,3364656579,3364656579,brad.morton07@gmail.com,brad.morton07@gmail.com,2539985,1
+0a4c9d14-17-08,1,8/17/2014 16:08,8/17/2014 16:08,Jeff,Slattery,NULL,45 Carol Lane,NULL,Athens,45701,Jeff Slattery,NULL,NULL,45 Carol Lane,NULL,Athens,45701,740-592-6124,740-541-0972,slattery@athensmasons.org,seoemsmedic,medic039,0
+d054aa14-17-08,1,8/17/2014 16:18,8/17/2014 16:18,Andrew,Ellis,NULL,79 Barnes Street,NULL,Gouverneur,13642,Andrew Ellis,NULL,NULL,79 Barnes Street,NULL,Gouverneur,13642,315-287-2085,NULL,aellis@northnet.org,aellis@northnet.org,9461218,1
+22b8a614-17-08,1,8/17/2014 18:34,8/17/2014 18:34,Ronald,Jarrett,NULL,10349 416th Ave,NULL,Britton ,57430,Ronald Jarrett,NULL,NULL,10349 416th Ave,NULL,Britton ,57430,6054485111,NULL,rjarrett654@gmail.com,rjarrett,J5Wick2R,1
+56590914-17-08,1,8/17/2014 21:26,11/21/2016 16:19,Michael,Whitescarver,NULL,3216 W. Winchester,NULL,Springfield,65807,Michael Whitescarver,NULL,NULL,3216 W. Winchester,NULL,Springfield,65807,417-350-1906,NULL,mscarver@att.com,scarver88,82usmc89,0
+7efbc414-17-08,1,8/17/2014 21:36,8/17/2014 21:36,Marlin,Shughart,NULL,310 Huntington Drive,NULL,Mountville,17554,Marlin Shughart,NULL,NULL,310 Huntington Drive,NULL,Mountville,17554,717-285-2516,717-413-1658,judgeshugh@gmail.com,judgeshugh@gmail.com,7732768,1
+86e0c614-18-08,1,8/18/2014 10:10,8/18/2014 10:10,Robert,Simpson,NULL,1080 Woodrow Avenue,NULL,Waynesboro,22980-5539,Mark Chapman,NULL,NULL,22 Pine Crest Drive,NULL,Troy,22974-6219,434-996-0390,NULL,r.e.simpson1080@gmail.com,r.e.simpson1080@gmail.com,7189901,1
+0653f314-18-08,1,8/18/2014 11:28,8/18/2014 11:28,Chris,Cochrane,NULL,4172 Westview Lane,NULL,Oshkosh,54904,Chris Cochrane,NULL,NULL,4172 Westview Lane,NULL,Oshkosh,54904,920-450-3117,920-450-3117,crcmagic@gmail.com,crcmagic@gmail.com,6690642,1
+b1d32714-18-08,1,8/18/2014 12:26,8/18/2014 12:26,Kevin,LeVan,NULL,2118 Mark Drive,NULL,Middletown,22645,Kevin LeVan,NULL,NULL,2118 Mark Drive,NULL,Middletown,22645,5402470976,5712475245,kevinmlevan@me.com,kevinmlevan,Miller123,0
+ee93c814-18-08,1,8/18/2014 15:44,8/18/2014 15:44,John,Schaffhauser,John Schaffhauser,2606 Harding Ave.,NULL,Broomall,19008,John Schaffhauser,John Schaffhauser,NULL,2606 Harding Ave.,NULL,Broomall,19008,610-353-0233,610-246-8120,sryogi@aol.com,sryogi,bur2cbdv,0
+f1249f14-18-08,1,8/18/2014 17:14,8/18/2014 17:14,Donald,Slaughter,Donald K. Slaughter,438 South 85th Street,NULL,Omaha,68114,Donald K. Slaughter,NULL,NULL,438 South 85th Street,NULL,Omaha,68114,307-354-6241,NULL,donslaughterlawyer@gmail.com,donslaughterlawyer@gmail.com,3667912,1
+90c22014-18-08,1,8/18/2014 21:14,4/21/2016 22:02,Rick,Miller,NULL,2021 Windham St NE,NULL,Canton,44721,Rick Miller,NULL,NULL,2021 Windham St NE,NULL,Canton,44721,330-497-9652,330-353-2947,miller-rick@att.net,millerri2176,NeouMed2006,0
+15c83e14-18-08,1,8/18/2014 22:41,8/18/2014 22:41,William,Reynar,NULL,10253 NE 129th LN,NULL,Kirkland,98034,William Reynar,NULL,NULL,10253 NE 129th LN,NULL,Kirkland,98034,2068565988,2068565988,wjreynar@gmail.com,wjreynar@gmail.com,9622878,1
+dd9ccf14-19-08,1,8/19/2014 8:00,8/19/2014 8:00,Tom,Paxton,Queen City Lodge #131,P.O.Box 1497,NULL,Cumberland,21502-1497,Tom Paxton,Queen City Lodge #131,NULL,1939 Frederick St.,Apt 5,Cumberland,21502,3018760806,3018760806,tpaxton@allconet.org,tpaxton,tp112405,0
+1aad8114-19-08,1,8/19/2014 13:01,8/19/2014 13:01,Michael,Postilli,NULL,56 Jersey Black Circle,NULL,Rochester,14626,Michael Postilli,NULL,NULL,56 Jersey Black Circle,NULL,Rochester,14626,5857298400,NULL,mpostilli@gmail.com,mpostilli@gmail.com,7735362,1
+9a7b7e14-19-08,1,8/19/2014 14:32,8/19/2014 14:32,William,Breed,Coastal Lodge #57,7 Fairview Dr,NULL,Pawcatuck,06379-1271,William Breed,Coastal Lodge #57,NULL,7 Fairview Dr,NULL,Pawcatuck,06379-1271,860-599-0187,NULL,wlbreed1@comcast.net,wlbreed1@comcast.net,4515687,1
+f6b29314-19-08,1,8/19/2014 14:52,8/19/2014 14:52,John,Shroeder,N/A,N/A,NULL,N/A,N/A,John Shroedere,N/A,NULL,5418 Inverchapel Rd,NULL,Springfield,22151,703-321-7047,NULL,cmdrshroeder@aol.com,johninvirginia,walnuttree,0
+b1784014-19-08,1,8/19/2014 15:50,8/19/2014 15:50,Joseph,DeNicola,Old Colony Lodge,402 Main Street,NULL,Hanover,2339,Joseph DeNicola,Old Colony Lodge,NULL,402 Main Street,NULL,Hanover,2339,617-570-9441,617-777-5088,jcdenicola@comcast.net,jcdenicola,Pompom,1
+bda52314-19-08,1,8/19/2014 16:03,1/26/2016 9:59,Christopher ,Casey,NULL,31 Ridgeland Road,NULL,Shrewsbury,1545,Christopher Casey,NULL,NULL,31 Ridgeland Road,NULL,Shrewsbury,1545,5088683092,NULL,chris.p.casey@gmail.com,chris.p.casey@gmail.com,East80!,0
+30800114-19-08,1,8/19/2014 16:41,8/19/2014 16:42,Robert,Legowsky,NULL,2627 Spring Grove Dr,NULL,Brighton,48114,Robert Legowsky,NULL,NULL,2627 Spring Grove Dr,NULL,Brighton,48114,313-819-0333,NULL,robgraemach@hotmail.com,robgraemach@hotmail.com,3506354,1
+c1692014-19-08,1,8/19/2014 16:58,8/19/2014 17:06,Marvin,Armstrong,Marvin Armstrong,2606 S Taylor,NULL,Pittsburg,66762,Marvin Armstrong,Marvin Armstrong,NULL,2606 S Taylor,NULL,Pittsburg,66762,620-231-1180,620-240-0488,pittsburgmasons@cox.net,Marvin Armstrong,nivram,1
+b338c014-19-08,1,8/19/2014 17:44,8/19/2014 17:44,Marvin,Armstrong,Pittsburg Lodge No 187 AF&AM,2606 S Taylor,NULL,Pittsburg,66762,Marvin Armstrong,Pittsburg Lodge No 187 AF&AM,NULL,2606 S Taylor,NULL,Pittsburg,66762,620-231-1180,620-240-0488,pittsburgmasons@cox.net,Marvin Armstrong,nivram,1
+4e610214-19-08,1,8/19/2014 17:48,8/19/2014 17:48,John,Breitigan,NULL,309 Windsor Circle,NULL,Washington,15301,John Breitigan,NULL,NULL,309 Windsor Circle,NULL,Washington,15301,724-746-2546,NULL,johnbreitigan@me.com,johnbreitigan@me.com,4621991,1
+97845f14-19-08,1,8/19/2014 18:05,8/19/2014 18:05,Brenda,Watson,Brenda Watson,2501 W. Zia Rd.,#6-104,Santa Fe,87505,Brenda Watson,Brenda Watson,NULL,2501 W. Zia Rd.,#6-104,Santa Fe,87505,don't have landline,505.660.3705,brenda.watson@state.nm.us,brenda.watson@state.nm.us,2069042,1
+41ed4814-19-08,1,8/19/2014 19:35,8/19/2014 19:35,James,Fiete,James R. Fiete,2201 Parkridge Avenue,NULL,Brentwood,63144-1639,James Fiete,NULL,NULL,2201 Parkridge Avenue,NULL,Brentwood,63144-1639,314 968-0295,314 968-0295,djfiete@earthlink.net,James R. Fiete,roggman,0
+0a4e5414-19-08,1,8/19/2014 20:45,8/19/2014 20:45,Jeff,Bloemker ,NULL,14601 Derryhale Way,NULL,Smithville ,64089,Jeff Bloemker ,NULL,NULL,14601 Derryhale Way,NULL,Smithville ,64089,8168065404,NULL,Bloemker@gmail.com,Bloemker@gmail.com,3974323,1
+7e955d14-19-08,1,8/19/2014 21:43,8/19/2014 21:43,charles,nesom,NULL,440 elaine rd,NULL,deridder,70634,charles nesom,NULL,NULL,440 elaine rd,NULL,deridder,70634,3374626694,NULL,chucknesom@boisepaper.com,chucknesom@boisepaper.com,9332540,1
+addda514-19-08,1,8/19/2014 22:22,8/19/2014 22:22,Mike,Campbell,NULL,2502 Goliad Str,NULL,Temple,76501,Mike Campbell,NULL,NULL,2502 Goliad Str,NULL,Temple,76501,254-760-4794,254-760-4794,michaelcampbell1313@yahoo.com,michaelcampbell1313@yahoo.com,5965526,1
+bebb6914-20-08,1,8/20/2014 9:27,8/20/2014 9:27,Timothy,Walker,NULL,236 N Pennsylvania Ave,NULL,Casper,82609,Timothy Walker,NULL,NULL,236 N Pennsylvania Ave,NULL,Casper,82609,3072775304,NULL,timothy.r.walker@gmail.com,timothy.r.walker@gmail.com,megan0424,0
+c332f514-20-08,1,8/20/2014 10:13,8/20/2014 10:13,Oscar,Patterson III,NULL,248 Patrick Mill Circle,NULL,Ponte Vedra Beach,32082,Oscar Patterson III,NULL,NULL,248 Patrick Mill Circle,NULL,Ponte Vedra Beach,32082,904-280-1067,904-955-9175,opatters@comcast.net,opatters@comcast.net,8559573,1
+05ec3714-20-08,1,8/20/2014 10:39,8/20/2014 10:39,Barry,Allen,NULL,19230 Sharon Valley Rd,NULL,Manchester,48158,Barry Allen,NULL,NULL,19230 Sharon Valley Rd,NULL,Manchester,48158,734-428-7034,734-904-4695,honkerbag@aol.com,honkerbag@aol.com,3548880,1
+05955814-20-08,1,8/20/2014 10:40,8/20/2014 10:40,Frank,Loui,A&ASR,2850 19th Avenue,NULL,San Francisco,94132,Frank Loui,A&ASR,NULL,2850 19th Avenue,NULL,San Francisco,94132,4156098839,4156098839,frankloui@aol.com,frankloui@aol.com,5772648,1
+185b8014-20-08,1,8/20/2014 13:19,8/20/2014 13:19,JOHN,PANICCIA,NULL,1963 CATO COURT,NULL,INDIALANTIC,32903,JOHN PANICCIA,NULL,NULL,1963 CATO COURT,NULL,INDIALANTIC,32903,321-537-0113,321-537-0113,JPSEC318@AOL.COM,JPSEC318,ddgm2012,0
+53af4014-20-08,1,8/20/2014 13:34,8/20/2014 13:34,Robert,Gaydosh,NULL,212 Old York Road,NULL,Bridgewater,8807,Robert Gaydosh,NULL,NULL,212 Old York Road,NULL,Bridgewater,8807,908-722-3349,609-610-2764,rgaydosh@verizon.net,cusegator,gator0518,0
+ca1fba14-20-08,1,8/20/2014 14:10,8/20/2014 14:10,Patrick,Curtis,NULL,9409 Gwynndale Drive,NULL,Clinton,20735,Patrick Curtis,NULL,NULL,9409 Gwynndale Drive,NULL,Clinton,20735,301-868-7283,3017588262,migmmd2002@verizon.net,Joshua,JopRab9293@CSL,0
+26ba2f14-20-08,1,8/20/2014 15:15,8/20/2014 15:15,Gwen,Olson,Grand Lodge A.F. & A.M. of South Dakota,520 S First Ave,NULL,Sioux Falls,57104,Gwen Olson,Grand Lodge A.F. & A.M. of South Dakota,NULL,520 S First Ave,NULL,Sioux Falls,57104,605-332-2051,NULL,office@grandlodge.org,office@grandlodge.org,7589770,1
+51ae1814-20-08,1,8/20/2014 15:58,8/20/2014 15:58,James,Morris,NULL,672 West 4th St,NULL,Hoisington,67544,James Morris,NULL,NULL,672 West 4th St,NULL,Hoisington,67544,620-786-4585,620-786-4585,jimbo1326@cox.net,jimbo1326@cox.net,2288325,1
+af233814-20-08,1,8/20/2014 16:05,8/20/2014 16:05,James,Morris,NULL,672 West 4th St,NULL,Hoisington,67544-2223,James Morris,NULL,NULL,672 West 4th St,NULL,Hoisington,67544-2223,620-786-4585,620-786-4585,jimbo1326@cox.net,jimbo1326@cox.net,5387444,1
+2900eb14-20-08,1,8/20/2014 18:39,6/13/2016 17:09,Monte,Bollar,Grand Lodge of Idaho,219 N. 17th St.,NULL,Boise,83702,Monte Bollar,Grand Lodge of Idaho,NULL,219 N. 17th St.,NULL,Boise,83702,(208) 343-4562,(208) 859-1086,gs@idahomasons.org,gloidaho,glsec123,0
+6e271014-20-08,1,8/20/2014 22:01,8/20/2014 22:01,Joshua,Dempsey,East Ridge Lodge #755,4115 Ringgold Road,NULL,East Ridge,37412,Joshua Dempsey,East Ridge Lodge #755,NULL,4115 Ringgold Road,NULL,East Ridge,37412,423-698-7612,NULL,eastridge755@gmail.com,eastridge755@gmail.com,2221809,1
+c894ae14-21-08,1,8/21/2014 10:55,8/21/2014 10:55,Dave,Krasner,NULL,540 Turquoise st,NULL,New Orleans,70124,Dave Krasner,NULL,NULL,540 Turquoise st,NULL,New Orleans,70124,5044442682,NULL,davekrasner@hotmail.com,davekrasner@hotmail.com,4595189,1
+d8ca6d14-21-08,1,8/21/2014 11:17,8/21/2014 11:17,Fred,Leighton,NULL,1409 Avenue J NW,NULL,childress,79201,Childress Lodge 695,NULL,NULL,344 Main street,NULL,childress,79201,9404739916,NULL,sgtfred13@yahoo.com,masoniclodge695,sgtfred,0
+6b17d414-21-08,1,8/21/2014 11:21,8/21/2014 11:21,Dave,Krasner,NULL,540 Turquoise st,NULL,new Orleans,70124,Dave Krasner,NULL,NULL,540 Turquoise st,NULL,new Orleans,70124,5044442682,NULL,davekrasner@hotmail.com,davekrasner@hotmail.com,8701112,1
+a34fe414-21-08,1,8/21/2014 15:59,8/21/2014 15:59,John,Foreaker,John,Foreaker,185 Old Log Cabin Road,North East,21901,John Foreaker,John,NULL,Foreaker,185 Old Log Cabin Road,North East,21901,443-553-0830,443-553-0830,jforeaker@hotmail.com,jforeaker@hotmail.com,6582556,1
+8b035114-21-08,1,8/21/2014 19:44,8/21/2014 19:44,colin,oakenfull,colin oakenfull,182 waters edge,NULL,montgomery,12549,colin oakenfull,colin oakenfull,NULL,182 waters edge,NULL,montgomery,12549,845 769 7012,845 220 8746,c.oakenfull@hotmail.com,c.oakenfull@hotmail.com,4613991,1
+1b236d14-21-08,1,8/21/2014 22:19,8/21/2014 22:19,Thomas,Otto,NULL,1825 West Main Street,NULL,Waynesboro,22980,Thomas Otto,NULL,NULL,1825 West Main Street,NULL,Waynesboro,22980,540-470-8038,NULL,geteurdone@comcast.net,geteurdone@comcast.net,6524196,1
+b6f73f14-21-08,1,8/21/2014 23:54,8/21/2014 23:54,William,Cummings,NULL,1826 Yorktown Drive,NULL,Charlottesville,22901,William Cummings,NULL,NULL,188 MINERVA ST,NULL,DERBY,64181810,2038957699,NULL,nelson@thecummings.us,nelsoncummings,R3agan0!#,0
+7574e614-22-08,1,8/22/2014 11:31,8/22/2014 11:31,Ronald,Salazar,Mt. Moriah Lodge No.116,22 Class Ct,NULL,Parkville,21234,Ronald Salazar,Mt. Moriah Lodge No.116,NULL,22 Class Ct,NULL,Parkville,21234,4438393727,4438393727,mt.moriah.lodge@gmail.com,mt.moriah.lodge@gmail.com,3137224,1
+f0758514-22-08,1,8/22/2014 11:55,8/22/2014 11:55,Joe,Norfolk,NULL,Box 418,18 Osprey Lane,Guernsey,82214,Joe Norfolk,NULL,NULL,Box 418,18 Osprey Lane,Guernsey,82214,307-359-1057,307-359-1057,cnorfolk@msn.com,cnorfolk@msn.com,jcjt#6,0
+7445fe14-22-08,1,8/22/2014 14:06,8/22/2014 14:06,Paul,Trusten,Paul Trusten,3609 Caldera Boulevard,Apartment 122,Midland,79707,Paul Trusten,Paul Trusten,NULL,3609 Caldera Boulevard,Apartment 122,Midland,79707,4325287724,4325287724,trusten@grandecom.net,trusten,Usosinger1948,0
+2695cb14-22-08,1,8/22/2014 19:28,8/22/2014 19:28,Michael,Reinhardt,Oasis Lodge No. 41 F.&A.M.,2200 W Mesquite Ave,STE 105,Las Vegas,89106,Michael Reinhardt,Oasis Lodge No. 41 F.&A.M.,NULL,2200 W Mesquite Ave,STE 105,Las Vegas,89106,702-383-9959,702-217-6556,oasislodge41@aol.com,oasislodge41,meamason41,0
+98659514-22-08,1,8/22/2014 20:28,8/22/2014 20:28,Scott,Kitchner,NULL,15 Fairway drive ,NULL,Rock Springs ,82901,Scott Kitchner,NULL,NULL,15 Fairway drive ,NULL,Rock Springs ,82901,307-389-5671,NULL,skitchner@fd1fire.com,skitchner@fd1fire.com,3677369,1
+5e85ee14-22-08,1,8/22/2014 22:09,8/29/2014 11:27,Dennis,Campbell,NULL,1511 L. T. Hardee road,NULL,Greenville,27858,Dennis Campbell,NULL,NULL,1511 L. T. Hardee road,NULL,Greenville,27858,252 758-0759,252 916-0303,dandjcampbell@suddenlink.net,CP708pm,hp1286,0
+a42fdb14-23-08,1,8/23/2014 23:01,8/23/2014 23:01,Arne,Hansen,NULL,2055 Ponderosa Ct.,NULL,Bellingham,98229,Arne Hansen,NULL,NULL,2055 Ponderosa Ct.,NULL,Bellingham,98229,3606764132,NULL,achoo@comcast.net,achoo@comcast.net,8600839,1
+97e0f514-24-08,1,8/24/2014 0:34,8/24/2014 0:34,Nate,warren,NULL,3013 Queenston Ave,NULL,Norman,73071-2923,Nate warren,NULL,NULL,3013 Queenston Ave,NULL,Norman,73071-2923,4055170313,4055170313,natepwarren@gmail.com,natepwarren@gmail.com,5421759,1
+c6270214-25-08,1,8/25/2014 9:55,8/25/2014 9:55,H JAMES,BLUM,NULL,5509 MARTHAS VINEYARD,NULL,CLARENCE CENTER,14032-9397,H JAMES BLUM,NULL,NULL,5509 MARTHAS VINEYARD,NULL,CLARENCE CENTER,14032-9397,(716) 741-5509,NULL,hjimb@verizon.net,hjimb@verizon.net,9850552,1
+4cf0c214-25-08,1,8/25/2014 11:36,9/21/2015 14:55,Ryan,Peterson,NULL,PO BOX 27,14871 Shady Grove Lane,Norwood,70761,Ryan Peterson,NULL,NULL,PO BOX 27,14871 Shady Grove Lane,Norwood,70761,2252443224,2252443224,ryki5625@yahoo.com,rankyskank,Haunted31,0
+3323d114-25-08,1,8/25/2014 21:01,8/25/2014 21:01,James,Clancy,Webster Masonic Lodge 538,PO Box 15,NULL,Webster,14580,James Clancy,Webster Masonic Lodge 538,NULL,PO Box 15,NULL,Webster,14580,585-738-2742,NULL,jclancy2@rochester.rr.com,jclancy2,cameo231,0
+36ae9314-26-08,1,8/26/2014 5:29,8/26/2014 5:29,Kurtis,Lowe,NULL,415 South Kensington St,NULL,Arlinton,22204,Kurtis Lowe,NULL,NULL,415 South Kensington St,NULL,Arlinton,22204,703-819-4398,NULL,lowe_family@hotmail.com,proflowe,krtt3203,0
+de939d14-26-08,1,8/26/2014 9:44,8/26/2014 9:44,Bruce W,Rhinehart,Bruce W Rhinehart,5856 Kinkade Rd,NULL,Bridgeport,62417-2399,Bruce W Rhinehart,Bruce W Rhinehart,NULL,5856 Kinkade Rd,NULL,Bridgeport,62417-2399,618-945-7537,NULL,adgms@afam-il.org,adgms@afam-il.org,8586216,1
+41dafe14-26-08,1,8/26/2014 9:59,8/26/2014 10:00,Bruce W,Rhinehart,Bruce W Rhinehart,5856 Kinkade Rd,NULL,Bridgeport,62417-2399,Bruce W Rhinehart,NULL,NULL,5856 Kinkade Rd,NULL,Bridgeport,62417-2399,618-945-7537,NULL,adgms@afam-il.org,bwrhinehart07,*Leader1944!^,1
+0d133d14-26-08,1,8/26/2014 10:25,8/26/2014 10:25,Earl,Wys,NULL,2625 N Woodhaven DR,NULL,Peoria,61604-2015,Earl Wys,NULL,NULL,2625 N Woodhaven DR,NULL,Peoria,61604-2015,309-688-2306,309-253-1780,earlwys@gmail.com,earlwys,Pasword1,0
+2992d214-26-08,1,8/26/2014 13:48,8/26/2014 13:48,James L,Heatherley,"TAT, LLC",2043 Ferris Road,NULL,Ferris,75125,James L Heatherley,"TAT, LLC",NULL,2043 Ferris Road,NULL,Ferris,75125,972-741-5476,972-741-5476,jheath@ml1.net,harveys001,surferdude,0
+66b27714-26-08,1,8/26/2014 16:59,8/26/2014 16:59,Ken,Black,NULL,10990 Switzer Ave #101,NULL,Dallas,75238,Ken Black,NULL,NULL,10990 Switzer Ave #101,NULL,Dallas,75238,9724040303,9724040303,ken@kenblack.net,blac5444,K4atha%%,0
+6209b814-26-08,1,8/26/2014 21:09,8/26/2014 21:09,James,Sturdevant,NULL,200 Rice Avenue,NULL,Sheridan,82801,James Sturdevant,NULL,NULL,200 Rice Avenue,NULL,Sheridan,82801,307-672-8391,307-752-2233,gcwykt@charter.net,gcwykt@charter.net,3435684,1
+0eba4b14-26-08,1,8/26/2014 22:15,8/26/2014 22:15,Shaun,Arner,NULL,508 Burlington Ave NE,NULL,Palm Bay,32907,Shaun Arner,NULL,NULL,508 Burlington Ave NE,NULL,Palm Bay,32907,3217202952,3217202952,shaun.arner@gmail.com,shaun.arner@gmail.com,2440065,1
+312d2814-26-08,1,8/26/2014 23:38,8/26/2014 23:38,Tamara,McClanahan,NULL,PO Box 109,NULL,Marlow,73055,Terry Tate,NULL,NULL,1802 N. 9th Street,NULL,Marlow,73055,5804503137,NULL,tjlmc@yahoo.com,tjlmc@yahoo.com,5439520,1
+237a9d14-27-08,1,8/27/2014 8:45,8/27/2014 8:45,Daniel,Barston,NULL,15 Clark Street,NULL,Auburn,1501,Daniel Barston,NULL,NULL,15 Clark Street,NULL,Auburn,1501,508-792-0074,508-612-2952,dbarston@charter.net,dbarston@charter.net,1204011,1
+03c45b14-27-08,1,8/27/2014 8:52,8/27/2014 8:52,gerald ,gilman,maine lodge #20,141 elm street,NULL,mercer,4957,gerald gilman,maine lodge #20,NULL,141 elm street,NULL,mercer,4957,n/a,207-649-5449,inthewind1550@yahoo.com,inthewind1550@yahoo.com,2586099,1
+b1aa8a14-27-08,1,8/27/2014 9:27,8/27/2014 9:27,Kenneth,Sullivan,NULL,11371 E 63rd Street,NULL,Indianapolis,46236-3926,Kenneth Sullivan,NULL,NULL,11371 E 63rd Street,NULL,Indianapolis,46236-3926,317-716-4696,NULL,kensul@comcast.net,kensul,n1hqh4455k,0
+a7549314-27-08,1,8/27/2014 11:11,8/27/2014 11:11,William,Gurley,NULL,1608 Forest Fern Circle,NULL,Virginia Beach,23454,William Gurley,NULL,NULL,1608 Forest Fern Circle,NULL,Virginia Beach,23454,757-721-7722,NULL,billgurley@cox.net,billgurley@cox.net,8095835,1
+4e2b4114-27-08,1,8/27/2014 21:46,8/27/2014 21:46,francois,LaRue,NULL,1210 Liguori,NULL,Sherbrooke,J1J 4C5,francois LaRue,LFL consulting,NULL,1210 Liguori,NULL,Sherbrooke,J1J 4C5,8195658806,NULL,frankstreet@videotron.ca,frankstreet,miller20,0
+4b708e14-28-08,1,8/28/2014 11:07,8/28/2014 11:07,Alfred,Nickerson,NULL,"2025 North Street, NW",NULL,Granville,43023,Alfred Nickerson,NULL,NULL,"2025 North Street, NW",NULL,Granville,43023,(740) 587-1451,NULL,NickersonCPA@Windstream.net,NickersonCPA,alaska,0
+5c4b3a14-28-08,1,8/28/2014 11:47,8/28/2014 11:47,Fred,Allen,NULL,2726 W. Ferguson,NULL,Mount Pleasant,75455,Fred Allen,NULL,NULL,2726 W. Ferguson,NULL,Mount Pleasant,75455,903-563-6496,NULL,fredallen2726@suddenllink.net,Fred Allen,allen1228,0
+b00ab814-28-08,1,8/28/2014 11:54,8/28/2014 11:54,Patricia,Bradbury,NULL,5874 Lexington Drive,NULL,Pipersville,18947,Patricia Bradbury,NULL,NULL,5874 Lexington Drive,NULL,Pipersville,18947,215-766-2244,NULL,pabradbury@verizon.net,pabradbury@verizon.net,9799237,1
+cd866614-28-08,1,8/28/2014 11:59,8/28/2014 11:59,Patricia,Bradbury,NULL,5874 Lexington Drive,NULL,Pipersville,18947,Patricia Bradbury,NULL,NULL,5874 Lexington Drive,NULL,Pipersville,18947,215-766-2244,NULL,pabradbury@verizon.net,pabradbury,richard,1
+84b22214-28-08,1,8/28/2014 12:23,10/3/2016 10:16,Peter,Stein,NULL,3519 Wallace Dr.,NULL,Grand Island,14072,Peter Stein,NULL,NULL,3519 Wallace Dr.,NULL,Grand Island,14072,716-432-7751,716-432-7751,pcstein@roadrunner.com,Firemanpcs,OLiver1234,0
+c8bfa014-28-08,1,8/28/2014 13:01,8/28/2014 13:01,Leonard,Demoranville,NULL,3456 Lexington Road,NULL,Danville,40422,Leonard Demoranville,NULL,NULL,3456 Lexington Road,NULL,Danville,40422,8592386066,7744542664,leonard.demoranville@centre.edu,leonard.demoranville@centre.edu,7683490,1
+f7a49a14-28-08,1,8/28/2014 13:17,8/28/2014 13:17,Michael,Powers,NULL,851 Hodges street,PO Box 283,Beecher,60401,Michael Powers,NULL,NULL,851 Hodges street,PO Box 283,Beecher,60401,708-946-9057,708-263-7852,mramfab@aol.com,mramfab,keywest2,0
+aa49a514-28-08,1,8/28/2014 15:39,8/28/2014 15:39,Andrew,Martinez,NULL,307 Candlewood Ct.,NULL,Millersville,21108,Andrew Martinez,NULL,NULL,307 Candlewood Ct.,NULL,Millersville,21108,4109874018,2402981943,g.andrew.martinez@gmail.com,g.andrew.martinez@gmail.com,9284092,1
+a3506414-28-08,1,8/28/2014 16:45,8/28/2014 16:51,James,Carter,NULL,2218 Stonehurst Drive,NULL,Louisville,40242,James Carter,NULL,NULL,2218 Stonehurst Drive,NULL,Louisville,40242,5024268536,5027771676,jimcartman@gmail.com,Jimcartman,Jimc041542,0
+26557614-29-08,1,8/29/2014 11:58,8/29/2014 11:58,Vernon ,Butt,Lodge #441 of KS,PO Box 441,NULL,Johnson City,67855-0441,Vernon L. Butt,Lodge #441 of KS,NULL,PO Box 441,NULL,Johnson City,67855-0441,620-353-4022,NULL,lodge441@gmail.com,Johnson Lodge 441,wcuhtd,0
+239af414-29-08,1,8/29/2014 12:18,8/29/2014 12:18,Vernon,Butt,Johnson Lodge 441,PO Box 441,NULL,Johnson City,67855-0441,Vernon Butt,Johnson Lodge 441,NULL,PO Box 441,NULL,Johnson City,67855-0441,620-353-4022,620-353-4022,bubba_n_jody@yahoo.com,johnsonlodge,wcuhtd,0
+ea15d114-29-08,1,8/29/2014 14:52,8/29/2014 14:52,Terrance R.,Landry,NULL,119-1751 Northgate Rd,NULL,Cobble Hill,V0R 1L6,Terrance R. Landry,NULL,NULL,119-1751 Northgate Rd,NULL,Cobble Hill,V0R 1L6,2509298881,2507448794,trlandry@shaw.ca,terrylandry,tr46lc53,0
+6567de14-29-08,1,8/29/2014 21:20,8/29/2014 21:20,Raymond,Glegg,Seneca Lodge #797 F&AM,2427 St. Paul Blvd.,NULL,Rochester,14617,Raymond Glegg,Seneca Lodge #797 F&AM,NULL,2427 St. Paul Blvd.,NULL,Rochester,14617,(585) 750-0865,NULL,secy@seneca797.com,secy@seneca797,seneca797,0
+c321c414-31-08,1,8/31/2014 11:31,8/31/2014 11:32,Jimmy,Dunlap,NULL,330 W. Mountain View Drive,NULL,Sheridan,82801,Jimmy Dunlap,NULL,NULL,330 W. Mountain View Drive,NULL,Sheridan,82801,3076749455,307 752-1483,jimd0202@gmail.com,jimmyjdunlap,sprint4530,0
+1b1a6e14-31-08,1,8/31/2014 15:07,8/31/2014 15:07,Richard,Beecher,NULL,7033 SW 42nd Ave,NULL,Amarillo,7109-5007,Richard Beecher,NULL,NULL,7033 SW 42nd Ave,NULL,Amarillo,7109-5007,806.282.2265,NULL,richardbeecher@suddenlink.net,richardbeecher@suddenlink.net,3111188,1
+2eac3c14-31-08,1,8/31/2014 16:44,8/31/2014 16:44,Shawn,Hojaboom,Shawn,14Gerrish St.,NULL,Franklin,3235,Shawn Hojaboom,Shawn,NULL,14Gerrish St.,NULL,Franklin,3235,603-671-7720,603-502-5835,ssarge29@aol.com,Oldsarge,Brutas1963,0
+2d4b7a14-31-08,1,8/31/2014 20:27,8/31/2014 20:27,Wayne,Frankenstein,Wayne D. Frankenstein,305 Linden Street,NULL,Zelienople,16063-1089,Wayne D. Frankenstein,NULL,NULL,305 Linden Street,NULL,Zelienople,16063-1089,724-504-2297,724-333-5258,waynesoi@outlook.com,wayne64,dewalt641950,0
+f3b28614-01-09,1,9/1/2014 14:15,9/1/2014 14:15,Jerry,Lynch,NULL,1944 Ardella Dr,NULL,Pocatello,83201,Jerry Lynch,NULL,NULL,1944 Ardella Dr,NULL,Pocatello,83201,2082511571,2082511571,woodbee5@cableone.net,woodbee5@cableone.net,4782680,1
+f9b8ae14-01-09,1,9/1/2014 17:27,9/1/2014 17:27,Richard,Eppler,Eppler Associates,400 Cedar Lane,NULL,Cheshire,06410-2222,Richard A. Eppler,NULL,NULL,400 Cedar Lane,NULL,Cheshire,06410-2222,203-271-2211,NULL,DickAndyE@aol.com,RichardEppler,glazes,0
+22e0f814-01-09,1,9/1/2014 20:14,9/1/2014 20:14,Vernon,Butt,Lodge #441,PO Box441,NULL,Johnson City,67855,Vernon Butt,Lodge #441,NULL,PO Box441,NULL,Johnson City,67855,620-353-4022,NULL,lodge441@gmail.com,lodge441@gmail.com,9363459,1
+2b237c14-02-09,1,9/2/2014 0:06,9/2/2014 0:06,Charles,Stewart,Charles B Stewart,5325 South Bearfield Road,NULL,Columbia,65201,Charles Stewart,Charles B Stewart,NULL,5325 South Bearfield Road,NULL,Columbia,65201,573-659-3442,NULL,stewart499@aol.com,stewart499@aol.com,3652230,1
+29bbc014-04-09,1,9/4/2014 0:15,9/4/2014 0:15,DONALD,RUTH,WESTERN BRANCH LODGE #189,4321 KING ST,NULL,PORTSMOUTH,23707-2521,DONALD RUTH,WESTERN BRANCH LODGE #189,NULL,4321 KING ST,NULL,PORTSMOUTH,23707-2521,757-399-5355,NULL,sec.wb189.afam@gmail.com,DWRUTH,DDGM2011,0
+21545014-04-09,1,9/4/2014 0:48,9/4/2014 0:48,vincenzo,macrino,NULL,5432 lake rd,NULL,newfield,8344,vincenzo macrino,NULL,NULL,5432 lake rd,NULL,newfield,8344,6093810481,6093810481,thewidowsson33@comcast.net,thewidowsson33@comcast.net,3488714,1
+c53fb814-04-09,1,9/4/2014 13:03,9/4/2014 13:03,Roger,Sobran,Palestine Lodge 357,500 Temple St.,NULL,Detroit,48201,Roger Sobran,Palestine Lodge 357,NULL,500 Temple St.,NULL,Detroit,48201,248-444-2821,248-444-2821,rsobran@comcast.net,rsobran,palestine357,0
+a06fe614-04-09,1,9/4/2014 21:59,9/4/2014 21:59,Glenn ,Palmertree ,NULL,2065 Attala Rd 3028,NULL,Kosciusko ,39090,Glenn Palmertree ,NULL,NULL,2065 Attala Rd 3028,NULL,Kosciusko ,39090,662-582-0192,NULL,glennpalmertree@bellsouth.net,Treeman,spike123,0
+63958214-05-09,1,9/5/2014 10:27,9/5/2014 10:27,Ronald,Benson Jr,NULL,300 Clubview Drive,NULL,Moultrie,31768,Ronald Benson Jr,NULL,NULL,300 Clubview Drive,NULL,Moultrie,31768,229-526-0163,229-526-0163,bensoson@msn.com,bensoson@msn.com,5872871,1
+eb945d14-05-09,1,9/5/2014 12:59,9/5/2014 12:59,Leonard ,Hephner,Leonard J Hephner,850 Holman Street,NULL,Leesburg,35983,Leonard Hephner,Leonard J Hephner,NULL,850 Holman Street,NULL,Leesburg,35983,256-526-6485,NULL,lhephner@ohiomasons.org,lhephner@ohiomasons.org,5589815,1
+0a4db814-05-09,1,9/5/2014 13:19,9/5/2014 13:19,Eric,Muehlenbein,NULL,5639 Patrick St SW,NULL,Canton,44706,Eric Muehlenbein,NULL,NULL,5639 Patrick St SW,NULL,Canton,44706,330-478-5856,330-704-6480,emuehlenbein@sssnet.com,emuehlenbein@sssnet.com,1124812,1
+6b664e14-05-09,1,9/5/2014 16:48,9/5/2014 16:48,Tom,Bruce,NULL,1704 Gloucester Way,NULL,Tucker,30084,Tom Bruce,NULL,NULL,4426 Hugh Howell Road,Suite B-118,Tucker,30084,770-908-2700,NULL,tdb@iname.com,tdb@iname.com,5106997,1
+44e26514-05-09,1,9/5/2014 18:16,9/5/2014 18:16,Stephen,Tharaldsen,NULL,PO Box 75,NULL,Gouverneur,13642,Stephen Tharaldsen,NULL,NULL,PO Box 75,NULL,Gouverneur,13642,315-287-4603,315-408-8874,a17viking@gmail.com,a17viking@gmail.com,2156625,1
+4644ed14-06-09,1,9/6/2014 13:13,9/6/2014 13:13,DAVID,BOLIN,NULL,4709 Mullen Road,NULL,Shawnee,66216-1160,DAVID BOLIN,NULL,NULL,4709 Mullen Road,NULL,Shawnee,66216-1160,9132999838,9135260580,dbolin4@kc.rr.com,OldEagleEars,mos98C20,0
+76c0e214-06-09,1,9/6/2014 13:23,9/6/2014 13:23,Wayne,Walter,NULL,3689 N Delwood Dr,NULL,Port Clinton,43452,Wayne Walter,NULL,NULL,3689 N Delwood Dr,NULL,Port Clinton,43452,419-797-0186,419-960-9401,waynewalter3689@gmail.com,waynewalter3689@gmail.com,1986777,1
+ecae7d14-06-09,1,9/6/2014 14:25,9/6/2014 14:25,Pavel,Vershchetin,NULL,195 Wahoo Way,NULL,Charlottesville,22903,Pavel Vershchetin,NULL,NULL,195 Wahoo Way,NULL,Charlottesville,22903,4344665681,4344665681,paul.ver@hotmail.com,paul.ver@hotmail.com,6947396,1
+69ad1d14-06-09,1,9/6/2014 15:52,9/6/2014 15:52,Charlie ,Krefting,NULL,530 Winncastle Street,NULL,Simi Valley,93065,Charlie Krefting,NULL,NULL,530 Winncastle Street,NULL,Simi Valley,93065,8055786520,NULL,cc2horse@aol.com,charliek,peteyboy,0
+daf0ef14-08-09,1,9/8/2014 13:22,9/8/2014 13:22,Harry,Hartley,Harry Hartley,120 Industrial,NULL,La Marque,77568,Texas City Lodge #1118,NULL,NULL,P.O. Box 2504,NULL,Texas City,77590-2504,4097717606,NULL,harrhartley@yahoo.com,harrhartley@yahoo.com,4712695,1
+703dd414-08-09,1,9/8/2014 14:33,9/8/2014 14:33,Darren,Cooksey,NULL,4351 Aarons Place,NULL,West Bend,53090,Darren Cooksey,NULL,NULL,4351 Aarons Place,NULL,West Bend,53090,262-388-1356,262-388-1356,d.cooksey@charter.net,dcooksey,v345f4f4,0
+d183d714-08-09,1,9/8/2014 15:20,9/8/2014 15:20,Alfred,Nickerson,NULL,"2025 North Street, NW",NULL,Granville,43023,Alfred Nickerson,NULL,NULL,"2025 North Street, NW",NULL,Granville,43023,740-587-1451,NULL,NickersonCPA@Windstream.net,NickersonCPA@Windstream.net,2193954,1
+715a5b14-08-09,1,9/8/2014 21:31,9/8/2014 21:31,Bill,Young,NULL,2552 N 1900 East Rd,NULL,Blue Mound,62513,Bill Young,NULL,NULL,2552 N 1900 East Rd,NULL,Blue Mound,62513,none,2179725173,youngb1954@gmail.com,youngb1954@gmail.com,2786342,1
+9bae0b14-08-09,1,9/8/2014 21:31,9/8/2014 21:31,Bill,Young,NULL,2552 N 1900 East Rd,NULL,Blue Mound,62513,Bill Young,NULL,NULL,2552 N 1900 East Rd,NULL,Blue Mound,62513,none,2179725173,youngb1954@gmail.com,youngb1954@gmail.com,9270360,1
+a1b5f814-09-09,1,9/9/2014 21:05,4/14/2016 14:43,John,Perry,John Perry,5201 Fawnwood Lane,NULL,Louisville,40291-1114,John Perry,Allstate,NULL,9931 Corporate Campus Dr Ste 2000,NULL,Louisville,40223-4034,5022392109,5028028425,john.perry@twc.com,johnrperry,chen0weth,0
+fb427314-10-09,1,9/10/2014 2:41,9/10/2014 2:41,Mark C.,Harris,NULL,1147E 1900N Rd,NULL,Taylorville,62568,Mark C. Harris,NULL,NULL,1147E 1900N Rd,NULL,Taylorville,62568,217-820-1347,NULL,mark.harris@llcc.edu,mcharris,motmot13,0
+418c2714-10-09,1,9/10/2014 10:26,9/10/2014 10:26,Stephen,Colton,Stephen,Colton,2152 Hoch Dr.,Cuyahoga Falls,44221-4402,Stephen Colton,Stephen,NULL,Colton,2152 Hoch Dr.,Cuyahoga Falls,44221-4402,330-929-5227,330-962-1082,scolton1@neo.rr.com,scolton1@neo.rr.com,1593036,1
+1dac6914-10-09,1,9/10/2014 11:24,9/10/2014 11:24,Larry,Kent,NULL,529 Sevilla pl,NULL,The villages,32159,Larry Kent,NULL,NULL,529 Sevilla pl,NULL,The villages,32159,3527503385,3098245573,Lpkent1@aol.com,Lpkent1,harley07,0
+677a1814-10-09,1,9/10/2014 12:57,9/10/2014 12:57,Robert W,Niebaum,Lakewood Masonic Temple,15300 Detroit Ave,NULL,Lakewood,44107-3888,Robert W Niebaum,Lakewood Masonic Temple,NULL,15300 Detroit Ave,NULL,Lakewood,44107-3888,216-521-1242,216-316-4066,presidentlmtc@lakewoodmasonicfoundation.org,lkwdmastemp,andrews1912,0
+8c508514-10-09,1,9/10/2014 13:31,9/10/2014 13:31,Robert,Crase,NULL,11909 Liming-Van Thompson Rd.,NULL,Hamersville,45130,Robert Crase,NULL,NULL,11909 Liming-Van Thompson Rd.,NULL,Hamersville,45130,9373791073,NULL,crase2718@gmail.com,crase2718,pa442436,0
+55363714-10-09,1,9/10/2014 14:07,9/10/2014 14:07,Dale,Smith,Unity Lodge #273,P.O. Box 304,NULL,Clearwater,67026-0304,Dale Smith,Unity Lodge #273,NULL,9125 E 87th St. S.,NULL,Derby,67037-9639,316-788-4196,316-200-5290,tewdogs@sutv.com,tewdogs,dog1cat2,0
+25046c14-10-09,1,9/10/2014 21:28,9/10/2014 21:28,christa,hayes,NULL,12805 GRANITE AVE NE,NULL,ALBUQUERQUE,87112,JIMMY REED WALENCIAK,NULL,NULL,1401 E YUKON,NULL,ODESSA,79762,4325308510,4325308510,B.C.HAYES2014@GMAIL.COM,B.C.HAYES2014@GMAIL.COM,6543750,1
+3235a014-10-09,1,9/10/2014 23:08,9/10/2014 23:08,Rod,Galloway,NULL,195 Boice St S,NULL,Salem,97302,Rod Galloway,NULL,NULL,195 Boice St S,NULL,Salem,97302,503-428-0280,503-428-0280,rodgalloway@live.com,gallowayrb,nana1982,0
+2ddc2f14-11-09,1,9/11/2014 12:24,9/11/2014 12:24,Raymond,Babinsky,NULL,6908 Sunset Avenue,NULL,Countryside,60525-4822,Raymond Babinsky,NULL,NULL,6908 Sunset Avenue,NULL,Countryside,60525-4822,708-482-3580,NULL,rjbabin@comcast.net,rjbabin@comcast.net,5646574,1
+acb23714-11-09,1,9/11/2014 15:06,3/25/2015 14:49,Dale,Lynch,NULL,1509 Pine Avenue,NULL,Voorhees,8043,Dale Lynch,NULL,NULL,1509 Pine Avenue,NULL,Voorhees,8043,8567841316,6099237761,gmar2010@msn.com,daleajr,357&mason,0
+a4938e14-12-09,1,9/12/2014 11:06,9/12/2014 11:06,Eric,Grebe,NULL,8647 N Servite Dr,NULL,Milwaukee,53223,Eric Grebe,NULL,NULL,8647 N Servite Dr,NULL,Milwaukee,53223,414-371-1062,NULL,dryuck17@outlook.com,dryuck17@outlook.com,8146416,1
+68cfa214-12-09,1,9/12/2014 12:16,9/12/2014 12:16,David,Burkus,NULL,74 Wellington Drive,NULL,Hampton,23666-2855,David Burkus,NULL,NULL,74 Wellington Drive,NULL,Hampton,23666-2855,747.469.6727,NULL,burkusd@gmail.com,burkusd@gmail.com,5041301,1
+a4a56f14-13-09,1,9/13/2014 9:44,9/13/2014 9:45,Jim,Seeger,NULL,2409 Vance Drive,NULL,Edmond,73013,Jim Seeger,NULL,NULL,2409 Vance Drive,NULL,Edmond,73013,4058261647,4058261647,bmwr1200gs@sbcglobal.net,jimseeger,Billydale2,0
+e29bc514-14-09,1,9/14/2014 0:55,9/14/2014 0:55,John,Neiswanger,Industrial Electronics,9 Hollis Lane,NULL,Gridley,95948,John Neiswanger,Industrial Electronics,NULL,9 Hollis Lane,NULL,Gridley,95948,5306741940,NULL,jneiswanger@sbcglobal.net,jneiswanger@sbcglobal.net,2516782,1
+a6241514-14-09,1,9/14/2014 17:18,9/14/2014 17:18,Brian,Rodriguez,NULL,29 Grafton St,NULL,Greenlawn,11740,Brian Rodriguez,NULL,NULL,29 Grafton St,NULL,Greenlawn,11740,6312611155,6312611155,brodrig@optonline.net,brodrig@optonline.net,3143280,1
+77f44614-14-09,1,9/14/2014 20:57,9/14/2014 20:57,David,Childress,NULL,129 Railroad Avenue,NULL,Central Square,13036,David Childress,NULL,NULL,129 Railroad Avenue,NULL,Central Square,13036,3154302722,3154302722,big08fish@aol.com,Fort Brewerton,Day#256Day,0
+3850a214-15-09,1,9/15/2014 8:39,9/15/2014 8:39,brian,crislip,NULL,239 hagley drive,NULL,pawleys island,29585,brian crislip,NULL,NULL,239 hagley drive,NULL,pawleys island,29585,843-446-3403,843-446-3403,bctruebluenursery@yahoo.com,bctruebluenursery@yahoo.com,3445003,1
+b0fd1d14-15-09,1,9/15/2014 10:38,9/15/2014 10:38,Jose,LeBron,NULL,56-24 Marathon pkwy,Apt 2F,Douglaston,11362,Jose LeBron,NULL,NULL,56-24 Marathon pkwy,Apt 2F,Douglaston,11362,9178438937,NULL,bluedoc13@gmail.com,jlebron,mason13,0
+07ca9e14-15-09,1,9/15/2014 18:49,10/27/2015 8:19,John,Pearson,NULL,7400 Whernside Street,NULL,Lorton,22079,John Pearson,NULL,NULL,7400 Whernside Street,NULL,Lorton,22079,7033396591,7035057140,jwpears@hotmail.com,jwpears@hotmail.com,1n4mafia,0
+32554514-15-09,1,9/15/2014 21:59,9/15/2014 21:59,Dale,Bruck,NULL,1244 Lancashire DR,NULL,Indian Land,29707,Dale Bruck,NULL,NULL,1244 Lancashire DR,NULL,Indian Land,29707,803-487-1387,803-487-1387,dale.bruck@yahoo.com,dale.bruck@yahoo.com,7361738,1
+2d845c14-16-09,1,9/16/2014 0:32,9/16/2014 0:32,Chance,Robinson,NULL,PO BOX 1088,NULL,MARFA,79843,Chance Robinson,NULL,NULL,PO BOX 1088,NULL,MARFA,79843,4327291845,9796762487,crobinson@aggienetwork.com,crobinson@aggienetwork.com,8012910,1
+1cdc0214-16-09,1,9/16/2014 12:21,9/16/2014 12:21,Gary ,Stang,NULL,3206 Eisenhower St,NULL,Eau Claire ,54701,Gary Stang,NULL,NULL,3206 Eisenhower St,NULL,Eau Claire ,54701,715-864-6813,715-864-6813,garystang@gmail.com,Gary Stang,sclown73,0
+d420ae14-16-09,1,9/16/2014 19:02,3/13/2016 17:05,James,Kendall,James Kendall,4178 SW Stanwick Way,NULL,Port Orchard,98367,Jim Kendall,Telebyte NW,NULL,900 Sheridan Road,Ste 108,Bremerton,98310,360-613-5220,360-731-4235,jim@telebyte.com,VWBJimK,PDDGMinD12FAMWA,0
+ae525e14-17-09,1,9/17/2014 12:04,10/25/2014 16:11,Ezra,Hodgson,NULL,504 CR 455,NULL,Berryville,72616,Ezra Hodgson,NULL,NULL,504 CR 455,NULL,Berryville,72616,8704232642,8704231916,ehodgson1@hotmail.com,Ezra_H,1Kings7,0
+1afd8a14-18-09,1,9/18/2014 10:45,9/18/2014 10:45,DC,Heilman,NULL,8911 Walden Ridge Drive,NULL,Charlotte,28216,DC Heilman,NULL,NULL,8911 Walden Ridge Drive,NULL,Charlotte,28216,704-918-3797,704-918-3797,dheilman3@gmail.com,dheilman3,msaotdr1954,0
+1b538b14-18-09,1,9/18/2014 13:14,9/18/2014 13:14,Jim,Davis,Riverton Lodge #26,1001 Hillside Ave,Attn. Jim Davis,Riverton,82501,Jim Davis,Riverton Lodge #26,NULL,1001 Hillside Ave,Attn. Jim Davis,Riverton,82501,307 856 1123,307 851 9826,jimedavis@outlook.com,jimedavis@outlook.com,5681747,1
+92f37f14-18-09,1,9/18/2014 13:22,9/18/2014 13:22,Jim,Davis,Riverton Lodge # 26,1001 Hillside Ave,Attn. Jim Davis,Riverton,82501,Jim Davis,Riverton Lodge # 26,NULL,1001 Hillside Ave,Attn. Jim Davis,Riverton,82501,307 856 1123,307 851 9826,jimedavis@outlook.com,jimedavis@outlook.com,9759171,1
+643d5414-19-09,1,9/19/2014 8:38,9/19/2014 8:38,Bert,Horne,NULL,13705 Courtland Ave,NULL,Cleveland,44111,Bert Horne,NULL,NULL,13705 Courtland Ave,NULL,Cleveland,44111,216-551-7700,NULL,berthorne@yahoo.com,berthorne,Masons9225,0
+cddece14-19-09,1,9/19/2014 8:50,9/19/2014 8:50,Victor,Smith,NULL,1611 Bradley Rd.,NULL,Westville,32464,Victor Smith,NULL,NULL,1611 Bradley Rd.,NULL,Westville,32464,850-956-2523,850-428-1956,victor.smith@perdue.com,victor.smith@perdue.com,7851998,1
+6ab39f14-19-09,1,9/19/2014 16:41,9/19/2014 16:41,Shem,Peachey,Sacramento Lodge No. 24,1100 Vermont Ave,NULL,Alamogordo,88310,Shem Peachey,Sacramento Lodge No. 24,NULL,3110 Abbott Ave,NULL,Alamogordo,88310,575-491-2023,575-491-2023,stpeachey@gmail.com,stpeachey@gmail.com,3444235,1
+0468a014-20-09,1,9/20/2014 13:57,9/20/2014 13:57,Brad,Smith,NULL,420 Highland Dr,NULL,Bossier City,71111,Brad Smith,NULL,NULL,420 Highland Dr,NULL,Bossier City,71111,318-422-2178,NULL,thebrad67@yahoo.com,thebrad67@yahoo.com,4883612,1
+683fa614-20-09,1,9/20/2014 14:47,9/20/2014 14:47,Clinton ,Langford,NULL,142 deer run,NULL,Hawley,18428,Clinton Langford,NULL,NULL,142 deer run,NULL,Hawley,18428,5702690870,5702690870,eastw00d@ptd.net,eastw00d@ptd.net,5607289,1
+7a991314-20-09,1,9/20/2014 17:52,9/20/2014 17:52,Ronald,Block,NULL,1523 Enyart Way #102,NULL,Annapolis,21409-5961,Ronald Block,NULL,NULL,1523 Enyart Way #102,NULL,Annapolis,21409-5961,4106261624,4102790849,blockntackle@comcast.net,ronblock,2b1ask1,0
+65d27114-22-09,1,9/22/2014 9:32,9/22/2014 9:32,Thomas,Nielsen,NULL,309 Union St.,NULL,Carlstadt,7072,Thomas Nielsen,NULL,NULL,500 Madison St.,NULL,Carlstadt,7072,201-638-2120,NULL,tn414@verizon.net,tn414@verizon.net,9437913,1
+a171b614-22-09,1,9/22/2014 11:52,9/22/2014 11:52,Jim,Sapp,Hapeville Masonic Lodge 590,613 N. Central Ave.,NULL,Hapeville,30354,Jim Sapp P.M.,Hapeville Masonic Lodge 590,NULL,132 Brogdon Rd.,NULL,Fayetteville,30214,404-484-7582,404-484-7582,jim_sapp2002@yahoo.com,YellowJacket,gtman48,0
+83cfb314-23-09,1,9/23/2014 5:06,9/23/2014 5:06,Samuel,Brandes,NULL,18901 J and J Lane,NULL,Yorba Linda,92886,Samuel Brandes,NULL,NULL,18901 J and J Lane,NULL,Yorba Linda,92886,7146835117,7146835117,sbrandes@ylmasons.com,sebrandes,samb25,0
+00c34314-24-09,1,9/24/2014 11:55,9/24/2014 11:55,Steve ,Travis,High Springs lodge 137,po box 240,NULL,High Springs,32655,Steve Travis,NULL,NULL,15337 NW 214 terrace,NULL,High Springs Fla. ,32643,386-454-9716,352 562-4107,walkingtpop@msn.com,High Springs Lodge 137,highlodge137,0
+a51c5514-24-09,1,9/24/2014 13:19,9/24/2014 13:19,Bill,Harrison,NULL,1922 Redmon Rd.,NULL,Longview,75602,Bill Harrison,NULL,NULL,1922 Redmon Rd.,NULL,Longview,75602,903.553.1330,NULL,bharrison65@hotmail.com,bharrison65@hotmail.com,2275881,1
+7657ef14-25-09,1,9/25/2014 7:35,9/25/2014 7:35,sebastien,BAUD,Sebastien BAUD,618 wadleigh ave,NULL,west hempstead,11552,Sebastien BAUD,NULL,NULL,618 wadleigh ave,NULL,west hempstead,11552,9179163513,9179163513,sebastienbaud@hotmail.com,bastien73,tibaud73,0
+045ab014-25-09,1,9/25/2014 15:47,9/25/2014 15:47,tom,musso,Acacia Lodge #579,2 Highland dr,NULL,Pittston,18640,tom musso,Acacia Lodge #579,NULL,2 Highland dr,NULL,Pittston,18640,570-655-4890,NULL,tmusso48@verizon.net,tmusso48@verizon.net,4163686,1
+864ca014-26-09,1,9/26/2014 7:22,9/26/2014 7:22,Larry,Wilson,Desktop Systems Consulting,P.O. Box 4881,NULL,West Richland,99353,Larry Wilson,Desktop Systems Consulting,NULL,P.O. Box 4881,NULL,West Richland,99353,509-942-8863,509-942-8863,wilson.larryg@gmail.com,lgwilson,Builder1091384,0
+767c9f14-26-09,1,9/26/2014 15:43,9/26/2014 15:43,David,Rice,MRD Best LLC,4808 NE 126th Ave,NULL,Vancouver,98682,David Rice,MRD Best LLC,NULL,4808 NE 126th Ave,NULL,Vancouver,98682,513.607.4586,NULL,mrd4808@gmail.com,mrd4808@gmail.com,9632811,1
+2e25fb14-27-09,1,9/27/2014 19:07,12/3/2014 13:50,Kevin,Edge,NULL,619 E. Norris Point Road,NULL,LaFollette,37766,Henry Hamblin Jr.,NULL,NULL,428 Oak Run Lane,NULL,LaFollette,37766,423-912-2400,NULL,vaedge@aol.com,kevinedge,brandi5808,0
+bbfdbc14-29-09,1,9/29/2014 10:48,9/29/2014 10:48,James,Price,Larry Price,425 DeChene Drive,NULL,Thomasville,31757,James Price,Larry Price,NULL,425 DeChene Drive,NULL,Thomasville,31757,229-221-1356,NULL,printer@rose.net,lprice,BR549^jr,0
+71ba1714-29-09,1,9/29/2014 11:25,10/15/2014 2:04,garie,obrien,NULL,1308 idaho ave.,NULL,ames,50014,garie obrien,NULL,NULL,1308 idaho ave.,NULL,ames,50014,515-953-8863,515-953-8863,garieo2001@yahoo.com,garieo,gtml2144,0
+184f5b14-29-09,1,9/29/2014 11:45,9/29/2014 11:45,Bruce,Fykes,NULL,155 South Gate Dr.,NULL,Thomasville,31757,Bruce Fykes,NULL,NULL,155 South Gate Dr.,NULL,Thomasville,31757,229-227-1425,NULL,btfykes@yahoo.com,btfykes53,Posie1883,0
+ea3a7614-29-09,1,9/29/2014 17:20,9/29/2014 17:20,William,LeVeque,Grand Lodge of Michigan,1204 Wright Ave,NULL,Alma,48801,William LeVeque,Grand Lodge of Michigan,NULL,E9586 Cedar Street,NULL,Wetmore,49895,906-387-3068,905-250-1961,bleveque@up.net,bleveque@up.net,1335889,1
+7705db14-29-09,1,9/29/2014 21:54,9/29/2014 21:54,Carl ,Kirtley,NULL,9807 Loquat Dr,NULL,Pensacola ,32506,Carl Kirtley,NULL,NULL,9807 Loquat Dr,NULL,Pensacola ,32506,8507488254,8507488254,Carl.kirtley@att.net,Ckirtley,seniore8,0
+56811c14-30-09,1,9/30/2014 0:37,4/9/2016 14:41,Casey,Latham,NULL,1925 W. College Ave. Apt. 234,NULL,San Bernardino,92407,Casey Latham,NULL,NULL,1925 W. College Ave. Apt. 234,NULL,San Bernardino,92407,760-694-7369,760-694-7369,cmlatham@outlook.com,clatham,Scottish357Rite,0
+f67dc914-30-09,1,9/30/2014 22:42,9/30/2014 22:42,Thomas R.,Galbraith,NULL,913 Lotus Ave.,NULL,Midwest City,73130,Thomas R. Galbraith,NULL,NULL,913 Lotus Ave.,NULL,Midwest City,73130,405-732-4950,405-620-1145,gbartraders@sbcglobal.net,gbartraders@sbcglobal.net,2656279,1
+cdd30514-01-10,1,10/1/2014 19:44,10/1/2014 19:44,Peter,Patterson,NULL,895 Hazel,NULL,Livermore,94550,Peter Patterson,NULL,NULL,895 Hazel,NULL,Livermore,94550,9254497092,9257840063,peter-patterson@sbcglobal.net,peter-patterson@sbcglobal.net,4393268,1
+4591ca14-02-10,1,10/2/2014 0:27,10/2/2014 0:27,Craig,Thighe,NULL,6439 S Potomac Ct,NULL,Centennial,80111,Craig Thighe,NULL,NULL,6439 S Potomac Ct,NULL,Centennial,80111,303-841-8916,720-238-7950,cthighe@gmail.com,cthighe,yellow77,0
+4cc1d914-02-10,1,10/2/2014 13:18,10/2/2014 13:18,scott,waracka,Koolau Lodge,PO Box 764,NULL,kailua,96734,scott waracka,kailua electric,NULL,47-102B Wailehua Rd,NULL,kaneohe,96744,8082625687,NULL,scott@kailua-electric.com,scott@kailua-electric.com,3090648,1
+fe904e14-02-10,1,10/2/2014 15:10,10/2/2014 15:10,Walter,Sawicki II,Olive Branch Lodge # 576,4562 Newport Ave.,NULL,St. Louis,63116-2410,Walter Sawicki II,Olive Branch Lodge # 576,NULL,4562 Newport Ave.,NULL,St. Louis,63116-2410,3147524133,3145603717,olivebranch-576@sbcglobal.net,Olive Branch,obl576ws,0
+c4335314-03-10,1,10/3/2014 9:35,10/3/2014 9:35,Rajesh,Aialavajjala,NULL,129B Vosburgh Rd,NULL,Mechanicville,12118-3620,Rajesh Aialavajjala,NULL,NULL,129B Vosburgh Rd,NULL,Mechanicville,12118-3620,5184697365,5184697365,r.aialavajjala@gmail.com,r.aialavajjala@gmail.com,4380535,1
+4d28c614-03-10,1,10/3/2014 9:41,11/5/2015 17:50,Edward ,Kell,Naval Lodge No. 4,330 Pennsylvania Ave,NULL,Washington,20003,Secretary,Naval Lodge No. 4,NULL,330 Pennsylvania Ave,NULL,Washington,20003,2025067850,NULL,naval4secretary@gmail.com,ekell181,Philmont181,0
+fa7eb414-03-10,1,10/3/2014 14:47,10/3/2014 14:47,Louis,Babbit,Harmonia Lodge No. 138 F & A M,2135 STONINGTON TER,NULL,WEST PALM BEACH,334115167,Louis Babbit,Harmonia Lodge No. 138 F & A M,NULL,2135 STONINGTON TER,NULL,WEST PALM BEACH,334115167,5612828475,5612828475,lmbabbit@aol.com,lmbabbit@aol.com,4447499,1
+f8cd0114-03-10,1,10/3/2014 16:56,10/10/2016 14:23,Keith,Wohlfert,NULL,N2594 County Road A,NULL,Oxford,53952,Keith Wohlfert,NULL,NULL,N2594 County Road A,NULL,Oxford,53952,608 586 5534,NULL,keithwohlfert@yahoo.com,keith wohlfett,amanda02,0
+0bdf9514-05-10,1,10/5/2014 10:14,10/5/2014 10:14,Eric,Cable,NULL,2736 Lawton Bluff Rd,NULL,Charlotte,28226,Eric Cable,NULL,NULL,2736 Lawton Bluff Rd,NULL,Charlotte,28226,7044975053,7044975053,eric@ericcable.net,EricCable,2bon2btit?,0
+4b6f2714-05-10,1,10/5/2014 19:50,10/5/2014 19:50,richard,bennett,NULL,1880 hwy 2,NULL,two harbors,55616,richard bennett,NULL,NULL,1880 hwy 2,NULL,two harbors,55616,218 834 2306,NULL,bettynrick@frontiernet.net,bettynrick@frontiernet.net,6803303,1
+addd2314-05-10,1,10/5/2014 19:50,10/5/2014 19:50,richard,bennett,NULL,1880 hwy 2,NULL,two harbors,55616,richard bennett,NULL,NULL,1880 hwy 2,NULL,two harbors,55616,218 834 2306,NULL,bettynrick@frontiernet.net,bettynrick@frontiernet.net,7975673,1
+81784414-05-10,1,10/5/2014 19:54,10/5/2014 19:54,richard,bennett,NULL,1880 hwy 2,NULL,two harbors,55616,richard bennett,NULL,NULL,1880 hwy 2,NULL,two harbors,55616,218 834 2306,NULL,bettynrick@frontiernet.net,bettynrick@frontiernet.net,7143198,1
+b58d4314-05-10,1,10/5/2014 21:16,10/5/2014 21:16,Scott,Barlett,DGL Scot,55 blackstrap path ,NULL,Conception Bay South,A1W 4B6,Scott Barlett,DGL Scot,NULL,55 blackstrap path ,NULL,Conception Bay South,A1W 4B6,709 8344609,709 6820125,Sbartlett@nf.aibn.com,Sbartlett@nf.aibn.com,3860748,1
+ff17bf14-05-10,1,10/5/2014 21:29,10/5/2014 21:29,Scott,Barlett,DGL Scot,PO box 396,NULL,Mr Pearl,A1N 2C4,Scott Barlett,DGL Scot,NULL,PO box 396,NULL,Mr Pearl,A1N 2C4,709 8344609,709 6820125,Sbartlett@nf.aibn.com,Sbartlett@nf.aibn.com,6971775,1
+06256814-05-10,1,10/5/2014 21:39,10/5/2014 21:39,Rafael,Campo,NULL,103 Webster Ave,NULL,Wyncote,19095,Rafael Campo,Medidata Solutions,NULL,"20 Ash St., Suite 330",NULL,Conshohocken,19428,2154819461,NULL,rafaelcampo@hotmail.com,rafaelcampo@hotmail.com,9672744,1
+dc825914-06-10,1,10/6/2014 11:01,10/6/2014 11:01,William,Turner,NULL,5264 S Lisbon Way,NULL,Centennial,80015,William Turner,NULL,NULL,5264 S Lisbon Way,NULL,Centennial,80015,7208707030,7202815997,execextremellc@msn.com,execextremellc@msn.com,1016271,1
+b8c12614-06-10,1,10/6/2014 16:27,10/6/2014 16:27,brooks,collins,NULL,201 north cole lane,NULL,elizabethtown,42701,brooks collins,NULL,NULL,201 north cole lane,NULL,elizabethtown,42701,2703609728,2703600113,brooks@miluniform.com,brooks@miluniform.com,brooks1,0
+8e963814-06-10,1,10/6/2014 17:08,6/22/2016 16:21,Jeffrey,Chan,NULL,220 Oak Ave,NULL,River Edge,7661,Jeffrey Chan,UPS Store,NULL,297 Kinderkamack Road,Suite #101 Box 232,Oradell,7649,2014877524,2017237422,jchan11918@msn.com,NJPM1996,JRC672WLD=,0
+bebab714-06-10,1,10/6/2014 22:06,10/6/2014 22:06,albert,martin,Burns Lodge #41 AF&AM,Box 69,NULL,Burns,82053,Burns Lodge #41 AF&AM,NULL,NULL,Box 69,NULL,Burns,82053,3076308084,3076308084,slmartin@rtconnect.net,slmartin@rtconnect.net,4425230,1
+fdc8a414-06-10,1,10/6/2014 22:16,10/6/2014 22:16,albert,Martin,Burns Lodge #41AF&AM,box 69,NULL,Burns,82052,Burns Lodge #41 AF&AM,NULL,NULL,Box 69,NULL,Burns,82053,3076308084,3076308084,slmartin@rtconnect.net,slmartin@rtconnect.net,9813394,1
+b4496014-07-10,1,10/7/2014 2:02,10/7/2014 2:02,William,Biggs,NULL,2705 E. 5th,NULL,Casper,82609-2547,William Biggs,Casper Lodge No. 15,NULL,2705 E. 5th,NULL,Casper,82609,307-237-2178,307-797-1671,bbiggs53@wyoming.com,bbiggs53@wyoming.com,5002512,1
+24ff0b14-07-10,1,10/7/2014 2:02,10/7/2014 2:02,William,Biggs,NULL,2705 E. 5th,NULL,Casper,82609-2547,William Biggs,Casper Lodge No. 15,NULL,2705 E. 5th,NULL,Casper,82609-2547,307-237-2178,307-797-1671,bbiggs53@wyoming.com,bbiggs53@wyoming.com,1272107,1
+9cea6714-07-10,1,10/7/2014 2:12,10/7/2014 2:12,William,Biggs,NULL,2705 E. 5th,NULL,Casper,82609-2547,William Biggs,Casper Lodge No. 15,NULL,2705 E. 5th,NULL,Casper,82609-2547,307-237-2178,307-797-1671,bbiggs53@wyoming.com,bbiggs53@wyoming.com,7565696,1
+409a2914-07-10,1,10/7/2014 17:57,10/7/2014 17:57,Cary,Lewis,Cary Lewis,9 Upper Gulf Road,NULL,Middletown Springs,5757,Cary Lewis,Cary Lewis,NULL,9 Upper Gulf Road,NULL,Middletown Springs,5757,802-235-1060,802-375-3364,caretaker04@msn.com,caretaker04@msn.com,7484089,1
+1bd0d714-08-10,1,10/8/2014 10:22,10/8/2014 10:22,Norman,Kolstad,Corner Stone Lodge #99,P.O. Box 267,NULL,Fergus Falls,56538,Norman Kolstad,Corner Stone Lodge #99,NULL,P.O. Box 267,NULL,Fergus Falls,56538,2188266216,2187316790,kolstadn@yahoo.com,kolstadn@yahoo.com,8851957,1
+c5fa5114-08-10,1,10/8/2014 11:54,10/8/2014 11:54,Marshall,Clowers,NULL,200 Circle Drive NE,NULL,Cleveland,37312,Marshall Clowers,NULL,NULL,200 Circle Drive NE,NULL,Cleveland,37312,4234768104,4234768104,marshall_clowers@bellsouth.net,marshall_clowers@bellsouth.net,4463384,1
+310c5414-08-10,1,10/8/2014 12:53,2/15/2016 20:27,Richard,Frazier,NULL,15 Schenck Avenue,NULL,Matawan,7747,Richard Frazier,NULL,NULL,15 Schenck Avenue,NULL,Matawan,7747,732-566-8194,732-832-5336,frazier26@verizon.net,refrazier,maps6277,1
+002f1814-09-10,1,10/9/2014 22:12,10/9/2014 22:12,Charles,Bradley,NULL,3191 Pawtucket Ave,NULL,Riverside,2915,Charles Bradley,NULL,NULL,3191 Pawtucket Ave,NULL,Riverside,2915,4014310244,4014746231,bradley3191@verizon.net,bradley3191@verizon.net,2630021,1
+59271714-10-10,1,10/10/2014 10:56,10/10/2014 10:56,Steve,Jablonski,NULL,7 Fieldston Place,NULL,Flemington,8822,Steve Jablonski,NULL,NULL,7 Fieldston Place,NULL,Flemington,8822,9088064818,NULL,stevejablonski@comcast.net,steve5344,s0484908,0
+375bf214-10-10,1,10/10/2014 11:37,10/10/2014 11:38,Larry,Berry,NULL,71 Kentucky Hollow Rd.,NULL,Bedford,47421,Larry Berry,NULL,NULL,71 Kentucky Hollow Rd.,NULL,Bedford,47421,(812)279-8409,NULL,larry.berry002@comcast.net,berryl12,Chihosong1*,0
+3f2c0014-10-10,1,10/10/2014 21:30,10/10/2014 21:30,Michael,Seeley,NULL,14-31 155th Street,NULL,Whitestone,11357,Michael Seeley,NULL,NULL,14-31 155th Street,NULL,Whitestone,11357,9176136439,NULL,mseeley152@aol.com,seelem28,nyse28ms,0
+95057f14-11-10,1,10/11/2014 11:08,10/11/2014 11:08,Thomas ,Pinney,Thomas Pinney,1814 Utah St.,NULL,Sturgeon Bay,54235,Thomas Pinney,Thomas Pinney,NULL,1814 Utah St.,NULL,Sturgeon Bay,54235,920.743.2759,920.493.3727,tompinney@charter.net,tompinney@charter.net,3833497,1
+85d62f14-11-10,1,10/11/2014 11:50,10/11/2014 11:50,Daniel,Terhune,NULL,PO Box 681,NULL,Frewsburg,14738,Daniel Terhune,NULL,NULL,PO Box 681,NULL,Frewsburg,14738,7165692634,7169691702,danterhune77@gmail.com,danterhune77@gmail.com,2697465,1
+5a933b14-11-10,1,10/11/2014 21:55,10/11/2014 21:55,Corey,VanMeter,NULL,2951 Rutherford Rd,NULL,Loogootee,47553,Corey VanMeter,NULL,NULL,2951 Rutherford Rd,NULL,Loogootee,47553,812-444-9298,NULL,coreyv317@hotmail.com,coreyv317@hotmail.com,7766252,1
+b1638814-12-10,1,10/12/2014 22:28,10/12/2014 22:28,Richard,Bradbury,NULL,5874 Lexington Drive,NULL,Pipersville,18947,Richard Bradbury,NULL,NULL,5874 Lexington Drive,NULL,Pipersville,18947,2157662244,2158523532,rhbradburysr@gmail.com,rhbradburysr,PM2013,0
+c92d9514-13-10,1,10/13/2014 16:29,10/13/2014 16:29,Benedict,Carino,N/A,6609 Sanzo Rd.,Apt. D,Baltimore,21209,Benedict Carino,N/A,NULL,6609 Sanzo Rd.,Apt. D,Baltimore,21209,N/A,4438257873,bencar1972@gmail.com,bencar1972@gmail.com,1450478,1
+74e03514-13-10,1,10/13/2014 21:07,10/13/2014 21:07,Matthew,Van Pelt,NULL,1004 Baylor Blvd,NULL,Big Spring,79720,Matthew Van Pelt,NULL,NULL,1004 Baylor Blvd,NULL,Big Spring,79720,4322707227,NULL,matthew_vanpelt@icloud.com,mvanpelt,goldeneye9714,0
+04f03d14-14-10,1,10/14/2014 17:20,10/14/2014 17:20,John,Frustace,NULL,101 Roosevelt Drive,NULL,Poughquag,12570,John Frustace,NULL,NULL,101 Roosevelt Drive,NULL,Poughquag,12570,845-223-5507,914-329-0089,jfrustace@hudsonpharmacyandsurgical.com,jfrustace,Jf941-7554,0
+1682c514-14-10,1,10/14/2014 23:36,10/14/2014 23:36,Jeffrey,Nelson,NULL,3112 Tyler Parkway,NULL,Bismarck,58503,Jeffrey Nelson,NULL,NULL,3112 Tyler Parkway,NULL,Bismarck,58503,701-255-5762,NULL,jnelson@bis.midco.net,jnelson@bis.midco.net,3203583,1
+a7e8a414-15-10,1,10/15/2014 15:36,10/15/2014 15:36,Morris L ,Anderson,Wayne Lodge #120,413 West 7th,NULL,Wayne,68787-1305,Morris L Anderson,Wayne Lodge #120,NULL,413 West 7th,NULL,Wayne,68787-1305,4023752058,4023692090,morris33@abbnebraska.com,svenskafan,T00lsMSANACarv3r,0
+64725114-16-10,1,10/16/2014 10:35,10/16/2014 10:35,John,Heffernan,Smiths Creek #491F&AM,48174 Pheasant,NULL,New Baltimore,48047,John Heffernan,Smiths Creek #491F&AM,NULL,48174 Pheasant,NULL,New Baltimore,48047,5869494907,NULL,heffj@comcast.net,heffj@comcast.net,2845344,1
+27fba214-17-10,1,10/17/2014 10:47,10/17/2014 10:47,James,Purington,NULL,2904 Broadlands Drive,NULL,raleigh,27604,james Purington,NULL,NULL,2210 McPherson Street,apt 106,raleigh,27610,2523677111,NULL,james.purington@gmail.com,james.purington@gmail.com,8380947,1
+5ca98b14-18-10,1,10/18/2014 8:17,10/18/2014 8:17,JERRY,SMITH,NULL,463 gabe holcomb rd,NULL,brandon,39042,JERRY SMITH,NULL,NULL,463 gabe holcomb rd,NULL,brandon,39042,6012011437,6012011437,jerryselbysm@bellsouth.net,jerryselbysm@bellsouth.net,9773738,1
+2182b414-18-10,1,10/18/2014 11:29,10/18/2014 11:29,John,Adams,NULL,1241 W 1020 SOUTH CIR,NULL,CEDAR CITY,84720,John Adams,NULL,NULL,1241 W 1020 SOUTH CIR,NULL,CEDAR CITY,84720,4355868094,4355903867,sithlord@infowest.com,mormon97,madrigal,0
+c7555a14-18-10,1,10/18/2014 13:25,10/18/2014 13:29,Gerard,Wilson,NULL,2401 Encinal Dr,NULL,Walnut Creek,94597-3126,Gerard Wilson,NULL,NULL,2401 Encinal Dr,NULL,Walnut Creek,94597-3126,925-934-1482,NULL,online@gmwilson.us,Rdshadow92,goniners,0
+3e02af14-18-10,1,10/18/2014 20:46,10/18/2014 20:46,Philip,Brooks,NULL,405 Greear Place,NULL,Herndon,2010,Philip Brooks,NULL,NULL,405 Greear Place,NULL,Herndon,2010,703 909 5532,703 909 5532,Brookspjbe@aol.com,Brookspjbe@aol.com,8116038,1
+8762ad14-19-10,1,10/19/2014 0:22,10/19/2014 0:25,Josue',Suazo,NULL,10409 Alan St,NULL,River Ridge,70123,Josue' Suazo,NULL,NULL,10409 Alan St,NULL,River Ridge,70123,5043730370,5043730370,jsuaz78@yahoo.com,jsuaz78,31r3yt578,0
+f47d7614-19-10,1,10/19/2014 0:46,10/19/2014 0:46,Robert,Wolfarth,NULL,7 S 1200 E,NULL,Salt Lake City,84102,Robert Wolfarth,NULL,NULL,7 S 1200 E,NULL,Salt Lake City,84102,801-916-7676,NULL,cornwineoil@gmail.com,cornwineoil@gmail.com,4696597,1
+36beec14-19-10,1,10/19/2014 10:23,10/19/2014 10:23,Morris,Vainder,NULL,436 E 11 Ave,NULL,Mount Dora,32757,Morris Vainder,NULL,NULL,436 E 11 Ave,NULL,Mount Dora,32757,3527350053,3527350053,morisky1@centurylink.net,morisky1,NYCHA1,0
+3e99a014-19-10,1,10/19/2014 12:01,10/19/2014 12:01,Jim,Boaz,NULL,P.O. Box 31915,NULL,Tucson,85751,Jim Boaz,NULL,NULL,9350 E. Old Pellegrino Rd.,NULL,Tucson,85749,520-403-8202,520-403-8202,jim@boazfamily.net,jim@boazfamily.net,3466201,1
+b4212e14-19-10,1,10/19/2014 15:52,10/19/2014 15:52,Keith,Harrington,Keith Harrington,3731 Summersage Ct,NULL,Champaign,61822,Keith Harrington,Keith Harrington,NULL,3731 Summersage Ct,NULL,Champaign,61822,217-816-4190,217-816-4190,Kelovalintino@yahoo.com,Kelovalintino,Usmarshal1,0
+72add714-20-10,1,10/20/2014 6:05,10/20/2014 6:05,Paul,Jones,NULL,2500 GRANT ST APT 115,NULL,BETTENDORF,52722,Paul Jones,NULL,NULL,2500 GRANT ST APT 115,NULL,BETTENDORF,52722,5633557760,5633557760,mshplt@gmail.com,mshplt@gmail.com,2843546,1
+01f38d14-20-10,1,10/20/2014 16:15,10/20/2014 16:15,Robert ,Herold,Robert Herold,155 W Main St,NULL,Whitewater,53190,Robert Herold,Robert Herold,NULL,155 W Main St,NULL,Whitewater,53190,262-510-1049,262-510-1049,dalesbootery@att.net,dalesbootery@att.net,4261542,1
+4f10b214-20-10,1,10/20/2014 16:53,10/20/2014 16:53,Robert ,Herold,Robert Herold,155 W Main St,NULL,Whitewater,53190,Robert Herold,Robert Herold,NULL,155 W Main St,NULL,Whitewater,53190,262-473-4093,262-510-1049,dalesbootery@att.net,dalesbootery@att.net,2346954,1
+8ecffa14-21-10,1,10/21/2014 11:56,10/21/2014 11:56,Lodge,Secretary,NULL,PO Box 1751,NULL,Big Spring,79720,Lodge Secretary,NULL,NULL,PO Box 1751,NULL,Big Spring,79720,4322678611,NULL,stakedplainslodge598@gmail.com,stakedplains,mastersec,0
+b207a614-21-10,1,10/21/2014 15:37,6/8/2015 10:39,John,Kashinsky,John Kashinsky,41531 Belvidere,NULL,Harrison Twp,48045,John Kashinsky,Action Group,NULL,191 North Ave,NULL,Mount Clemens,48043,5862434111,5862434111,jkashinsky@actiongroup.net,jkashinsky,jk1006jk,0
+41782714-22-10,1,10/22/2014 9:58,12/14/2015 12:44,Mark,Rampanelli,Saltcay Enterprises Inc,1070 Middle Country Rd,Ste 7 #102,Selden,11784,Mark Rampanelli,Saltcay Enterprises Inc,NULL,1070 Middle Country Rd,Ste 7 #102,Selden,11784,5162363847,5162363847,saltcay_1999@yahoo.com,saltcay01,hard2hold,0
+74d22914-22-10,1,10/22/2014 17:16,10/22/2014 17:16,Garry,Randles,NULL,174302 W Byron Rd,NULL,Prosser,99350,Garry Randles,NULL,NULL,174302 W Byron Rd,NULL,Prosser,99350,5097810368,5097810368,garry.tina.randles@gmail.com,garry.tina.randles@gmail.com,gntamos,0
+a94bb414-22-10,1,10/22/2014 18:31,10/22/2014 18:31,nicholas ,lettiere,NULL,591 bement ave,ph,Staten Island,10310,nicholas lettiere,NULL,NULL,591 bement ave,ph,Staten Island,10310,7189810262,7189810262,ndlettiere@gmail.com,ndlettiere,beacon701,0
+13564a14-23-10,1,10/23/2014 11:01,10/23/2014 11:01,Robert,Grzeskiewicz,NULL,946 Windmill Lane,NULL,Evans,30809,Robert Grzeskiewicz,NULL,NULL,946 Windmill Lane,NULL,Evans,30809,7064968031,7064968031,bobg135@gmail.com,bobg135@gmail.com,4367650,1
+45e42614-23-10,1,10/23/2014 11:45,10/23/2014 11:45,Pat ,Phillips,Supreme Council Grottoes North America,430 Beecher Road,NULL,Gahanna,43230,Bernie Mitchell,Supreme Council Grottoes North America,NULL,430 Beecher Road,NULL,Gahanna,43230,614-933-9193,NULL,robin.garrett@scgrotto.org,robin.garrett@scgrotto.org,3368621,1
+117aab14-23-10,1,10/23/2014 13:19,10/23/2014 13:19,Luman,Chichester,NULL,917 county route 403,NULL,Greenville,12083,Luman Chichester,NULL,NULL,917 county route 403,NULL,Greenville,12083,518-966-4296,518-755-5320,Lchi3@aol.com,Lchi3@aol.com,9743803,1
+c29cfa14-23-10,1,10/23/2014 21:45,10/23/2014 21:45,George,Morris,NULL,5806 Vernedale road,NULL,Charlotte,28212,George Morris,NULL,NULL,5806 Vernedale road,NULL,Charlotte,28212,704-563-8559,704-307-3965,sfcmorris2@me.com,sfcmorris2@me.com,5861043,1
+a6238e14-24-10,1,10/24/2014 8:30,10/24/2014 8:30,Scott ,Kinne,NULL,321 Harding Ave,NULL,Endwell,13760,Scott Kinne,NULL,NULL,321 Harding Ave,NULL,Endwell,13760,6077609234,6077609234,scott.kinne@g.mail.com,halftime,gordann1,0
+5ea67c14-24-10,1,10/24/2014 23:39,10/24/2014 23:39,Yancey,Smith,NULL,3221 Conservation Way,NULL,Rapid City,57703,Yancey Smith,NULL,NULL,3221 Conservation Way,NULL,Rapid City,57703,6053932786,6053919996,yanceysmith@rap.midco.net,yanceysmith@rap.midco.net,2886231,1
+0c6a2314-25-10,1,10/25/2014 12:59,10/25/2014 12:59,Chris ,Lamb,NULL,29527 legends stone drive,NULL,Spring,77386,Chris Lamb,NULL,NULL,29527 legends stone drive,NULL,Spring,77386,281-733-4027,281-733-4027,Clamb@gowaninc.com,Clamb@gowaninc.com,6979601,1
+b9274c14-26-10,1,10/26/2014 13:11,10/26/2014 13:11,GENE,Keyes,KEYES AND COMPANY INC,1925 N DUCK LAKE RD.,NULL,HIGHLAND,48356,GENE Keyes,KEYES AND COMPANY INC,NULL,1925 N DUCK LAKE RD.,NULL,HIGHLAND,48356,2488899405,248-505-2877,KEYES.CNC@GMAIL.COM,KEYES.CNC@GMAIL.COM,5190262,1
+45bc6b14-26-10,1,10/26/2014 16:48,10/26/2014 16:48,michael,sorbin,NULL,5253 e. 117 st.,NULL,cleveland,44125,michael sorbin,NULL,NULL,5253 e. 117 st.,NULL,cleveland,44125,2167987337,2167987337,letitwide@aol.com,letitwide@aol.com,1331451,1
+15709314-26-10,1,10/26/2014 20:03,10/26/2014 20:03,Charlton,Rodgers,NULL,1308 Hendrix Ave,NULL,Alamogordo,88310,Charlton Rodgers,NULL,NULL,1308 Hendrix Ave,NULL,Alamogordo,88310,575-439070,575-439-9070,rodgers.c.walter@gmail.com,rodgers.c.walter@gmail.com,2911606,1
+6e8fd014-27-10,1,10/27/2014 17:55,10/27/2014 17:55,Clarence,Kussner,Culver City-Foshay Lodge #467,C/O Clarence Kussner,4259 Sawtelle Blvd.,Los Angeles,90066-6017,Clarence Kussner,Culver City-Foshay Lodge #467,NULL,C/O Clarence Kussner,4259 Sawtelle Blvd.,Los Angeles,90066-6017,310-398-7683,310-482-1164,clarencekussner@gmail.com,clarencekussner,FANNIE80,0
+d1793514-27-10,1,10/27/2014 19:07,10/27/2014 19:07,David,Keyt,Gateway #29,P.O. Box 196,NULL,Clearfield,84015,David Keyt,NULL,NULL,43 East 300 North,NULL,North Salt Lake,84054,801-706-7217,801-706-7217,dkeyt@live.com,dkeyt@live.com,2525988,1
+99ba8e14-28-10,1,10/28/2014 17:31,10/28/2014 17:31,MICHAEL,HITCHNER,NULL,216 Hackensack St,NULL,Wood-Ridge,7075,MICHAEL J HITCHNER,NULL,NULL,216 Hackensack St,NULL,Wood-Ridge,7075,(201) 397-6208,(201) 397-6208,mhitch29@gmail.com,mhitch29,a92631043,0
+9c209114-28-10,1,10/28/2014 19:47,10/28/2014 19:47,don,sims,NULL,4501 maple lane,NULL,bowling green,42101,don sims,NULL,NULL,4501 maple lane,NULL,bowling green,42101,2709960212,NULL,donsims30@yahoo.com,donsims30,Hilltopper1,0
+6c75c914-29-10,1,10/29/2014 15:39,10/29/2014 15:39,David,Weiser,NULL,1800 Colonial Road,NULL,Harrisburg,17112,David Weiser,NULL,NULL,1800 Colonial Road,NULL,Harrisburg,17112,7176524622,7176524622,saldlw@juno.com,dweiser,cawhtoya,0
+bbed9114-29-10,1,10/29/2014 16:15,10/29/2014 16:15,Chas,Escher,NULL,8 Currie Court,NULL,Ballston Spa,12020,Chas Escher,NULL,NULL,8 Currie Court,NULL,Ballston Spa,12020,518-885-5685,NULL,capebud@aol.com,capebud@aol.com,5251022,1
+93968e14-29-10,1,10/29/2014 16:15,10/29/2014 16:15,Chas,Escher,NULL,8 Currie Court,NULL,Ballston Spa,12020,Chas Escher,NULL,NULL,8 Currie Court,NULL,Ballston Spa,12020,518-885-5685,NULL,capebud@aol.com,capebud@aol.com,2253485,1
+4a53ca14-29-10,1,10/29/2014 17:26,10/29/2014 17:26,Rick,Becker,Eureka Lodge #20,11210 Meridian Ave N,Apt B306,Seattle,98133-8585,Rick Becker,C/O Floral Hills Cemetery,NULL,409 Filbert Rd,NULL,Lynnwood,98036-4934,206.280.8099,NULL,rickbecker213@aol.com,EurekaLodge#20,Kravitz,0
+01123b14-31-10,1,10/31/2014 7:17,10/31/2014 7:17,Darin,Nine,NULL,10340 SE HWY464-C,NULL,Ocklawaha,32179,Darin Nine,NULL,NULL,10340 SE HWY464-C,NULL,Ocklawaha,32179,352-288-3577,NULL,ninedarin@gmail.com,ninedarin@gmail.com,4426890,1
+fd156614-31-10,1,10/31/2014 15:47,10/31/2014 15:48,Joseph,Turano,NULL,393 Stanhope Street,NULL,Brooklyn,11237-4404,Joseph Turano,NULL,NULL,393 Stanhope Street,NULL,Brooklyn,11237-4404,9176859097,9176859097,Jturano519@gmail.com,Jturano519,mason1975,0
+27847c14-01-11,1,11/1/2014 20:57,11/1/2014 21:05,Eric,Mclaughlin,Prince of Wales no 14,Box 688,NULL,Minnedosa,R0J 1E0,Eric Mclaughlin,Prince of Wales no 14,NULL,Box 688,NULL,Minnedosa,R0J 1E0,204-867-5958,NULL,ericptd@gmail.com,ericptd@gmail.com,5562362,1
+a40a2114-01-11,1,11/1/2014 23:32,11/1/2014 23:32,Brian,Steward,NULL,208 Crowley Ave,NULL,Buffalo,14207,Brian Steward,NULL,NULL,208 Crowley Ave,NULL,Buffalo,14207,7168779273,71655361063,bsteward@roadrunner.com,bsteward@roadrunner.com,9040587,1
+a31d2b14-02-11,1,11/2/2014 19:16,11/2/2014 19:16,Roy,McConkey,NULL,529 Saline Pump Rd,NULL,Moriarty,87035,Roy McConkey,NULL,NULL,529 Saline Pump Rd,NULL,Moriarty,87035,5058324590,5053213323,roymcconkey@yahoo.com,roymcconkey@yahoo.com,2125380,1
+1609d114-03-11,1,11/3/2014 10:15,11/3/2014 10:15,Daniel,Barston,NULL,15 Clark Street,NULL,Auburn,01501-1743,Daniel Barston,NULL,NULL,15 Clark Street,NULL,Auburn,01501-1743,508-792-0074,508-612-2952,pddgm24@gmail.com,pddgm24@gmail.com,1526209,1
+b95b2114-03-11,1,11/3/2014 13:32,1/8/2016 11:12,F GORDON,BERRY,NULL,3115 SEGER AVE,NULL,SIOUX CITY,51106-3239,F GORDON BERRY,NULL,NULL,3115 SEGER AVE,NULL,SIOUX CITY,51106-3239,712-276-6834,712-251-3891,gordon@gordonslogic.com,fgberry,High12No1,0
+946e8314-03-11,1,11/3/2014 13:51,12/19/2015 16:24,O Carl,Anderson,NULL,1308 Garfield St.,NULL,Great Bend,67530,O Carl Anderson,NULL,NULL,1308 Garfield St.,NULL,Great Bend,67530,6207932225,NULL,carl.mail@ruleof7ps.net,ocanderson,A891359c,0
+c7614014-04-11,1,11/4/2014 17:05,11/4/2014 17:06,bassem,ahmed ,EGCI,cairo,NULL,cairo,11511,bassem ahmed ,Egci,NULL,cairo,cairo,cairo,11511,20181592009,2.01282E+11,bassemelsharkawy@usa.com,bassemahmed,bassem ***,0
+c5db4714-05-11,1,11/5/2014 13:18,11/5/2014 13:18,Frank,"Furr, IV",NULL,380 Sunrise Drive,NULL,Clayton,19938,"Frank Furr, IV",NULL,NULL,380 Sunrise Drive,NULL,Clayton,19938,3022701119,3022701119,ffurr4@gmail.com,ffurr4@gmail.com,6265845,1
+1a48f414-05-11,1,11/5/2014 14:05,11/5/2014 14:05,Jimmie,West,J.N. West,124 Cross Creek Dr,NULL,Paris,40361,Jimmie West,J.N. West,NULL,124 Cross Creek Dr,NULL,Paris,40361,8597074458,NULL,wjimann@gmail.com,wjimann@gmail.com,9314120,1
+86b63d14-05-11,1,11/5/2014 21:18,11/5/2014 21:18,Paul,Joiner,NULL,2317 Lakeshore Blvd,#603,Ypsilanti,48198,Paul Joiner,NULL,NULL,2317 Lakeshore Blvd,#603,Ypsilanti,48198,3136299038,3136299038,pjoner1217@gmail.com,pjoner1217@gmail.com,6815944,1
+97978314-06-11,1,11/6/2014 21:09,10/12/2016 15:05,Mike,Nichols,NULL,310 Clovis Drive,NULL,Georgetown,78628,Mike Nichols,NULL,NULL,310 Clovis Drive,NULL,Georgetown,78628,5128430849,5128430849,nichols.ms@gmail.com,nichols.ms@gmail.com,msnbsa.78628,0
+4a6d6514-09-11,1,11/9/2014 18:14,11/9/2014 18:14,Lyle,Christian,Hiram Lodge # 50,1 Leyton Circle,NULL,Madison,53713-3401,Lyle Christian,Hiram Lodge # 50,NULL,1 Leyton Circle,NULL,Madison,53713-3401,608-271-4202,608-209-4312,xian4202@yahoo.com,xian4202@yahoo.com,9124430,1
+1af07714-10-11,1,11/10/2014 10:05,11/10/2014 10:05,John L,Smith,Yellow Springs Lodge #421,4311 Joy Drive,NULL,Enon,45323,John L Smith,Yellow Springs Lodge #421,NULL,4311 Joy Drive,NULL,Enon,45323,937-864-5020,937-405-3190,jsmith037@woh.rr.com,ys421jls,treasurer,0
+e7466614-10-11,1,11/10/2014 12:43,11/10/2014 12:43,M.A.,Wilson,Mansfield Lodge #489,PO Box 160,Attn: Andy Wilson,Newborn,30056,M.A. Wilson,Mansfield Lodge #489,NULL,PO Box 160,Attn: Andy Wilson,Newborn,30056,770-787-7973,770-815-3482,m_andywilson@netzero.com,m_andywilson@netzero.com,9535314,1
+437c1014-10-11,1,11/10/2014 12:48,11/10/2014 12:48,Andy,Wilson,Mansfield Lodge #489,PO Box 160,Attn: Andy Wilson,Newborn,30056,Andy Wilson,Mansfield Lodge #489,NULL,PO Box 160,Attn: Andy Wilson,Newborn,30056,770-787-7973,770-815-3482,m_andywilson@netzero.com,m_andywilson@netzero.com,1639903,1
+8d85cc14-11-11,1,11/11/2014 10:37,11/11/2014 10:37,Thomas,Hineman,NULL,2363 Donner St NW,NULL,North Canton,44720,Thomas Hineman,NULL,NULL,2363 Donner St NW,NULL,North Canton,44720,3306054837,NULL,thine@ohiovalleymed.com,thineman,Susan123,0
+42b53a14-11-11,1,11/11/2014 12:38,9/8/2015 13:47,JOSEPH K.,BARBARA,NULL,289 Miller ave,NULL,Branchburg,8876,JOSEPH K. BARBARA,NULL,NULL,289 Miller ave,NULL,Branchburg,8876,908-203-8116,908-229-7644,josephkbarbara@gmail.com,josephkbarbara,110894jb,0
+bed2f514-11-11,1,11/11/2014 13:09,11/11/2014 13:09,Paul,Lundquist,NULL,P.O. Box 452,NULL,Evergreen,80437,Paul Lundquist,NULL,NULL,P.O. Box 452,NULL,Evergreen,80437,303-681-6817,NULL,paulsguitarpad@aol.com,paulsguitarpad@aol.com,6498098,1
+29f25314-12-11,1,11/12/2014 7:33,11/12/2014 7:33,Eugene,St.Clair,NULL,2209 N. pershing drive,#307,Arlington,22201,Eugene St.Clair,NULL,NULL,2209 N. pershing drive,#307,Arlington,22201,2402986712,2402986712,genestclair1@gmail.com,genestclair1@gmail.com,3933284,1
+670d4714-13-11,1,11/13/2014 2:58,11/13/2014 2:58,Clint,Stevens,NULL,5502 Pinewood Springs,NULL,Houston,77066,Clint Stevens,NULL,NULL,5502 Pinewood Springs,NULL,Houston,77066,(281)382-8184,NULL,Clint_stevens@sbcglobal.net,Clint_stevens@sbcglobal.net,1232267,1
+fb4d5214-13-11,1,11/13/2014 9:03,3/24/2016 10:51,Gwen,Olson,Grand Lodge of South Dakota,520 S First Ave,NULL,Sioux Falls,57104,Gwen Olson,Grand Lodge of South Dakota,NULL,520 S First Ave,NULL,Sioux Falls,57104,605-332-2051,NULL,office@mygrandlodge.org,sdgrandlodge,cdrobin,1
+a1525e14-13-11,1,11/13/2014 9:32,11/13/2014 9:32,Ray,Greyling,NULL,3828 Taylortown Rd,NULL,Furlong,18925,Ray Greyling,NULL,NULL,3828 Taylortown Rd,NULL,Furlong,18925,862 812 0424,862 812 0424,raygreyling@me.com,raygreyling@me.com,1408060,1
+adc3ff14-13-11,1,11/13/2014 12:55,11/13/2014 12:55,Robert,Grzeskiewicz,Lincolnton #354,946 Windmill Ln,NULL,Evans,30809,Robert Grzeskiewicz,Lincolnton #354,NULL,946 Windmill Ln,NULL,Evans,30809,7068631900,706 394 4402,bobg135@gmail.com,bobg135@gmail.com,5977065,1
+fb673714-13-11,1,11/13/2014 16:15,11/13/2014 16:15,Anthony,Angelica,Estuary Lodge #43,52 Old Boston Post Road,NULL,Old Saybrook,6475,Anthony Angelica,Estuary Lodge #43,NULL,PO Box 206,NULL,Deep River,6417,203-623-9576,NULL,tamatrix11@comcast.net,tamatrix11@comcast.net,3854749,1
+ee1a8d14-14-11,1,11/14/2014 9:48,11/14/2014 9:48,Brian,Harris,NULL,17255 Palm Ridge Dr,NULL,D'Iberville,39540,Brian Harris,NULL,NULL,17255 Palm Ridge Dr,NULL,D'Iberville,39540,2285472596,2285472596,brian.harris.1@outlook.com,bchbiloxi,0okmOKM9ijnIJN,0
+9b273814-14-11,1,11/14/2014 14:19,11/14/2014 14:19,Jorge,Martinez,NULL,525 West River Drive,NULL,Pennsauken,8110,Jorge Martinez,NULL,NULL,525 West River Drive,NULL,Pennsauken,8110,856-979-2589,NULL,antonely007@yahoo.com,antonely007@yahoo.com,1167646,1
+68d74414-14-11,1,11/14/2014 17:33,11/14/2014 17:33,Andre,Beliveau,NULL,908 Tower Ave.,NULL,Maybrook,12543,Andre Beliveau,NULL,NULL,908 Tower Ave.,NULL,Maybrook,12543,845-820-9786,845-820-9786,abeliveau.ny@gmail.com,abeliveau.ny@gmail.com,7235319,1
+5a0a2e14-16-11,1,11/16/2014 0:04,11/16/2014 0:04,Dennis,White,NULL,64 Lester Way,NULL,Sequim,98382,Dennis White,NULL,NULL,64 Lester Way,NULL,Sequim,98382,9085079503,9085079503,denniswooo@gmail.com,denniswooo@gmail.com,5801352,1
+41599814-16-11,1,11/16/2014 9:44,11/16/2014 15:52,Mark,Caudill,NULL,14809 National Rd.,NULL,Thornville,43076,Mark Caudill,NULL,NULL,14809 National Rd.,NULL,Thornville,43076,7407871183,7403986790,markcaudill66@gmail.com,marrub 01,morelight,0
+de1f5d14-16-11,1,11/16/2014 14:19,11/16/2014 14:19,Harry,Bruno, Cochran #217,995 Limestone Road,NULL,Cochran,31014,Harry A. Bruno,Cochran #217,NULL,995 Limestone Road,NULL,Cochran,31014,4789347357,4789512021,harrya217@comsouth.net,harrya217,ha7685,0
+4e5d6914-16-11,1,11/16/2014 20:24,11/16/2014 20:24,Steven,Waxman,NULL,43 Silver Lake Ave.,NULL,Warwick,2888,Steven Waxman,NULL,NULL,43 Silver Lake Ave.,NULL,Warwick,2888,401-226-4912,401-226-4912,Postalwxn@msn.com,Postalwxn@msn.com,9291412,1
+a187ad14-18-11,1,11/18/2014 11:59,11/18/2014 11:59,James,Godbold,NULL,2856 Dove Avenue,NULL,Marrero,70072,James Godbold,NULL,NULL,2856 Dove Avenue,NULL,Marrero,70072,5042351178,5042351178,duke875@msn.com,duke875,1fuckers,0
+02d9ff14-19-11,1,11/19/2014 10:02,8/24/2015 15:16,Dr Ken,Moder,NULL,160 Drury Lane,NULL,West Lafayette,47906,Dr Ken Moder,NULL,NULL,160 Drury Lane,NULL,West Lafayette,47906,765-497-1456,765-337-2438,moder1@msn.com,kmoder,mas81ter,0
+a0c6b814-20-11,1,11/20/2014 11:29,11/20/2014 11:29,Bernard,Golubiewski,Landmark Lodge 442,25 North Franklin St,NULL,Wilkes-Barre,18701,Bernard Golubiewski,Landmark Lodge,NULL,19 Main Street,Laflin,Wilkes-Barre,18702,570-825-4780,570-417-8271,bernygober@outlook.com,landmark442,xbs4xdb,1
+0d828d14-20-11,1,11/20/2014 11:38,11/20/2014 11:38,Bernard,Golubiewski,Landmark Lodge 0442,25 North Franklin Street,NULL,Wilkes Barre,18701,Bernard Golubiewski,Landmark Lodge,NULL,19 Main Street,NULL,Wilkes-Barre,18702-7102,570-825-4780,570-417-8271,bernygober@outlook.com,bernygober,xbs4xdb,1
+d2998014-20-11,1,11/20/2014 13:44,11/20/2014 13:44,Kenneth,Kakplan,Army & Navy Lodge 306,550 Fox Hill Road,NULL,Hampton,23669,Kenneth Kaplan,NULL,NULL,324 Grandville Arch,NULL,Smiithfield,23430,7573650702,NULL,ccny59@charter.net,ccny59@charter.net,1338548,1
+8a890d14-21-11,1,11/21/2014 1:50,11/21/2014 1:50,Kyle,Hudson,NULL,2987 Rainbow Ln.,NULL,Fortuna,95540,Kyle J. Hudson,NULL,NULL,2987 Rainbow Ln.,NULL,Fortuna,95540,7078452876,7078452876,kjhudson1122@gmail.com,kjhudson,Iverson03,0
+7bf92b14-21-11,1,11/21/2014 12:56,11/21/2014 12:56,David,Robbins,NULL,13828 E County Road 500 S,NULL,Sheridan,46069,David Robbins,NULL,NULL,13828 E County Road 500 S,NULL,Sheridan,46069,7654274557,7654274557,boilerdave3@aol.com,boilerdave3,Hiram2007,0
+f9547714-22-11,1,11/22/2014 11:55,11/22/2014 11:55,William,Zarychta,NULL,12138 Pawtuckett lane,NULL,Waldorf,20602,William Zarychta,NULL,NULL,12138 Pawtuckett lane,NULL,Waldorf,20602,3016456730,NULL,bro.zarychta@comcast.net,bro.zarychta@comcast.net,!!PASSb00pers,1
+bf0b2114-23-11,1,11/23/2014 12:02,11/23/2014 12:02,Jay,Poirier,NULL,18 Libby Ave,NULL,Lewiston,4240,Jay Poirier,NULL,NULL,18 Libby Ave,NULL,Lewiston,4240,2077846902,2075770724,smallblockchevy@gmail.com,smallblockchevy@gmail.com,9323921,1
+98f02714-23-11,1,11/23/2014 18:54,11/23/2014 18:54,James,Spaulding,NULL,31 Birch Glen Dr,NULL,Waterford,12188,James Spaulding,NULL,NULL,31 Birch Glen Dr,NULL,Waterford,12188,5182352868,NULL,clownpfish@aol.com,clownpfish@aol.com,3369261,1
+3bcff814-24-11,1,11/24/2014 1:41,11/24/2014 1:55,Kristopher,Wilson,Wilson LLC,4913 S 230th rd,NULL,Halfway,65663,Kristopher Wilson,Wilson,NULL,4913 S 230th rd,NULL,Halfway,65663,4174672185,4174966521,kris182010@gmail.com,kris182010,6.56637E+16,0
+ccc42114-24-11,1,11/24/2014 9:18,11/24/2014 9:18,Kevin,Carnine,Kevin Carnine Agency,718 Park Ave,NULL,Beaver Dam,53916,Kevin Carnine,NULL,NULL,155 Dana Dr,NULL,Beaver Dam,53916,9203824719,9203824719,kcarnine@amfam.com,kcarnine@amfam.com,2048098,1
+2aa26914-24-11,1,11/24/2014 11:22,11/24/2014 11:23,Larry,Anderson,Salina Lodge 60,336 S Santa Fe Ave,NULL,Salina,67401,Larry anderson,Salina Lodge 60,NULL,P.O. Box 1274,NULL,"Salina, ",67401-1274,785825-4812,NULL,masonicallylka@gmail.com,Larry Anderson,nja6560L,0
+46717814-25-11,1,11/25/2014 16:04,11/25/2014 16:31,Greg,Brown,NULL,4130 216TH PL SE,NULL,Bothell,98021,Greg Brown,NULL,NULL,4130 216TH PL SE,NULL,Bothell,98021,425 707 9060,425 407 2263,seattlemason@outlook.com,endgrain,felldrag0n,0
+ed942914-26-11,1,11/26/2014 9:55,11/26/2014 9:55,Richard,Lewis,NULL,PO Box 38,518 N Wheatland HWY,Wheatland,82201,Richard Lewis,NULL,NULL,PO Box 38,518 N Wheatland HWY,Wheatland,82201,307322-9305,307-421-7748,rlewis@wyomingwisp.com,RLewis,GMaster14,0
+73a0c914-26-11,1,11/26/2014 17:00,11/26/2014 17:04,Ari,Marcus,NULL,32 Meredith Cir,NULL,Needham,2492,Ari Marcus,NULL,NULL,32 Meredith Cir,NULL,Needham,2492,781-444-0902,617-821-6342,snarcus1@gmail.com,admarcus1,eli1jon2,0
+6976cf14-28-11,1,11/28/2014 7:47,11/28/2014 7:47,Robert,Taylor,NULL,30 Indian Birch Rd.,NULL,Turnersville,8012,Robert Taylor,NULL,NULL,30 Indian Birch Rd.,NULL,Turnersville,8012,856-227-5010,856-834-3917,Taylor89@comcast.net,Taylor89@comcast.net,7847515,1
+d5fc9814-30-11,1,11/30/2014 20:49,11/30/2014 20:49,Robert,Leonard,NULL,4808 Clipper Xing,NULL,Edmond,73013,Robert Leonard,NULL,NULL,4808 Clipper Xing,NULL,Edmond,73013,405 844-7796,405 706-5731,rleonard12@yahoo.com,rleonard,lauraleo,0
+8677ad14-01-12,1,12/1/2014 11:16,12/1/2014 11:16,Martin,Richards,My Hse,25 Trinity Place,NULL,New Rochelle,10805,Martin Richards,My Hse,NULL,25 Trinity Place,NULL,New Rochelle,10805,(914) 813-2037,(914) 813-2037,Mrich571@optonline.net,Mrich571,Miller43,0
+2794e614-01-12,1,12/1/2014 14:58,12/1/2014 14:59,Naneen,Christopher,NULL,972 Sherman Ave. ,Apt. 2F,Bronx,10456,Naneen Christopher,NULL,NULL,972 Sherman Ave. ,Apt. 2F,Bronx,10456,646-262-0943,646-262-0943,Naneen_Christopher@yahoo.com,Naneen_Christopher@yahoo.com,3317118,1
+82315214-01-12,1,12/1/2014 22:39,12/1/2014 22:39,RONALD,Winquest,NULL,137 S Ohio Avenue,NULL,York,68467,York Masonic Lodge #56,NULL,NULL,PO Box 21,NULL,York,68467,4027100425,4027100425,rwinquest@neb.rr.com,rwinquest@neb.rr.com,7899518,1
+423e7314-02-12,1,12/2/2014 10:25,12/2/2014 10:25,Dean ,White,Scottish Rite Bodies,305 W. Stephenson,NULL,Freeport,61032,Dean White,Scottish Rite Bodies,NULL,305 W. Stephenson,NULL,Freeport,61032,815-233-0513,NULL,masons@aeroinc.net,masons@aeroinc.net,3037973,1
+1abcbd14-02-12,1,12/2/2014 11:38,12/2/2014 11:38,Norman,Peterson,Harmar Lodge #390,1309 Lancaster Street,NULL,Marietta,45750,Lee Peterson,Harmar Lodge #390,NULL,1309 Lancaster Street,NULL,Marietta,45750,740-373-2843,NULL,petersonlb@suddenlink.net,Harmar390,furtherlight,0
+ee89c014-02-12,1,12/2/2014 12:53,12/2/2014 12:53,Herbert,Hampton,NULL,7909 Moore's Ridge Rd.SE,NULL,Uhrichsville,44683,Herbert Hampton,NULL,NULL,7909 Moore's Ridge Rd.SE,NULL,Uhrichsville,44683,740-922-4990,330-407-4990,lhampton@tusco.net,lhampton@tusco.net,6358441,1
+9b88a314-02-12,1,12/2/2014 13:03,12/2/2014 13:03,Herbert,Hampton,Hampton Technical Service,7909 Moore's Ridge Rd.SE,NULL,Uhrichsville,44683,Herbert Hampton,Hampton Technical Service,NULL,7909 Moore's Ridge Rd.SE,NULL,U,44683,740-922-4990,330-407-4990,lhampton@tusco.net,lhampton@tusco.net,1405319,1
+5d950714-02-12,1,12/2/2014 20:08,12/14/2015 19:25,Michael,Richardson,NULL,2416 Newkirk Avenue,4G,Brooklyn,11226,Michael Richardson,NULL,NULL,1035 Washington Avenue,4S,Brooklyn,11225,7187907806,7187907806,mlr52@fam.michaellrichardson.com,mlr52@fam.michaellrichardson.com,Mason2012,0
+d4026116-07-08,1,8/7/2016 18:53,8/7/2016 18:53,David R.,Barkstedt,NULL,235 W. Saugerties Rd.,NULL,Saugerties,12477,David R. Barkstedt,NULL,NULL,235 W. Saugerties Rd.,NULL,Saugerties,12477,845-235-5037,845-235-5037,dave@eliteconsultantsinc.com,drbarkstedt,cleaning2513,0
+417d5214-03-12,1,12/3/2014 14:27,12/3/2014 14:27,Ralph,Archangel,NULL,1105 - 42 Street,NULL,Brooklyn,11219,Ralph Archangel,NULL,NULL,1105 - 42 Street,NULL,Brooklyn,11219,718-633-0801,917-299-3277,rkabif@optonline.net,Archangel,4Perez,0
+f7152114-03-12,1,12/3/2014 21:57,12/3/2014 21:57,Earnest,Lancaster,NULL,305 W 3rd St,NULL,Mobeetie,79061,Earnest Lancaster,NULL,NULL,305 W 3rd St,NULL,Mobeetie,79061,8062553104,8062553104,earnestlancaster@gmail.com,ernybird,skeeter,0
+0bb1a014-04-12,1,12/4/2014 10:27,12/4/2014 10:27,John,Porteus,NULL,55144 County Road 5,NULL,West Lafayette,43845,John Porteus,NULL,NULL,55144 County Road 5,NULL,West Lafayette,43845,740-545-9130,NULL,johnporteus@yahoo.com,johnporteus@yahoo.com,9838844,1
+0d35d614-04-12,1,12/4/2014 17:48,12/9/2015 14:07,Michael P.,Pizzola,Jefferson Lodge #15,24655 Dupont Blvd,NULL,Georgetown,19947,Michael P. Pizzola,Jefferson Lodge #15,NULL,24655 Dupont Blvd,NULL,Georgetown,19947,3022497282,3022497282,vetemike@aol.com,vetemike,42781000,0
+484a2f14-04-12,1,12/4/2014 22:45,12/4/2014 22:45,Dennis,Brassard,NULL,667 Marsh Hill Rd.,NULL,Dracut,1826,Dennis Brassard,NULL,NULL,667 Marsh Hill Rd.,NULL,Dracut,1826,9784538650,NULL,greywolf667@comcast.net,greywolf667@comcast.net,4679597,1
+74e8e014-04-12,1,12/4/2014 22:50,12/4/2014 22:50,Dennis,Brassard,NULL,667 Marsh Hill Rd.,NULL,Dracut,01826-1523,Dennis Brassard,NULL,NULL,667 Marsh Hill Rd.,NULL,Dracut,01826-1523,9784538650,NULL,greywolf667@comcast.net,greywolf667@comcast.net,5290974,1
+d47cda14-05-12,1,12/5/2014 15:22,12/5/2014 15:22,Kenneth,Schneider,NULL,3628 Nautilus Tr.,NULL,Aurora,44202,Kenneth Schneider,NULL,NULL,3628 Nautilus Tr.,NULL,Aurora,44202,none,330-860-0495,kensch@windstream.net,kensch@windstream.net,2775419,1
+377edd14-06-12,1,12/6/2014 9:10,12/6/2014 9:10,Ramon,Voils,NULL,866 Lake Wellington Drive,NULL,Wellington,33414,Ramon Voils,NULL,NULL,866 Lake Wellington Drive,NULL,Wellington,33414,561-797-5133,561-797-5133,rvoils@comcast.net,rvoils@comcast.net,2725721,1
+18cdc814-06-12,1,12/6/2014 13:07,12/6/2014 13:07,jon,trego,NULL,402 madison st.,NULL,ravenna,44266,jon trego,NULL,NULL,402 madison st.,NULL,ravenna,44266,330-671-5425,NULL,jptrego@yahoo.com,jptrego@yahoo.com,6960888,1
+97e29914-07-12,1,12/7/2014 16:24,12/7/2014 16:24,Edward A,Magilton,NULL,5088 State Route 97,NULL,Narrowsburg,12764,Edward A Magilton,NULL,NULL,5088 State Route 97,NULL,Narrowsburg,12764,8452527232,NULL,nyed001@yahoo.com,nyedmason561,glynned1,0
+facd4c14-08-12,1,12/8/2014 9:08,12/8/2014 9:08,Richard,Martindale,NULL,PO Box 109,NULL,Boutte,70039,Richard Martindale,NULL,NULL,PO Box 109,NULL,Boutte,70039,504 416 4033,504 416 4033,chiefnharry@yahoo.com,chiefnharry@yahoo.com,9299538,1
+75939a14-08-12,1,12/8/2014 12:32,12/8/2014 12:32,George,Hernandez,NULL,73 w 30th street,NULL,bayonne,7002,George Hernandez Jr.,NULL,NULL,73 w 30th street,NULL,bayonne,7002,2015397378,NULL,ghernandez805@gmail.com,ghernandez805@gmail.com,1708899,1
+63078a14-08-12,1,12/8/2014 17:39,12/8/2014 17:40,Philip,Brooks,NULL,405 Greear Place,NULL,Herndon,20170,Philip Brooks,NULL,NULL,405 Greear Place,NULL,Herndon,20170,703 707 8150,NULL,Brookspjbe@aol.com,Brookspjbe@aol.com,3617727,1
+329cbc14-08-12,1,12/8/2014 18:08,12/8/2014 18:08,Scott,Rosengrant,NULL,333 Upper Valley Road,NULL,Torrington,6790,Scott Rosengrant,NULL,NULL,333 Upper Valley Road,NULL,Torrington,6790,860-307-8189,860-307-8189,scotty_62@yahoo.com,scotty_62@yahoo.com,2882537,1
+c0ec3e14-09-12,1,12/9/2014 9:22,12/9/2014 9:22,gerard,messina,Gerard Messina,64-04 60th Ave,NULL,maspeth,11378,gerard messina,Gerard Messina,NULL,64-04 60th Ave,NULL,maspeth,11378,7189091700,7189091700,gerardmessina@aol.com,gerardmessina@aol.com,2697716,1
+ab225b14-09-12,1,12/9/2014 9:32,12/9/2014 9:32,Keith,Herman,NULL,641 Guilford Road,NULL,Cherry Hill,8003,Keith Herman,NULL,NULL,641 Guilford Road,NULL,Cherry Hill,8003,609.440.2217,609.440.2217,kaherman@msn.com,kaherman@msn.com,4701605,1
+40b6a914-09-12,1,12/9/2014 11:30,12/9/2014 11:30,Michael,Tucker,NULL,265 Sailors Way,NULL,Lakewood,8701,Michael Tucker,NULL,NULL,265 Sailors Way,NULL,Lakewood,8701,7322790611,7326849803,MLTucker@TheTuckerCompound.Com,MLTucker,AltAet9753,0
+286c5214-09-12,1,12/9/2014 13:59,12/9/2014 13:59,Robert,Ribbeck,Home,4808 s cherry ave,NULL,Tucson,85714,Robert Ribbeck,Home,NULL,4808 s cherry ave,NULL,Tucson,85714,5205059156,5209795240,Bullfrog918@hotmail.com,Bullfrog918@hotmail.com,3508719,1
+32216014-09-12,1,12/9/2014 15:46,12/9/2014 15:46,Burton,Barr,NULL,1314 Kalakaua Ave.,Apt 1206,Honolulu,96826,Burton Barr,NULL,NULL,1314 Kalakaua Ave.,Apt 1206,Honolulu,96826,808-395-3011,NULL,bbbarr@hawaiiantel.net,bbbarr@hawaiiantel.net,3050866,1
+c20b3814-09-12,1,12/9/2014 15:48,12/9/2014 15:48,Jacquelynn,Morris,Masonic Service,3905 National Drive,#280,Burtonsville,20866,Jacquelynn Morris,Masonic Service,NULL,3905 National Drive,#280,Burtonsville,20866,3014767330,NULL,jmorris@msana.com,jmorris@msana.com,2814835,1
+bd717514-09-12,1,12/9/2014 15:50,12/9/2014 15:50,Jacquelynn,Morris,Masonic Service,3905 National Drive,#280,Burtonsville,20866,Jacquelynn Morris,Masonic Service,NULL,3905 National Drive,#280,Burtonsville,20866,3014767330,NULL,jmorris@msana.com,jmorris@msana.com,7726320,1
+4caef414-09-12,1,12/9/2014 15:56,12/9/2014 15:56,Burton,Barr,NULL,1314 Kakakaua Ave,Apt 1206,Honolulu,96826,Burton Barr,NULL,NULL,1314 Kakakaua Ave,Apt 1206,Honolulu,96826,808-395-3011,NULL,bbbarr@hawaiiantel.net,bbbarr@hawaiiantel.net,2125982,1
+e9d95214-09-12,1,12/9/2014 16:13,12/9/2014 16:13,SEYMOUR,LATKE,MASONIC SERVICE ASSOC,3905 NATIONAL DR STE 280,NULL,BURTONSVILLE,20866,SEYMOUR LATKE,MASONIC SERVICE ASSOC,NULL,3905 NATIONAL DR STE B280,NULL,BURTONSVILLE,20866,3014767330,3014767330,martbna@gmail.com,martbna@gmail.com,7166375,1
+bbe4aa14-09-12,1,12/9/2014 16:28,12/9/2014 16:28,Robert,Ribbeck,Home,4808 s. cherry ave,NULL,Tucson,85714,Robert Ribbeck,Home,NULL,4808 s. cherry ave,NULL,Tucson,85714,5205059156,5205059156,bullfrog918@hotmail.com,bullfrog918@hotmail.com,4625103,1
+32aa9314-09-12,1,12/9/2014 16:28,12/9/2014 16:28,Robert,Ribbeck,Home,4808 s. cherry ave,NULL,Tucson,85714,Robert Ribbeck,Home,NULL,4808 s. cherry ave,NULL,Tucson,85714,5205059156,5209795240,bullfrog918@hotmail.com,bullfrog918@hotmail.com,2622048,1
+10f0c314-09-12,1,12/9/2014 16:33,12/9/2014 16:33,Robert,Ribbeck,Home,4808 s. cherry ave,NULL,Tucson,85714,Robert Ribbeck,Home,NULL,4808 s. cherry ave,NULL,Tucson,85714,5205059156,5209795240,bullfrog918@hotmail.com,bullfrog918@hotmail.com,5229630,1
+b33df314-09-12,1,12/9/2014 16:46,2/10/2016 16:23,Robert,Ribbeck,Home,4808 s. cherry ave,NULL,Tucson,85714,Robert Ribbeck,Home,NULL,4808 s. cherry ave,NULL,Tucson,85714,5205059156,5209795240,bullfrog918@hotmail.com,rribbeck,poohbear918,1
+c0edb014-10-12,1,12/10/2014 7:04,11/23/2016 12:32,Robert,Engelbach,NULL,1211 Michigan Avenue,NULL,Cumberland,21502,Robert Engelbach,NULL,NULL,1211 Michigan Avenue,NULL,Cumberland,21502,3017778909,NULL,brytstar@rocketmail.com,brytstar@rocketmail.com,Bright01A#,0
+aaabf514-10-12,1,12/10/2014 12:45,12/10/2014 12:45,Gerald,Houston,NULL,426 Green Briar St,NULL,Deridder,70634,Gerald Houston,NULL,NULL,426 Green Briar St,NULL,Deridder,70634,3374634553,3374634553,houstongh@gmail.com,houstongh@gmail.com,1825924,1
+ca20a514-10-12,1,12/10/2014 14:13,12/10/2014 14:13,Joe ,Bennett,NULL,144 Phenix Ave.,NULL,Cranston,02920hiramos,Mike Spencer,NULL,NULL,167 Chestnut St.,NULL,Foxborough,2035,N/A,401-323-7470,smokeyribsa@yahoo.com,hiramos40,TeddyCVN71,0
+d13bca14-12-12,1,12/12/2014 16:22,12/24/2015 16:25,Paul,Weikel,NULL,2342 Starleaf Lane,NULL,Columbus,43235,Paul Weikel,NULL,NULL,2342 Starleaf Lane,NULL,Columbus,43235,614-761-7635,614-203-6332,pw96@columbus.rr.com,pweikel96,doesit96,0
+56753414-15-12,1,12/15/2014 7:18,12/15/2014 7:18,William,Meyer,NULL,110 Franklin Ave.,NULL,La Grange,40031,William Meyer,NULL,NULL,110 Franklin Ave.,NULL,La Grange,40031,502-222-1761,NULL,billmeyer@twc.com,billmeyer@twc.com,5620741,1
+dad9ce14-15-12,1,12/15/2014 8:15,2/18/2016 11:11,William,Boyd,NULL,8950 M52,NULL,Perry,48872,William H Boyd,NULL,NULL,8950 M52,NULL,Perry,48872,5178629615,5178629615,wmhboyd59@aol.com,Bill67,Templar21,0
+8dd56914-15-12,1,12/15/2014 12:30,12/15/2014 12:30,Frederick L,Reinig,NULL,5664 Macintosh Dr,NULL,Bay City,48706-5638,Frederick L Reinig,NULL,NULL,5664 Macintosh Dr,NULL,Bay City,48706-5638,989-686-5363,NULL,flnjhr@charter.net,flnjhr@charter.net,7657507,1
+315c2914-17-12,1,12/17/2014 10:44,12/17/2014 10:44,Dallene,Smith,NULL,442 Lakemont Dr,UNITED STATES,Chapin,290368227,Marian Patterson,NULL,NULL,164 Patterson Lane,NULL,Indian Land,29707,8475280379,8475280379,dallene611@gmail.com,dallene611@gmail.com,8155488,1
+872fe614-17-12,1,12/17/2014 11:53,12/17/2014 11:53,MICHAEL,BENT,NULL,40 COLON ST,NULL,BEVERLY,1915,MICHAEL BENT,NULL,NULL,40 COLON ST,NULL,BEVERLY,1915,9789229443,7819100940,MikeBent@comcast.net,mikebent@comcast.net,Bendo&076,0
+a5b56a14-17-12,1,12/17/2014 15:28,12/17/2014 15:28,James,Xie,Scottsdale Masonic Lodge #43,2531 N. Scottsdale Rd.,NULL,Scottsdale,85257,James Xie,Scottsdale Masonic Lodge #43,NULL,2531 N. Scottsdale Rd.,NULL,Scottsdale,85257,480-946-1072,NULL,secretary@scottsdalelodge43.com,scottsdalelodge43,lodge43,0
+77c76114-20-12,1,12/20/2014 18:40,12/20/2014 18:40,Stephen,Zabriskie,NULL,POB 119,441 Main St.,Aurora,13026,Scott Ward,NULL,NULL,97 East Shore Circle,NULL,Ithaca,14850,315-246-0413,315-246-0413,zabled@aol.com,zabled@aol.com,6924582,1
+758acc14-20-12,1,12/20/2014 18:45,12/20/2014 18:45,Stephen,Zabriskie,NULL,POB 119,NULL,Aurora,13026,Scott Ward,NULL,NULL,97 East Shore Circle,NULL,Ithaca,14850,315-246-0413,315-246-0413,zabled@aol.com,zabled@aol.com,7941395,1
+1435e714-20-12,1,12/20/2014 18:56,12/20/2014 18:56,Stephen,Zabriskie,NULL,POB 119,NULL,Aurora,13026,Charles L. Zabriskie,NULL,NULL,10 St. Paul's Place,Apt. 6H,Brooklyn,11226,315-246-0413,315-246-0413,zabled@aol.com,zabled@aol.com,3548467,1
+ae6fbf14-21-12,1,12/21/2014 9:27,12/21/2014 9:27,Dawn,Schaefer,NULL,5507 Hinton St,NULL,Springfield,22151,Dawn Schaefer,NULL,NULL,5507 Hinton St,NULL,Springfield,22151,7032565686,7034096987,earlysun@gmail.com,earlysun@gmail.com,6345062,1
+777ea414-21-12,1,12/21/2014 9:35,1/4/2016 12:30,alvin,davis,NULL,3752 corte bella hills ave,NULL,north las vegas,89081,alvin davis,NULL,NULL,3752 corte bella hills ave,NULL,north las vegas,89081,210-414-8004,210-414-8004,col.ribta@yahoo.com,alvindavis54,amyliz81,0
+93437214-21-12,1,12/21/2014 18:48,12/21/2014 18:58,Robert,Saverance,Robert M Saverance,PO Box 283,NULL,Lamar,29069,Robert M. Saverance,NULL,NULL,PO Box 283,NULL,Lamar,29069,843-326-8011,843-621-1760,rmslamar@aol.com,rmslamar,rescue,0
+d6fa1314-22-12,1,12/22/2014 14:51,12/22/2014 14:51,Timothy,Nicely,NULL,4221 County Road 14,NULL,South Point,45680,Timothy Nicely,NULL,NULL,4221 County Road 14,NULL,South Point,45680,740-894-0691,740-479-0727,tsnicely@gmail.com,tsnicely@gmail.com,5259256,1
+81316114-22-12,1,12/22/2014 15:41,12/22/2014 15:41,Richard,Elzey,NULL,1824 NW State Road 116-90,NULL,Markle,46770,Richard Elzey,NULL,NULL,1824 NW State Road 116-90,NULL,Markle,46770,2607501800,2607501800,relzey@aol.com,relzey@aol.com,bessy33,0
+fb1ef114-23-12,1,12/23/2014 8:51,12/23/2014 8:51,Albert,Henson,NULL,290 Calef Hwy,# C14,Epping,3042,Laurance Henson,NULL,NULL,12B Cottage Street,NULL,Milford,3055,603-682-7333,603-682-7333,dvldog5462@hotmail.com,dvldog5462@hotmail.com,5748462,1
+907f7014-24-12,1,12/24/2014 15:03,12/24/2014 15:03,Ken,Jones,NULL,629 Sam Carter Road,NULL,Reynolds,31076,Ken Jones,NULL,NULL,715 Mason Terrace Road,apt 28,Perry,31069,4782582464,NULL,kentrivius@yahoo.com,kentrivius@yahoo.com,6297750,1
+c7abcd14-27-12,1,12/27/2014 12:50,12/27/2014 12:52,John,Hubbs,NULL,230 Shannon Rd.,NULL,Hendersonville,28791,John Hubbs,NULL,NULL,230 Shannon Rd.,NULL,Hendersonville,28791,828-698-8054,828-280-4909,hubcapj@gmail.com,hubcapj,436baby,0
+b4ea5114-28-12,1,12/28/2014 14:01,12/28/2014 14:02,Howard,Dalton,NULL,18455 Plantation Court Drive,NULL,Pririeville,70769-3726,Howard Dalton,NULL,NULL,18455 Plantation Court Drive,NULL,Pririeville,70769-3726,225-673-2849,225-933-2321,HLDALTON@EATEL.NET,HLDALTON@EATEL.NET,howdal,0
+700eac14-29-12,1,12/29/2014 11:29,12/29/2014 11:29,John,Tincher,NULL,125 E. Pewabic st,NULL,Ironwood,49938,John Tincher,NULL,NULL,125 E. Pewabic st,NULL,Ironwood,49938,906-932-1828,NULL,jtincher@chartermi.net,jtincher@chartermi.net,2193339,1
+91e69514-29-12,1,12/29/2014 14:19,12/29/2014 14:19,Dean R.,Larson,Capella University,1849 Windfield Drive,NULL,Munster,46321,Dean R. Larson,NULL,NULL,1849 Windfield Drive,NULL,Munster,46321-5184,2199220470,2199220470,deanlarson@larsonperformance.com,deanlarson@larsonperformance.com,3884955,1
+e1c81314-29-12,1,12/29/2014 16:19,12/29/2014 16:19,Randy,Heine,randy heine,P.O. box 3050,NULL,Carlsbad,88221-3050,Randy Heine,randy heine,NULL,P.O. box 3050,NULL,Carlsbad,88221-3050,5758878846,5753618846,randy11@bajabb.com,randy11@bajabb.com,2866834,1
+0dc70014-29-12,1,12/29/2014 17:44,12/29/2014 17:44,Charles,Huddleston,Mizpah Mount Moriah Lodge No.l 40,12030 New Halls Ferry Rd.,NULL,Florissant,63033,Charles Huddleston,Mizpah Mount Moriah Lodge No.l 40,NULL,12030 New Halls Ferry Rd.,NULL,Florissant,63033,314-401-6454,NULL,h1898@aol.com,h1898@aol.com,5378421,1
+7a100314-29-12,1,12/29/2014 17:44,12/29/2014 17:44,Charles,Huddleston,Mizpah Mount Moriah Lodge No.l 40,12030 New Halls Ferry Rd.,NULL,Florissant,63033,Charles Huddleston,Mizpah Mount Moriah Lodge No.l 40,NULL,12030 New Halls Ferry Rd.,NULL,Florissant,63033,314-401-6454,NULL,h1898@aol.com,h1898@aol.com,6469366,1
+97f82d14-29-12,1,12/29/2014 17:44,12/29/2014 17:44,Charles,Huddleston,Mizpah Mount Moriah Lodge No.l 40,12030 New Halls Ferry Rd.,NULL,Florissant,63033,Charles Huddleston,Mizpah Mount Moriah Lodge No.l 40,NULL,12030 New Halls Ferry Rd.,NULL,Florissant,63033,314-401-6454,NULL,h1898@aol.com,h1898@aol.com,4092119,1
+a2223a14-29-12,1,12/29/2014 17:44,12/29/2014 17:44,Charles,Huddleston,Mizpah Mount Moriah Lodge No.l 40,12030 New Halls Ferry Rd.,NULL,Florissant,63033,Charles Huddleston,Mizpah Mount Moriah Lodge No.l 40,NULL,12030 New Halls Ferry Rd.,NULL,Florissant,63033,314-401-6454,NULL,h1898@aol.com,h1898@aol.com,7593568,1
+a06e0f14-29-12,1,12/29/2014 17:51,12/29/2014 17:51,Charles,Huddleston,Mizpah Mount Moriah Lodge No. 40,12030 New Halls Ferry Road,NULL,Florissant,63033,Charles Huddleston,Mizpah Mount Moriah Lodge No. 40,NULL,12030 New Halls Ferry Road,NULL,Florissant,63033,314-401-6454,NULL,h1898@aol.com,chudd40,m639hud,1
+88852a14-29-12,1,12/29/2014 23:04,12/29/2014 23:04,Ted,Bolte,Star In The West #33,2524 East Burdick Expressway,NULL,Minot,58701,Ted Bolte,Star In The West #33,NULL,2524 East Burdick Expressway,NULL,Minot,58701,7013404436,NULL,blodge@minot.com,blodge@minot.com,1133314,1
+5ef57414-30-12,1,12/30/2014 7:18,12/30/2014 7:18,Richard H.,Geyer,NULL,165 N Washington Rd,NULL,West Sunbury,16061-2935,Richard H. Geyer,NULL,NULL,165 N Washington Rd,NULL,West Sunbury,16061-2935,724-637-2995,NULL,widowsson01@gmail.com,MM Richard,*021408Pollock,0
+dde4c914-30-12,1,12/30/2014 12:53,12/30/2014 12:53,Robert,Powers,NULL,47 Foxboro Drive,NULL,Rising Sun,21911,Robert Powers,NULL,NULL,47 Foxboro Drive,NULL,Rising Sun,21911,4433093024,4433093024,427pilot@zoominternet.net,427pilot@zoominternet.net,3108492,1
+70dcce14-30-12,1,12/30/2014 12:57,12/30/2014 12:57,Robert,Powers,NULL,47 Foxboro Drive,NULL,Rising Sun,21911,Robert Powers,NULL,NULL,47 Foxboro Drive,NULL,Rising Sun,21911,4433093024,4433093024,427pilot@zoominternet.net,427pilot@zoominternet.net,1668096,1
+1b92d314-30-12,1,12/30/2014 14:50,12/30/2014 14:50,Charles,Ashley,NULL,3128 Fayburrow Drive,NULL,Reynoldsburg,43068,Charles Ashley,NULL,NULL,3128 Fayburrow Drive,NULL,Reynoldsburg,43068,614-861-3425,NULL,cashley@insight.rr.com,cashley73,spectrum,0
+95ba5e14-31-12,1,12/31/2014 0:31,11/11/2016 9:45,Ronny D,Powell,NULL,3696 Highway 221 S,NULL,Laurens,293607442,Ronny D Powell,NULL,NULL,3696 Highway 221 S,NULL,Laurens,293607442,8646424189,8648716567,2b1ask1@spamex.com,Ron0742,T3z24getMSA,0
+c529ba14-31-12,1,12/31/2014 10:47,12/31/2014 10:47,Bryan,Hugerich,Kittatinny Lodge 164,Rt 206,NULL,Branchville,7869,Bryan Hugerich,NULL,NULL,335 New road,NULL,Montague,7827,973-293-8909,973-943-8989,bhuge@optonline.net,bhuge@optonline.net,6493828,1
+e07e0f14-31-12,1,12/31/2014 16:39,12/31/2014 16:39,Keith,Wilhite,NULL,2132 Vinewood,NULL,Pueblo,81005,Keith Wilhite,NULL,NULL,2132 Vinewood,NULL,Pueblo,81005,719-252-8865,NULL,kwilhitefamily@comcast.net,kwilhitefamily@comcast.net,think1234,0
+82b9fe15-01-01,1,1/1/2015 12:22,1/1/2015 12:22,Neil,Coy,"Neil T. Coy, Sr.",146 N. Elmira Street,NULL,Athens,810-1325,Neil Coy,"Neil T. Coy, Sr.",NULL,146 N. Elmira Street,NULL,Athens,810-1325,5708888090,5704232468,lodge70sec89@yahoo.com,xanto1,Hdng0430,0
+7e514215-03-01,1,1/3/2015 11:43,1/3/2015 11:43,Bradley,Ottum,Bradley Ottum,4556 Benderville Rd,NULL,Green Bay,54311,Bradley Ottum,NULL,NULL,4556 Benderville Rd,NULL,Green Bay,54311,920-866-9474,NULL,bradottum@gmail.com,bradottum@gmail.com,9686911,1
+fb5f1815-03-01,1,1/3/2015 16:02,1/3/2015 16:02,Brian K. ,Phelps,NULL,155 Carl Drive,NULL,Plymouth,27962,Brian K. Phelps,NULL,NULL,155 Carl Drive,NULL,Plymouth,27962,(252)809-2458,(252)809-2458,bluegrassboy@hotmail.com,bluegrassboy@hotmail.com,4723011,1
+0e6aa415-04-01,1,1/4/2015 11:21,1/4/2015 11:21,Carl,Hoecker,NULL,8703 Eaglebrook Ct,NULL,Alexandria,22308,Carl Hoecker,NULL,NULL,8703 Eaglebrook Ct,NULL,Alexandria,22308,7037806967,NULL,Carl.hoecker@me.com,Carl.hoecker@me.com,9456055,1
+21908615-04-01,1,1/4/2015 15:53,1/4/2015 15:53,Keith ,Plummer ,NULL,10150 S Bullet Prairie Rd,NULL,Tishomingo,73460,Keith Plummer ,NULL,NULL,10150 S Bullet Prairie Rd,NULL,Tishomingo,73460,4059907391,NULL,Orionranch1@yahoo.com,Kplummer ,atp1225,0
+aeda1f15-04-01,1,1/4/2015 20:27,1/4/2015 20:27,Michael,Jaffee,NULL,515 Lego Dr.,NULL,Charlottesville,22911,Michael Jaffee,NULL,NULL,515 Lego Dr.,NULL,Charlottesville,22911,210-316-6753,NULL,michael.jaffee@gmail.com,michael.jaffee@gmail.com,9796420,1
+665bd315-04-01,1,1/4/2015 20:58,1/4/2015 20:58,Andrew,Spencer,NULL,312 WILLIS RD,NULL,FRANKLIN,23851,Andrew Spencer,NULL,NULL,312 WILLIS RD,NULL,FRANKLIN,23851,7577053441,7577053441,spencerap@gmail.com,APSpencer,tZ58C0Beu!32VoU#,0
+06b7d415-04-01,1,1/4/2015 22:05,1/4/2015 22:05,Merle,Wade,NULL,501 Country Club PL,NULL,Gadsden,35901,Merle Wade MD,Clinical Urology Associates,NULL,713 Goodyear Ave,NULL,Gadsden,35903,2564131944,NULL,merle.wade@gmail.com,medstudy,cham98,0
+59101215-05-01,1,1/5/2015 10:29,1/5/2015 10:29,Robert,Henson,NULL,PO Box 709,NULL,Hearne,77859,Robert Henson,NULL,NULL,PO Box 709,NULL,Hearne,77859,9792795889,9792202976,rlhenson@hotmail.com,mhenson,tyler95,0
+cbcec315-05-01,1,1/5/2015 18:15,1/5/2015 18:15,Sott,Ford,NULL,2229 Ironwood Dr. SW,NULL,Altoona,50009,Sott Ford,NULL,NULL,2229 Ironwood Dr. SW,NULL,Altoona,50009,641-521-5520,6410-521-5520,catfishford1@gmail.com,catfishford1@gmail.com,9537882,1
+cea65d15-05-01,1,1/5/2015 18:22,1/5/2015 18:22,Chris,Tilley,NULL,809 Misty morning ct.,NULL,O'fallon,63366,Chris Tilley,NULL,NULL,809 Misty morning ct.,NULL,O'fallon,63366,636-379-2076,NULL,Ctilley52@yahoo.com,Ctilley52@yahoo.com,1349166,1
+7f252a15-05-01,1,1/5/2015 22:46,1/5/2015 22:46,Samuel,Wade,NULL,12 Grasshopper Lane,NULL,Acton,1720,Samuel Wade,NULL,NULL,12 Grasshopper Lane,NULL,Acton,1720,9786350906,9788447515,samwadema@aol.com,samwadema@aol.com,6234912,1
+92e59b15-06-01,1,1/6/2015 12:48,1/6/2015 12:48,Kenyon ,Killinger,Mid-Century Lodge 725,32845 Lake Rd,NULL,Avon Lake,44012,Kenyon Killinger,Mid-Century Lodge 725,NULL,32845 Lake Rd,NULL,Avon Lake,44012,440-933-4663,NULL,vekakych@gmail.com,vekakych@gmail.com,1846548,1
+a48e9b15-06-01,1,1/6/2015 13:31,1/6/2015 13:31,Karl,Hargis,Deer Creek Lodge No. 510,8904 County Road 612,NULL,Mansfield,76063,Karl Hargis,Deer Creek Lodge No. 510,NULL,8904 County Road 612,NULL,Mansfield,76063,817-296-9697,817-296-9697,Karl@DeerCreek510.org,Karl@DeerCreek510.org,7970683,1
+7e4b2f15-06-01,1,1/6/2015 23:35,3/7/2015 7:12,Steven,Schmidt,Steven H Schmidt,450 Boatdock Road,P.O Box 281,Lakeview,72642,Steven Schmidt,Yellville Lodge 117,NULL,450 Boatdock Road,Box 1,Lakeview,72642,5803052491,5803052491,smcsw@yahoo.com,smcswusn,Nofear@1,0
+61c30d15-10-01,1,1/10/2015 15:46,1/10/2015 15:47,Jim,Parham,NULL,3897 E. 72nd St.,NULL,Tulsa,74136,Jim Parham,NULL,NULL,3897 E. 72nd St.,NULL,Tulsa,74136,918-694-3401,918-694-3401,parhamjim@aol.com,parhamjim,jp1943,0
+962a1915-10-01,1,1/10/2015 19:47,1/10/2015 19:47,John,Bartlett,NULL,1811 Fifth Ave.,NULL,Folsom,19033,John Bartlett,NULL,NULL,1811 Fifth Ave.,NULL,Folsom,19033,4848027425,4848027425,jbart17@gmail.com,jbart17,PePPer17,0
+a24d4915-10-01,1,1/10/2015 19:56,1/10/2015 19:56,Randy,Hudson,NULL,1327 Hintz Rd,NULL,Sealy,77474,Randy Hudson,NULL,NULL,1327 Hintz Rd,NULL,Sealy,77474,713-446-4680,NULL,ibrandyubu@hotmail.com,ibrandyubu@hotmail.com,2510878,1
+5ee7a915-12-01,1,1/12/2015 12:08,1/12/2015 12:08,Daniel,Streeter,NULL,13 Ravine drive,NULL,Newton,7860,Daniel Streeter,NULL,NULL,13 Ravine drive,NULL,Newton,7860,973-579-5247,973-886-4280,dstreeter@centurylink.net,dstreeter@centurylink.net,1701822,1
+10414f15-13-01,1,1/13/2015 16:07,1/13/2015 16:13,Herbert,Davis,NULL,11994 Ferndale Street,NULL,Philadelphia,19116,Herbert Davis,NULL,NULL,11994 Ferndale Street,NULL,Philadelphia,19116,215 969 8342,215 450 3559,bartdavis615@comcast.net,bartanellie,bart96,0
+53e89715-14-01,1,1/14/2015 16:28,1/14/2015 16:28,John,Beringer,Martinez Lodge 41,P.O. Box 2221,NULL,Martinez,94553,John Beringer,Martinez Lodge 41,NULL,22 Kilgo Court,NULL,Pleasant Hill,94523,925 933-7494,NULL,Jbernger@comcast.net,Jberinger,5kbdrs,0
+2c715315-15-01,1,1/15/2015 8:22,1/31/2016 12:59,Michael,Thoms,NULL,1132 16th Avenue,NULL,Saint Paul Park,55071,Michael Thoms,NULL,NULL,1132 16th Avenue,NULL,Saint Paul Park,55071,651-335-4685,NULL,mtthoms@yahoo.com,Michael Thoms,Jacobthoms1!,0
+9a89ae15-15-01,1,1/15/2015 13:59,1/15/2015 14:18,Jacob,Dermott,NULL,1 Arbor Ct,NULL,Nappanee,46550,Jacob Dermott,NULL,NULL,1 Arbor Ct,NULL,Nappanee,46550,574-773-4887,NULL,jdermott@embarqmail.com,dermott,dermott1,0
+51bd6d15-15-01,1,1/15/2015 17:35,1/15/2015 17:35,Robin,Entrekin,NULL,507 Musgrove St,NULL,Clinton,29325,Robin Entrekin,NULL,NULL,507 Musgrove St,NULL,Clinton,29325,864-833-2771,864-923-6576,entrekinr@bellsouth.net,entrekinr@bellsouth.net,9918767,1
+90598315-16-01,1,1/16/2015 12:18,1/16/2015 12:18,Jack,VanElzakker,Valley of Rochester,811 Ayrault Rd. suite 3,NULL,Fairport,14450,Jack VanElzakker,Valley of Rochester,NULL,811 Ayrault Rd. suite 3,NULL,Fairport,14450,585-425-0033,NULL,Secretary@valleyofrochester.org,Secretary@valleyofrochester.org,1843348,1
+d8497715-17-01,1,1/17/2015 12:43,1/17/2015 12:43,Bob,Baker,NULL,47 Dunwoodie Road,NULL,Glenmont,12077,Bob Baker,NULL,NULL,47 Dunwoodie Road,NULL,Glenmont,12077,5184391149,5188578187,guttenbergbob@gmail.com,guttenbergbob@gmail.com,baker1965,1
+eef80415-17-01,1,1/17/2015 13:31,2/10/2016 10:06,Jeff,Bowman,NULL,2824 S Stoneridge Drive,NULL,Blue Springs,64015,Jeff Bowman,NULL,NULL,2824 S Stoneridge Drive,NULL,Blue Springs,64015-7356,8162203260,8163650365,jpb3141@gmail.com,JPB3141,Bothrops99,0
+824d2115-17-01,1,1/17/2015 16:19,1/17/2015 16:19,Kenneth,Compton,NULL,PO Box 1165,NULL,Estero,33929,Kenneth Compton,NULL,NULL,PO Box 1165,NULL,Estero,33929,2395645539,2395645539,k816c@yahoo.com,k816c@yahoo.com,1856070,1
+7c1bac15-19-01,1,1/19/2015 12:57,1/19/2015 12:57,phil ,terrell,NULL,673 county road 586,NULL,rogersville ,35652,phil terrell,NULL,NULL,673 county road 586,NULL,rogersville ,35652,2564124515,2564124515,p.e.terrell@att.net,p.e.terrell@att.net,5658017,1
+9aab5b15-20-01,1,1/20/2015 10:48,1/20/2015 10:48,James,Rogerson,NULL,2310 Little Bear Court,NULL,Euless,76039,James Rogerson,NULL,NULL,2310 Little Bear Court,NULL,Euless,76039,817-471-3140,214-675-7831,j.rogerson@sbcglobal.net,j.rogerson@sbcglobal.net,4933950,1
+2c83c515-20-01,1,1/20/2015 14:30,1/20/2015 14:30,Jamal,Anglin,NULL,25312 136th AVE SE,NULL,Kent,98042,Jamal Anglin,NULL,NULL,25312 136th AVE SE,NULL,Kent,98042,253-250-1327,NULL,jamalanglin@gmail.com,jamalanglin@gmail.com,7791054,1
+db101a15-22-01,1,1/22/2015 12:42,1/22/2015 12:42,Steven,Schmidt,NULL,450 Boatdock Road,NULL,Lakeview,72642,Steven Schmidt,Yellville lodge 117,NULL,450 Boatdock Road,P.O Box 281,Lakeview,72642,5803052491,5803052491,smcswusn@gmail.com,smcmsw,B641460,0
+66454c15-22-01,1,1/22/2015 14:25,1/22/2015 14:25,Ryan,Shaw,B-L Leesville Lodge 138,957 Calks Ferry Rd,NULL,Lexington,29072,Ryan SHaw,B-L Leesville Lodge 138,NULL,957 Calks Ferry Rd ,NULL,Lexington,29072,803-206-0785,803-206-0785,ryan.m.shaw.mil@gmail.com,ryan.m.shaw.mil@gmail.com,4458610,1
+3ceb8815-22-01,1,1/22/2015 17:40,1/22/2015 17:40,Alan,Metts,A Metts,P. O. Box 17673,NULL,San Antonio,78217,A Metts,NULL,NULL,382 Gayle Ave.,NULL,San Antonio,78223,210-373-5418,210-373-5418,alanpmetts@gmail.com,alanpmetts,Linadity2,0
+38367015-22-01,1,1/22/2015 21:58,1/22/2015 21:58,Scott,Blosser,NULL,335 Serenity Road,NULL,Wheeling,26003,Scott Blosser,NULL,NULL,335 Serenity Road,NULL,Wheeling,26003,3046509559,3046509559,scottblosser@comcast.net,scottblosser,Sampson7162,0
+eccfda15-22-01,1,1/22/2015 22:57,1/22/2015 22:57, Sonny, Dixon,NULL,225 Fred Hall Rd,NULL, Gordon,31031, Sonny Dixon,NULL,NULL,225 Fred Hall Rd,NULL, Gordon,31031,478 628 2820,NULL,widixoniii@yahoo.com,widixoniii@yahoo.com,9218214,1
+2421bb15-23-01,1,1/23/2015 14:25,1/23/2015 14:25,Clay,Garrison,NULL,P.O.Box 3,NULL,La Porte,77572,Clay Garrison,NULL,NULL,P.O.Box 3,NULL,La Porte,77572,713-517-5710,713-517-5710,garrison6931@gmail.com,garrison6931,cg6931gcso,0
+7243fe15-26-01,1,1/26/2015 13:05,1/26/2015 13:05,Ben,Smith,none,442 Lakemont Drive,NULL,Chapin,29036,Ben Smith,none,NULL,442 Lakemont Drive,NULL,Chapin,29036,224-637-0298,224-637-0298,benmason32@gmail.com,benmason32@gmail.com,RmeAv8r1,0
+3550db15-26-01,1,1/26/2015 18:58,1/26/2015 18:58,David,Pearson,NULL,13917 23rd Avenue SE,NULL,Mill Creek,98012,David Pearson,NULL,NULL,13917 23rd Avenue SE,NULL,Mill Creek,98012,425-344-9539,425-344-9539,dlpearson@gmail.com,dlpearson,lodge243,0
+ee0e9015-26-01,1,1/26/2015 21:24,1/26/2015 21:24,Brent,Ford,NULL,552 Moreboro Rd,NULL,Hatboro,19040,Brent Ford,NULL,NULL,552 Moreboro Rd,NULL,Hatboro,19040,2154707100,NULL,Brent_Ford_TAMU@yahoo.com,brentford,money1,0
+cab8a415-27-01,1,1/27/2015 9:32,1/27/2015 9:32,Peter,Pagani,NULL,22756 Red Bay Lane,NULL,Milton,19968,Peter Pagani,NULL,NULL,22756 Red Bay Lane,NULL,Milton,19968,302-253-8546,201-650-9116,pepagani@aol.com,pepagani,emerald5451,0
+6554e815-27-01,1,1/27/2015 13:38,1/27/2015 13:38,Carroll,Campbell,Silentia Lodge 168 NJ,c/o 87 Bartholdi Ave,NULL,Butler,7405,Carroll Campbell,Silentia Lodge 168 NJ,NULL,c/o 87 Bartholdi Ave,NULL,Butler,7405,973 838 9529,973 617 6868,cjcampbellnj@optonline.net,silentia168NJ,cjcampbellnj,0
+662fb115-27-01,1,1/27/2015 23:48,1/27/2015 23:49,Francisco,Zaragoza,SSA,7922 stewart and gray ,apt 10,downey,90241,Francisco Zaragoza,SSA,NULL,7922 stewart and gray ,apt 10,downey,90241,562 3347197,562 3347197,fzaragoza9@gmail.com,chidogalan,jaguares1,0
+8b9c6b15-27-01,1,1/27/2015 23:48,2/24/2015 14:17,M. David ,Gilbreath ,NULL,117 Lock Seven Lane,NULL,Carthage,37030,M. David Gilbreath ,NULL,NULL,117 Lock Seven Lane,NULL,Carthage,37030,615-489-5281,615-489-5281,mdgilbreath@gmail.com,gatnmason,pooh1964,0
+81ac2915-28-01,1,1/28/2015 9:13,1/28/2015 9:14,Richard,Martindale,Richard Martindale,PO Box 109,NULL,Boutte,70039,Richard Martindale,Richard Martindale,NULL,PO Box 109,NULL,Boutte,70039,504 416 4033,504 416 4033,chiefnharry@yahoo.com,chiefnkat,ndnjan1941,0
+c5faaa15-28-01,1,1/28/2015 11:46,1/28/2015 11:46,Roy,Berggren,Oriental Lodge 20,P.O.Box 123,NULL,Mesa,85211,Roy Berggren,NULL,NULL,2450 E. Carol Ave.,NULL,Mesa,85204,480-962-0232,NULL,secretary@oriental20.com,secretary@oriental20.com,8467125,1
+8978b715-28-01,1,1/28/2015 15:59,1/28/2015 15:59,Jimmy,Hunt,Jimmy M Hunt Jr,331-1 Metro Circle,NULL,Wilmington,28401,Jimmy Hunt,Jimmy M Hunt Jr,NULL,331-1 Metro Circle,NULL,Wilmington,28401,9107903661,9104437941,marty.hunt@absolutewalls.com,martyh,whiteeagle,0
+8f1e3d15-30-01,1,1/30/2015 12:22,1/30/2015 12:22,John,Church,NULL,1425 Concord Ln,NULL,Altus,73521,John Church,NULL,NULL,1425 Concord Ln,NULL,Altus,73521,580-471-3670,580-471-3670,secretary@altuslodge62.com,churchj,poiu0987,0
+527df015-30-01,1,1/30/2015 16:27,1/30/2015 16:27,Robert,Blankenhorn,Venus lodge #152,1250 Middle Bellville Rd,NULL,Mansfield,44904,Robert Blankenhorn,Venus lodge #152,NULL,1250 Middle Bellville Rd,NULL,Mansfield,44904,4195892174,4195641592,Rblankenhorn@neo.rr.com,rbassetthound,pkiswife1,0
+e9304a15-31-01,1,1/31/2015 6:26,1/31/2015 6:26,Shelton,Lattimore,NULL,161 Explorer Dr.,NULL,Cope,29038,Shelton Lattimore,NULL,NULL,161 Explorer Dr.,NULL,Cope,29038,8035311894,8033785130,jlattimore@scana.com,jlattimore@scana.com,7377712,1
+91425e15-31-01,1,1/31/2015 17:02,1/31/2015 17:02,Michael,Holeman,NULL,406 N Bradley,NULL,Caney,67333,Michael Holeman,NULL,NULL,406 N Bradley,NULL,Caney,67333,620-306-1508,620-306-1508,mikeholeman@yahoo.com,mikeholeman@yahoo.com,6415220,1
+e79b4715-01-02,1,2/1/2015 0:16,2/1/2015 0:16,R W,Smith,NULL,117 Adams Trail Circle,NULL,Mount Holly,28120-1235,R W Smith,NULL,NULL,117 Adams Trail Circle,NULL,Mount Holly,28120-1235,704-629-8258,704-629-8258,rwsmith@rwsmith.net,rwsmith,0LaA1iKi8FVRiowXbvbs,0
+097a6815-01-02,1,2/1/2015 0:25,2/1/2015 0:25,R W,Smith,"Mount Holly Lodge No. 544, AF&AM",PO Box 794,NULL,Mount Holly,28120-0794,"R W Smith, PM, Secretary","Mount Holly Lodge No. 544, A. F. & A. M.",NULL,117 Adams Trail Circle,NULL,Mount Holly,28120-1235,704-237-0544,704-237-0544,RWSmith@MHL544.org,MHL544,JdFqXVyUJWhoMWZmLYCR,0
+8ab0fc15-01-02,1,2/1/2015 21:44,2/1/2015 21:44,Eric,Gamble,NULL,4012 Jasper Street,NULL,Metairie,70002,Eric Gamble,NULL,NULL,4012 Jasper Street,NULL,Metairie,70002,(504)454-0449,NULL,Dr.g.dcc@gmail.com,Dr.g.dcc@gmail.com,8977084,1
+e8fd3915-02-02,1,2/2/2015 1:01,2/2/2015 1:01,Bill,Meyer,NULL,110 Franklin Ave.,NULL,La Grange,40031,Bill Meyer,NULL,NULL,110 Franklin Ave.,NULL,La Grange,40031,502-222-1761,NULL,billmeyer@twc.com,billmeyer@twc.com,4544014,1
+f4670a15-02-02,1,2/2/2015 21:16,2/2/2015 21:16,Andrew ,Swicegood,NULL,191 County Road 299,NULL,Sweetwater,37874,Sweetwater Lodge 292,NULL,NULL,191 County Road 299,NULL,Sweetwater,37874,4233712108,4233712108,andy@swicegood.com,andyswicegood,DIMwit01438,0
+5923e815-03-02,1,2/3/2015 17:15,2/3/2015 17:15,travis,bohannon,NULL,4860 tortuga trail,NULL,wichita falls,76309,travis bohannon,NULL,NULL,4860 tortuga trail,NULL,wichita falls,76309,9402321050,NULL,travis.bohannon@sbcglobal.net,travis.bohannon@sbcglobal.net,7773580,1
+86725115-04-02,1,2/4/2015 14:29,2/4/2015 14:29,Frederick,Scozzafava,NULL,22 Park St.,NULL,Gouverneur,13642,Frederick Scozzafava,NULL,NULL,22 Park St.,NULL,Gouverneur,13642,315-486-4502,315-486-4502,fredscozzafava@hotmail.com,fredscozzafava@hotmail.com,6627653,1
+001ce515-05-02,1,2/5/2015 9:41,2/5/2015 9:42,Raymond,Heinrich,NULL,251 Kimball Road,NULL,Concord,24538,Raymond Heinrich,NULL,NULL,251 Kimball Road,NULL,Concord,24538,434993365,4349419034,rtheinrich@verizon.net,rtheinrich,Prime55,0
+399b1715-05-02,1,2/5/2015 19:25,2/5/2015 19:25,Matthew,Lewis,NULL,70538 Abita Ave,NULL,Mandeville,70471,Matthew Lewis,NULL,NULL,70538 Abita Ave,NULL,Mandeville,70471,9859661346,9859661346,mattlewis74@gmail.com,lasheepdog,freemas0n,0
+5b9eea15-06-02,1,2/6/2015 6:56,2/6/2015 6:56,Charlie,Babb,NULL,1300 Jamestown,NULL,Edmond,73003,Charlie Babb,NULL,NULL,1300 Jamestown,NULL,Edmond,73003,4052104441,4052104441,ckbabb@sbcglobal.net,ckbabb@sbcglobal.net,5358938,1
+4bc42d15-06-02,1,2/6/2015 13:41,2/6/2015 13:41,Reid,Gardiner,Grand Lodge of Montana,PO Box 1158,NULL,Helena,59624,Reid Gardiner,Grand Lodge of Montana,NULL,425 N Park Ave,NULL,Helena,59601,4064427774,4064427774,mtglsec@grandlodgemontana.org,mtglsec,visionary,0
+0c34b115-06-02,1,2/6/2015 16:24,2/6/2015 16:24,Jerald,Boyd,Prineville Lodge 76 (OR),10311 SE Juniper Canyon Road,NULL,Prineville,97754,Jerald Boyd,Prineville Lodge 76 (OR),NULL,10311 SE Juniper Canyon Road,NULL,Prineville,97754,541 416-0883,NULL,mykokopelli@aol.com,mykokopelli@aol.com,9892985,1
+eb553315-07-02,1,2/7/2015 10:42,7/9/2016 9:10,Shelton,Lattimore,NULL,161 Explorer Dr.,NULL,Cope,29038,Shelton Lattimore,NULL,NULL,161 Explorer Dr.,NULL,Cope,29038,8035311894,8035311894,jlattimore@scana.com,copecatman,Jayden08,0
+e18e2215-07-02,1,2/7/2015 11:48,5/19/2016 17:09,James,Robinson,Spearfish Masonic Lodge # 18,3355 E Colorado Blvd,NULL,Spearfish,57783,James Robinson,Spearfish Masonic Lodge # 18,NULL,3355 E Colorado Blvd,NULL,Spearfish,57783,(605) 641-2999,(605) 641-2999,JR007089@aol.com,spmasons,msamasons,0
+f4bf5315-08-02,1,2/8/2015 14:34,2/8/2015 14:34,Jerald,Boyd,Prineville Lodge 76 (OR(,10311 SE Juniper Canyon Road,NULL,Prineville,97754,Jerald Boyd,Prineville Lodge 76 (OR(,NULL,10311 SE Juniper Canyon Road,NULL,Prineville,97754,541 416-0883,541 420-4837,mykokopelli@aol.com,mykokopelli@aol.com,8769064,1
+54e0d115-08-02,1,2/8/2015 14:41,2/8/2015 14:41,Jerald,Boyd,Prineville Lodge 76,10311 SE Juniper Canyon Road,NULL,Prineville,97754,Jerald Boyd,Prineville Lodge 76,NULL,10311 SE Juniper Canyon Road,NULL,Prineville,97754,541 416-0883,541 420--4837,mykokopelli@aol.com,mykokopelli@aol.com,9777559,1
+04c1d015-08-02,1,2/8/2015 17:45,2/8/2015 17:45,Kevin,Rentz,NULL,PO Box 535,NULL,Callahan,32011,Kevin Rentz,NULL,NULL,PO Box 535,NULL,Callahan,32011,904-583-9396,NULL,callahan32sec@gmail.com,Callahan32sec,Onthelevel,0
+d5e08315-08-02,1,2/8/2015 19:29,2/8/2015 19:29,Lyle,Hubbard,NULL,1123 S. 15th Place,NULL,Milwaukee,53204,Lyle Hubbard,NULL,NULL,1123 S. 15th Place,NULL,Milwaukee,53204,4146472013,4144910348,lhubbard291@msn.com,lhubbard291@msn.com,9284138,1
+622d4315-08-02,1,2/8/2015 21:51,2/8/2015 21:51,Robert,Smith,Lebanon Lodge #116,118 Fairfield Street,NULL,Oakland,4963,Robert Smith,Lebanon Lodge #116,NULL,118 Fairfield Street,NULL,Oakland,4963,2074659694,2076923337,Rmsmith95@roadrunner.com,rmsmith95,airwolf1,0
+ac229615-09-02,1,2/9/2015 12:47,2/9/2015 12:47,Sam,Opresik,NULL,W7525 Point Road,NULL,Phillips,54555-6753,Sam Opresik,NULL,NULL,W7525 Point Road,NULL,Phillips,54555-6753,715-339-2491,NULL,opresik@pctcnet.net,opresik@pctcnet.net,6932533,1
+28fd2015-12-02,1,2/12/2015 16:40,2/12/2015 16:40,Andrew ,Pachefsky,NULL,1904 E Kenmore Pl,NULL,Shorewood,53211,Andrew Pachefsky,NULL,NULL,1904 E Kenmore Pl,NULL,Shorewood,53211,414-687-7646,NULL,arpbentleys2@gmail.com,arpbentleys2@gmail.com,7258788,1
+bce04815-13-02,1,2/13/2015 1:37,3/24/2015 16:24,Michael,Perez,NULL,86-23 115 street,NULL,Richmond Hill,11418,Michael Perez,NULL,NULL,86-23 115 street,NULL,Richmond Hill,11418,7183146199,7183146199,micha3lp3r3z@gmail.com,americalodge284,wmedaccardi,0
+f09f4515-13-02,1,2/13/2015 9:05,2/13/2015 9:05,melvin,stimmel,NULL,32 whisconier vlg,NULL,brookfield,06804-3821,melvin stimmel,NULL,NULL,32 whisconier vlg,NULL,brookfield,06804-3821,203-775-4430,NULL,mstimmel@biodel.com,mstimmel@biodel.com,4358354,1
+4b2d1115-13-02,1,2/13/2015 11:14,2/13/2015 11:14,Riley ,Miller,Riley C. Miller,PO Box 311284,NULL,New Braunfels,78131,Riley Miller,Riley C. Miller,NULL,PO Box 311284,NULL,New Braunfels,78131,830-660-7655,NULL,rcmiller268@gmail.com,rcmiller268,heo48geh,0
+73a13f15-15-02,1,2/15/2015 11:34,2/15/2015 11:34,Mark,Angstrom,NULL,7636 Mandarin Drive,NULL,Boca Raton,33433,Mark Angstrom,NULL,NULL,7636 Mandarin Drive,NULL,Boca Raton,33433,(954) 817-7093,(954) 817-7093,mangstrom@angstromgraphics.com,mangstrom@angstromgraphics.com,SeaMra070667,0
+11a68015-16-02,1,2/16/2015 13:41,2/16/2015 14:24,Reginald,Davis,NULL,320 Louisa Avenue,NULL,Saint Louis,63135,Reginald Davis,NULL,NULL,224 North Highway 67,Suite 288,Florissant,63031,3145666418,3145666418,rj_davis@swbell.net,pmdavis12,egl12daV!5,0
+75814015-16-02,1,2/16/2015 14:07,5/5/2015 23:49,Hubert,Semeleer,Hubert Semeleer,Piedra Plat 55D,NULL,Aruba DUTCH CARIBBEAN,------------,Hubert Semeleer,Hubert Semeleer,NULL,Piedra Plat 55D,NULL,Aruba DUTCH CARIBBEAN,------------,(297)5859710,(297)5637484,hubsem@gmail.com,hubsem,arubariba24,0
+0abe7815-17-02,1,2/17/2015 16:35,2/17/2015 16:35,Zach,Holmes,NULL,PO Box 34,NULL,Loachapoka,36865-0034,Zach Holmes,NULL,NULL,PO Box 34,NULL,Loachapoka,36865-0034,2563101953,2563101953,zachholmes32@gmail.com,zachholmes32@gmail.com,6086287,1
+1ea08615-17-02,1,2/17/2015 22:17,5/25/2015 19:32,David,Eschrich,NULL,917 Haymarket Dr.,NULL,Lakeland,33809,David Eschrich,NULL,NULL,917 Haymarket Dr.,NULL,Lakeland,33809,863.858.0769,863.640.0612,david@eschrich.com,davideschrich,helena45,0
+58ca5a15-18-02,1,2/18/2015 9:40,2/18/2015 9:40,Robert,Taupier,Robert Taupier,75 Lamplighter Drive,NULL,Shrewsbury,1545,Robert Taupier,Robert Taupier,NULL,75 Lamplighter Drive,NULL,Shrewsbury,1545,508-330-2306,NULL,rwtaupier@gmail.com,rwtaupier@gmail.com,3038398,1
+b9683315-18-02,1,2/18/2015 14:27,2/18/2015 14:27,juan,santiago,Delight in God Universal life mission,56 Geogia King Village,NULL,newark,7107,juan santiago,Delight in God Universal life mission,NULL,56 Geogia King Village,NULL,newark,7107,8625769151,8625769151,juan.delightauto.santiago@gmail.com,delightful1,stressfree,0
+739fbe15-19-02,1,2/19/2015 8:35,2/19/2015 8:35,Mitch,Mertes,NULL,"6003 West Overland Rd., Ste 302",NULL,Boise,83709,Mitch Mertes,NULL,NULL,P.O. Box 15432,NULL,Boise,83715-5432,208-489-1985,208-724-9482,mitchellmertes@hotmail.com,mitchellmertes,M@relms1,0
+4528b515-19-02,1,2/19/2015 15:34,2/19/2015 15:34,KEITH ,Cooper,NULL,5516 w pueblo ave,NULL,Phoenix ,85043,KEITH Cooper,NULL,NULL,5516 w pueblo ave,NULL,Phoenix ,85043,6232024582,6232024582,Funky2ya@gmail.com,Funky2ya,koopa911,0
+05008115-19-02,1,2/19/2015 17:20,2/19/2015 17:20,Don,Helberg,Montezuma Lodge No. 1,431 Paseo de Peralta,NULL,Santa Fe,87501,Don Helberg,NULL,NULL,45 Cerro Del Alamo,NULL,Santa Fe,87507,505-982-0971,505-470-1807,hiram@montezumalodge.org,hiram@montezumalodge.org,Soloman#33,0
+0b658315-21-02,1,2/21/2015 19:35,2/21/2015 19:35,Charles,White,NULL,93 2nd Ave,NULL,Midway,31320,Charles White,NULL,NULL,93 2nd Ave,NULL,Midway,31320,9126875107,9126875107,joker12179@aol.com,joker12179@aol.com,7219231,1
+eb2a8815-22-02,1,2/22/2015 14:23,2/22/2015 14:23,Michael,Yedinak,NULL,21117 MOUNT EVANS CT,NULL,RENO,89508-8098,Michael R. Yedinak,NULL,NULL,21117 MOUNT EVANS CT,NULL,RENO,89508-8098,(775) 622-3309,307-389-9184,mryedinak@excite.com,mryediank,muskov66,0
+1e16da15-24-02,1,2/24/2015 14:02,2/24/2015 14:02,M. David,Gilbreath,NULL,117 Lock Seven Lane,NULL,Carthage,37030,M. David Gilbreath,NULL,NULL,117 Lock Seven Lane,NULL,Carthage,37030,6154895281,6154895281,mdgilbreath@gmail.com,mdgilbreath@gmail.com,4971742,1
+b110bc15-24-02,1,2/24/2015 17:10,2/24/2015 17:10,Edwin,Berroa,NULL,1563 Metropolitan Avenue ,Apt 7E,Bronx,10462,Edwin Berroa,NULL,NULL,1620 Parker St Apt 3,NULL,Bronx,10462,6463727897,6463727897,edwin.berroa@gmail.com,eberroa,cana1931,0
+27dc7e15-25-02,1,2/25/2015 9:19,2/25/2015 9:21,eslam,aldbse,NULL,كاليفورنيا مترو,NULL,كاليفرنيا,66,eslam aldbse,NULL,NULL,شارع عين شمس,NULL, كاليفورنيا,66,1150275253,eslam,eslamaldbse@yahoo.com,eslamaldbse,1121073,0
+07188315-26-02,1,2/26/2015 0:14,2/26/2015 0:14,Secretary,Bellflower No. 320,Bellflower Masonic Lodge No.320,9813 Beach St.,NULL,Bellflower,90706,Secretary Bellflower No. 320,Bellflower Masonic Lodge No.320,NULL,9813 Beach St.,NULL,Bellflower,90706,(562) 866-4953,NULL,secretary@bellflower320.org,BML320SEC,9813beach,0
+c744d415-26-02,1,2/26/2015 13:14,2/26/2015 13:14,Andrew,BE,NULL,PO Box 1867,NULL,Grand Junction,81502,Andrew BE,NULL,NULL,PO Box 1867,NULL,Grand Junction,81502,9702705760,NULL,andrew@thinkmotus.com,andrew@thinkmotus.com,7581522,1
+d944ed15-26-02,1,2/26/2015 14:34,2/26/2015 14:34,Marcus,Dugger,NULL,3416 Estes Park Dr.,NULL,Snellville,30039,Marcus Dugger,NULL,NULL,3416 Estes Park Dr.,NULL,Snellville,30039,770-985-4423,770-596-0311,mdugg@bellsouth.net,mdugg@bellsouth.net,9348067,1
+8cd7cf15-26-02,1,2/26/2015 19:04,2/26/2015 19:07,John,Tabb,JOHN TABB,172 South Main St,Apt 107,Batavia,14020,John Tabb,JOHN TABB,NULL,172 South Main St,Apt 107,Batavia,14020,5853316746,NULL,jbtabb111@yahoo.com,johntabb,Alieda1994,0
+05f6ba15-27-02,1,2/27/2015 8:25,2/27/2015 8:25,Richard,Martindale,Richard Martindale,PO Box 109,NULL,Boutte,70039,Richard Martindale,Richard Martindale,NULL,PO Box 109,NULL,Boutte,70039,504 416 4033,504 416 4033,chiefnharry@yahoo.com,chiefnharry@yahoo.com,8831431,1
+54724815-28-02,1,2/28/2015 10:20,2/28/2015 10:20,Kevin,Stogner,Kevin's crib,3324 Maplewood dr,NULL,North Augusta,29841,Kevin Stogner,Kevin's crib,NULL,3324 Maplewood dr,NULL,North Augusta,29841,843.687.5698,NULL,Kevinstogner@yahoo.com,Kevinstogner@yahoo.com,5882095,1
+d5d6a615-28-02,1,2/28/2015 12:17,2/28/2015 12:17,Vincent,Capone,#NAME?,318 Brookline Ave.,NULL,Cherry Hill,8002,Vincent Capone,#NAME?,NULL,318 Brookline Ave.,NULL,Cherry Hill,8002,8564141444,6092063078,acgypsy12@aol.com,acgypsy12@aol.com,7528048,1
+ca650715-28-02,1,2/28/2015 23:26,3/2/2015 9:57,Jerrick,Simbol,NULL,10550 Haverhill Lane,NULL,Huntley,60142,Jerrick Simbol,NULL,NULL,10550 Haverhill Lane,NULL,Huntley,60142,2248584721,NULL,simbolj@hotmail.com,jsimbol,nunda169,0
+8463b715-01-03,1,3/1/2015 3:00,3/1/2015 3:00,Owen,Shieh,NULL,"98-1457 Kaahumanu St., Apt. F",NULL,Aiea,96701,Owen Shieh,NULL,NULL,"98-1457 Kaahumanu St., Apt. F",NULL,Aiea,96701,3212129905,3212129905,owen.shieh@gmail.com,oshieh,heliamphora5,0
+44dd5e15-01-03,1,3/1/2015 8:27,3/1/2015 8:27,Robert,Groves,NULL,2271 Skint Chestnut Drive,NULL,Lithia Springs,30122,Robert Groves,NULL,NULL,2271 Skint Chestnut Drive,NULL,Lithia Springs,30122,7708279934,7708279934,nb4f@live.com,nb4f@live.com,1012276,1
+fec48215-01-03,1,3/1/2015 22:53,3/1/2015 22:53,Michael,Bernard,St. Charles Lodge #445,29 E Levert Dr,NULL,Luling,70070,Michael Bernard,St. Charles Lodge #445,NULL,29 E Levert Dr,NULL,Luling,70070,2254505921,NULL,mikebernard@me.com,fish923,cashmore11,0
+306b7a15-01-03,1,3/1/2015 23:20,3/1/2015 23:20,Phillip,Cheek,NULL,6339 Dr Thomas Walker Rd,NULL,Rose Hill,24281,Phillip Cheek,NULL,NULL,6339 Dr Thomas Walker Rd,NULL,Rose Hill,24281,276-445-5157,NULL,Sgtcheek@msn.com,Sgtcheek@msn.com,6155379,1
+cc308015-02-03,1,3/2/2015 11:32,3/2/2015 11:32,Kenneth ,Thompson,NULL,1682 Smokehouse Drive,NULL,Cordova,38016,Kenneth Thompson,NULL,NULL,1682 Smokehouse Drive,NULL,Cordova,38016,901-590-8815,NULL,kathomp74@gmail.com,kathomp74,Zippy7714,0
+e4500215-02-03,1,3/2/2015 11:45,3/2/2015 11:45,James,McLaughlin,NULL,12161 Duttlinger Lane,NULL,Wheatfield,46392,James McLaughlin,NULL,NULL,12161 Duttlinger Lane,NULL,Wheatfield,46392,2199562031,NULL,jdmcl@comcast.net,jdmcl@comcast.net,5581589,1
+087f8a15-02-03,1,3/2/2015 16:21,3/2/2015 16:30,Joyce,Lane,Joyce Lane,9252 Dibble Ave NW,NULL,Seattle,98117,Joyce Lane,Joyce Lane,NULL,9252 Dibble Ave NW,NULL,Seattle,98117,2067555194,2067555194,jlane@us.ibm.com,iam02lane,my02kidst,0
+03365215-04-03,1,3/4/2015 15:19,3/4/2015 15:19,Jeffrey,Wright,NULL,555 Morris Ave,NULL,Shelbyville,46176,Jeffrey Wright,NULL,NULL,555 Morris Ave,NULL,Shelbyville,46176,3175129691,3175129691,jwright47@sbcglobal.net,jwright47,sparky65,0
+7ee94a15-04-03,1,3/4/2015 20:25,3/4/2015 20:25,Paul,Schlehr,NULL,2200 Van Diest Road,NULL,Winnemucca,89445,Paul Schlehr,NULL,NULL,2200 Van Diest Road,NULL,Winnemucca,89445,775 304-0741,775 304-0741,paul.schlehr@gmail.com,8Paulque,Curious31,0
+7810b915-05-03,1,3/5/2015 10:27,3/5/2015 10:27,Robert,Potts,NULL,2521 Kingston Pike,Apt 2001,Knoxville,37919,Robert Potts,NULL,NULL,2521 Kingston Pike,Apt 2001,Knoxville,37919,423-304-1930,423-304-1930,potts@faithlodge756.org,rpotts1,msana4,0
+f41bfd15-05-03,1,3/5/2015 10:54,3/5/2015 10:54,Thomas,Thornton,NULL,11 Adelphia Rd,NULL,Parsippany,7054,Thomas Thornton,NULL,NULL,11 Adelphia Rd,NULL,Parsippany,7054,9738878772,NULL,tomthornton2000@outlook.com,tom thornton,un7356,0
+aa01c915-05-03,1,3/5/2015 16:27,3/5/2015 16:27,Richard,Whalen,NULL,1711 Hickory Gate Dr. S.,NULL,Dunedin,34698,Richard Whalen,NULL,NULL,1711 Hickory Gate Dr. S.,NULL,Dunedin,34698,7277896565,7274601824,Rwhalen030@aol.com,Rwhalen030@aol.com,2034894,1
+85ffff15-05-03,1,3/5/2015 16:30,3/5/2015 16:30,Richard,Whalen,NULL,1711 Hickory Gate Dr. S.,NULL,Dunedin,34698-2413,Richard Whalen,NULL,NULL,1711 Hickory Gate Dr. S.,NULL,Dunedin,34698-2413,7277896565,7274601824,Rwhalen030@aol.com,Rwhalen030@aol.com,7896545,1
+44988e15-08-03,1,3/8/2015 14:14,3/8/2015 14:14,Philip ,Brooks,NULL,405 Greear Place,NULL,Herndon,20170,Philip Brooks,NULL,NULL,405 Greear Place,NULL,Herndon,20170,7037078150,NULL,Brookspjbe@aol.com,Brookspjbe@aol.com,4981944,1
+357e4d15-08-03,1,3/8/2015 14:18,3/8/2015 14:18,Philip,Brooks,NULL,405 Greear Place,NULL,Herndon,20170,Joe Brooks,c/o Manorcare,NULL,1070 Stouffer Ave,NULL,Chambersburg,17201,7037078150,NULL,Brookspjbe@aol.com,Brookspjbe@aol.com,3668700,1
+2e972715-08-03,1,3/8/2015 22:33,4/3/2016 23:25,John,Brobst,NULL,5 West Elm Street,NULL,Tamaqua,18252,John Brobst,NULL,NULL,5 West Elm Street,NULL,Tamaqua,18252,5706681664,5702258394,jtbrobst@verizon.net,jtbjrcop,jbvmk2mf,0
+2829bc15-09-03,1,3/9/2015 13:16,3/9/2015 13:16,Charles ,Francis,NULL,P.O.Box 342,NULL,East Bridgewater,2333,Charles Francis,NULL,NULL,P.O.Box 342,NULL,East Bridgewater,2333,508-941-1902,NULL,cfran7030@aol.com,ChasFran,msastbsub,0
+d16e9b15-11-03,1,3/11/2015 9:32,3/11/2015 9:32,David ,Madara,NULL,6678 Harding Highway,NULL,Mays Landing,8330,David Madara,NULL,NULL,6678 Harding Highway,NULL,Mays Landing,8330,609-485-4109,NULL,fldrmaus@yahoo.com,fldrmaus,Spoon123,0
+419f2915-11-03,1,3/11/2015 13:16,3/11/2015 13:16,tom,carder,tom carder,124 highland park dr,NULL,mcdonough,30252,fateral #37,NULL,NULL,407 victory place dr,NULL,locust grove,30248,770 365 7617,NULL,redract@yahoo.com,redract@yahoo.com,helohead,0
+aeaee315-11-03,1,3/11/2015 15:43,3/11/2015 15:43,Sergio,Perez,NULL,8140 SW 132 Street,NULL,Pinecrest,33156,Sergio Perez,NULL,NULL,8140 SW 132 Street,NULL,Pinecrest,33156,786-251-7641,786-251-7641,sandmperez@comcast.net,sperez,sjp1960,0
+18b3cf15-12-03,1,3/12/2015 11:30,3/12/2015 11:30,William,Muncy,NULL,8po box 873,NULL,Annville,40402,William Muncy,NULL,NULL,8po box 873,NULL,Annville,40402,6065947055,NULL,buggs19947@yahoo.com,buggs19947@yahoo.com,7309722,1
+1add6115-12-03,1,3/12/2015 12:38,3/12/2015 12:38,Christopher,Rhody,NULL,670 N Wade Avenue,NULL,Washington,15301,Christopher Rhody,NULL,NULL,670 N Wade Avenue,NULL,Washington,15301,7248094665,7248094665,chris.rhody@gmail.com,chris.rhody@gmail.com,4185324,1
+4126bf15-12-03,1,3/12/2015 14:21,8/29/2015 19:18,Mike,Rodman,NULL,710 Odde Pl,NULL,Rapid City,57701,Mike Rodman,NULL,NULL,710 Odde Pl,NULL,Rapid City,57701,605-343-8852,605-391-8813,mrodman@rap.midco.net,mrodman@rap.midco.net,mike8852,0
+9279f015-13-03,1,3/13/2015 12:41,3/13/2015 12:41,Linda,Smith,Linda Smith,807 W. Main St.,NULL,Marshalltown,50158,Linda Smith,Marshalltown Masonic Offices,NULL,Masonic Temple Bldg,26 S 1st Ave Ste 500,Marshalltown,50158-5033,641-753-6966,NULL,mtwnmasons@mediacombb.net,mtwnmasons@mediacombb.net,9565390,1
+43790d15-13-03,1,3/13/2015 18:23,3/2/2016 16:17,James,Cooper,NULL,190 Talmadge Dr,NULL,Springfield,1118,James Cooper,NULL,NULL,190 Talmadge Dr,NULL,Springfield,1118,4137828779,4132440177,jim@jicaco.com,jicaco,mistera,0
+0d678115-18-03,1,3/18/2015 12:32,3/18/2015 12:32,Tom,McGuire,NULL,614 Walsh Hill Trl.,NULL,Cedar Park,78613,Tom McGuire,Georgetown Mortgage,NULL,4819 Williams Dr,NULL,Georgetown,78633,5125477521,5125477521,inbox@pinwire.com,tmcguire,Msn357mcg!,0
+80f4b715-20-03,1,3/20/2015 18:10,3/20/2015 18:10,Olafur,Magnusson,Olafur Magnusson,6200 Midnight Pass Rd,Siesta Duens,Sarasota,34242,Olafur Magnusson,Olafur Magnusson,NULL,6200 Midnight Pass Rd,Siesta Duens,Sarasota,34242,3545553100,3548962911,donna@donna.is,donna@donna.is,4121925,1
+4b0b8a15-21-03,1,3/21/2015 8:38,12/5/2015 8:13,William,Miller,NULL,352 Woolf Road,NULL,Milford,8848,William Miller,NULL,NULL,352 Woolf Road,NULL,Milford,8848,9089966785,9084519755,millerwg352@yahoo.com,miller352,2Catspurr,0
+49119515-21-03,1,3/21/2015 10:46,3/21/2015 10:46,John,Zabel,NULL,371 Lyndon Rd,NULL,Fairport,14450,John Zabel,NULL,NULL,371 Lyndon Rd,NULL,Fairport,14450,585-223-3228,585-576-4868,zabelj@mindspring.com,zabelj@mindspring.com,6257990,1
+905a0b15-21-03,1,3/21/2015 23:35,3/21/2015 23:35,Harry,Koenen,Harry Koenen,10888 East Koenen Road,NULL,Palmer,99645,Harry Koenen,Harry Koenen,NULL,10888 East Koenen Road,NULL,Palmer,99645,907-745-4108,907-841-1174,akpgm05@mtaonline.net,akpgm05@mtaonline.net,6886786,1
+1cc8ad15-23-03,1,3/23/2015 9:57,3/23/2015 9:57,Carolyn,Eigel,NULL,#10 Lily St.,NULL,"Greenville, ",29617,Carolyn Eigel,NULL,NULL,#10 Lily St.,NULL,"Greenville, ",29617,864-246-5174,NULL,ceigel4@gmail.com,ceigel4@gmail.com,2912659,1
+2a9fe515-23-03,1,3/23/2015 10:09,3/23/2015 10:09,Carolyn,Eigel,NULL,#10 Lily St.,NULL,"Greenville,",29617,Carolyn Eigel,NULL,NULL,#10 Lily St.,NULL,"Greenville,",29617,864-246-5174,NULL,ceigel4@gmail.com,ceigel4@gmail.com,1591387,1
+1482dc15-23-03,1,3/23/2015 10:17,3/23/2015 10:17,Carolyn,Eigel,NULL,#10 Lily St.,NULL,"Greenville,",29617,Carolyn Eigel,NULL,NULL,#10 Lily St.,NULL,"Greenville,",29617,864-246-5174,NULL,ceigel4@gmail.com,ceigel4@gmail.com,4685655,1
+18f15615-23-03,1,3/23/2015 10:29,3/23/2015 10:29,Carolyn,Eigel,NULL,#10 Lily St.,NULL,"Greenville,",29617,Carolyn Eigel,NULL,NULL,#10 Lily St.,NULL,"Greenville,",29617,864-246-5174,NULL,ceigel4@gmail.com,ceigel4@gmail.com,2583137,1
+66649515-23-03,1,3/23/2015 14:33,3/23/2015 14:33,Phillip,Walker,NULL,1782 Rockdale Cir.,NULL,Snellville,30078,Phillip Walker,NULL,NULL,1782 Rockdale Cir.,NULL,Snellville,30078,7709782771,7709782771,pwalker@mindspring.com,pwalker@mindspring.com,3355398,1
+22de9c15-24-03,1,3/24/2015 9:10,3/24/2015 9:10,Armando,Stavole,NULL,180 12th Street NE,NULL,Naples,34120,Armando Stavole,NULL,NULL,180 12th Street NE,NULL,Naples,34120,8563928915,8563928915,armstav@gmail.com,armstav@gmail.com,1357allmcdlnm.'.,0
+55aae715-24-03,1,3/24/2015 15:48,3/24/2015 15:48,August,Molitano,NULL,PO Box 427,NULL,Riverton,06065-0427,August Molitano,NULL,NULL,PO Box 427,NULL,Riverton,06065-0427,860-379-1185,NULL,cdb1865@snet.net,cdb1865@snet.net,6291778,1
+917da315-25-03,1,3/25/2015 9:27,3/25/2015 9:27,Kurt,Gazow,NULL,4223 Northridge Way,NULL,Bellingham,98226,Kurt Gazow,NULL,NULL,4223 Northridge Way,NULL,Bellingham,98226,360-314-8665,360-314-8665,kegazow@comcast.net,kegazow@comcast.net,3650781,1
+ebede215-25-03,1,3/25/2015 10:10,3/25/2015 10:10,Matthew,Appel,NULL,18229 60th Ave. W,NULL,Lynnwood,98037,Matthew Appel,NULL,NULL,18229 60th Ave. W,NULL,Lynnwood,98037,4256730867,4254184713,mappel3@comcast.net,mappel3@comcast.net,3363576,1
+895c5015-25-03,1,3/25/2015 13:38,3/25/2015 13:42,Todd,Johnstone,WA Masonic Charities,4970 Bridgeport Way W,NULL,University Place,98467,Todd Johnstone,WA Masonic Charities,NULL,4970 Bridgeport Way W,Library and Museum,University Place,98467,253-627-8633,NULL,wamasonicgllm@gmail.com,wamasonicgllm@gmail.com,hiram47mm,0
+77097115-26-03,1,3/26/2015 5:41,3/26/2015 5:42,Charles,Matheney,NULL,109 N Sycamore St,NULL,Flat Rock,62427,Charles Matheney,NULL,NULL,109 N Sycamore St,NULL,Flat Rock,62427,6185843991,6185620616,charlesmatheney@gmail.com,charlesmatheney@gmail.com,4528694,1
+ab3dcb15-26-03,1,3/26/2015 14:47,3/26/2015 14:47,David,Williamson,David,Williamson,NULL,Maryville,37803,David Williamson,David,NULL,Williamson,NULL,Maryville,37803,865-982-7716,865-556-2213,dewilliamson556@charter.net,dewilliamson556@charter.net,9003314,1
+69636d15-26-03,1,3/26/2015 15:00,3/26/2015 15:00,jeff,flint,NULL,PO Box 134,NULL,Arena,53503,jeff flint,NULL,NULL,PO Box 134,NULL,Arena,53503,608-279-9478,NULL,jeff@mycommercialclean.com,jeff@mycommercialclean.com,4132663,1
+758dbd15-27-03,1,3/27/2015 8:28,3/27/2015 8:28,Shem,Peachey,Sacramento Lodge No. 24,3110 Abbott Ave,NULL,Alamogordo,88310,Shem Peachey,Sacramento Lodge No. 24,NULL,3110 Abbott Ave,NULL,Alamogordo,88310,5754912023,5754912023,stpeachey@gmail.com,stpeachey@gmail.com,6239203,1
+acb52315-27-03,1,3/27/2015 14:23,3/27/2015 14:23,Daniel,Rose,NULL,11196 Chippewa Drive,NULL,Warren,48093-1642,Daniel Rose,NULL,NULL,11196 Chippewa Drive,NULL,Warren,48093-1642,None,586-770-8200,drose091@yahoo.com,drose091@yahoo.com,7174034,1
+92b41115-27-03,1,3/27/2015 17:00,3/27/2015 17:00,John,Zabel,NULL,371 Lyndon Rd,NULL,Fairport,14450,John Zabel,NULL,NULL,371 Lyndon Rd,NULL,Fairport,14450,585-223-3228,585-576-4868,zabelj@mindspring.com,zabelj@mindspring.com,8886581,1
+eecaf615-27-03,1,3/27/2015 20:23,3/27/2015 20:23,T David,Jordan,NULL,1661 HWY 177,NULL,Russellville,35654,T David Jordan,NULL,NULL,1661 HWY 177,NULL,Russellville,35654,2563329614,2566687348,tdavid23@charter.net,tdavid23@charter.net,1306007,1
+b0fb7015-28-03,1,3/28/2015 17:02,3/28/2015 17:02,Frank,Loui,Scottish Rite,2850 19th Avenue,NULL,San Francisco,94132-1602,Frank Loui,Scottish Rite,NULL,2850 19th Avenue,NULL,San Francisco,94132-1602,4156098839,4156098839,frankloui@aol.com,frankloui@aol.com,2310599,1
+b80ed215-29-03,1,3/29/2015 9:15,3/29/2015 9:15,P.J. ,Bridenstine,NULL,310 West Main Street,NULL,Osakis,56360,P.J. Bridenstine,NULL,NULL,310 West Main Street,NULL,Osakis,56360,na,320-760-8819,pjstine@charter.net,pjstine@charter.net,5304444,1
+b9ee4e15-29-03,1,3/29/2015 13:48,4/17/2016 11:31,Joe,Fontana,NULL,3520 Indiana Ave,NULL,Baker City,97814,Joe Fontana,NULL,NULL,3520 Indiana Ave,NULL,Baker City,97814,541-524-9515,NULL,sanjoe@q.com,JFSEDGE,us4032,0
+53f1c815-29-03,1,3/29/2015 19:35,3/29/2015 19:35,Mark,Pearson,NULL,6111 barclay st,NULL,west linn,97068,Mark Pearson,NULL,NULL,6111 barclay st,NULL,west linn,97068,5036505940,NULL,cmpearson@usa.net,cmpearson,2BeOne@sk1,0
+ceedb315-30-03,1,3/30/2015 16:04,3/30/2015 16:04,Jaipaul,Dhanpaul,Jaipaul Dhanpaul,6 3rd. Street,NULL,Rosedale,11422,Jaipaul Dhanpaul,NULL,NULL,6 3rd. Street,NULL,Rosedale,11422,917-909-9517,917-909-9517,jaipauldhanpaul@yahoo.com,Jdhanpaul2014,Jackal2014,0
+a9ab8a15-30-03,1,3/30/2015 19:59,3/30/2015 19:59,George,Lupo,G Lupo,19240 Loranger Trace,NULL,Loranger,70446,George Lupo,G Lupo,NULL,19240 Loranger Trace,NULL,Loranger,70446,985-878-8742,504-430-6549,glupob36@aol.com,glupob36@aol.com,4121887,1
+67505c15-31-03,1,3/31/2015 13:55,3/31/2015 13:55,Donald ,Anderson,Durango/San Juan Lodge #46,10914 State Hwy 172,NULL,Ignacio,81137,Donald Anderson,Durango/San Juan Lodge #46,NULL,10914 State Hwy 172,NULL,Ignacio,81137,970-884-2608,NULL,vango@gobrainstorm.net,vango@gobrainstorm.net,9987909,1
+c2f50715-31-03,1,3/31/2015 18:38,3/31/2015 18:41,Mike,Mahaffey,NULL,8210 Pelham Dr,NULL,Westerville,43081,Mike Mahaffey,NULL,NULL,8210 Pelham Dr,NULL,Westerville,43081,614-885-2701,614-725-6090,mike@mahaffey.com,Brol44,4templar,0
+d0f78d15-31-03,1,3/31/2015 21:15,3/31/2015 21:15,Paul,Levin,Rising Sun Lodge,9 Mennen Road,NULL,Schuylerville,12871,Paul Levin,Rising Sun Lodge,NULL,9 Mennen Road,NULL,Schuylerville,12871,518-507-6433,NULL,secretary.risingsun103@gmail.com,secretary.risingsun103@gmail.com,7046753,1
+5e615715-01-04,1,4/1/2015 13:35,4/1/2015 13:35,Raymond,Hunter,NULL,"13650 North Frontage Road, #152",NULL,y,85367-7423,Raymond Hunter,NULL,NULL,1,NULL,y,8,720-849-7686,720-849-7686,rayehunter@hotmail.com,rayehunter@hotmail.com,fed1pm64,0
+e2e13c15-01-04,1,4/1/2015 17:13,4/1/2015 17:13,Emil,Ewald,Emil Ewald,36833 E Wisconsin Ave,NULL,Oconomowoc,53066,Emil Ewald,NULL,NULL,156 Alwood Lane,NULL,Naples,34105,239-263-1949,414-429-5900,emil@ewaldauto.com,emil@ewaldauto.com,chrysler,0
+94bd8e15-03-04,1,4/3/2015 9:49,4/3/2015 9:49,Daniel,Barston,NULL,15 Clark Street,NULL,Auburn,01501-1743,Daniel Barston,NULL,NULL,15 Clark Street,NULL,Auburn,01501-1743,508-792-0074,508-612-2952,PDDGM24@gmail.com,PDDGM24@gmail.com,1943851,1
+1c4e6a15-04-04,1,4/4/2015 20:20,11/13/2016 12:39,Edward L,Savage,NULL,8 Chase Rd #2B,NULL,N Brookfield,01535-1846,Edward L Savage,NULL,NULL,8 Chase Rd #2B,NULL,N Brookfield,01535-1846,5088675189,7744522746,BrotherEdwardLeo@gmail.com,BrotherEd,savage8@144/,0
+95af3c15-04-04,1,4/4/2015 23:27,4/16/2015 7:55,JOHN,KARROUM,NULL,4814 Orchard Lane,NULL,Delray Beach,33445,JOHN KARROUM,NULL,NULL,4814 Orchard Lane,NULL,Delray Beach,33445,561-843-1219,561-843-1219,JKARROUM@COMCAST.NET,JKARROUM,11450,0
+99491015-05-04,1,4/5/2015 22:53,4/5/2015 22:53,Russ,Charvonia,NULL,5536 N. Bryn Mawr,NULL,ventura,93003,Russ Charvonia,NULL,NULL,5536 N. Bryn Mawr,NULL,ventura,93003,8056507511,8052581037,rcharvonia@freemason.org,rcharvonia@freemason.org,4331393,1
+1d548915-06-04,1,4/6/2015 14:10,4/6/2015 14:10,Greg,Glur,NULL,823 14th St S,NULL,Fargo,58103,Greg Glur,NULL,NULL,823 14th St S,NULL,Fargo,58103,7013184372,NULL,gregglur@cableone.net,bmwr1200rt,beemerrider1,0
+b63d3d15-07-04,1,4/7/2015 23:46,4/7/2015 23:46,Raymond,George,NULL,289 Freeland Drive,NULL,Collegeville,19426,Raymond George,NULL,NULL,289 Freeland Drive,NULL,Collegeville,19426,6109523154,6109523154,raytgeorge@aol.com,raytgeorge,204rtg50,0
+9e66ad15-08-04,1,4/8/2015 10:28,4/8/2015 10:31,Javier,Sanchez,East Dallas Lodge No. 1200,4230 LBJ Freeway,Suite 330,Dalals,75244,Javier Sanchez,East Dallas Lodge No. 1200,NULL,4230 LBJ Freeway,Suite 330,Dalals,75244,214-457-6827,214-457-6827,jsanchez88@hotmail.com,jsanchez88@hotmail.com,cowboys88,0
+e6e29a15-08-04,1,4/8/2015 14:15,4/8/2015 14:15,Paul,Alexander,NULL,390 Linden Dr,NULL,Idaho Falls,83401,Paul Alexander,NULL,NULL,390 Linden Dr,NULL,Idaho Falls,83401,208-529-4391,NULL,alexanderpe@earthlink.net,alexanderpe,Mu6wFekm0fD2,0
+de8c9215-08-04,1,4/8/2015 14:38,4/8/2015 14:38,John,Freeburg,NULL,6356 Riverdale Dr.,NULL,Ramsey,55303-4800,John Freeburg,NULL,NULL,6356 Riverdale Dr.,NULL,Ramsey,55303-4800,7634271528,7634271528,jsfreeburg@comcast.net,Ragnar,AnokaLEO,0
+12ca3015-08-04,1,4/8/2015 15:21,4/8/2015 15:21,Stanley,Foulke,NULL,3018 Ashton Palms Dr,NULL,Lake Wales,33859,Stanley Foulke,NULL,NULL,3018 Ashton Palms Dr,NULL,Lake Wales,33859,8639494356,8639494356,stanfoulke@gmail.com,stanfoulke,953953,0
+9953fb15-08-04,1,4/8/2015 16:59,4/8/2015 16:59,Steve,Pallette,Steve Pallette,P.O Box 9,NULL,Knotts Island,27950,Steve Pallette,Steve Pallette,NULL,P.O Box 9,NULL,Knotts Island,27950,252-429-3000,NULL,shpki@cox.net,Shady2,MPH934GLK,0
+e9354215-08-04,1,4/8/2015 19:04,9/14/2016 18:30,robert,gilligan,NULL,100 geiger drive,NULL,tewksbury,1876,robert gilligan,NULL,NULL,100 geiger drive,NULL,tewksbury,1876,781-938-1033,6177990269,dean@cgmechanical.com,dean@cgmechanical.com,Welding70,0
+4c86c815-08-04,1,4/8/2015 20:40,4/8/2015 20:40,Johnathan,Granger,NULL,400 Frostberry Ct,NULL,Fountain Inn,29644,Johnathan Granger,NULL,NULL,400 Frostberry Ct,NULL,Fountain Inn,29644,8435050825,8435050825,youngrebel2351@yahoo.com,youngrebel2351@yahoo.com,3606233,1
+6eff9c15-09-04,1,4/9/2015 9:07,4/9/2015 9:07,Curt,Edic,Scottish Rite Masonic Center,202 S 20th St,NULL,Omaha,68102-1201,Curt Edic,Scottish Rite Masonic Center,NULL,202 S 20th St,NULL,Omaha,68102-1201,402-342-1300,NULL,cathys@scottishriteomaha.org,cathys@scottishriteomaha.org,9553633,1
+42a4c115-09-04,1,4/9/2015 10:00,4/9/2015 10:00,Curt,Edic,Scottish Rite Masonic Center,202 S 20th St,NULL,Omaha,68102-1201,Curt Edic,Scottish Rite Masonic Center,NULL,202 S 20th St,NULL,Omaha,68102-1201,402-342-1300,NULL,cathys@scottishriteomaha.org,cmedic,degree,1
+82f72515-09-04,1,4/9/2015 10:08,8/4/2015 14:24,Robert,Donnelly,Grand Lodge of Vermont,49 East Rd,NULL,Barre,05641-5390,Robert Donnelly,Grand Lodge of Vermont,NULL,49 East Rd,NULL,Barre,05641-5390,802-223-1883,NULL,glsec@vtfreemasons.org,GLofVT,glsec1794,0
+19aa8015-09-04,1,4/9/2015 14:11,4/9/2015 14:11,Charles,DeMaio,Scottish Rite Cathedral,650 North Meridan St.,NULL,Indianapolis,46204,Charles DeMaio,Scottish Rite Cathedral,NULL,650 North Meridan St.,NULL,Indianapolis,46204,317-846-4633,3179145172,cdemaio@aasr-indy.org,shootingsycamore,cordy3496,0
+94122915-09-04,1,4/9/2015 22:06,9/29/2015 14:17,Steven,Fulton,NULL,3676 State Route 156,NULL,Avonmore,15618,Steven A. Fulton,NULL,NULL,3682 State Route 156,NULL,Avonmore,15618,724-596-4345,724-664-7194,safulton1970@gmail.com,Steven A. Fulton,Roydenjr437,0
+de70f315-11-04,1,4/11/2015 19:48,4/11/2015 19:48,Eugene ,Mackey ,527 Wells AVE. N.,527 Wells AVE. N.,NULL,Renton,98057,Eugene Mackey ,527 Wells AVE. N.,NULL,527 Wells AVE. N.,NULL,Renton,98057,425-306-0304,425-306-0304,eugene_mackey@msn.com,eugene_mackey@msn.com,9429503,1
+c4549115-12-04,1,4/12/2015 12:55,4/12/2015 12:55,Richard,Hentz,NULL,31424 N. Soth Jackson RD,NULL,Elk,99009,Richard Hentz,NULL,NULL,31424 N. Soth Jackson RD,NULL,Elk,99009,509-999-1556,509-999-1556,GoldenLodge@outlook.com,GoldenLodge@outlook.com,9348711,1
+2c6a2a15-12-04,1,4/12/2015 18:54,4/12/2015 18:54,Brian,Franksain,NULL,4705 Ellwood Road,NULL,New Castle,16101,Brian Franksain,NULL,NULL,4705 Ellwood Road,NULL,New Castle,16101,7246013733,7246013733,sailor16117@gmail.com,sailor16117,kiddkidd,1
+d0726d15-15-04,1,4/15/2015 21:21,4/15/2015 21:21,Herbert,Tompkins,NULL,P.O. Box # 1651,NULL,Fair Oaks,95628,Herbert Tompkins,NULL,NULL,7855 Chabolyn Way,NULL,Fair Oaks,95628,916-961-3670,916-813-3670,avalt@comcast.net,avalt@comcast.net,thomastduke,0
+cdb77615-17-04,1,4/17/2015 15:05,4/17/2015 15:05,Lynn ,Baker ,NULL,220 South Center Street,NULL,Beavertown,17813,Lynn Baker ,NULL,NULL,220 South Center Street,NULL,Beavertown,17813,570-658-3557,570-850-3557,ddgm46@pagrandlodge.org,ddgm46@pagrandlodge.org,9806705,1
+9384a215-17-04,1,4/17/2015 20:10,4/17/2015 20:10,Gerry,Ross,Gerry Ross,3144 Coach Road,NULL,Argyle,12809,Gerry Ross,Gerry Ross,NULL,3144 Coach Road,NULL,Argyle,12809,518-632-5443,518-649-5000,gerryross4@gmail.com,GerRoss,Shang70,0
+ea54ef15-17-04,1,4/17/2015 21:33,4/17/2015 21:33,Andrew,Martinez,NULL,307 Candlewood Ct.,NULL,Millersville,21108,Andrew Martinez,NULL,NULL,307 Candlewood Ct.,NULL,Millersville,21108,2402981043,2402981043,g.andrew.martinez@gmail.com,g.andrew.martinez@gmail.com,2250445,1
+5eede115-18-04,1,4/18/2015 17:03,4/18/2015 17:03,Richard,McEntire,NULL,30 west 141 Street Apt 15D,NULL,New York,10037,Richard McEntire,NULL,NULL,30 west 141 Street Apt 15D,NULL,New York,10037,3475333573,NULL,rmack2000@gmail.com,rmack2000@gmail.com,6601080,1
+301d5815-20-04,1,4/20/2015 0:26,5/8/2016 11:42,William,West,NULL,PO Box 210,NULL,Palmer,99645,William West,NULL,NULL,PO Box 210,NULL,Palmer,99645,(907) 745-5280,(907) 717-4656,william.west1@icloud.com,whwest,G6J-YAn-ka9-T7V,0
+6db90115-20-04,1,4/20/2015 8:49,4/20/2015 8:49,Oscar,Patterson III,NULL,248 Patrick Mill Circle,NULL,Ponte Vedra Beach,32082,Oscar Patterson III,NULL,NULL,248 Patrick Mill Circle,NULL,Ponte Vedra Beach,32082,904-280-1067,904-955-9175,opatters@comcast.net,opatters@comcast.net,1837156,1
+b0a54a15-20-04,1,4/20/2015 10:55,4/20/2015 10:55,William,Gleaves,William Gleaves,2964 Woodshead Terrace,NULL,York,17403,William Gleaves,William Gleaves,NULL,2964 Woodshead Terrace,NULL,York,17403,7177410648,7175154094,william.gleaves@yahoo.com,William,whatever4,0
+39261215-20-04,1,4/20/2015 22:28,4/20/2015 22:28,Barry,Gommer,Delaware Acupuncture,J 30 Omega Dr.,NULL,Newark,19713,Barry Gommer,Delaware Acupuncture,NULL,J 30 Omega Dr.,NULL,Newark,19713,302-279-0174,NULL,Delawareacupuncture@gmail.com,Delawareacupuncture,BluenGold72,0
+88853e15-21-04,1,4/21/2015 9:01,4/21/2015 9:01,william,ogle,ogle law firm,444 Seabreeze Blvd ,Suite 800,Daytona Beach,32118,william ogle,ogle law firm,NULL,444 Seabreeze Blvd ,Suite 800,Daytona Beach,32118,386-253-2500,386-29907949,oglelaw@gmail.com,williamogle,Laotzu108,0
+26376b15-21-04,1,4/21/2015 9:37,4/21/2015 9:38,Thomas,Paxton,Queen City Lodge #131,P.O.Box 1497,1939 Frederick St. Apt. 5,Cumberland,21501-1497,Thomas Paxton,Queen City Lodge #131,NULL,1939 Frederick St. Apt 5,P.O.Box 1497,Cumberland,21502,3018760806,3018760806,tpaxton55@gmail.com,tpaxton55@gmail.com,5271375,1
+33524a15-21-04,1,4/21/2015 10:23,4/15/2016 9:27,Jon,Laity,NULL,1408 State St,NULL,Cedar Falls,50613,Jon Laity,NULL,NULL,1408 State St,NULL,Cedar Falls,50613,3194646964,3194646964,jonjlaity@gmail.com,laityluck,Steelers1036!,0
+8bb4a215-22-04,1,4/22/2015 10:50,4/22/2015 10:50,David,Buckwalter,Cannon Lodge #104 F&AM,PO Box 507,NULL,S. Seaville,8246,David Buckwalter,Cannon Lodge #104,NULL,297 Petersburg Rd,NULL,Woodbine,8270,609-861-2475,NULL,secretary@cannonlodge.net,secretary@cannonlodge.net,8525380,1
+ae8c8815-22-04,1,4/22/2015 15:09,4/22/2015 15:10,William,Breed,Coastal Lodge #57,PO Box 1782,NULL,Pawcatuck,6379,William Breed,NULL,NULL,7 Fairview Dr,NULL,Pawcatuck,06379+1271,8605990187,NULL,wlbreed1@comcast.net,wlbreed,mspris12,0
+379d1915-22-04,1,4/22/2015 15:26,4/22/2015 15:26,Duane,Gaulden,Greenville Masonic Lodge #335,2615 Stonewall Street,NULL,Greenville,75401,Duane Gaulden,Select Insurance Group,NULL,6009 Wesley Street,NULL,Greenville,75402,903-455-2664,903-217-8754,duane@quoteapolicy.com,dgaulden,0612952t,0
+e8aaaf15-22-04,1,4/22/2015 17:03,4/22/2015 17:03,Floyd,McGuirt,Stone Mountain Lodge # 449,5924 Millstone Lane,NULL,Stone Mountain,30087-1820,Floyd McGuirt,Stone Mountain Lodge # 449,NULL,5924 Millstone Lane,NULL,Stone Mountain,30087-1820,770 923 8946,NULL,merlin4670@comcast.net,merlin4670@comcast.net,1995202,1
+02ad5915-24-04,1,4/24/2015 11:08,4/24/2015 11:08,Bruce,Lott,"Masonic Homes of Kentucky, Inc.",3761 Johnson Hall Drive,NULL,Masonic Home,40041,Bruce Lott,"Masonic Homes of Kentucky, Inc.",NULL,3761 Johnson Hall Drive,NULL,Masonic Home,40041,502.259.9627,NULL,blott@mhky.com,blott@mhky.com,8852232,1
+b7e5a915-26-04,1,4/26/2015 11:07,4/26/2015 11:07,Kenneth,Neu,NULL,4591 S DEFRAME ST,NULL,MORRISON,80465,Kenneth Neu,Retired,NULL,4591 S. Deframe St.,NULL,Morrison,80465,3036974425,3036974425,k.neu@msn.com,Kenneth44,Railroad1,0
+ac998115-26-04,1,4/26/2015 20:59,4/26/2015 20:59,Ralph,Sowder,NULL,12145 Knoll Court,NULL,Custer,57730,Ralph Sowder,NULL,NULL,12145 Knoll Court,NULL,Custer,57730,605-673-3892,303-250-7586,rsowder@goldenwest.net,rsowder,2kitties,0
+3809aa15-28-04,1,4/28/2015 22:47,4/28/2015 22:47,Wesley,Phillips,Arrites Oden396,PO Box 244,NULL,Falkville,35622,Wesley Phillips,Arrites Oden396,NULL,PO Box 244,NULL,Falkville,35622,256-338-0785,NULL,arritesoden396@gmail.com,arritesoden396,Jackin1!,0
+44b65215-29-04,1,4/29/2015 18:32,4/29/2015 18:32,Phillip,Cheek,NULL,6339 Dr Thoma Walker Rd,NULL,Rose Hill,24281,Phillip Cheek,NULL,NULL,6339 Dr Thoma Walker Rd,NULL,Rose Hill,24281,276-445-5157,NULL,Sgtcheek@msn.com,FSgtcheek,SP131@lee,0
+3051fc15-30-04,1,4/30/2015 8:40,3/26/2016 6:49,Frank,During,NULL,P.O.Box 471,NULL,Ellsworth,54011,Frank During,NULL,NULL,P.O.Box 471,NULL,Ellsworth,54011,7158217128,NULL,frankduring@ymail.com,frankduring@ymail.com,Cooper12,0
+b9caa515-30-04,1,4/30/2015 10:32,4/30/2015 10:32,adam,skiff,NULL,89 springhouse rd,NULL,so burlington ,5403,adam skiff,NULL,NULL,89 springhouse rd,NULL,so burlington ,5403,8022388306,8022388306,skiffer75@comcast.net,skiffer75,eprjr0047,0
+20f03c15-30-04,1,4/30/2015 11:05,4/30/2015 11:05,Terry,Tilton,NULL,2501 Highway 37,NULL,Hibbing,55746-3619,Terry Tilton,NULL,NULL,2501 Highway 37,NULL,Hibbing,55746-3619,2182639081,701,terrytilton@q.com,Terry0608,church,0
+8576db15-01-05,1,5/1/2015 14:55,5/1/2015 14:55,Charles,Levan,NULL,164 Nightingale Circle,NULL,Ellenton,34222-4254,Charles Levan,NULL,NULL,164 Nightingale Circle,NULL,Ellenton,34222-4254,941-729-1702,941-920-6248,cmlevan99@aol.com,cmlevan,Xam2015,0
+9e1f4715-01-05,1,5/1/2015 16:31,5/1/2015 16:31,Kyle W. Strickland,Strickland,Lake Drummond Lodge No. 178,PO BOX 6655,NULL,Chesapeake,23323-0655,Kyle W. Strickland Strickland,Lake Drummond Lodge No. 178,NULL,PO BOX 6655,NULL,Chesapeake,23323-0655,757-754-1671,757-754-1671,178secretary@gmail.com,LD178SEC,boazjachin,0
+0dc83715-02-05,1,5/2/2015 13:18,6/4/2016 20:58,Carl,Plants,Carl Plants,6124 NW 6th Street,NULL,Lincoln,68521,Carl Plants,Carl Plants,NULL,6124 NW 6th Street,NULL,Lincoln,68521,402-477-9464,402-429-2379,cplants@inebraska.com,cplants1,Masonic1986,0
+3c92cf15-05-05,1,5/5/2015 0:10,5/5/2015 0:10,Micheal,Leonard,NULL,12 Gothic Ave,NULL,Worcester,1606,Micheal Leonard,NULL,NULL,12 Gothic Ave,NULL,Worcester,1606,5088530258,5088530258,dadleonardbfd@gmail.com,mikey0302,intruder2000,0
+3616a315-05-05,1,5/5/2015 12:41,5/5/2015 12:41,Tom,Jordan,.,"2499 Overlook Way, N.E.",NULL,Atlanta,30345,Tom Jordan,.,NULL,"2499 Overlook Way, N.E.",NULL,Atlanta,30345,4803826633,404-372-9586,tjordan891@comcast.net,tjordan891@comcast.net,3026977,1
+69199515-05-05,1,5/5/2015 19:03,5/5/2015 19:03,Ty,Carter,Strategic Network Consultants,524 East 9th St,NULL,Washington,27889,Ty Carter,Strategic Network Consultants,NULL,524 East 9th St,NULL,Washington,27889,2529460351,2524025296,tmcarter@ultrastat.com,tmcarter,Tc172881@,0
+ee2a7815-06-05,1,5/6/2015 11:34,5/6/2015 11:34,Lawrence,Hopkins,NULL,10 Monticello Court,NULL,Mansfield,76063,Lawrence Hopkins,NULL,NULL,10 Monticello Court,NULL,Mansfield,76063,2144177400,2144177400,larryehopkins722@att.net,larryehopkins722,dallas1320,0
+a53ac615-06-05,1,5/6/2015 15:24,5/6/2015 16:08,Robert,Brightbill,NULL,149 Friar Rd,NULL,Harrisburg,17112,Bill Balentine,NULL,NULL,1674 University Pky,#200,Sarasota,34243,717-805-7921,717-805-7921,N533RB@aol.com,N533RB,corvette33,0
+255ae415-06-05,1,5/6/2015 16:09,5/6/2015 16:09,Jacquelynn,Morris,Masonic Service,3905 National Drive,NULL,Burtonsville,20866,Jacquelynn Morris,Masonic Service,NULL,3905 National Drive,NULL,Burtonsville,20866,3014767330,NULL,jmorris@msana.com,jmorris@msana.com,2164106,1
+53047c15-06-05,1,5/6/2015 16:11,5/6/2015 16:11,MARTIN,NASS,3905 NATIONAL DR STE 280,3905 NATIONAL DR STE 280,SUITE 280,BURTONSVILLE,20904,MARTIN NASS,MSA,NULL,3905 NATIONAL DR,STE 280,BURTONSVILLE,20866,3014767330,3014767330,msaoffice@masna.com,msaoffice@masna.com,7939910,1
+16371915-06-05,1,5/6/2015 20:32,5/8/2015 10:54,rich,young,NULL,po box 15,NULL,millington,21651,rich young,NULL,NULL,po box 15,NULL,millington,21651,4104904851,4104904851,fatboybulldog@aol.com,fatboybulldog@aol.com,8141546,1
+6c2c2815-06-05,1,5/6/2015 23:35,5/7/2015 16:37,Ben,Croley,Paragon Masonic Lodge #788,2310 Lehman Ave,NULL,Toledo,43611,Benjamin Croley,Paragon Lodge,NULL,2310 Lehman Ave,NULL,Toledo,43611,419-349-2924,NULL,michiganben@accesstoledo.com,Paragon 788,paragon4-6,0
+d12dec15-07-05,1,5/7/2015 12:55,5/7/2015 12:55,Timothy ,Nicely,NULL,4221 County Road 15,NULL,South Point,4580,Timothy Nicely,NULL,NULL,4221 County Road 15,NULL,South Point,4580,740-894-0691,740-479-0727,tsnicely@gmail.com,tsnicely@gmail.com,7590227,1
+a18ea615-07-05,1,5/7/2015 17:23,7/14/2015 16:24,Yvette,Story,Grand Lodge AF&AM of Oklahoma,102 S. Broad,P.O. Box 1019,Guthrie,73044-1019,Yvette Story,Grand Lodge AF&AM of Oklahoma,NULL,102 S. Broad,NULL,Guthrie,73044,405-282-3212,NULL,ystory@coxinet.net,ystory,0kcThunder,0
+e35cce15-07-05,1,5/7/2015 20:34,5/7/2015 20:34,Matthew,Sanders,NULL,209 E F Street,NULL,Brunswick,21716,Matthew Sanders,NULL,NULL,209 E F Street,NULL,Brunswick,21716,301-401-9588,301-401-9588,m57sanders@hotmail.com,m57sanders@hotmail.com,4128177,1
+2c4e8e15-08-05,1,5/8/2015 7:48,5/8/2015 7:48,Richard,Barton,NULL,259 Lakeshire Drive,NULL,Lexington,29073-7856,Richard Barton,NULL,NULL,259 Lakeshire Drive,NULL,Lexington,29073-7856,(803) 957-9149,NULL,richard@goofin.net,richard@goofin.net,1097511,1
+df36c815-10-05,1,5/10/2015 20:09,5/10/2015 20:09,David,Duke,NULL,27682 Kingport,NULL,Splendora,77372,David Duke,NULL,NULL,27682 Kingport,NULL,Splendora,77372,2816895916,8322285936,dl.duke@att.net,dl.duke@att.net,6931513,1
+0c949c15-12-05,1,5/12/2015 0:25,5/12/2015 0:25,David,Williams,David Williams,PO Box 95,306 Orchard St,Pleasant City,43772-0095,David Williams,David Williams,NULL,PO Box 95,306 Orchard St,Pleasant City,43772-0095,740-685-2927,NULL,williams@cambridgeoh.com,williams@cambridgeoh.com,6077280,1
+1d8eac15-12-05,1,5/12/2015 8:57,5/12/2015 8:57,Luke ,Lewis,Salyersville Masonic Lodge,1839 Mashfork Road,NULL,Salyersville,41465,Luke Lewis,Salyersville Masonic Lodge,NULL,1839 Mashfork Road,NULL,Salyersville,41465,606-349-4555,606-264-1709,lukelewis@foothills.net,Salyersville769,Belsey,0
+03a49415-12-05,1,5/12/2015 16:04,5/12/2015 16:05,Robert,Kachelhofer,Hoover Lodge #644,2512 Old Rocky Ridge Road,NULL,Birmingham,35216-4854,Robert Kachelhofer,Hoover Lodge #644,NULL,2512 Old Rocky Ridge Road,NULL,Birmingham,35216-4854,205-989-7245,205-329-4254,bkachelhofer@charter.net,filldirt3445,gimbitybum67,0
+65c9c115-12-05,1,5/12/2015 18:03,5/12/2015 18:03,William,Weaver,NULL,39 Joyce Ct.,NULL,Ringgold,30736,William Weaver,NULL,NULL,39 Joyce Ct.,NULL,Ringgold,30736,706-935-8145,NULL,bweaver@catt.com,bweaver300,Resaca#724,0
+3bbd0715-14-05,1,5/14/2015 13:00,5/14/2015 13:00,Wyatt,Pedigo,NULL,8809 Aaron Drive,NULL,Oklahoma City,73132-1026,Wyatt Pedigo,NULL,NULL,8809 Aaron Drive,NULL,Oklahoma City,73132-1026,405.720-7814,405.204-7009,wyattpgo@sbcglobal.net,wyattpgo,sc00fy,0
+b2ea8915-15-05,1,5/15/2015 13:07,5/15/2015 13:07,Louis,Villaume,NULL,4500 Country Club Lane,NULL,Lake Charles,70605,Louis Villaume,NULL,NULL,4500 Country Club Lane,NULL,Lake Charles,70605,337-570-5018,NULL,louis@villaume.net,louis@villaume.net,2329765,1
+25a37f15-15-05,1,5/15/2015 18:25,5/15/2015 18:25,Todd,Onesti,NULL,33 Prentiss Street,NULL,Munroe Falls,44262,Todd Onesti,NULL,NULL,33 Prentiss Street,NULL,Munroe Falls,44262,(330)687-0244,(330)687-0244,tonesti@sbcglobal.net,tonesti,donald,0
+942d3615-16-05,1,5/16/2015 13:49,5/16/2015 13:49,Daniel,Deaton,NULL,519 Ashley Court,NULL,Berea,40403,Daniel Deaton,NULL,NULL,519 Ashley Court,NULL,Berea,40403,8597799514,NULL,daniel.deaton@gmail.com,daniel.deaton@gmail.com,5709752,1
+1aed3d15-18-05,1,5/18/2015 9:34,5/18/2015 9:34,george,matoy,george c. matoy,7622 GA Hwy 42 S.,NULL,Fort Valley,31030,george c. matoy,NULL,NULL,7622 GA Hwy 42 S.,NULL,Fort Valley,31030,4788258288,4782939259,matoyg@excite.com,matoyg,morelight874,0
+21e94915-19-05,1,5/19/2015 14:03,5/19/2015 14:03,Donald,Clowers,NULL,2109 Downing Drive,NULL,Colorado Springs,80909,Donald Clowers,NULL,NULL,2109 Downing Drive,NULL,Colorado Springs,80909,719-442-0746,719-761-3912,donaldrc@donclowers.comcastbiz.net,donaldrc@donclowers.comcastbiz.net,8651813,1
+d7dcaa15-20-05,1,5/20/2015 4:58,6/29/2016 7:05,Richard,Roblee,NULL,2303 Franz Ct,NULL,richland,99352,Richard Roblee,NULL,NULL,2303 Franz Ct,NULL,richland,99352,509-396-7441,NULL,roblee6@charter.net,roblee6,gr33nbay,0
+9d7d1615-20-05,1,5/20/2015 7:18,5/20/2015 7:18,Richard ,Burkman,NULL,413 2nd Ave SW,NULL,Glen Burnie,21061,Richard Burkman,NULL,NULL,413 2nd Ave SW,NULL,Glen Burnie,21061,4107604809,7038195254,richardanddebi@verizon.net,Richard Burkman,WM2015rb,0
+beb21715-20-05,1,5/20/2015 7:56,5/20/2015 16:31,Roy,Burke,NULL,5480 E Idlewood Ln,NULL,Sandy Springs,30327,Roy Burke,NULL,NULL,5480 E Idlewood Ln,NULL,Sandy Springs,30327,7708566715,NULL,nobleroy@yahoo.com,burkro295,MAn44Kwm,0
+66c7b815-20-05,1,5/20/2015 12:08,5/20/2015 12:09,Fred,Sherrill,NULL,PO Box 816,NULL,Conover,28613,Fred Sherrill,NULL,NULL,PO Box 816,NULL,Conover,28613,8284643733,8283811080,flsherrilljr1@gmail.com,flsherrilljr,tarheel1,0
+b04d8515-21-05,1,5/21/2015 9:40,5/21/2015 9:40,Dennis,Robertson,Dennis Robertson,6556 LeMaster Road,NULL,Athens,45701-9133,Dennis Robertson,Dennis Robertson,NULL,6556 LeMaster Road,NULL,Athens,45701-9133,740-591-0089,740-591-0089,Robertsonmotorfreight@yahoo.com,Robertsonmotorfreight@yahoo.com,6458775,1
+3b74a615-21-05,1,5/21/2015 21:44,5/21/2015 21:44,thomas,frady,NULL,412 davis rd,NULL,liberty,29657,thomas frady,NULL,NULL,412 davis rd,NULL,liberty,29657,8649798726,8649798726,tsfrady@bellsouth.net,thomasfrady,2003solara,0
+a330f215-22-05,1,5/22/2015 16:41,5/22/2015 16:41,Graham D,Southall,NULL,913 Woodland Road,NULL,Wauconda,60084-1474,Graham D Southall,NULL,NULL,913 Woodland Riad,NULL,Wauconda,60084-1474,847 526 7141,847 970 1288,ganda12@sbcglobal.net,GSouthall,Hiram492,0
+088e7915-24-05,1,5/24/2015 16:46,5/24/2015 16:46,RICK,SANTELLA,NULL,56 MAYFLOWER DRIVE,NULL,SICKLERVILLE,8081,RICK SANTELLA,NULL,NULL,56 MAYFLOWER DRIVE,NULL,SICKLERVILLE,8081,8567400623,2672498152,FUBS1@AOL.COM,FUBS1@AOL.COM,9979774,1
+e0801215-26-05,1,5/26/2015 13:00,5/26/2015 13:00,Louis,Villaume,Villaume,4500 Country Club Lane,NULL,Lake Charles,70605,Louis Villaume,Villaume,NULL,4500 Country Club Lane,NULL,Lake Charles,70605,3374775944,3375705018,louis@villaume.net,louis@villaume.net,8403129,1
+b0391515-27-05,1,5/27/2015 17:24,5/27/2015 17:24,craig,gross,Tucson Masonic Lodge No. 4,3590 N. Country Club Road,NULL,Tucson,85716,Craig Gross,Tucson Lodge No. 4,NULL,3590 N. Country Club Rd.,NULL,Tucson,85716,520-323-2821,520-248-4815,TL4SO@HOTMAIL.COM,tucsonlodge4,masonic100,0
+5e579c15-28-05,1,5/28/2015 9:31,5/28/2015 9:31,Miguel,Banagan,NULL,7633 Leesburg Pike,Suite 100,Falls Church,22043,Miguel Banagan,NULL,NULL,7633 Leesburg Pike,Suite 100,Falls Church,22043,7038480777,NULL,mike_banagan@msn.com,mbanaganjr,compass357,0
+24e47f15-29-05,1,5/29/2015 15:41,5/29/2015 15:41,frank,schenck,NULL,101 royal oak dr,NULL,aurora,44202,frank schenck,NULL,NULL,101 royal oak dr,NULL,aurora,44202,3309956826,NULL,templar_knights@hotmail.com,fschenck,oaken102,0
+36ca6a15-31-05,1,5/31/2015 9:16,5/31/2015 9:16,Carl,Smyers,NULL,65 Webb Road,NULL,Middletown,10940,Carl Smyers,NULL,NULL,65 Webb Road,NULL,Middletown,10940,914-260-6572,914-260-6572,cdsmyersjr@yahoo.com,cdsmyersjr@yahoo.com,1322218,1
+f7b38615-01-06,1,6/1/2015 22:14,6/1/2015 22:14,John,Gleasner,NULL,500 N. Lenzner Ave.,E-13,Sierra Vista,85635,John Gleasner,NULL,NULL,500 N. Lenzner Ave.,E-13,Sierra Vista,85635,520-732-8829,520-732-8829,jfgleas@udel.edu,jfgleas@udel.edu,4258198,1
+4afa8a15-02-06,1,6/2/2015 12:40,6/2/2015 12:40,Andrew,Martinez,NULL,307 Candlewood Ct.,NULL,Millersville,21108,Andrew Martinez,NULL,NULL,307 Candlewood Ct.,NULL,Millersville,21108,4109874018,2402981943,g.andrew.martinez@gmail.com,amart89,P@p2john$,0
+50b77915-02-06,1,6/2/2015 13:38,6/2/2015 13:38,Walter,Daniels,Daniels,15 E. Marble St.,Mechanicsburg,Mechanicsburg,17055,Walter Daniels,Daniels,NULL,15 E. Marble St.,Mechanicsburg,Mechanicsburg,17055,7177668291,7177668291,danretlaw@yahoo.com,danretlaw,Jwcd8291,0
+d302cf15-02-06,1,6/2/2015 22:25,6/2/2015 22:25,Kyle,Thorson,NULL,6916 Pinnacle Ridge Rd,NULL,Raleigh,27603,Kyle Thorson,NULL,NULL,6916 Pinnacle Ridge Rd,NULL,Raleigh,27603,9196736556,9196736556,kthorson@pobox.com,kthorson@pobox.com,3391053,1
+d85df315-04-06,1,6/4/2015 18:55,6/4/2015 18:55,Maurice,Little,NULL,346 Alder Road,NULL,Dover,19904,Maurice Little,NULL,NULL,346 Alder Road,NULL,Dover,19904,302-674-2416,NULL,mwlelec@fast.net,mwlelec@fast.net,6095606,1
+d7254a15-05-06,1,6/5/2015 12:01,6/23/2015 10:47,Glendon,Rice,Unity Lodge #130,520 S. 1st Ave,NULL,Sioux Falls,57104,Glendon Rice,Unity Lodge #130,NULL,520 S. 1st Ave,NULL,Sioux Falls,57104,605-376-4341,605-376-4341,unity130secretary@gmail.com,unity130secretary,Lockwood,0
+4d3cd815-05-06,1,6/5/2015 17:14,6/5/2015 17:14,Michael,Smith,NULL,1690 Royalsborough Rd.,NULL,Durham,4222,Michael Smith,NULL,NULL,1690 Royalsborough Rd.,NULL,Durham,4222,207 446 2529,NULL,Smith_michael_a@hotmail.com,Smith_michael_a@hotmail.com,5966399,1
+3648ba15-06-06,1,6/6/2015 10:45,6/6/2015 10:45,Ed,Lowe,Summit Lodge #213,PO Box 9,NULL,Twinsburg,44087,Ed Lowe,NULL,NULL,62F Canter Lane,NULL,Northfield,44067,2169561856,2169561856,welowe213@gmail.com,SummitLodge,obiwon736,0
+61781b15-08-06,1,6/8/2015 16:16,6/8/2015 16:16,Joseph,Helminiak,NULL,1229 Pecan Station,NULL,San Antonio,78258,Joseph Helminiak,NULL,NULL,1229 Pecan Station,NULL,San Antonio,78258,210-843-5271,210-843-5271,josephh49@yahoo.com,josephh49@yahoo.com,8941090,1
+d412dc15-08-06,1,6/8/2015 23:47,6/8/2015 23:47,Mitchell,May,Thomas DeVenny Lodge #928,1069 Camp Creek Road,NULL,Stopover,41568,Mitchell May,Thomas DeVenny Lodge #928,NULL,1069 Camp Creek Road,NULL,Stopover,41568,6064563801,NULL,mmay01@upike.edu,mmay01@upike.edu,4412522,1
+23ec1e15-08-06,1,6/8/2015 23:50,6/8/2015 23:50,Mitchell,May,Thomas DeVenny Lodge #928,1069 Camp Creek Road,NULL,Stopover,41568,Mitchell May,Thomas DeVenny Lodge #928,NULL,1069 Camp Creek Road,NULL,Stopover,41568,6064569126,NULL,mmay01@upike.edu,mmay01@upike.edu,5857449,1
+512da215-10-06,1,6/10/2015 13:02,6/10/2015 13:02,Larry,Darling,Carson Valley Lodge No.33,P.O. Box 2,NULL,Gardnerville,89410,Larry Darling,Secretary,NULL,1092 Foothill Road,NULL,Gardnerville,89460,(775)782-1292,(775) 790-4053,larryd60@frontier.com,lwdarling,cvlodge33,0
+ed955115-11-06,1,6/11/2015 5:48,3/19/2016 19:05,Edward,James,NULL,15831 Easthaven Ct,NULL,Bowie,20716,Edward James,NULL,NULL,15831 Easthaven Ct,NULL,Bowie,20716,443-336-9063,NULL,edwantjam@me.com,edwantjam,Anthony1Abby1,0
+a10fe215-11-06,1,6/11/2015 13:18,6/11/2015 13:18,KEITH,COOPER,NULL,5516 W PUEBLO AVE,NULL,PHOENIX,85043,KEITH COOPER,NULL,NULL,5516 W PUEBLO AVE,NULL,PHOENIX,85043,(623) 202-4582,(623) 202-4582,funky2ya@gmail.com,funky2ya@gmail.com,5451019,1
+b43a9115-11-06,1,6/11/2015 16:10,6/11/2015 16:10,william,Stewart,NULL,200 sumwalt street,NULL,sandston,23150,william Stewart,NULL,NULL,200 sumwalt street,NULL,sandston,23150,8049141589,8049141589,sgtbillstewart@aol.com,sgtbillstewart,missy2010,0
+43100515-13-06,1,6/13/2015 12:29,6/13/2015 12:29,Wallace,Bernard,NULL,PO Box 190085,NULL,Nashville,37219,Wallace Bernard,NULL,NULL,PO Box 190085,NULL,Nashville,37219,615-953-4803,NULL,eddie@bernardlock.com,eddie@bernardlock.com,2640223,1
+18b44915-14-06,1,6/14/2015 19:37,6/14/2015 19:37,Brian,Cielatka,NULL,148 Long Street,NULL,Archibald,71218,Brian M Cielatka,NULL,NULL,148 Long Street,NULL,Archibald,71218,318-801-8229,318-801-8229,smartassic@yahoo.com,JW388-,03-55-0-C,0
+f6e9d115-15-06,1,6/15/2015 13:09,6/15/2015 13:09,Robert,Davis,Guthrie Scottish Rite,900 E. Oklahoma,P.O. Box 70,Guthrie,73044,Robert Davis,Guthrie Scottish Rite,NULL,900 E. Oklahoma,P.O. Box 70,Guthrie,73044,405-282-1281,NULL,gsrite@sbcglobal.net,gsrite@sbcglobal.net,6216019,1
+a10b4e15-15-06,1,6/15/2015 15:57,10/4/2016 19:56,Richard,Kasza,NULL,4345 South 36th Street,NULL,Greenfield,53221,Richard Kasza,NULL,NULL,4345 South 36th Street,NULL,Greenfield,53221,4142816670,4142369416,ponit6769@wi.rr.com,dickka,208556dk,0
+0a3eab15-16-06,1,6/16/2015 13:36,6/16/2015 13:36,troy,clark,door to virtue,46 Monroe St,NULL,westminster ,21157,troy clark,door to virtue,NULL,46 Monroe St,NULL,westminster ,21157,410-876-8432,410-608-9448,troyclark2701@comcast.net,troyclark2701@comcast.net,4561157,1
+3dfa3f15-16-06,1,6/16/2015 16:40,6/16/2015 16:50,Thomas,Neyhart,NULL,41 Pawtuxet Rd,NULL,"Plymouth, Ma",2360,Thomas Neyhart,NULL,NULL,41 Pawtuxet Rd,NULL,"Plymouth, ma",2360,508-888-6610,NULL,tkn41p@verizon.net,golddigger@capecod.com,1327643,1
+f9322f15-17-06,1,6/17/2015 10:03,6/17/2015 10:03,WILLIAM,MINNECI,PHOENIX LODGE #131,P.O. BOX 92271,NULL,NASHVILLE,37209,WILLIAM MINNECI,"C/O BELLEVUE FLORIST, INC",NULL,220 OLD HICKORY BLVD,STE 101,NASHVILLE,37221,6156622330,NULL,PHOENIXLODGE131@AOL.COM,PHOENIXSECRETARY,PHO131TN37209,0
+af1c0315-17-06,1,6/17/2015 21:23,6/17/2015 21:23,Mark,Hoffman,NULL,117 Llewellyn Drive,NULL,Westfield,1085,Mark Hoffman,NULL,NULL,117 Llewellyn Drive,NULL,Westfield,1085,413-579-5404,413-214-1477,mhoff1993@gmail.com,mhoff1993,RahJacEmmAlex4,0
+52306415-17-06,1,6/17/2015 23:26,6/17/2015 23:26,Michael,Rankin,NULL,315 118th St E,NULL,Tacoma,98445,Michael Rankin,NULL,NULL,315 118th St E,NULL,Tacoma,98445,253-588-5787,NULL,Niknar@comcast.net,Niknar58,CFT$cft6,0
+8eff9715-18-06,1,6/18/2015 20:28,6/18/2015 20:28,Steven ,Silvers,Hillsborough Lodge No. 25,508 E. Kennedy Blvd,NULL,Tampa,33602,Steven Silvers,NULL,NULL,9802 Westchase Dr,NULL,Tampa,33626,8132292305,NULL,hills25@verizon.net,hills25@verizon.net,1314022,1
+2f09a715-19-06,1,6/19/2015 9:42,6/19/2015 9:42,William,Barrick,William Barrick,PO BOX 2176,NULL,Porter,77365,William Barrick,NULL,NULL,4624 N McCarty St,NULL,Houston,77013,7136771604,7136771604,bbarrick@stsco.com,bbarrick@stsco.com,2206022,1
+3935e215-22-06,1,6/22/2015 14:25,6/22/2015 14:25,Fred ,Kile,"AASR, Valley of Columbus",290 Cramer Creek Ct,NULL,Dublin,43017,Fred Kile,"AASR, Valley of Columbus",NULL,290 Cramer Creek Ct,NULL,Dublin,43017,6147662272,6147662272,fred@valleyofcolumbus.com,fskile,Cramer290,0
+f4b85015-23-06,1,6/23/2015 13:32,6/23/2015 13:32,Brian,Dodson,NULL,2707 Lakeside Village Dr,NULL,Missouri City,77459,Brian Dodson,NULL,NULL,2707 Lakeside Village Dr,NULL,Missouri City,77459,281-844-5747,281-844-5747,brdodson33@aol.com,brdodson33@aol.com,9497044,1
+ac8f0615-23-06,1,6/23/2015 17:15,6/23/2015 17:18,Michelle,Fulmer,Grand Lodge of Nebraska,301 N Cotner Blvd,NULL,Lincoln,68505-2315,Debbie Galli,Grand Lodge of Nebraska,NULL,301 N Cotner Blvd,NULL,Lincoln,68505-2315,402-475-4640,NULL,debbie@glne.org,glne2015,GrandLodge2015,1
+d4b73015-25-06,1,6/25/2015 7:49,6/25/2015 7:49,Larry,Preston,Janesville-Western Star #55,5902 N Glenmoor Ln,NULL,Janesville,53545,Larry Preston,Janesville-Western Star #55,NULL,5902 N Glenmoor Ln,NULL,Janesville,53545,6087542475,NULL,lprest44@charter.net,lprest44@charter.net,4327429,1
+5ef0a915-25-06,1,6/25/2015 11:04,6/25/2015 11:04,John A ,Branda,John Branda,82-16 34th Avenue,1G,Jackson Heights,11372,John A Branda,John Branda,NULL,82-16 34th Avenue,1G,Jackson Heights,11372,7188777419,NULL,jbranda.nyc@gmail.com,jbranda.nyc@gmail.com,6641307,1
+865d3115-25-06,1,6/25/2015 13:10,6/25/2015 13:10,Nelson,Bryant,N/A,7305 Kenneth Drive,NULL,Henrico,23228,Nelson Bryant,N/A,NULL,7305 Kenneth Drive,NULL,Henrico,23228,804/2623321,804/4055602,nbryant@cavtel.net,nbryant@cavtel.net,8458240,1
+e24e8315-25-06,1,6/25/2015 13:13,6/25/2015 13:13,Nelson,Bryant,NULL,7305 Kenneth Drive,NULL,Henrico,23228,Nelson Bryant,Bryant Lettering&Design,NULL,8650 Staples Mill Road,NULL,Henrico,23228,804/2623321,804/4055602,nbryant@cavtel.net,nbryant@cavtel.net,7253885,1
+3d631915-26-06,1,6/26/2015 13:04,6/26/2015 13:04,James,Mack,NULL,846 Bristol St,NULL,Pingree Grove,60140,James Mack,NULL,NULL,846 Bristol St,NULL,Pingree Grove,60140,3019973302,NULL,mack35jem@hotmail.com,mack35jem@hotmail.com,6345056,1
+fc6d1215-27-06,1,6/27/2015 10:49,6/25/2016 11:09,Chad,Wagoner,NULL,9953 County Road 120,NULL,Carthage,64836,Chad Wagoner,NULL,NULL,1615 Hazel,NULL,Carthage,64836,417-358-4899,417-793-4496,cwagoner1865@gmail.com,cwagoner,wunjo1,0
+662b6615-28-06,1,6/28/2015 15:50,6/28/2015 15:50,Dean,Clatterbuck,Dean Clatterbuck,P.O. Box 149,292 Click's Lane,New Market,22844,Dean Clatterbuck,NULL,NULL,P.O. Box 149,292 Click's Lane,New Market,22844,540-740-9287,301-922-2478,dclat@shentel.net,dsclat,gldc1811,0
+44848715-28-06,1,6/28/2015 17:53,8/7/2015 23:47,Gerald,Chartrand,NULL,2078 129th Ct NE,NULL,Blaine,55449-4996,Gerald Chartrand,NULL,NULL,2078 129th Ct NE,NULL,Blaine,55449-4996,7638623244,NULL,geraldchartrand@comcast.net,JChartrand,C#regor21,0
+ad1b1a15-28-06,1,6/28/2015 20:32,6/28/2015 20:32,Bruce,Caswell,Bruce Caswell,8940 E. Bacon Rd.,NULL,Hillsdale,49242,Bruce Caswell,Bruce Caswell,NULL,8940 E. Bacon Rd.,NULL,Hillsdale,49242,5175233067,NULL,bcaswell@frontier.com,bcaswell@frontier.com,8374909,1
+c96cf415-29-06,1,6/29/2015 12:35,6/29/2015 12:35,Darin,Lorenzen,NULL,103 Cypress Drive,NULL,Newark,19713,Darin Lorenzen,NULL,NULL,103 Cypress Drive,NULL,Newark,19713,3027312658,3025405509,darinlorenzen@yahoo.com,darinlorenzen@yahoo.com,5710437,1
+45da1515-29-06,1,6/29/2015 20:19,6/29/2015 20:19,Norm,Sanford,NULL,825 Willow Valley Lakes Drive,NULL,Willow Street,17584,Norm Sanford,NULL,NULL,825 Willow Valley Lakes Drive,NULL,Willow Street,17584,7174648601,NULL,norm.sanford@gmail.com,norm.sanford@gmail.com,9897221,1
+dbc8b415-30-06,1,6/30/2015 12:36,6/30/2015 12:55,C.F. William,Maurer,Maurer Books,3 Tulip Court,NULL,Park Ridge,7656,C.F. William Maurer,Maurer Books,NULL,3 Tulip Court,NULL,Park Ridge,7656,201-391-1631,NULL,bill@maurer.org,BillMaurer,Brandi,0
+797eb715-01-07,1,7/1/2015 15:08,7/1/2015 15:08,William ,Ellison,Lee Lodge No. 209 AF & AM,P. O. Box 207,NULL,Waynesboro,22980,William Ellison,Lee Lodge No. 209 AF & AM,NULL,P. O. Box 207,NULL,Waynesboro,22980,540-942-1400,NULL,lee209va@yahoo.com,lee209va@yahoo.com,8452252,1
+31ba1e15-02-07,1,7/2/2015 11:23,7/2/2015 11:23,John,Consoli,John consoli,120 Darnell Ave,NULL,Spring Hill,34606,John Consoli,John consoli,NULL,120 Darnell Ave,NULL,Spring Hill,34606,7279670551,NULL,Ontimeprintables@gmail.com,Ontimeprintables@gmail.com,4673657,1
+0b06b115-03-07,1,7/3/2015 10:42,7/3/2015 10:42,Vance,Burns,NULL,13100 W 87th St S,NULL,Clearwataer,67026-8500,Vance Burns,NULL,NULL,13100 W 87th St S,NULL,Clearwataer,67026-8500,316-617-7575,316-617-7575,burns@sfcinc.net,burns@sfcinc.net,9020992,1
+91b5c115-03-07,1,7/3/2015 10:58,7/3/2015 10:58,Vance,Burns,NULL,13100 W 87th St S,NULL,Clearwataer,67026-8500,Vance Burns,NULL,NULL,13100 W 87th St S,NULL,Clearwataer,67026-8500,316-617-7575,316-617-7575,burns@sfcinc.net,vaburns,lost3Wrd$,1
+6969f215-03-07,1,7/3/2015 16:30,7/3/2015 16:30,Frederick,Ritter,NULL,2535 River Rock Dr,NULL,Macungie,18062,Frederick Ritter,NULL,NULL,2535 River Rock Dr,NULL,Macungie,18062,4843503322,NULL,frederickritter@gmail.com,frederickritter@gmail.com,6536516,1
+5683f515-03-07,1,7/3/2015 17:23,7/3/2015 17:23,John,Stelling,NULL,6406 Jadeite Ave,NULL,Alta Loma,917373525,John Stelling,NULL,NULL,6406 Jadeite Ave,NULL,Alta Loma,917373525,9099444884,9099444884,stellingjd@charter.net,stellingjd,byteme,0
+fb04f115-05-07,1,7/5/2015 18:18,7/5/2015 18:18,Ronald,Code,NULL,4032 Sparkle Berry Dr,NULL,San Bernardino,92407,ron code,NULL,NULL,4032 sparle berry dr,NULL,san bernardina,92407,909 427 0864,818 518-7350,ron_steph@yahoo.com,Ron Code,mmroncode,0
+a9e1d515-06-07,1,7/6/2015 11:09,7/6/2015 11:09,Stephen A,White,None,20574 Running Creek Church Rd,NULL,Locust,28097,Stephen Allen White,20574 Running Creek Church Rd,NULL,20574 Running Creek Church Rd,NULL,Locust,28097,704 485-2891,704 840-8176,royceandsteve@carolina.rr.com,royceandsteve@carolina.rr.com,2880973,1
+53c94815-08-07,1,7/8/2015 3:07,7/8/2015 3:07,Terrance,Schaffer,Sherburne Lodge #95,10251 Palm St. NW,NULL,Coon Rapids,55433,Terrance M Schaffer,Sherburne Lodge #95,NULL,10251 Palm St. NW,NULL,Coon Rapids,55433,7637555854,7637555854,Sweetidiot@Aol.Com,DragonMaster,dragon666,0
+87df3e15-09-07,1,7/9/2015 8:36,7/9/2015 8:36,Terrance,Schaffer,NULL,10251 Palm St. NW,NULL,Coon Rapids,55433,Terrance Schaffer,NULL,NULL,10251 Palm St. NW,NULL,Coon Rapids,55433,7637555854,7637555854,Sweetidiot@Aol.Com,Sweetidiot@Aol.Com,4159018,1
+5edd6315-09-07,1,7/9/2015 15:28,7/9/2015 15:28,John,Brown,NULL,312 Elm Ave Elm Ave.,NULL,Tiffin,44883,John Brown,NULL,NULL,312 Elm Ave Elm Ave.,NULL,Tiffin,44883,419-552-5912,(419) 448-1289,jcbrown2@me.com,jcbrown2@me.com,7376318,1
+ad6a4c15-09-07,1,7/9/2015 18:58,10/17/2016 19:32,Donald,Enz,NULL,1775 Midway Road,NULL,De Pere,54115,Donald Enz,NULL,NULL,1775 Midway Road,NULL,De Pere,54115,9203603693,NULL,ducewitherspoon@yahoo.com,duce22,jewelz1,0
+2a77b415-13-07,1,7/13/2015 9:03,7/13/2015 9:03,Tyler,Peters,NULL,3275 Dunbar Lane,NULL,Indian Land,29707,Tyler Peters,NULL,NULL,3275 Dunbar Lane,NULL,Indian Land,29707,8642663679,8642663679,gtp1221@Gmail.com,Gtp1221,palmer.12,0
+5329b315-13-07,1,7/13/2015 9:23,7/13/2015 9:23,Ernest,Cavin,Haag-Streit USA ,3535 Kings Mills Rd,NULL,Mason,45040,Ernest Cavin,Haag-Streit USA ,NULL,3535 Kings Mills Rd,NULL,Mason,45040,5136807801,5136807801,ernest.cavin@gmail.com,ernest.cavin@gmail.com,5375861,1
+eb284515-13-07,1,7/13/2015 9:29,7/13/2015 9:29,Ernest,Cavin,NULL,2785 Ashton Dr,NULL,Lebanon,45036,Ernest Cavin,Haag-Streit USA,NULL,3535 Kings Mills Rd,NULL,Mason,45040,5136807801,5136807801,ernest.cavin@gmail.com,ernest.cavin@gmail.com,7668944,1
+fefcce15-13-07,1,7/13/2015 10:26,7/13/2015 10:26,David,Sandy,NULL,1818 Cromwood Road,NULL,Baltimore,21234,David Sandy,NULL,NULL,1818 Cromwood Road,NULL,Baltimore,21234,443-823-9094,443-823-9094,dsandy@raloid.com,dsandy@raloid.com,9383326,1
+de098e15-13-07,1,7/13/2015 10:36,7/13/2015 10:36,Mark,Smith,NULL,8 Kitcher Court,NULL,Trumbull,6611,Mark Smith,NULL,NULL,8 Kitcher Court,NULL,Trumbull,6611,2032584850,2032584850,fan4photos@gmail.com,marksct,jmmmes96,0
+405a1315-13-07,1,7/13/2015 14:17,7/13/2015 14:17,Craig,Wepprecht,NULL,3621 16th Avenue,NULL,Kenosha,53140,Craig Wepprecht,NULL,NULL,3621 16th Avenue,NULL,Kenosha,53140,2629147810,NULL,brewercraig13@gmail.com,Bewercraig13,pacifica13,0
+5ee19a15-13-07,1,7/13/2015 18:01,7/13/2015 18:01,Shem,Peachey,Sacramento Lodge No. 24,3110 Abbott Ave,NULL,Alamogordo,88310,Shem Peachey,Sacramento,NULL,3110 Abbott Ave,NULL,Alamogordo,88310,5754912023,5754912023,stpeachey@gmail.com,stpeachey@gmail.com,7438597,1
+1a840e15-13-07,1,7/13/2015 18:14,7/13/2015 18:14,Michael,Vickrey,NULL,4155 Vern Sikking Road,NULL,Appling,30802,Michael Vickrey,NULL,NULL,4155 Vern Sikking Road,NULL,Appling,30802,7064968031,7064968031,mike@mikevickrey.com,mike@mikevickrey.com,1342495,1
+f6bda715-13-07,1,7/13/2015 21:15,7/13/2015 21:15,Ross,Kenyon,Wor. Ross Kenyon,15 Front Street,#2,Clinton,1510,Ross Kenyon,Wor. Ross Kenyon,NULL,15 Front Street,#2,Clinton,1510,9786025506,9786025506,rkenyonpm@gmail.com,rosskenyon,WorTrinity1$,0
+ea99ef15-13-07,1,7/13/2015 23:13,7/13/2015 23:13,Rob,Gregory ,NULL,498 Sycamore Street,NULL,Rahway ,7065,Rob Gregory ,NULL,NULL,498 Sycamore Street,NULL,Rahway ,7065,9083397302,9083397302,Rgregory1971@gmail.com,Belfastutd,belfast1,0
+88cbba15-14-07,1,7/14/2015 7:36,7/14/2015 7:36,Carl,Klossner,NULL,P.O. Box 875,118 Quarry Ave.,Old Forge,13420,Carl J. Klossner,NULL,NULL,P.O. Box 875,118 Quarry Ave.,Old Forge,13420,315-369-3624,NULL,c_klossner@hotmail.com,c_klossner@hotmail.com,9877942,1
+1dbf3a15-14-07,1,7/14/2015 14:30,7/14/2015 14:30,Ken,Cohen,NULL,2161 Fenway Pl,NULL,Reynoldsburg,43068,Ken Cohen,NULL,NULL,2161 Fenway Pl,NULL,Reynoldsburg,43068,614.226.9002,NULL,ken.cohen@mason340.com,ken.cohen@mason340.com,4397334,1
+0d301f15-14-07,1,7/14/2015 15:26,7/14/2015 15:26,John,Woolsey,NULL,2604 Ave. I,NULL,Bay City,77414,John Woolsey,NULL,NULL,2604 Ave. I,NULL,Bay City,77414,979-245-4533,979-248-3199,jfwoolsey@hotmail.om,jfwoolsey@hotmail.om,6414991,1
+3d1bd115-15-07,1,7/15/2015 8:38,7/15/2015 8:38,Brian,Coffey,NULL,134 Lenox Parkway,NULL,Martinez,30907,Brian Coffey,NULL,NULL,134 Lenox Parkway,NULL,Martinez,30907,7062102637,7069104560,coffeybr@gmail.com,coffeybr,Intrepid1,0
+463f6c15-15-07,1,7/15/2015 17:28,7/15/2015 17:29,Rick,Tee,NULL,126 S. Main St.,NULL,Bath,27808,Rick Tee,NULL,NULL,126 S. Main St.,NULL,Bath,27808,252-923-9100,252-245-4265,rhtee1@gmail.com,Ricktee,Mason509,0
+47d1ef15-17-07,1,7/17/2015 9:03,6/17/2016 9:36,Dieter,Hees,NULL,700 Vassar Ave,NULL,Lakewood,8701,Dieter Hees,NULL,NULL,410 Merion Ave,NULL,Pine Beach,8741,7323004860,7323004860,dbhees@gmail.com,dbhees@gmail.com,hNZJB8xmG7qzFD,0
+40282f15-17-07,1,7/17/2015 18:44,7/17/2015 18:44,Leroy,Mitchell,NULL,10701 Tucker Rd,NULL,Vancleave,39565,Leroy Mitchell,NULL,NULL,10701 Tucker Rd,NULL,Vancleave,39565,2283920745,NULL,oldbaldy2002@yahoo.com,oldbaldy2002@yahoo.com,7465211,1
+6e31a415-18-07,1,7/18/2015 10:24,7/18/2015 10:24,Robert,Wheeler,NULL,325 Plant Ave,NULL,St Louis,63119,Robert Wheeler,NULL,NULL,325 Plant Ave,NULL,St Louis,63119,314 061-8679,NULL,wheelerrj@juno.com,wheelerrj,wellness,0
+c6a2c415-18-07,1,7/18/2015 10:39,7/18/2015 10:39,Jermaine,Jones,NULL,1048 Snead Dr.,NULL,Suffolk,23434,Jermaine Jones,NULL,NULL,1048 Snead Dr.,NULL,Suffolk,23434,7578090451,NULL,jonesjj357@yahoo.com,jonesjj357@yahoo.com,3117891,1
+a0c2ac15-18-07,1,7/18/2015 19:15,7/18/2015 19:15,Chad,Pezzano,NULL,938 Catalpa Court,NULL,Niskayuna,12309,Chad Pezzano,NULL,NULL,938 Catalpa Court,NULL,Niskayuna,12309,518-608-4000,518-573-9697,ChadPezzano@gmail.com,ChadPezzano@gmail.com,Jack1215,0
+c388e715-19-07,1,7/19/2015 10:33,7/19/2015 10:33,Greg,Vasquez,NULL,325 w. Knox Rd.,NULL,Tempe,85242,Greg Vasquez,NULL,NULL,325 w. Knox Rd.,NULL,Tempe,85242,None,None,Gdvasquez@cox.net,Gdvasquez@cox.net,1443046,1
+0217ad15-19-07,1,7/19/2015 19:07,7/19/2015 19:07,Lawrence,Thompson,NULL,805 Shorewood Dr,NULL,Coppell,Texas,Lawrence Thompson,NULL,NULL,805 Shorewood Dr,NULL,Coppell,Texas,2144166960,2144166960,larry_thompson99@yahoo.com,larry_thompson99@yahoo.com,inthewest,0
+2c4bab15-20-07,1,7/20/2015 13:40,7/20/2015 13:40,Nelson,Rose,NULL,5180 SW 19th St,NULL,Plantation,33317,Nelson Rose,NULL,NULL,5180 SW 19th St,NULL,Plantation,33317,9548821046,9548821046,nrose@srmiami.org,nelsonrfl,Brykieaus01,0
+8e44db15-21-07,1,7/21/2015 0:36,7/21/2015 0:36,Charles,Ward IV,NULL,4446 Mendenhall Boulevard,NULL,Juneau,99801,Charles Ward,NULL,NULL,4446 Mendenhall Boulevard,NULL,Juneau,99801,9079573582,NULL,charlesward4@me.com,newwardorder,000destruct0,0
+14720015-21-07,1,7/21/2015 11:56,7/21/2015 11:58,Michael,Dixon,NULL,913 Jannas Trail,NULL,Edmond,73012,Michael Dixon,NULL,NULL,913 Jannas Trail,NULL,Edmond,73012,(405) 330-8626,(405) 613-5103,mdixon7@cox.net,mdixon,neosuu1981,0
+96f6b915-21-07,1,7/21/2015 12:30,10/30/2016 15:11,Don,Huxford,NULL,24 Montana Street,NULL,Rapid City,57701,Don Huxford,NULL,NULL,24 Montana Street,NULL,Rapid City,57701,6053814619,6053814619,donhux38@gmail.com,donhux,d6maY5q9u7cs,0
+b5b84415-21-07,1,7/21/2015 23:00,7/21/2015 23:00,Roger,Shirley,Handyman Specialist LLC.,16 Curt Jarrett Rd.,NULL,Ashville,35953,Roger Shirley,Handyman Specialist LLC.,NULL,16 Curt Jarrett Rd.,NULL,Ashville,35953,205-505-9994,205-505-9994,rogereshirley@gmail.com,rogereshirley,hotstuff11,0
+9c205215-22-07,1,7/22/2015 15:12,7/22/2015 15:26,Randy,Clements,NULL,89 Springhill dr W,NULL,Tifton,31793,Randy Clements,NULL,NULL,89 Springhill dr W,NULL,Tifton,31793,2293835514,2293263610,Rlclements6@aol.com,Rlclements6,rlc123,0
+4f1cfc15-22-07,1,7/22/2015 17:43,7/22/2015 17:43,Jake,Terpstra,Miriam Lodge # 20,1822 - 47th Ave,NULL,"Vernon, BC V1T 9P3",V1T 9P3,Jake Terpstra,Miriam Lodge #20,NULL,1822 - 47th Ave,"Vernon, BC V1T 9P3","Vernon, BC, Canada V1T 9P3",V1T 9P3,250-545-6594,250-5401940,TerpstraJake@gmail.com,Miriam Lodge #20,1940Jake,0
+7d862215-22-07,1,7/22/2015 23:34,7/22/2015 23:34,Chuck,Brust,NULL,421 11 Ave SE,NULL,Rochester,55904,Chuck Brust,NULL,NULL,421 11 Ave SE,NULL,Rochester,55904,5072545712,5072545712,brust.charles@mayo.edu,csbrust,pame1apkb,0
+dbdcd115-26-07,1,7/26/2015 15:41,7/26/2015 15:41,Patricia,Bradbury,NULL,5874 Lexington Drive,NULL,Pipersville,18947,Patricia Bradbury,NULL,NULL,5874 Lexington Drive,NULL,Pipersville,18947,215-766-2244,NULL,pabradbury@verizon.net,pabradbury@verizon.net,5373357,1
+bb3c6115-27-07,1,7/27/2015 2:05,7/27/2015 2:05,hyunwoo lee,lee,USA.GOV,CLAIFORNIA,NULL,SANDING,92106,HYUNWOO LEE,SAMSUNG,NULL,CLAIFORNIA,CLAIFORNIA,CALIFONIA,92106,8.20103E+12,1031723825,azy14037@gmail.com,hyunwoo lee,gh135879,0
+45b08315-28-07,1,7/28/2015 11:29,7/28/2015 11:29,robert,chalk,NULL,10005 State rd. 48,NULL,aurora,47001,robert chalk,NULL,NULL,10005 State rd. 48,NULL,aurora,47001,812-926-1128,812-584-0902,r.chalksr@gmail.com,r.chalksr@gmail.com,8529594,1
+8d7a3515-28-07,1,7/28/2015 11:32,7/28/2015 11:32,Robert ,chalk,NULL,10005 State rd. 48,NULL,aurora,47001,Robert chalk,NULL,NULL,10005 State rd. 48,NULL,aurora,47001,812-926-1128,812-584-0902,r.chalksr@gmail.com,rchalksr,ra16649666,1
+65c89b15-28-07,1,7/28/2015 13:55,7/28/2015 13:55,Donald,Yankey,Grand Lodge of Kentucky,300 Masonic Home Dr,NULL,Masonic Home,40041,Donald Yankey,Grand Lodge of Kentucky,NULL,300 Masonic Home Dr,NULL,Masonic Home,40041,502-893-0192,NULL,grandsecretary@grandlodgeofkentucky.org,grandsecretary@grandlodgeofkentucky.org,3848599,1
+b002ae15-28-07,1,7/28/2015 22:54,7/28/2015 22:54,Paul,Hulseapple,NULL,5 Garrison Ln,NULL,Ballston Lake,12019,Paul Hulseapple,NULL,NULL,5 Garrison Ln,NULL,Ballston Lake,12019,5182654211,NULL,phulseapple@nycap.rr.com,phulseapple@nycap.rr.com,3398906,1
+439afd15-29-07,1,7/29/2015 11:43,7/29/2015 11:43,bob,blum,Hickory Flat #205,c/o 2614 Grapevine Cir,NULL,Cumming,30041,bob blum,Hickory Flat #205,NULL,c/o 2614 Grapevine Cir,NULL,Cumming,30041,7707814766,NULL,bobblum@mindspring.com,Hickory Flat #205,4752586,0
+6d8d6f15-29-07,1,7/29/2015 13:28,7/29/2015 13:30,BENJAMIN,BRAYTON,NULL,5911 RANDOLPH RD,NULL,MORRISVILLE,05661-8114,BENJAMIN BRAYTON,NULL,NULL,5911 RANDOLPH RD,NULL,MORRISVILLE,05661-8114,8022538594,NULL,benb_gawhsicom.gawhsi@bluetie.com,benbray,benji6181,0
+163a4215-29-07,1,7/29/2015 15:00,7/30/2015 12:37,Clyde A.,Barton,NULL,CMR 467 Box 2864R,NULL,APO,09096-2864,Clyde A. Barton,NULL,NULL,CMR 467 Box 2864R,NULL,APO,09096-2864,496-981-5681,NULL,barton.evans29@t-online.de,Clyde@Barton,us56692830,0
+b6433e15-30-07,1,7/30/2015 16:32,7/30/2015 16:32,Larry,Kent,Larry Kent,529 Sevilla Pl,NULL,The Villages,32159,Larry Kent,Larry Kent,NULL,529 Sevilla Pl,NULL,The Villages,32159,352-750-3385,309-824-5573,Lpkeny1@aol.com,Larry kent,harley07,0
+1437d915-30-07,1,7/30/2015 19:35,7/30/2015 19:35,Frank,Loui,A&ASR,2850 19th Avenue,NULL,San Francisco,94132,Frank Loui,A&ASR,NULL,2850 19th Avenue,NULL,San Francisco,94132,4156098839,4156098839,frankloui@aol.com,frankloui@aol.com,2648886,1
+25016915-30-07,1,7/30/2015 20:25,7/30/2015 20:25,Christopher,Blunt,NULL,5 Snells Court,NULL,East Bridgewater,2333,Christopher Blunt,NULL,NULL,5 Snells Court,NULL,East Bridgewater,2333,508-562-2280,508-562-2280,christopher.j.blunt@gmail.com,cjb129,semperfi8892,0
+07b3f515-31-07,1,7/31/2015 1:18,7/31/2015 1:18,STEPHEN,HAXBY,NULL,PO BOX 12112,NULL,Fort Wayne,46862-2112,STEPHEN HAXBY,NULL,NULL,1701 W. STATE BLVD.,NULL,FORT WAYNE,46808-1931,2604207936,NULL,shaxby@aol.com,shaxby,ACPDbear95,0
+49a79f15-31-07,1,7/31/2015 9:47,7/31/2015 9:47,Jason,Lang,NULL,2458 59th street NE,NULL,Buffalo,55313,Jason L Lang,NULL,NULL,2458 59th street NE,NULL,Buffalo,55313,7634583399,7634583399,jllang320@gmail.com,jllang320@gmail.com,6195462,1
+a5543e15-31-07,1,7/31/2015 12:03,7/31/2015 12:57,Roy,Simpadian,NULL,535 Amsterdam Ave,NULL,Ridgewood,7450,Roy Simpadian,NULL,NULL,535 Amsterdam Ave,NULL,Ridgewood,7450,2019957138,NULL,simpadian@gmail.com,simpadian@gmail.com,2111301,1
+b83f1d15-02-08,1,8/2/2015 11:30,8/2/2015 11:30,Todd,Tubby,NULL,8 Mohican Place,NULL,Lake Hiawatha,7034,Todd Tubby,NULL,NULL,8 Mohican Place,NULL,Lake Hiawatha,7034,9733348343,9732192316,ttubby4892@aol.com,ttubby4892,Lenin1917,1
+f9a4f715-03-08,1,8/3/2015 17:25,8/3/2015 17:25,David,Grieco,NULL,825 Flanders Rd,NULL,Coventry,6238,David Grieco,NULL,NULL,825 Flanders Rd,NULL,Coventry,6238,860-742-7511,860-331-6293,griecods@yahoo.com,griecods,Laurie11,0
+35ce9f15-04-08,1,8/4/2015 12:24,8/4/2015 12:24,Pete,Pancari,Pete Pancari,177 Greenlea Drive,NULL,Moon Twp.,15108,Pete Pancari,Pete Pancari,NULL,177 Greenlea Drive,NULL,Moon Twp.,15108,412-613-3214,412-613-3214,ppanca@verizon.net,ppanca@verizon.net,4589853,1
+9d26e415-04-08,1,8/4/2015 15:34,8/4/2015 15:34,David,Blanton,NULL,557 Seay Rd,NULL,Boiling Springs,29317,David Blanton,NULL,NULL,557 Seay Rd,NULL,Boiling Springs,29317,864-578-3345,864-590-6173,sctopgun@charter.net,SirZeusB1,KingSirZeusB1,0
+ab46f215-04-08,1,8/4/2015 18:43,8/4/2015 18:43,Joseph J,Beaumont,NULL,7 Terrell Lane,NULL,Hollis,03049-8509,Joseph J Beaumont,NULL,NULL,7 Terrell Lane,NULL,Hollis,03049-8509,603-598-5460,603-321-0349,jbeaumont40@aol.com,jbeaumont40@aol.com,3013059,1
+964b2415-05-08,1,8/5/2015 0:14,8/5/2015 0:14,Robert,Strayer,Brunswick Lodge 717,P.O. Box 1262,NULL,Brunswick ,31521, Robert Strayer,Brunswick Lodge 717,NULL,363 Knox Drive,NULL,Brunswick,31525,912-506-1693,NULL,Brunswicklodge717@gmail.com,Brunswicklodge717@gmail.com,5285257,1
+52ab3315-05-08,1,8/5/2015 5:07,8/5/2015 5:27,Darryl,Smith,NULL,4601 Hampnett Avenue,NULL,Baltimore,21214,Darryl Smith,NULL,NULL,4601 Hampnett Avenue,NULL,Baltimore,21214,4105008503,4105008503,dsthe01andonly@gmail.com,Dsmith357,Mrhyde2100,0
+89a68e15-05-08,1,8/5/2015 12:28,8/5/2015 12:28,Richard J,Brown,same,3215 135 St.,NULL,Toledo,43611-2406,Richard J Brown,same,NULL,3215 135 St.,NULL,Toledo,43611-2406,419-726-6239,419-764-9422,richardbrown3215@gmail.com,PapaSmurf746,OldMan3215#2015$,0
+da458e15-05-08,1,8/5/2015 19:35,8/5/2015 19:35,Roberto ,Sanchez,NULL,16346 flint run way,NULL,Sugar land,77498,Roberto Sanchez,NULL,NULL,16346 flint run way,NULL,Sugar land,77498,2815363231,NULL,Rmsh13@yahoo.com,Rmsh13@yahoo.com,9770014,1
+7adc5a15-06-08,1,8/6/2015 19:39,8/7/2015 12:39,Tim ,Krueger,Nez Perce Lodge #10,1122 18th Avenue,NULL,Lewiston,83501,Tim Krueger,NULL,NULL,355Thain Road,NULL,Lewiston,83501,208-746-0559,208-413-2003,travellandrv@cableone.net,wildcatt26,nitosa204,0
+82f5cb15-08-08,1,8/8/2015 12:07,8/8/2015 12:07,Brent,Helm,Brent AHelm,198 Saratoga Trail,NULL,Lapeer,48446,Brent Helm,Brent AHelm,NULL,198 Saratoga Trail,NULL,Lapeer,48446,8102455832,8108450556,brentahelm@aol.com,brentahelm,Jul-19,0
+e9060c15-09-08,1,8/9/2015 17:24,8/9/2015 17:24,Robert,Strayer,Brunswick Lodge #717,P.O. BOX 1262,NULL,Brunswick ,31521,Robert Strayer Jr,Brunswick Lodge #717,NULL,363 Knox Dr. ,NULL,Brunswick ,31525,912-506-1693,NULL,Brunswicklodge717@gmail.com,BrunswickLodge717,Bwk717,1
+eb1e8a15-10-08,1,8/10/2015 21:45,8/10/2015 21:45,Lawrence,Rosen,NULL,24 West Shore Rd,P.O. Box 206,Alburgh,5440,Lawrence Rosen,NULL,NULL,24 West Shore Rd,P.O. Box 206,Alburgh,5440,802-796-3761,802-372-1515,larryr409@hotmail.com,larryr409@hotmail.com,7569477,1
+f7894815-10-08,1,8/10/2015 23:31,8/10/2015 23:31,Michael,Seibert,NULL,100 W Taylor Run Pkwy Apt 8,NULL,Alexandria,22314,Michael Seibert,NULL,NULL,100 W Taylor Run Pkwy Apt 8,NULL,Alexandria,22314,8433404022,8433404022,mseibert@gmail.com,mseibert,857011557,0
+44106a15-11-08,1,8/11/2015 20:57,8/11/2015 20:57,JOHN,LOGAN,NULL,13913 Kirkland Ridge,NULL,Edmond,73013,JOHN LOGAN,NULL,NULL,13913 Kirkland Ridge,NULL,Edmond,73013,4054350318,4054350318,jllogan@sbcglobal.net,jllogan@sbcglobal.net,7842402,1
+80c6a115-14-08,1,8/14/2015 10:57,8/14/2015 10:57,Thomas,Wilds,NULL,102 Wenlock Cir,NULL,Irmo,29063,Thomas Wilds,NULL,NULL,102 Wenlock Cir,NULL,Irmo,29063,8036650066,8036650066,tswilds@gmail.com,tswilds,tw5190,0
+88488815-14-08,1,8/14/2015 17:39,8/14/2015 17:39,Arne,Hansen,NULL,2055 Ponderosa Ct.,NULL,Bellingham,98229,Arne Hansen,NULL,NULL,2055 Ponderosa Ct.,NULL,Bellingham,98229,3606764132,NULL,vaq6313@outlook.com,vaq6313@outlook.com,4336366,1
+67f9c815-16-08,1,8/16/2015 1:11,8/16/2015 1:11,Carl,Nelson,Campbell Masonic Lodge 115,P.O. Box 1041,NULL,Marshall,72650,Carl Nelson,Campbell 115,NULL,2940 Oxley RD.,NULL,Leslie,72645,8705042245,870-504-2245,carlnelson66@gmail.com,carlnelson66,arkansas1930,1
+ec1c6315-17-08,1,8/17/2015 13:44,8/17/2015 13:44,Jesse,Riggs,NULL,729 N Wickshire Way,NULL,Brentwood,37027,Jesse Riggs,NULL,NULL,729 N Wickshire Way,NULL,Brentwood,37027,6153312005,6159720942,jesseriggs@bellsouth.net,jesseriggs,MR4054jnr,0
+498b2615-17-08,1,8/17/2015 20:36,8/17/2015 20:42,Donald,Courter,Donald Courter,3412 Hazelwood Ct.,NULL,Davenport,52806,Donald Courter,Donald Courter,NULL,3412 Hazelwood Ct.,NULL,Davenport,52806,563-386-5414,NULL,dcourter1@msn.com,DCourter,Courter3412,0
+41049015-18-08,1,8/18/2015 14:21,8/18/2015 14:21,Chad,Michels,NULL,1041 Main St.,NULL,Lomira,53048,Chad Michels,NULL,NULL,1041 Main St.,NULL,Lomira,53048,2624836937,2624836937,chadmichels@live.com,ChadMichels,9223W41gtz,0
+8eccb315-19-08,1,8/19/2015 13:44,8/19/2015 13:44,John,Burkhart,Jackson Lodge 146,1818 N. Ewing St.,NULL,Seymour,47274,John Burkhart,Jackson Masonic Lodge 146 F&AM,NULL,951 W. 8th. St.,NULL,Seymour,47274,812-522-4945,NULL,secretary@jacksonlodge146.org,johnburkhart,walleye,0
+1155be15-19-08,1,8/19/2015 13:57,8/19/2015 13:57,John,Burkhart,Jackson Lodge 146,1818 N. Ewing St.,NULL,Seymour,47274,John Burkhart,Jackson Masonic Lodge 146 F&AM,NULL,951 W. 8th. St.,NULL,Seymour,4,812-522-4945,NULL,secretary@jacksonlodge146.org,secretary@jacksonlodge146.org,6245284,1
+d1bf0115-19-08,1,8/19/2015 13:59,8/19/2015 13:59,John,Burkhart,Jackson Lodge 146,PO Box 146.,NULL,Seymour,47274,John Burkhart,Jackson Masonic Lodge 146 F&AM,NULL,951 W. 8th. St.,NULL,Seymour,47274,812-522-4945,NULL,secretary@jacksonlodge146.org,secretary@jacksonlodge146.org,5695268,1
+e2d2dd15-20-08,1,8/20/2015 8:41,8/20/2015 8:41,Jay ,Custer,Collins-Spring Valley Lodge #192,1470 6th Ave,NULL,Baldwin,54002,Jay Custer,Collins-Spring Valley Lodge #192,NULL,1470 6th Ave,NULL,Baldwin,54002,7159280001,NULL,jgcuster@baldwin-telecom.net,jgcuster@baldwin-telecom.net,2960561,1
+a8568b15-21-08,1,8/21/2015 15:05,8/21/2015 15:05,Daniel,Ferszt,NULL,1608 S. Wooster St.,NULL,Los Angeles,90035,Daniel Ferszt,Ionic Composite Lodge,NULL,1122 S. La Cienega Blvd.,Suite 100,Los Angeles,90035,3104248290,3104248290,ionicomp@sbcglobal.net,ionicomp@sbcglobal.net,3681482,1
+00161b15-21-08,1,8/21/2015 15:37,8/21/2015 15:37,Daniel,Ferszt,--,1608 S. Wooster St.,NULL,Los Angeles,90035,Daniel Ferszt,Ionic Composite Lodge,NULL,1122 S. La Cienega Blvd.,Suite 100,Los Angeles,90035,3104248290,3104248290,danielferszt@gmail.com,danielferszt@gmail.com,3177258,1
+3d109d15-23-08,1,8/23/2015 19:05,8/23/2015 19:05,Edward,Harris,NULL,1935 Ptarmigan Lane NW,NULL,Poulsbo,98370,Edward Harris,NULL,NULL,1935 Ptarmigan Lane NW,NULL,Poulsbo,98370,360-620-0458,3606200458,mastermason260@gmail.com,harrisea,jinxie1935,0
+ab34a415-24-08,1,8/24/2015 17:34,8/24/2015 17:34,James F,Hardee,NULL,3700 Relic Dr,NULL,Sandston,23150,James F Hardee,NULL,NULL,3700 Relic Dr,NULL,Sandston,23150,804 737 0156,NULL,hardeesr@yahoo.com,hardeesr@yahoo.com,3122101,1
+4d0d1d15-24-08,1,8/24/2015 20:01,8/24/2015 20:01,Davis,Hawkins,NULL,3384 Lytle Rd,NULL,Waynesville,45068,Davis Hawkins,NULL,NULL,3384 Lytle Rd,NULL,Waynesville,45068,740-505-8855,740-505-8855,brodhawkins@gmail.com,brodhawkins@gmail.com,2098756,1
+b3f34a15-24-08,1,8/24/2015 20:08,8/24/2015 20:08,Murray K.,Lilley,NULL,123 Grist Stone Way,NULL,Owings Mills,21117,Murray K. Lilley,NULL,NULL,123 Grist Stone Way,NULL,Owings Mills,21117,4104845056,4103509585,mklilley391@gmail.com,mklilley391@gmail.com,9376808,1
+5acaad15-25-08,1,8/25/2015 8:39,8/25/2015 8:39,John,Zabel,NULL,371 Lyndon Rd,NULL,Fairport,14450,John Zabel,NULL,NULL,371 Lyndon Rd,NULL,Fairport,14450,585-223-3228,585-576-4868,zabelj@mindspring.com,zabelj@mindspring.com,4994354,1
+d0894e15-25-08,1,8/25/2015 10:25,8/25/2015 10:25,John,Burkhart,Jackson Lodge 146,PO Box 146.,NULL,Seymour,47274,John Burkhart,Jackson Lodge 146,NULL,PO Box 146.,NULL,Seymour,47274,812-522-4945,NULL,secretary@jacksonlodge146.org,secretary@jacksonlodge146.org,7024469,1
+d55a0815-25-08,1,8/25/2015 14:01,8/25/2015 14:01,Dale,Marfell,NULL,616 N Locust,NULL,Litchfield,62056,Dale Marfell,NULL,NULL,616 N Locust,NULL,Litchfield,62056,2173243872,NULL,dalemarfell@hotmail.com,dalemarfell@hotmail.com,2454680,1
+d405ff15-25-08,1,8/25/2015 14:09,8/25/2015 14:09,Kenneth G ,Bates,Dexter Lodge # 1072,513 Brown St,PO Box 531,Dexter,13634,Kenneth G Bates,Dexter Lodge # 1072,NULL,513 Brown St,PO Box 531,Dexter,13634,315-639-6110,774-0066,kbates@twcny.rr.com,kbates@twcny.rr.com,7684732,1
+23be3a15-26-08,1,8/26/2015 0:44,8/26/2015 0:44,Eric,Johnson,NULL,2017 Piper Circle,NULL,Anacortes,98221-3125,Eric Johnson,NULL,NULL,2017 Piper Circle,NULL,Anacortes,98221-3125,3608405415,3608405415,AnacortesEric@gmail.com,johnsonenm,Dybw/0p@ms,0
+40bcf615-26-08,1,8/26/2015 21:25,8/26/2015 21:25,Donald,Crews,NULL,2724 Willard Ave,NULL,Cincinnati,45209,Donald Crews,NULL,NULL,2724 Willard Ave,NULL,Cincinnati,45209,5137025784,5137024852,emperor.1959@gmail.com,emperor.1959@gmail.com,8868630,1
+61e37f15-26-08,1,8/26/2015 21:26,8/26/2015 21:26,Donald,Crews,NULL,2724 Willard Ave,NULL,Cincinnati,45209,Donald Crews,NULL,NULL,2724 Willard Ave,NULL,Cincinnati,45209,5137025784,5137025784,emperor.1959@gmail.com,emperor.1959@gmail.com,6369805,1
+02e71a15-26-08,1,8/26/2015 23:09,8/26/2015 23:09,Mit,Patel,NULL,807 S. Oregon Avenue,Apt B,Tampa,33612,Mit Patel,NULL,NULL,807 S. Oregon Avenue,Apt B,Tampa,33612,8134000648,NULL,shotefuse@gmail.com,shotefuse@gmail.com,7555547,1
+918aaf15-27-08,1,8/27/2015 8:31,8/27/2015 8:31,Dayton,Berg,NULL,53153 Rush Lake Trail,NULL,Rush City,55069,Dayton Berg,NULL,NULL,53153 Rush Lake Trail,NULL,Rush City,55069,3203583768,3203583768,bergdayton@gmail.com,bergdayton@gmail.com,7259818,1
+18f5fb15-27-08,1,8/27/2015 9:50,8/27/2015 9:50,Michael,Wilhelm,NULL,91 Bee Mountain Road,NULL,Oxford,6478,Michael Wilhelm,NULL,NULL,91 Bee Mountain Road,NULL,Oxford,6478,3477396947,3477396947,wilhelmmi@gmail.com,wilhelmmi@gmail.com,emt276601,0
+1cbf0015-27-08,1,8/27/2015 10:08,8/27/2015 10:09,Michael,Ifland,NULL,610 Bradford Trce,NULL,Cookeville,38501,Michael Ifland,NULL,NULL,610 Bradford Trce,NULL,Cookeville,38501,9312657960,NULL,msifland@gmail.com,msifland,spikelifland,0
+2740a715-28-08,1,8/28/2015 11:42,10/21/2015 23:33,dean,adams,NULL,212 Countrywood Circle,NULL,Sour Lake,77659,dean adams,NULL,NULL,212 Countrywood Circle,NULL,Sour Lake,77659,409,4096513419,dadamstx@sbcglobal.net,dadamstx,luckytx1,0
+33d0a615-28-08,1,8/28/2015 16:09,10/3/2016 19:46,Kenneth ,Littler,NULL,124 Combs dr. ,NULL,Aiken ,29801,Kenneth Littler,NULL,NULL,124 Combs dr. ,NULL,Aiken ,29801,803 507-3990,803 507-3990,kbtlittler@atlanticbb.net,kbtlittler,kittle01,0
+ed585715-28-08,1,8/28/2015 18:00,8/28/2015 18:00,Sean,Daley,NULL,168 Harvard St.,NULL,Whitman ,2382,Sean Daley,NULL,NULL,168 Harvard St.,NULL,Whitman,2382,401-323-8678,NULL,seand3579@gmail.com,dosage,starck99,1
+609b9615-28-08,1,8/28/2015 18:11,8/28/2015 18:11,Charles,Berry,NULL,P.O. Box 1954,NULL,Huntsville,35807,Charles Berry,NULL,NULL,P.O. Box 1954,NULL,Huntsville,35807,256-881-3230,256-714-5153,charles_berry@icloud.com,harleywg,123Woody123!,0
+a5543715-29-08,1,8/29/2015 12:00,8/29/2015 12:00,Michael,Devlin,NULL,5818 Apollo Drive,NULL,Lake View,14085,Michael Devlin,NULL,NULL,5818 Apollo Drive,NULL,Lake View,14085,7166275607,7168090300,Truetopath@gmail.com,Truetopath,Forgotit1,0
+5c3e2015-30-08,1,8/30/2015 17:50,8/30/2015 17:50,Richard,Sobotta,Richard Sobotta,7800 W. Catalpa Ave.,NULL,Chicago,60656,Richard Sobotta,Cygnet Controls Inc.,NULL,8123 S. Lemont Rd.,NULL,Darien,60561,8473762723,8473611927,REALtd3@aol.com,REALtd3@aol.com,5777064,1
+15302515-30-08,1,8/30/2015 17:54,8/30/2015 17:54,Richard,Sobotta,Richard Sobotta,7800 W. Catalpa Ave.,NULL,Chicago,60656,Richard Sobotta,Cygnet Controls Inc.,NULL,8123 S. Lemont Rd.,NULL,Darien,60561,8473762723,8473611927,REALtd3@aol.com,REALtd3@aol.com,2521497,1
+3e651815-30-08,1,8/30/2015 19:06,8/30/2015 19:06,Mark,Smith,NULL,1900 N 29th St,NULL,Boise,83703,Mark H Smith,NULL,NULL,1900 N 29th St,NULL,Boise,83703,2083388936,NULL,mark@earthdr.com,mark@earthdr.com,9430639,1
+41114715-31-08,1,8/31/2015 12:12,7/22/2016 15:33,Ernie,Shoup,San Juan No 25,PO Box 1150,NULL,Aztec,87410,Ernie Shoup,San Juan No 25,NULL,906 Mountain View Dr.,NULL,Aztec,87410,505-333-2100,505-330-9692,eshoup2100@msn.com,eshoup2100,es5611es,0
+c3292d15-31-08,1,8/31/2015 13:25,8/31/2015 13:25,James,Chase,NULL,46 Tuftonboro Neck Road,NULL,Mirror Lake,3853,James Chase,NULL,NULL,46 Tuftonboro Neck Road,NULL,Mirror Lake,3853,6036303220,6036303220,ddc8085@gmail.com,jlc8085,aiden2cute,0
+f7039c15-31-08,1,8/31/2015 14:25,11/23/2016 8:04,Jeff,Lank,NULL,346 owls nest drive,NULL,bear,19701,jeff lank,NULL,NULL,346 owls nest drive,NULL,bear,19701,3026504815,3025451650,jtlank@gmail.com,jefflank,mary1942,0
+a6b48d15-31-08,1,8/31/2015 14:30,8/31/2015 14:30,Lester,Hanson,Salem Lodge 125 F.$A.M.,"110 N. Van NHess St.,",NULL,West Salem,54669-1603,Lester Hanson,Salem Lodge 125 F.$A.M.,NULL,"110 N. Van NHess St.,",NULL,West Salem,54669-1603,608-786-0930,NULL,lhanson003@centurytel.net,lhanson003@centurytel.net,6015409,1
+597cd315-31-08,1,8/31/2015 14:55,8/31/2015 14:55,Billy,Hewitt,NULL,601 Lower Brookhaven Rd.,NULL,Monticello,39654-3585,Billy Hewitt,NULL,NULL,601 Lower Brookhaven Rd.,NULL,Monticello,39654-3585,601-587-7606,NULL,billy.hewitt22@gmail.com,pophew,123456,0
+1ebf1415-31-08,1,8/31/2015 22:26,8/31/2015 22:26,Eugene,Olofson,NULL,19 Proudfit St.,NULL,Jamestown,14701,Eugene Olofson,NULL,NULL,19 Proudfit St.,NULL,Jamestown,14701,(716) 488-2530,NULL,mountmoriah145@hotmail.com,mountmoriah145@hotmail.com,7826410,1
+c0c47a15-01-09,1,9/1/2015 7:55,9/1/2015 7:55,EUGENE,ELWELL,NULL,142 GREENVIEW TERRACE,NULL,MOUNT LAUREL,8054,EUGENE ELWELL,NULL,NULL,142 GREENVIEW TERRACE,NULL,MOUNT LAUREL,8054,6099223596,6099223596,ELWELL.GENE@GMAIL.COM,ELWELL.GENE@GMAIL.COM,9697783,1
+fbcff415-01-09,1,9/1/2015 8:52,9/1/2015 8:52,Russell,Oliver,NULL,1460 Raymont Dr,NULL,Kettering,45429,Russell Oliver,NULL,NULL,1460 Raymont Dr,NULL,Kettering,45429,937-312-7315,937-312-7315,alpha0729a@sbcglobal.net,alpha729,shrine,0
+dc610a15-01-09,1,9/1/2015 10:56,9/1/2015 10:56,leonel,zolessi,NULL,209 bear dr ,NULL,richland,99352,leonel zolessi,NULL,NULL,209 bear dr ,NULL,richland,99352,5095212501,5095212501,drz3614@charter.net,drz3614,boazboaz,0
+bb7a3715-01-09,1,9/1/2015 11:30,9/1/2015 12:48,Daniel,Weiner,NULL,105 Partree Rd,NULL,Cherry Hill,8003,Daniel Weiner,NULL,NULL,105 Partree Rd,NULL,Cherry Hill,8003,8564245395,8562784692,dmw.rsl15@gmail.com,dweiner0004,p@55W09d,0
+40872a15-01-09,1,9/1/2015 16:48,9/1/2015 16:48,John,Godsey,John Godsey,127 Clements Road,NULL,"Cumberland,,",23040,John Godsey,John Godsey,NULL,127 Clements Road,NULL,"Cumberland,,",23040,804-492-5116,804-690-8356,john.godsey@LNF.com,godsey,yesdog,0
+fa709015-02-09,1,9/2/2015 15:17,9/2/2015 15:17,Garry,Lienhard,NULL,7710 SW Ruby Terrace,NULL,Portland,97219,Garry Lienhard,NULL,NULL,7710 SW Ruby Terrace,NULL,Portland,97219,5032788264,5032788264,doublerpdx@gmail.com,Doublerpdx@gmail.com ,20Master08,1
+0a8a6a15-02-09,1,9/2/2015 18:46,9/2/2015 18:46,Beynon,St John,Grand Lodge AF&AM of Wyoming,PO Box 1328,NULL,Lander,82520,Beynon St John,NULL,NULL,566 Cliff,NULL,Lander,82520,307-330-6214,NULL,grandsecretary@wyomingmasons.com,grandsecretary@wyomingmasons.com,9526641,1
+d538c315-02-09,1,9/2/2015 23:30,9/3/2015 14:58,Phillip,Waker,Phillip Walker,1782 Rockdale Circle,NULL,SNELLVILLE,30078-3404,Phillip Waker,Phillip Walker,NULL,1782 Rockdale Circle,NULL,SNELLVILLE,30078-3404,7709782771,NULL,pwalker@mindspring.com,pwalker@mindspring.com,5532068,1
+5f358115-03-09,1,9/3/2015 14:40,6/24/2016 12:52,james,Hammond,CITY DRUG STORE,104 E. Belknap,NULL,Jacksboro,76458,james Hammond,CITY DRUG STORE,NULL,104 E. Belknap,NULL,Jacksboro,76458,9405673505,9405071265,rod@citydrugjack.com,citydrug,Fountain76458,0
+ddbed415-03-09,1,9/3/2015 16:10,9/3/2015 16:10,Samuel,Bennett,NULL,6211 Harlow Blvd.,NULL,Jacksonville,32210,Samuel Bennett,NULL,NULL,6211 Harlow Blvd.,NULL,Jacksonville,32210,904 778-2527,NULL,bennett.samuel56@gmail.com,bennett.samuel56@gmail.com,6312492,1
+77da2315-03-09,1,9/3/2015 16:57,9/3/2015 16:57,Rob,Matherly,NULL,803 Bank St,NULL,Centerville,52544,Rob Matherly,NULL,NULL,803 Bank St,NULL,Centerville,52544,6418567172,NULL,jimrob@gmail.com,jimrob4,hikeeba,0
+a42c5e15-03-09,1,9/3/2015 17:39,9/3/2015 17:40,Richard,Sobotta,NULL,7800 W. Catalpa Ave.,NULL,Chicago,60656,Richard Sobotta,Cygnet Controls Inc.,NULL,8123 S. Lemont Rd.,NULL,Darien,60561,8473611927,8473611927,REALtd3@aol.com,Korbem32,ZorcomDot2,0
+50ce7d15-03-09,1,9/3/2015 19:10,9/3/2015 19:10,Stephen,Godfrey,S. Godfrey,18 - 4300 Stoneywood Lane,Victoria BC V8X 5A5,CANADA,V8X 5A5,Stephen Godfrey,S. Godfrey,NULL,18 - 4300 Stoneywood Lane,Victoria BC V8X 5A5,CANADA,V8X 5A5,2506585811,2506585811,alderley@shaw.ca,alderley@shaw.ca,8620947,1
+940c1f15-03-09,1,9/3/2015 19:16,9/3/2015 19:16,Stephen,Godfrey,S. Godfrey,18-4300 Stoneywood Lane,NULL,Victoria,V8X 5A5,Stephen Godfrey,S. Godfrey,NULL,18-4300 Stoneywood Lane,NULL,Victoria,V8X 5A5,250-658-5811,2506585811,alderley@shaw.ca,alderley@shaw.ca,9220940,1
+8b214715-04-09,1,9/4/2015 12:17,9/4/2015 12:17,Jerry,Garris,NULL,2901 Lyndell Way,NULL,Lancaster,29720,Jerry Garris,NULL,NULL,2901 Lyndell Way,NULL,Lancaster,29720,8032832415,8032832415,garrisjewel@comporium.net,garrisjewel@comporium.net,3181482,1
+cd864b15-04-09,1,9/4/2015 13:53,9/4/2015 13:53,Daniel,Burnfield,NULL,2619 Serenity Lane,NULL,Augusta,30909,Daniel Burnfield,NULL,NULL,2619 Serenity Lane,NULL,Augusta,30909,706 650 1807,7069103670,Daniel.Burnfield@gmail.com,dburnfield,!LBu73jMjc,0
+8a8bec15-04-09,1,9/4/2015 16:08,9/4/2015 16:14,Daniel,Hobson,NULL,204 S. Nursery Rd,NULL,Leesburg,34748,Daniel Hobson,NULL,NULL,204 S. Nursery Rd,NULL,Leesburg,34748,none,352-978-2482,danhobsone8@gmail.com,DanHobson,dcmdcj,0
+906a7615-04-09,1,9/4/2015 17:53,9/4/2015 17:53,charles,ramsey,NULL,po box 1053,NULL,fredericksburg,78624,charles ramsey,NULL,NULL,po box 1053,NULL,fredericksburg,78624,830-007-5984,817-988-8808,sec@fredericksburgmasons.com,sec@fredericksburgmasons.com,3356779,1
+8d73eb15-04-09,1,9/4/2015 20:43,9/4/2015 20:43,Robert,Ossont,Robert Ossont,60 Hopkins Street,NULL,Mount Morris,14510,Robert Ossont,NULL,NULL,60 Hopkins Street,NULL,Mount Morris,14510,5856582630,5857388856,mtm328@frontiernet.net,fellow0370,rno1005,0
+de1bb315-04-09,1,9/4/2015 21:40,9/4/2015 21:40,Danny,Uden,NULL,27087 155th Rd,NULL,Arkansas City,67005,Danny Uden,NULL,NULL,27087 155th Rd,NULL,Arkansas City,67005,620-442-6988,NULL,irnantlr@wildblue.net,irnantlr@wildblue.net,7092552,1
+bd808815-05-09,1,9/5/2015 9:31,9/5/2015 9:34,Kenneth,Smith,NULL,P.O. Box 3084,NULL,Alice,78333,Kenneth Smith,NULL,NULL,P.O. Box 3084,NULL,Alice,78333,3616644229,3617017944,cvideo@sbcglobal.net,woodworker,kjs1123,0
+adadec15-05-09,1,9/5/2015 11:51,9/5/2015 11:51,Kurt,Wagner,Tropical Lodge # 56,5072 Fiddleleaf Drive,NULL,Ft. Myers,33905-5131,Kurt Wagner,Tropical Lodge # 56,NULL,5072 Fiddleleaf Drive,NULL,Ft. Myers,33905-5131,2396945561,2396945561,kww5072@gmail.com,kwagner,flag1234,0
+add01315-05-09,1,9/5/2015 12:43,9/5/2015 12:43,Gary,Wilson,Gary Wilson,44 S. Adams Street,#225,Denver,80209,Gary Wilson,Gary Wilson,NULL,44 S. Adams Street,#225,Denver,80209,3033552304,N/A,GLWilson@Reagan.com,GLWilson,zardoz,0
+9eb7e315-06-09,1,9/6/2015 16:38,9/6/2015 16:38,Andre,Beliveau,NULL,908 Tower Ave. ,NULL,Maybrook,12543,Andre Beliveau,NULL,NULL,908 Tower Ave. ,NULL,Maybrook,12543,845-820-9786,845-820-9786,abeliveau.ny@gmail.com,abeliveau.ny@gmail.com,1780896,1
+ab1c9b15-07-09,1,9/7/2015 9:44,1/5/2016 19:19,Rolando A.,Cedo,Virginia Beach Sheriff's Office,2437 Rollingview Court,NULL,Virginia Beach,23456,Rolando A. Cedo,NULL,NULL,2437 Rollingview Court,Virginia Beach,Virginia,23456,7576504514,7576504514,LTRACedo@gmail.com,LTRACedo@gmail.com,$$Seedoe357stps$$,0
+70915415-07-09,1,9/7/2015 12:33,9/7/2015 12:33,Joel,Graeter,Tyler Chapter #24/G.M. Patrick Council #13,13613 C.R. 2241,NULL,Tyler,75707,Joel Graeter,Tyler Chapter #24/G.M. Patrick Council #13,NULL,13613 C.R. 2241,NULL,Tyler,75707,9035665079,9035304610,yorkritetyler@gmail.com,jaynesix,anniesue,0
+363bb715-07-09,1,9/7/2015 15:05,9/7/2015 15:05,Cecil O.,Akin,"Sugarland Lodge No, 281 F & Am",71 N. Elm St,NULL,LaBelle,33935,Cecil O. Akin,NULL,NULL,71 N. Elm St,NULL,LaBelle,33935,863-675-3561,863-517-1359,coakin@akin-davis.com,coakin@akin-davis.com,6336819,1
+c18fb915-07-09,1,9/7/2015 23:37,9/7/2015 23:37,Robert,Gore,NULL,"26-25 30th Street, 2",NULL,Astoria,11102,Robert Gore,NULL,NULL,"26-25 30th Street, 2",NULL,Astoria,11102,3476491191,7185783460,bro.robertgore@gmail.com,rjgore3,rjg5441963,0
+7635a415-08-09,1,9/8/2015 11:05,9/8/2015 11:05,Tom ,Sutton,NULL,6659 Steamboat Springs Dr,NULL,White Lake,48383,Tom Sutton,NULL,NULL,6659 Steamboat Springs Dr,NULL,White Lake,48383,734-637-6330,NULL,suttontj115@gmail.com,suttontj,way2much,1
+51481515-08-09,1,9/8/2015 13:14,9/8/2015 13:14,James,Hamlin,NULL,801 213th St SE,NULL,Bothell,98021,James Hamlin,NULL,NULL,801 213th St SE,NULL,Bothell,98021,425-486-0652,425-419-7893,jghamlin62@msn.com,jghamlin62@msn.com,6696731,1
+ce1a2615-09-09,1,9/9/2015 21:01,9/9/2015 21:01,Walter,Brown,NULL,1625 County Road 720,NULL,Buna,77612,Walter Brown,NULL,NULL,1625 County Road 720,NULL,Buna,77612,409.276.2248,409.658.3155,Workun@aol.com,Workun@aol.com,6268272,1
+90b74d15-09-09,1,9/9/2015 21:18,9/9/2015 21:19,Walter,Brown,NULL,1625 County Road 720,NULL,Buna,77612,Walter Brown,NULL,NULL,1625 County Road 720,NULL,Buna,77612,409.276.2248,409.658.3155,Workun@aol.com,BigBuddy2014,MasonicLodge1095,1
+e20aa815-10-09,1,9/10/2015 9:30,9/14/2016 8:25,Thomas ,Lowe,Grand Lodge of NH,PO Box 486,30 Mont Vernon St,Milford ,03055-0486,Thomas Lowe,Grand Lodge of NH,NULL,PO Box 486,30 Mont Vernon St,Milford ,03055-0486,603-554-1723,NULL,office@nhgrandlodge.org,NHGrandLodge,MilfordOffice2013,0
+691d0815-10-09,1,9/10/2015 14:52,9/10/2015 14:52,Bruce,Dickinson,NULL,137 Diamond View,NULL,La Vernia,78121,Bruce Dickinson,NULL,NULL,137 Diamond View,NULL,La Vernia,78121,4436033344,NULL,bruce.dickinson@aol.com,bruce.dickinson@aol.com,9209468,1
+3b476115-10-09,1,9/10/2015 16:19,9/10/2015 16:19,Doug,Kirk,Mt. Olivet Lodge # 226,1721 South Alcony-Conover Road,NULL,Troy,45373,Doug Kirk,Mt. Olivet Lodge # 226,NULL,1721 South Alcony-Conover Road,NULL,Troy,45373,937-339-1442,937-405-6413,dkirk3939@gmail.com,dkirk3939@gmail.com,1422102,1
+f8def815-10-09,1,9/10/2015 23:38,9/10/2015 23:38,John,Maihos,NULL,27 Pearl St,NULL,Beverly,1915,John Maihos,NULL,NULL,27 Pearl St,NULL,Beverly,1915,9788047143,9788047143,jmaihos@comcast.net,jmaihos@comcast.net,2249299,1
+65a31115-12-09,1,9/12/2015 11:23,9/12/2015 11:23,Daniel,French,NULL,345 W 20th St,NULL,Holland,49423,Daniel French,NULL,NULL,345 W 20th St,NULL,Holland,49423,6165101161,NULL,danieldfrench@yahoo.com,dudedone,dfcbabsba0304,0
+23d63015-12-09,1,9/12/2015 17:10,9/12/2015 17:11,Edwin,Pertubal,NULL,3626 Misty Woods Circle,NULL,Pace,32571,Edwin Pertubal,NULL,NULL,3626 Misty Woods Circle,NULL,Pace,32571,8502618168,NULL,pace349pm@gmail.com,epertubal,Venus1986,0
+1daf0715-13-09,1,9/13/2015 12:32,9/13/2015 12:32,Jim,Thomas,NULL,280 N 8th St,Apt 305,Boise,83702,Jim Thomas,NULL,NULL,280 N 8th St,Apt 305,Boise,83702,2082082208,NULL,jimrthomas@gmail.com,BrotherJim,Musxt181!,0
+8dc10015-13-09,1,9/13/2015 15:32,9/13/2015 15:32,TONY,TELKEN,NULL,2642 AUGUSTA DRIVE,NULL,GRAND FORKS,58201,TONY TELKEN,NULL,NULL,2642 AUGUSTA DRIVE,NULL,GRAND FORKS,58201,7017573669,2187799928,ttelken@ndmasons.com,ttelken,deacon,0
+28934f15-13-09,1,9/13/2015 16:03,9/8/2016 16:35,David,Carsno,NULL,213 Stevers Mill rd,NULL,Broadalbin,12025,David Carsno,NULL,NULL,213 Stevers Mill rd,NULL,Broadalbin,12025,518-649-0371,518-649-0371,dcarsno@nycap.rr.com,dcarsno,lw2dc67ac,0
+be788815-13-09,1,9/13/2015 20:54,9/13/2015 20:54,robert,loflin,NULL,323 N colorado st,NULL,port lavaca,77979,robert loflin,NULL,NULL,323 N colorado st,NULL,port lavaca,77979,3616526180,NULL,rmloflin@gmail.com,bigduke15,15@templar,0
+3d278f15-14-09,1,9/14/2015 10:49,9/14/2015 10:49,Adolph,Lopez,NULL,1716 Quesada Way,NULL,Burlingame,94010,Adolph Lopez,NULL,NULL,1716 Quesada Way,NULL,Burlingame,94010,6502703875,NULL,glopez@netwiz.net,aglopez1,MayKseto8699,0
+dca79a15-14-09,1,9/14/2015 13:16,9/14/2015 13:16,Gary,Hubbard,NULL,5842 Indiana St.,NULL,Buena Park,90621,Gary Hubbard,NULL,NULL,5842 Indiana St.,NULL,Buena Park,90621,(714)739-4704,NULL,hubbard.g@sbcglobal.net,hubbard.g@sbcglobal.net,7064736,1
+b584cd15-14-09,1,9/14/2015 17:33,9/14/2015 17:33,Cameron,Olsen,NULL,1911 W Fruit Tree Ln,NULL,Queen Creek,85142-6355,Cameron Olsen,NULL,NULL,1911 W Fruit Tree Ln,NULL,Queen Creek,85142-6355,4802988863,4802988863,cameron.d.olsen@gmail.com,camerondolsen,cameron1,0
+37d2d015-14-09,1,9/14/2015 20:28,9/14/2015 20:28,John,Copeland,NULL,44 Emily Ln,NULL,Bells,38006,John Copeland,NULL,NULL,44 Emily Ln,NULL,Bells,38006,731-676-3229,731-676-3229,coachcopeland58@yahoo.com,coachcopeland58@yahoo.com,9451877,1
+b148ae15-15-09,1,9/15/2015 12:39,9/15/2015 12:39,James,Stephenson,NULL,5585 Johnson Grove Rd,NULL,Alamo,38001,James Stephenson,NULL,NULL,5585 Johnson Grove Rd,NULL,Alamo,38001,731-656-2517,731-617-0433,jos720@CROCKETTNET.COM,jos720@CROCKETTNET.COM,2848854,1
+d2485615-15-09,1,9/15/2015 12:43,9/15/2015 12:43,James,Stephenson,NULL,5585 Johnson Grove Rd,NULL,Alamo,38001,James Stephenson,NULL,NULL,5585 Johnson Grove Rd,NULL,Alamo,38001,731-656-2517,731-617-0433,jos720@crockettnet.com,jos720@crockettnet.com,6972638,1
+2a443815-16-09,1,9/16/2015 11:02,9/16/2015 11:02,Gary,Sparks,"SPARKS FAMILY LAW, INC.","2890 North Main Street, Suite 205",NULL,Walnut Creek,94597,Gary Sparks,"SPARKS FAMILY LAW, INC.",NULL,"2890 North Main Street, Suite 205",NULL,Walnut Creek,94597,707-803-9385,NULL,gds_afl480@yahoo.com,gds_afl480@yahoo.com,4492359,1
+3beaf715-16-09,1,9/16/2015 12:33,9/16/2015 14:54,Michael,Miller,Michael Miller,640 mix avenue apt5N,NULL,Hamden,6514,Michael Miller,Michael Miller,NULL,640 mix avenue apt5N,NULL,Hamden,6514,2037475184,2037475184,Mjmiller98@yahoo.com,Mjmiller98,Mjm@1232,0
+429eeb15-16-09,1,9/16/2015 18:05,9/16/2015 18:05,Jared,Decker,%HRCA,PO Box 8710,NULL,Kodiak,99615,Jared Decker,%HRCA,NULL,PO Box 8710,NULL,Kodiak,99615,907-301-5838,Same,Decker08@gmail.com,Decker08@gmail.com,5354993,1
+6d7df315-16-09,1,9/16/2015 19:31,9/16/2015 19:31,Michael,Russell,NULL,411 Riedel Avenue,NULL,Staten Island,10306,Michael Russell,NULL,NULL,411 Riedel Avenue,NULL,Staten Island,10306,9174451809,9174451809,Michael.Russell@nyct.com,anysupplies001,mike411,0
+03a5cc15-17-09,1,9/17/2015 9:26,9/17/2015 9:26,John,Hussey,Clift Lodge No. 10,P. O. Box 729,NULL,"Bell Island, NL. Canada",A0A 4H0,John Hussey,NULL,NULL,Box 1428,Lance Cove,"Bell Island, NL. Canada",A0A 2V0,709 488-2296,NULL,jehussey@nf.sympatico.ca,jehussey@nf.sympatico.ca,4170691,1
+c47cbf15-17-09,1,9/17/2015 10:20,9/17/2015 10:20,David,Waggoner,NULL,2895 Twana dr,NULL,London,43140,David Waggoner,NULL,NULL,2895 Twana dr,NULL,London,43140,6145637471,6145637471,truck496@aol.com,truck496,Beehive2013,0
+75470215-17-09,1,9/17/2015 22:39,9/17/2015 22:39,Terry,Pounders,NULL,3931 County Road 30,NULL,Florence,35634,Terry Pounders,NULL,NULL,3931 County Road 30,NULL,Florence,35634,2568561527,NULL,terry7pounders@gmail.com,terry7pounders@gmail.com,7409004,1
+306c6115-18-09,1,9/18/2015 18:46,9/18/2015 18:46,Armando G.,Caceres,Oso Naval Lodge No. 1282 A.F. & A.M.,4202 Aaron Cove,NULL,Corpus Christi,78413,Armando G. Caceres,Oso Naval Lodge No. 1282 A.F. & A.M.,NULL,4202 Aaron Cove,NULL,Corpus Christi,78413,361-815-4204,361-815-4204,mandocaceres@gmail.com,mandocaceres@gmail.com,3323976,1
+576d6015-19-09,1,9/19/2015 12:27,9/19/2015 12:27,Virgil T,Larimore,NULL,1007 Juniper Springs Drive,NULL,Louisville,40242-7652,Virgil T Larimore,NULL,NULL,1007 Juniper Springs Drive,NULL,Louisville,40242-7652,502-339-7640,NULL,tomlarimore@bellsouth.net,tomlarimore,lewisparkland638,1
+a5ad8415-20-09,1,9/20/2015 14:02,9/20/2015 14:02,Bruce,Dickinson,NULL,137 Diamond View,NULL,La Vernia,78121,Bruce Dickinson,NULL,NULL,137 Diamond View,NULL,La Vernia,78121,4436033344,4436033344,bruce.dickinson@aol.com,bruce.dickinson@aol.com,9524074,1
+12b62715-21-09,1,9/21/2015 11:06,9/21/2015 11:06,Benjamin,Polston,NULL,2859 Bridle Creek Drive SW,NULL,Conyers,30094,Benjamin Polston,NULL,NULL,2859 Bridle Creek Drive SW,NULL,Conyers,30094,770-602-1801,678-571-2738,bwpolston@gmail.com,bpolston,ball8486,0
+c3979d15-21-09,1,9/21/2015 16:22,9/21/2015 16:22,J. Michael,Atchley,Tucson Scottish Rite,160 S. Scott Ave.,NULL,Tucson,85701,J. Michael Atchley,Tucson Scottish Rite,NULL,12522 N. Gentle Rain Dr.,NULL,Marana,85658,520-622-8364,520-730-8303,jmatch@theriver.com,jmatch,14-Apr-07,0
+1929a015-22-09,1,9/22/2015 16:40,9/22/2015 16:40,Jeffrey,Schimsky,NULL,174 Nieto Avenue,NULL,Long Beach,90803,Marc Newman,Perry Grand Family Friend,NULL,2235 Stacy Lane,NULL,Camarillo,93012,562.434.0705,310.251.8758,schimsky@me.com,schimsky@me.com,2462785,1
+8ca4c715-23-09,1,9/23/2015 8:59,12/28/2015 15:12,Marvin,Banister,"Renu-it, Inc.",3401 Old Dawson Rd,NULL,Albany,31721,Larry Manley,.,NULL,1187 Graves Springs Rd,NULL,Leesburg,31763,2298819547,2298819547,marvinbanister@ymail.com,renuit,milbrie1900,0
+574f2415-23-09,1,9/23/2015 11:49,9/23/2015 11:49,David,Ozvat,NULL,6641 Spencer Place,NULL,Ocean Isle Beach,28469,David Ozvat,NULL,NULL,6641 Spencer Place,NULL,Ocean Isle Beach,28469,910-575-4539,614-561-3915,ozvatd@yahoo.cpm,dozvat,Brutus1970,0
+9cc8b215-23-09,1,9/23/2015 12:16,9/23/2015 12:16,Wayne,Krause,NULL,12073 State Route 101,NULL,Caulfield,65626,Wayne Krause,NULL,NULL,12073 State Route 101,NULL,Caulfield,65626,417-284-0019,417-293-3952,bayou365@yahoo.com,bayou365@yahoo.com,9567156,1
+2894cf15-24-09,1,9/24/2015 0:52,9/24/2015 0:52,Allen,Gibson,Allen Gibson,113 South 39th,NULL,Van Buren,72956,Allen Gibson,Allen Gibson,NULL,113 South 39th,NULL,Van Buren,72956,479-689-5157,479-461-1462,golfer957@aol.com,golfer957,hotgolf2,0
+226cd616-28-02,1,2/28/2016 6:25,2/28/2016 6:25,James,Herring,NULL,Unit 145,NULL,Henrico,23223,James Herring,NULL,NULL,Unit 145,NULL,Henrico,23223,8042223663,8043577170,jherring.mahova@gmail.com,jherring.mahova@gmail.com,1418447,1
+d5b54f15-24-09,1,9/24/2015 10:00,9/24/2015 10:00,Thomas,Foster,Grand Lodge of A.F. & A.M. of Maryland,304 International Circle,NULL,Cockeysville,21030,Thomas Foster,Grand Lodge of A.F. & A.M. of Maryland,NULL,304 International Circle,NULL,Cockeysville,21030,4103169146,NULL,tfoster@glmd.org,tfoster@glmd.org,9252831,1
+97191e15-24-09,1,9/24/2015 10:08,9/24/2015 10:08,Thomas,Foster,Grand Lodge of A.F. & A.M. of Maryland,304 International Circle,NULL,Cockeysville,21030,Thomas Foster,Grand Lodge of A.F. & A.M. of Maryland,NULL,304 International Circle,NULL,Cockeysville,21030,4103169146,NULL,tfoster@glmd.org,tfoster@glmd.org,7982981,1
+54146a15-24-09,1,9/24/2015 12:58,9/24/2015 12:58,michael dwayne,jenkins,michael dwayne jenkins,1750 NE 4th street,#15,boynton beach,33435,michael dwayne jenkins,michael dwayne jenkins,NULL,1750 NE 4th street,#15,boynton beach,33435,2026971155,NULL,mdj7177@yahoo.com,Michalj6,Rich9696,0
+2c189e15-27-09,1,9/27/2015 3:12,9/27/2015 3:12,Kotaiba,Nasser,NULL,8707 Schumacher ln,Ste 101,Houston,77063,Kotaiba Nasser,NULL,NULL,8707 Schumacher ln,Ste 101,Houston,77063,2458332550,2548332550,Kotaiban@yahoo.com,Kotaiban,1227asdf,0
+56c73115-27-09,1,9/27/2015 16:28,9/27/2015 16:28,Michael,Slattery,NULL,2526 State Rte. 295,NULL,Canaan,12029,Michael Slattery,NULL,NULL,2526 State Rte. 295,NULL,Canaan,12029,5187810239,5187950946,michaelandabby@reagan.com,michaelandabby@reagan.com,7766705,1
+98bcbc15-28-09,1,9/28/2015 12:36,9/28/2015 12:36,Nathan,Zahn,NULL,2611 Northgate Rd,NULL,Wilmington,19810,Nathan Zahn,NULL,NULL,2611 Northgate Rd,NULL,Wilmington,19810,302 475 6469,302 229 5149,nzahnclu@verizon.net,nzahnclu@verizon.net,7859863,1
+c6356e15-28-09,1,9/28/2015 12:41,9/28/2015 12:41,Nathan,Zahn,NULL,2611 Northgate Rd,NULL,Wilmington,19810,Zahn Nate,NULL,NULL,2611 northgate Rd,NULL,Wilmington,19810,302 475 6469,302 229 5149,nzahnclu@verizon.net,nzahnclu@verizon.net,5930425,1
+61003d15-28-09,1,9/28/2015 20:39,9/28/2015 20:39,Justo,Gonzalez-Trapaga,NULL,PO Box 3007,NULL,Mayaguez,681,Justo Gonzalez-Trapaga,NULL,NULL,PO Box 3007,NULL,Mayaguez,681,7878057640,7873993461,jgtrapaga@yahoo.com,jgtrapaga,sebapaco1717,0
+87554215-28-09,1,9/28/2015 20:50,9/28/2015 20:50,Larry,Schmidt,NULL,4909 Hoen Avenue,NULL,Santa Rosa,95405-7411,Larry Schmidt,NULL,NULL,4909 Hoen Avenue,NULL,Santa Rosa,95405-7411,707-539-9712,707-479-8898,larry757@sonic.net,Larry757767,12#EyeflI#21,0
+aa57a615-29-09,1,9/29/2015 12:37,8/1/2016 13:02,Lynne,Blaylock,Grand Lodge of Washington,4970 Bridgeport Way W,NULL,University Place,98467,Lynne Blaylock,Grand Lodge of Washington,NULL,4970 Bridgeport Way W,NULL,University Place,98467,253-625-7891,NULL,lynneb@freemason-wa.org,lynneb@freemason-wa.org,lynne-gl,0
+866ad815-30-09,1,9/30/2015 0:41,9/30/2015 0:41,Russ,Smith,NULL,P.O. Box 276,605 Hazel Ave,Arco,83213,Russ Smith,NULL,NULL,P.O. Box 276,605 Hazel Ave,Arco,83213,2085202792,2085202792,scouts113@aol.com,scouts113@aol.com,golf4you,0
+d4668715-30-09,1,9/30/2015 10:39,9/30/2015 10:39,Steve,Pepper,Steve Pepper,P.O. Box 241,NULL,Knox City,79529,Steve Pepper,NULL,NULL,112 N. Central Ave,P.O. Box 241,Knox City,79529,940-256-0028,NULL,srpepper54@gmail.com,srpepper54@gmail.com,8133134,1
+09e1a315-30-09,1,9/30/2015 11:12,9/30/2015 11:12,Rick,Gunter,NULL,817 Meadow Point Rd,NULL,Salisbury,21801,Rick Gunter,NULL,NULL,817 Meadow Point Rd,NULL,Salisbury,21801,410-430-0663,NULL,crisfield3@gmail.com,crisfield3@gmail.com,3871665,1
+aebd0e15-30-09,1,9/30/2015 12:34,9/30/2015 12:34,Bill,Jacobs,Bill Jacobs,228 Holiday Circle,NULL,Savannah,31419,Bill Jacobs,Bill Jacobs,NULL,228 Holiday Circle,NULL,Savannah,31419,912-925-9055,912-657-1410,bjacobs@gaports.com,Roger Lacey #722,RHL#722,0
+dd30ef15-30-09,1,9/30/2015 13:56,11/7/2016 18:07,Roland,Sehne,NULL,54 Wayne St,NULL,Hauppauge,11788,Roland Sehne,NULL,NULL,54 Wayne St,NULL,Hauppauge,11788,631-366-4341,NULL,ninetom@aol.com,ninetom,Coridiba109,0
+ad12fd15-03-10,1,10/3/2015 19:31,10/3/2015 19:31,Steven,Hessler,NULL,628 1/2 N SANDUSKY ST,NULL,BELLEVUE,44811-1251,Steven Hessler,NULL,NULL,628 1/2 N SANDUSKY ST,NULL,BELLEVUE,44811-1251,4194835826,4194835826,shessler32@hotmail.com,shessler32@hotmail.com,1287541,1
+c5802d15-03-10,1,10/3/2015 21:12,10/3/2015 21:44,Garry,Paris,NULL,1304 Phyllis Dr,NULL,Copperas Cove,76522,Garry Paris,NULL,NULL,1304 Phyllis Dr,NULL,Copperas Cove,76522,254-547-8436,254-394-3624,gparis@hot.rr.com,arpsigk1940,Micro#5Forty,0
+c584ae15-08-10,1,10/8/2015 11:22,10/8/2015 11:22,Jon,Taylor,Dolcito Masonic Lodge,16807 Remlap Drive,NULL,Remlap,35133,Jon Taylor,Dolcito Masonic Lodge,NULL,16807 Remlap Drive,NULL,Remlap,35133,205-714-2460,NULL,jon.m.taylor12.mil@mail.mil,jon.m.taylor12.mil@mail.mil,5543091,1
+b2694a15-10-10,1,10/10/2015 16:03,10/10/2015 16:03,Brian,Work,NULL,7326 Briella Drive,NULL,Boynton Beach,33437,Brian Work,NULL,NULL,7326 Briella Drive,NULL,Boynton Beach,33437,561-735-3790,561-305-7459,Brian_work@yahoo.com,Brianwork84,bkw148484,0
+c724ed15-10-10,1,10/10/2015 16:14,10/10/2015 16:14,Joel,Friedman,NULL,4226 Wexford Way,NULL,Eagan,55122,Joel Friedman,NULL,NULL,4226 Wexford Way,NULL,Eagan,55122,6514549437,NULL,kaaless@comcast.net,kaaless@comcast.net,5280286,1
+f8bf6215-10-10,1,10/10/2015 17:07,10/10/2015 17:07,Paul,Colley III,NULL,4281 Sunset Dr.,NULL,Lockport,14094,Paul Colley III,NULL,NULL,4281 Sunset Dr.,NULL,Lockport,14094,716-434-9432,716-417-3178,colleyp@yahoo.com,colleyp@yahoo.com,2999858,1
+337c6215-10-10,1,10/10/2015 22:27,10/10/2015 22:27,Kirk,Hall,NULL,450 Mosswood Blvd,NULL,Indialantic,32903,Kirk Hall,NULL,NULL,450 Mosswood Blvd,NULL,Indialantic,32903,3215379047,3215379047,khall4@cfl.rr.com,khall4@cfl.rr.com,6972213,1
+3e4eaa15-13-10,1,10/13/2015 13:48,10/13/2015 13:48,Victoria,Kolb,NA,8301 Old Sauk Road,Apt 206,Middleton,53562-4392,Victoria Kolb,NA,NULL,8301 Old Sauk Road,Apt 206,Middleton,53562-4392,608 662 5705,NULL,gvkolb08@gmail.com,gvkolb08@gmail.com,3155287,1
+0c326b15-15-10,1,10/15/2015 15:56,10/15/2015 15:56,Anthony,Rosado,NULL,18-24 21st ave,apt 1b,astoria,11105,Anthony Rosado,NULL,NULL,18-24 21st ave,apt 1b,astoria,11105,6467032944,6467032944,rosado.a@gmail.com,squarecharity,cr1st1an,0
+12680415-16-10,1,10/16/2015 16:29,10/16/2015 16:29,John,Buchanan,NULL,17 Brant Ct,NULL,Fredericksburg,22406,John Buchanan,NULL,NULL,17 Brant Ct,NULL,Fredericksburg,22406,540-370-4235,540-809-7500,buckfromacgl@gmail.com,buchananjp,Preston52!,0
+06606e15-16-10,1,10/16/2015 16:37,10/16/2015 16:37,Larry,Kent,NULL,529 Sevilla pl,NULL,The villages,32159,Larry Kent,NULL,NULL,529 Sevilla pl,NULL,The villages,32159,352-750-3385,309-824-5573,lpkent1@all.com,lpkent1@all.com,8210898,1
+08d9f115-16-10,1,10/16/2015 19:04,10/16/2015 19:04,Roger,Quintana,NULL,75 Cameo Pl,NULL,Colonia,7067,Roger Quintana,NULL,NULL,75 Cameo Pl,NULL,Colonia,7067,7323888768,7328016974,njquintana@gmail.com,njquintana,ender8172,0
+f60cca15-17-10,1,10/17/2015 16:01,10/17/2015 16:01,Harold,Ewing,NULL,2601 ne 26th terrace,NULL,Boca Raton,33431,Harold Ewing,NULL,NULL,2601 ne 26th terrace,NULL,Boca Raton,33431,5612870583,NULL,Hrewng@aol.com,Fishingbimini,hunting73,0
+6f1c8515-18-10,1,10/18/2015 17:21,10/18/2015 17:21,Donald,Weiner,NULL,156 Hilltop Drive,NULL,Churchville,18966,Donald Weiner,NULL,NULL,156 Hilltop Drive,NULL,Churchville,18966,215 364 0812,215 630 6950,dweiner@donweinerassoc.com,dweiner@donweinerassoc.com,7698435,1
+8114ef15-19-10,1,10/19/2015 12:07,10/19/2015 12:07,Richard,Maag,Masonic Temple Association Of Sandusky,304 Wayne Street,NULL,Sandusky,44870,Richard W Maag,Masonic Temple Association Of Sandusky,NULL,1104 Wayne Street,NULL,Sandusky,44870,419-625-5168,NULL,mooraker@aol.com,mooraker@aol.com,2195095,1
+dc679315-19-10,1,10/19/2015 14:10,10/19/2015 14:10,Robert,Hobday,NULL,80 Sycamore Drive,APT 317,Elizabethtown,17022,Robert Hobday,NULL,NULL,80 Sycamore Drive,APT 317,Elizabethtown,17022,7173613973,NULL,bobh31@comcast.net,bobh31@comcast.net,4114912,1
+2d375215-21-10,1,10/21/2015 4:59,10/21/2015 5:00,Dean,Fryda,NULL,7926 336th Ave.,NULL,Burlington,53105,Dean Fryda,NULL,NULL,7926 336th Ave.,NULL,Burlington,53105,414-640-2287,414-640-2287,dfryda@netlogix.us,dfryda,Eos1dmark2,0
+118e8e15-21-10,1,10/21/2015 11:29,10/21/2015 11:29,Kenneth,Fails,NULL,8230 Stationhouse Court,NULL,Lorton,22079,Kenneth Fails,NULL,NULL,8230 Stationhouse Court,NULL,Lorton,22079,225-810-5440,225-810-5440,kenneth.fails@yahoo.com,KenFails,Shibboleth2,0
+317e4315-21-10,1,10/21/2015 20:46,10/21/2015 20:46,David,Burkus,NULL,74 Wellington Drive,NULL,Hampton,236662855,David Burkus,NULL,NULL,74 Wellington Drive,NULL,Hampton,236662855,757.469.6727,NULL,burkusd@gmail.com,burkusd@gmail.com,3536461,1
+d7c6c915-22-10,1,10/22/2015 14:11,10/22/2015 14:11,Shaman,Anderson,NULL,21144 SW 84th Ave.,NULL,Tualatin,97062,Nathan Neff,Esoterika #227,NULL,709 SW 15th Ave,NULL,Portland,7205,5415566681,5415566681,shamoando@gmail.com,shamoando@gmail.com,4251767,1
+77fe3915-23-10,1,10/23/2015 9:13,10/23/2015 9:13,Philip,Devinsky,NULL,5 Brentwood Terrace,NULL,Middletown,7748,Philip Devinsky,NULL,NULL,5 Brentwood Terrace,NULL,Middletown,7748,732-671-0555,NULL,phil.devinsky@gmail.com,pdevinsky,pincas,0
+e4353715-23-10,1,10/23/2015 17:37,10/23/2015 17:37,Andre,Tia,TS Productions,3102 Monroe ST NE,3102,washington,20018,Andre Tia,TS Productions,NULL,3102 Monroe ST NE,washington,District of Columbia,20018,240-2735641,2402735641,tiacohsadia@gmail.com,andre@tiacohsadia.com,tiac123,0
+a116b015-24-10,1,10/24/2015 10:42,10/24/2015 10:42,Thomas ,Pinney,NULL,1814 Utah St.,NULL,Sturgeon Bay,54235,Thomas Pinney,NULL,NULL,1814 Utah St.,NULL,Sturgeon Bay,54235,920.743.2759,920.493.3727,tompinney@charter.net,tompinney@charter.net,6429740,1
+859c7115-24-10,1,10/24/2015 14:43,10/24/2015 14:43,Dwight,Hollon,NULL,6214 Orange Blossom Lane,NULL,Rosenberg,77471,Dwight Hollon,NULL,NULL,6214 Orange Blossom Lane,NULL,Rosenberg,77471,713.560.6470,713.560.6470,dmh37660@hotmail.com,dmhollon,Smackover24**,0
+faf5eb15-26-10,1,10/26/2015 11:17,10/26/2015 11:17,Neil,Welch,NULL,1032-15th Ave NW,NULL,Demotte,46310-8310,Neil Welch,NULL,NULL,1032-15th Ave NW,NULL,Demotte,46310-8310,219-987-5940,NULL,neilwelch@netnitco.net,neilwelch@netnitco.net,3583192,1
+21fc1515-26-10,1,10/26/2015 11:46,10/26/2015 11:46,William,Davis,NULL,11768 Mallard Drive,NULL,Neosho,64850,William Davis,NULL,NULL,11768 Mallard Drive,NULL,Neosho,64850,4174383331,4174383331,davkrn01@gmail.com,KipDavis,Cozy04218,0
+0ccf9115-28-10,1,10/28/2015 14:52,10/28/2015 14:52,Roger,Gotthardt,West Milton Lodge,306 Jillwood Dr,NULL,Englewood,45322,Roger Gotthardt,West Milton Lodge,NULL,306 Jillwood Dr,NULL,Englewood,45322,9372162555,9372162555,westmiltonlodge@roadrunner.com,rogergott,rlg2848,0
+79b7c215-29-10,1,10/29/2015 19:32,10/29/2015 19:32,Wilson,Camagan,NULL,94-176 Kehela Place,NULL,Waipahu,96797,Wilson Camagan,NULL,NULL,94-176 Kehela Place,NULL,Waipahu,96797,8083924848,8083924848,wilsonscamagan@aol.com,wilsonscamagan,boie32,0
+44f92015-30-10,1,10/30/2015 10:38,10/30/2015 10:39,al,cloke,NULL,621 neptune way,NULL,cincinnati,45244,al cloke,NULL,NULL,621 neptune way,NULL,cincinnati,45244,5135285565,NULL,ourlittlehippie@yahoo.com,ourlittlehippie@yahoo.com,1329558,1
+d2a41d15-30-10,1,10/30/2015 10:41,10/30/2015 10:41,al,cloke,NULL,621 neptune way,NULL,cincinnati,45244,al cloke,NULL,NULL,621 neptune way,NULL,cincinnati,45244,5135285565,NULL,ourlittlehippie@yahoo.com,ourlittlehippie@yahoo.com,7008314,1
+fae96e15-31-10,1,10/31/2015 8:54,10/31/2015 8:54,Peter ,Jones,NULL,450 Sunlight St,NULL,Cobbtown,30420,Peter Jones,NULL,NULL,450 Sunlight St,NULL,Cobbtown,30420,9126843768,9123143863,pljones@pineland.net,pljones@pineland.net,8687237,1
+45096715-31-10,1,10/31/2015 10:59,11/12/2015 23:56,Roger,Landry,NULL,1612 Fairwind Ct,NULL,Carrollton,75007,Roger Landry,NULL,NULL,1612 Fairwind Ct,NULL,Carrollton,75007,(972) 492-0585,(972) 492-0585,roger@rogerlandry.com,sunquest2,Isaloud1958,0
+f7d9c815-01-11,1,11/1/2015 9:33,11/1/2015 9:33,Fred,Palmer,NULL,33 Sharon's Way,NULL,Wilmington,19808,Fred Palmer,NULL,NULL,33 Sharon's Way,NULL,Wilmington,19808,302-981-6202,NULL,Parallaax@comcast.net,Parallaax@comcast.net,7428895,1
+00b58215-01-11,1,11/1/2015 12:50,11/1/2015 12:50,Andre,Tia,TS Productions,3102 Monroe ST NE,NULL,Washington,20018,Andre Tia,TS Productions,NULL,3102 Monroe ST NE,NULL,Washington,20018,240-273-5641,240-273-5641,tiacohsadia@gmail.com,tiacohsadia@gmail.com,1442723,1
+6c2e6815-01-11,1,11/1/2015 16:56,11/1/2015 16:56,Richard,Dyck,NULL,P.O. Box 5005,NULL,Fresno,93755-5005,Richard Dyck,NULL,NULL,P.O. Box 5005,NULL,Fresno,93755-5005,559-227-6178,NULL,dycks@mua.biglobe.ne.jp,rickdyck,pamela,0
+89cccb15-02-11,1,11/2/2015 13:16,11/2/2015 13:16,Russ,Charvonia,NULL,5536 N. Bryn Mawr St.,NULL,Ventura,93003,Russ Charvonia,NULL,NULL,5536 N. Bryn Mawr St.,NULL,Ventura,93003,8056507511,8052581037,rcharvonia@freemason.org,rcharvonia@freemason.org,5922623,1
+dbccc515-02-11,1,11/2/2015 13:31,11/2/2015 13:31,Donald,Moyer,NULL,4429 W. Pyracantha Dr.,NULL,Tucson,85741,Donald Moyer,NULL,NULL,4429 W. Pyracantha Dr.,NULL,Tucson,85741,5208200676,5208200676,d.m.moyer@comcast.net,d.m.moyer@comcast.net,rockjock,0
+8e551e15-02-11,1,11/2/2015 15:37,11/2/2015 15:39,Charles,DeMaio,Scottish Rite Cathedral,650 North Meridian St,NULL,Indianapolis,46204,Charles DeMaio,Scottish Rite Cathedral,NULL,650 North Meridian St,NULL,Indianapolis,46204,317-262-3123,317-914-5172,cdemaio@aasr-indy.org,cdemaio@aasr-indy.org,4278585,1
+21eb3b15-02-11,1,11/2/2015 17:37,11/2/2015 17:37,Victoria,Kolb,Victoria Kolb,8301 Old Sauk Road,Apt 206,Middleton,53562,Guenther,NULL,NULL,8301 Old Sauk Road,NULL,Middleton,53562,608-662-5705,608-301-7572,gvkolb08@gmail.com,gvkolb08@gmail.com,9801650,1
+5842ab15-03-11,1,11/3/2015 9:05,11/3/2015 9:05,Mark,Campbell,NULL,8657 22nd Ave S,NULL,Bloomington,55425-2107,Mark Campbell,NULL,NULL,8657 22nd Ave S,NULL,Bloomington,55425-2107,9528545172,NULL,campbell@tcq.net,markcampbell,xnihonx,0
+a38b7315-03-11,1,11/3/2015 14:44,11/3/2015 14:44,Christian,Moore,NULL,PO Box 3,NULL,Weimar,78962,Christian Moore,NULL,NULL,PO Box 3,NULL,Weimar,78962,5128870775,5128870775,cdmoore1981@gmail.com,cdmoore1981@gmail.com,2777492,1
+7311ef15-03-11,1,11/3/2015 17:57,11/3/2015 17:57,Charles,Waller Jr,NULL,11128 FM 521,NULL,Rosharon,77583,Charles Waller Jr,NULL,NULL,11128 FM 521,NULL,Rosharon,77583,281-489-1774,281-960-2079,cj@cjwallerjr.com,cj@cjwallerjr.com,4721450,1
+fc0a4415-04-11,1,11/4/2015 5:40,11/4/2015 5:40,Bernie,davis,Bernie davis,153 gillikin dr,NULL,marshallberg,28553,Bernie davis,Bernie davis,NULL,153 gillikin dr,NULL,marshallberg,28553,2252-240-9610,NULL,berniedavis39@yahoo.com,bernie5621,gabby3941,0
+8590d015-04-11,1,11/4/2015 19:03,11/21/2016 13:39,Daniel,Nye,NULL,756 Nichols Road,NULL,New Haven,5472,Daniel Nye,NULL,NULL,756 Nichols Road,NULL,New Haven,5472,1-802-393-2438,1-802-393-2438,nyedae@gmail.com,altstryker,At9a2983,0
+daa80d15-05-11,1,11/5/2015 12:41,11/5/2015 12:41,Lee,Threats,Lodge of the Black Moon Rising,2928 High Rigger Drive,NULL,Nashville,37217,Lee Threats,Lodge of the Black Moon Rising,NULL,2928 High Rigger Drive,NULL,Nashville,37217,4142340461,4142340461,mrsexyshoe@yahoo.com,mrsexyshoe,deezleb0yz,0
+bbd9f115-05-11,1,11/5/2015 16:14,11/5/2015 16:14,Daniel,Confer,NULL,103A Conway Street,NULL,Carlisle,17013,Daniel Confer,NULL,NULL,103A Conway Street,NULL,Carlisle,17013,7177136651,7177136651,dan.confer@gmail.com,dan.confer@gmail.com,6693842,1
+a2412a15-06-11,1,11/6/2015 10:42,11/6/2015 10:42,CHARLES,VANHEEST,NULL,33323 E CHESAPEAKE STREET #32,NULL,LEWES,19958,CHARLES VANHEEST,NULL,NULL,33323 E CHESAPEAKE STREET #32,NULL,LEWES,19958,2542914158,NULL,VANHEEST_CHARLES@YAHOO.COM,VANHEEST_CHARLES@YAHOO.COM,8238189,1
+d91cfc15-09-11,1,11/9/2015 10:06,10/10/2016 9:34,Jim,Boaz,NULL,9350 E Old Pellegrino Rd,NULL,Tucson,85749-8198,Jim Boaz,NULL,NULL,9350 E Old Pellegrino Rd,NULL,Tucson,85749-8198,520-403-8202,NULL,jim@boazfamily.net,JimBoaz,jab72042,0
+ff151415-09-11,1,11/9/2015 14:28,11/9/2015 14:28,David,Lorenc,NULL,424 Old Main Street,NULL,Asbury,8802,David Lorenc,NULL,NULL,424 Old Main Street,NULL,Asbury,8802,9085370151,9082960960,dpl0151@gmail.com,dplorenc,dplkdl0151,0
+7d837415-09-11,1,11/9/2015 16:55,11/9/2015 16:55,Richard,Pierce,NULL,7330 Dewey Rd.,NULL,Thompson,44086,Richard Pierce,NULL,NULL,7330 Dewey Rd.,NULL,Thompson,44086,4406377174,4406377174,richard@pierce3.net,rapierce0238,dococt03,1
+9258f615-10-11,1,11/10/2015 13:35,11/10/2015 13:35,Ralph ,Black,Alexander C Garrett Lodge No 1216,7119 East Grand,NULL,Dallas,75223,Ralph F Black,Alexander C Garrett Lodge,NULL,P O Box 140490,NULL,Dallas,75214-0490,214-827-0715,214-769-0714,rfblack@sbcglobal.net,Ralph Fentress Black,Acg1216,0
+1433b115-11-11,1,11/11/2015 14:02,11/11/2015 14:02,Michael,Benson,NULL,3633 NE 18th Avenue,NULL,Portland,97212,Michael Benson,NULL,NULL,3633 NE 18th Avenue,NULL,Portland,97212,5032896032,50378439325,daddybenson@comcast.net,daddybenson,8844michael,0
+ee532515-12-11,1,11/12/2015 7:55,11/12/2015 7:55,H F Sonny ,Tull,Fort Worth Scottish Rite,PO Box 1320,NULL,Fort Worth,76101,H F Tull,Fort Worth Scottish Rite,NULL,1100 Henderson St.,NULL,Fort Worth,76102,8173356004,8173356004,hfsonnytull@sbcglobal.net,hfsonnytull@sbcglobal.net,fwaasr1932,0
+a9b79c15-12-11,1,11/12/2015 14:00,11/12/2015 14:00,Jerry,Moore,Jaymo Music,110 Kee Road,NULL,Newnan,30263,Jerry Moore,Jaymo Music,NULL,110 Kee Road,NULL,Newnan,30263,770-301-5617,NULL,jerrymoore33154@yahoo.com,Jerry Moore,224or2Elijah,1
+81889015-12-11,1,11/12/2015 18:32,11/12/2015 18:35,Steven C.,Jones,NULL,24 Athens Dr.,NULL,Essex Junction,05452-3114,Steven C. Jones,NULL,NULL,24 Athens Dr.,NULL,Essex Junction,05452-3114,8028797676,8028797676,trident60@aol.com,trident60,SCJ4usb1,0
+95056215-12-11,1,11/12/2015 23:52,11/12/2015 23:52,Wayne,Collins,NULL,430 Route 146 Lot 122,NULL,Clifton Park,12065,Wayne Collins,NULL,NULL,430 Route 146 Lot 122,NULL,Clifton Park,12065,5183609463,5183609463,wayne.collins81@gmail.com,knightcrawler81,Cy83rdude,0
+2b6b8f15-13-11,1,11/13/2015 9:00,11/13/2015 9:00,Nicholas,Mantello,NULL,86 Hathaway St.,NULL,North Adams,1247,Nicholas Mantello,NULL,NULL,86 Hathaway St.,NULL,North Adams,1247,413-663-5013,413-663-0270,nicholas.j.mantello@gmail.com,nicholas.j.mantello@gmail.com,4449203,1
+32780915-13-11,1,11/13/2015 12:19,11/13/2015 12:19,Marshall,Clowers,NULL,200 Circle Drive NE,NULL,Cleveland,37312,Marshall Clowers,NULL,NULL,200 Circle Drive NE,NULL,Cleveland,37312,4234768104,4233104235,marshall_clowers@bellsouth.net,marshall_clowers@bellsouth.net,3029010,1
+fbd50715-14-11,1,11/14/2015 16:27,11/14/2015 16:27,Aldo,Ghirarduzzi,NULL,1 Edgewater Place,NULL,Glens Falls,12801,Aldo Ghirarduzzi,NULL,NULL,1 Edgewater Place,NULL,Glens Falls,12801,5187984995,5183687744,aldog2@verizon.net,aldog2@verizon.net,5783068,1
+c79d9515-14-11,1,11/14/2015 16:36,11/14/2015 16:36,Timothy,Kingsley,Timothy Kingsley,996 Valley View Rd.,NULL,Corydon,47112,Justin C. Vannis,NULL,NULL,8810 Old Vincennes Rd.,NULL,Greenville,47124,812-738-2905,NULL,TKINGSL1@AOL.COM,Timking,timking123,0
+7046d515-15-11,1,11/15/2015 21:51,10/29/2016 18:54,J. Arthur,Carbonaro,NULL,548 Lisbon Road,NULL,Canterbury,6331,J. Arthur Carbonaro,NULL,NULL,548 Lisbon Road,NULL,Canterbury,6331,8605466097,8604502646,jacarbonaro@snet.net,jacarbonaro@snet.net,muffin,0
+eebd3015-18-11,1,11/18/2015 10:10,11/18/2015 10:10,Phillip,Reichner,NULL,221 Lytham Court,NULL,Charleston,29414,Phillip Reichner,NULL,NULL,221 Lytham Court,NULL,Charleston,29414,9176047946,9176047946,psreichner@gmail.com,psreichner@gmail.com,7039096,1
+5e40c715-18-11,1,11/18/2015 14:28,11/18/2015 14:28,Kevin,Farrell,NULL,900 Weeks Landing Rd,NULL,Cape May,8204,Kevin Farrell,NULL,NULL,900 Weeks Landing Rd,NULL,Cape May,8204,6094250700,6094250700,piasso525@gmail.com,CI30WM2016,spooner525,0
+47d76815-18-11,1,11/18/2015 23:02,11/18/2015 23:02,Paul,Dangreau,NULL,27 Paradise Park,NULL,Santa Cruz,95060,Paul Dangreau,NULL,NULL,27 Paradise Park,NULL,Santa Cruz,95060,8314235766,831535-8245,pddncld@comcast.net,pddncld@comcast.net,Dangreau1,0
+a575e115-19-11,1,11/19/2015 8:01,11/19/2015 8:02,Fred ,Palmer,NULL,33 Sharon's Way,NULL,Wilmington,19808,Fred Palmer,NULL,NULL,33 Sharon's Way,NULL,Wilmington,19808,302-981-6202,302-981-6202,Parallaax@comcast.net,Parallaax ,vlora123,0
+b12bd615-19-11,1,11/19/2015 14:24,11/19/2015 14:24,Janet,McCans,Janet McCans,P.O. Box 61264,NULL,Boulder City ,89006,Janet McCans,Janet McCans,NULL,P.O. Box 61264,NULL,Boulder City ,89006,702-235-2073,NULL,janet.mccans@Yahoo.com,janet.mccans@Yahoo.com,3509979,1
+b20dd115-19-11,1,11/19/2015 15:47,11/19/2015 16:01,Bill,Dreckitrah,NULL,318 North Hunter Streert,NULL,Berlin,54923,Bill Dreckitrah,NULL,NULL,318 North Hunter Streert,NULL,Berlin,54923,(920) 361 0810,(920 572 3981,blldreck@centurylink.net,Billyboy,Florida2,0
+eb9dfa15-19-11,1,11/19/2015 22:33,12/4/2015 13:16,Scot,Newbury,NULL,4 Jason Drive,NULL,Londonderry,3053,Scot Newbury,NULL,NULL,4 Jason Drive,NULL,Londonderry,3053,603-552-3124,603-513-2232,scot@newburyonline.com,scotnewbury,RdZL#lPxA6cP%^OvsOcSAhL0,0
+bf093e15-20-11,1,11/20/2015 22:40,11/20/2015 22:40,Kirk,Kottschade,NULL,2853 24TH ST,NULL,Rochester,55901-0699,Kirk Kottschade,NULL,NULL,2853 24TH ST,NULL,Rochester,55901-0699,507-281-2908,NULL,kkottschade@gmail.com,Captain83,Ms559564az,0
+f2f05515-21-11,1,11/21/2015 8:13,11/21/2015 8:13,Dempsey,Brewer,NULL,2853 Davis Rd,NULL,East Bend,27018,Dempsey Brewer,NULL,NULL,2853 Davis Rd,NULL,East Bend,27018,3366993997,NULL,dempsey@brewertesting.com,brewertec,kamp1983,0
+a51a9e15-21-11,1,11/21/2015 9:36,11/21/2015 9:36,Janet,powell,Janet L Powell,401 Shande Dr,NULL,Whitehouse,757913761,Janet powell,Janet L Powell,NULL,401 Shande Dr,NULL,Whitehouse,757913761,9038397454,NULL,jlmp@mac.com,jlmp@mac.com,9291267,1
+54e69d15-21-11,1,11/21/2015 14:22,11/21/2015 14:22,Cecil,Conyers,NULL,209 Plantation Rd.,NULL,Townville,29689,Cecil Conyers,NULL,NULL,209 Plantation Rd.,NULL,Townville,29689,864-723-9118,NULL,adam_conyers@charter.net,Acony1966,Giggle62,0
+92469015-22-11,1,11/22/2015 11:36,11/22/2015 11:36,Steven,Bass,NULL,25631 Blossom Park St.,NULL,Lake Forest,92630,Steven Bass,NULL,NULL,25631 Blossom Park St.,NULL,Lake Forest,92630,949-422-8796,949-422-8796,begots@cox.net,begots@cox.net,6461871,1
+b3a01b15-22-11,1,11/22/2015 12:09,11/22/2015 12:09,Archie,Bennett,NULL,136 Forinash Road,NULL,Weston,26452,Archie Bennett,NULL,NULL,136 Forinash Road,NULL,Weston,26452,3042690159,NULL,aben5556@juno.com,aben5556@juno.com,3285825,1
+13baf015-22-11,1,11/22/2015 19:53,11/22/2015 19:53,Tracy,Miller PM,NULL,2137,Masonic Drive,Sewickley,15143,Tracy Miller PM,NULL,NULL,2137,Masonic Drive,Sewickley,15143,412-749-9086,NULL,tracysandymiller@yahoo.com,Miller,Katie123,0
+85698415-22-11,1,11/22/2015 22:18,11/22/2015 22:18,Bruce,Graham,NULL,310 South Delsea Drive,NULL,Cape May Court House,8210,Bruce Graham,NULL,NULL,310 South Delsea Drive,NULL,Cape May Court House,8210,6094251180,6094251180,brucesgraham@comcast.net,brucesgraham@comcast.net,3103006,1
+548cab15-23-11,1,11/23/2015 3:17,11/23/2015 3:17,Samuel,Wilson,Wilson's Computers,117A East Main St,NULL,McLeansboro,62859,Samuel Wilson,Wilson's Computers,NULL,117A East Main St,NULL,McLeansboro,62859,6186437200,6183080021,samwilson1015@yahoo.com,samwilson1015@yahoo.com,69Sixtynin,0
+25e9bd15-23-11,1,11/23/2015 10:49,11/23/2015 10:49,Carl,Peterson,NULL,306 Rush St.,NULL,Roselle,60172,Carl Peterson,NULL,NULL,306 Rush St.,NULL,Roselle,60172,6302958240,6302958240,hdesgl@gmail.com,hdesgl,nec12245,0
+a984d815-24-11,1,11/24/2015 13:26,11/24/2015 13:26,Thomas,Barnhart,NULL,21962 Brook Drive,NULL,California,20619,Thomas Barnhart,NULL,NULL,21962 Brook Drive,NULL,California,20619,3019940203,9014812217,tom@barnhart.net,Tom_Barnhart,Icdeth#01,0
+074ec815-25-11,1,11/25/2015 13:42,11/25/2015 13:42,Stacy,Jackson,"REED JACKSON ATTORNEY, PC",110 S Keechi,NULL,Fairfield,75840,Stacy Jackson,NULL,NULL,110 S Keechi,NULL,Fairfield,75840,903-389-3984,903-388-2313,sjack5@icloud.com,sjack5@icloud.com,5339115,1
+26962115-25-11,1,11/25/2015 14:14,11/25/2015 14:14,Jerry,McDaniel,NULL,5801 FLAGSTAFF ST,NULL,BEL AIRE,67220-1858,Jerry McDaniel,NULL,NULL,5801 FLAGSTAFF ST,NULL,BEL AIRE,67220-1858, none,3168336190,jcmcd1226@aim.com,jcmcd1226@aim.com,6178097,1
+177bc215-26-11,1,11/26/2015 8:46,11/26/2015 8:46,Bruce,Lanier,NULL,929 hillside ave,NULL,Edgewater,21037,Daniel Kempler,NULL,NULL,423 Academy road,NULL,Catonsville,21228,4107985050,NULL,Brucel3@comcast.net,Brucel3@comcast.net,5449960,1
+d3f76e15-27-11,1,11/27/2015 13:08,11/27/2015 13:08,Brian,Young,NULL,1723 Lewis Ln,NULL,Barnhart,63012,Brian Young,NULL,NULL,1723 Lewis Ln,NULL,Barnhart,63012,3144975944,3144975944,byoungblet@gmail.com,byoungblet@gmail.com,oten908,0
+bba4c315-27-11,1,11/27/2015 13:18,11/27/2015 13:18,Barry,Hart,NULL,2555 Porter Lake Drive,#101,Sarasota,34240,Barry Hart,NULL,NULL,2555 Porter Lake Drive,#101,Sarasota,34240,9413556646,9413556646,bhart@ft.newyorklife.com,bhart@ft.newyorklife.com,6765214,1
+cb1c4015-28-11,1,11/28/2015 15:18,11/28/2015 15:18,Robert,Boyd,NULL,1784 S Carriage Ter,NULL,Homosassa,34448,Robert Boyd,NULL,NULL,1784 S Carriage Ter,NULL,Homosassa,34448,3526130798,3526130798,boydbobjan@gmail.com,boydbobjan@gmail.com,9357228,1
+14fd8815-30-11,1,11/30/2015 14:04,11/30/2015 14:04,Tammy,Simmons,NULL,121 Meadow Crest Drive,NULL,West Columbia,29172,Tammy Simmons,NULL,NULL,121 Meadow Crest Drive,NULL,West Columbia,29172,803-206-2497,NULL,froggyangel@sc.rr.com,TammyS,AngelL,0
+a3283315-30-11,1,11/30/2015 15:08,11/30/2015 15:08,Andrew,Warianka,Arizona Lodge No. 2,345 W. Monroe St,NULL,Phoenix,85339,Andrew Warianka,Arizona Lodge No. 2,NULL,345 W. Monroe St,NULL,Phoenix,85339,602-258-5466,602-430-8373,secretary@azlodge2.org,ArizonaNo2,aw121151,0
+b7e30715-02-12,1,12/2/2015 0:03,12/2/2015 0:03,CHRISTOPHER,FORD,NULL,300 CREEKSIDE DR APT 7,NULL,Dobson,27017,CHRISTOPHER FORD,NULL,NULL,300 CREEKSIDE DR APT 7,NULL,Dobson,27017,2762102903,12762102903,fordchristopheralan@gmail.com,H0tr0d,Michelle07,0
+2cc07115-02-12,1,12/2/2015 8:45,12/14/2015 10:34,Frank ,Ermalovich,Frank Ermalovich,7447 Wesley Park Drive,LEO Luther B Turner 732 OH,Circleville,43113,Frank Ermalovich,Frank Ermalovich,NULL,7447 Wesley Park Drive,NULL,Circleville,43113,740 474 8005,740 497 2218,fermalovichcpm@frontier.com,fme1972,allenno1,0
+2e0c6815-02-12,1,12/2/2015 15:54,12/2/2015 15:54,Robby,Roden,NULL,PO Box 391,NULL,West Columbia,77486,Robby Roden,NULL,NULL,PO Box 391,NULL,West Columbia,77486,979-345-5451,979-417-8428,robbyroden@embarqmail.com,robbyroden,abigayle,0
+9a6e9b15-03-12,1,12/3/2015 22:47,12/3/2015 22:47,John,Haslam Sr,NULL,20 Harding Ave,NULL,Kenmore,14217-1408,John Haslam Sr,NULL,NULL,20 Harding Ave,NULL,Kenmore,14217-1408,716.472.3504,716.472.3504,jbhaslamsr@gmail.com,jbhaslamsr@gmail.com,7979535,1
+1531bb15-05-12,1,12/5/2015 12:02,12/5/2015 12:09,Robert,Cross,Monmouth Lodge 172 F&AM,14 East Garfield St.,NULL,Atlantic Highlands,7716,Robert Cross,Monmouth Lodge 172 F&AM,NULL,14 East Garfield St.,NULL,Atlantic Highlands,7716,7326737776,7326737776,rcross66@gmail.com,robcross66,R0bert66!,0
+76351e15-05-12,1,12/5/2015 20:10,12/5/2015 20:10,Carra,Tilley,NULL,809 Misty morning ct,NULL,Ofallon,63366,Carra Tilley,NULL,NULL,809 Misty morning ct,NULL,Ofallon,63366,636-299-3434,NULL,carratilley@gmail.com,carratilley@gmail.com,2334212,1
+a41c7c15-06-12,1,12/6/2015 18:17,12/6/2015 18:17,Roy,Sutton,NULL,6110 Temple Star Rd,NULL,Kingsport,37660,Roy Sutton,NULL,NULL,6110 Temple Star Rd,NULL,Kingsport,37660,4233845011,4233845011,Rtsutton3@gmail.com,Rtsutton,swan0306,0
+051a1715-07-12,1,12/7/2015 16:00,12/7/2015 16:00,peter,sepich,peter sepich,pob 675,NULL,harrison,4040,peter sepich,peter sepich,NULL,pob 675,NULL,harrison,4040,207 583 4860,NULL,psepich@yahoo.com,psepich@yahoo.com,1842554,1
+81c70a15-08-12,1,12/8/2015 16:37,12/8/2015 16:37,Cassandra,Tyson-Beers,NULL,1608 NE Ravenna Blvd,NULL,Seattle,98105,Cassandra Tyson-Beers,NULL,NULL,1608 NE Ravenna Blvd,NULL,Seattle,98105,541-510-5049,NULL,cassandra.the.red@gmail.com,cassandra.the.red@gmail.com,6823005,1
+3452d815-09-12,1,12/9/2015 16:21,12/9/2015 16:21,Wade ,Smith ,NULL,811 Mulberry Street,NULL,Macon,31201,Wade Smith ,NULL,NULL,811 Mulberry Street,NULL,Macon,31201,7068358255,NULL,wadesmith@yorkriteofga.org,wadesmith@yorkriteofga.org,2060631,1
+858ae415-09-12,1,12/9/2015 18:23,12/9/2015 18:23,champ,king,champ king,1433 alma ave,NULL,Mulberry,72947,champ king,champ king,NULL,1433 alma ave,NULL,Mulberry,72947,4799978796,4799975304,champk@windstream.net,champk@windstream.net,cmk789,0
+d2a03d15-09-12,1,12/9/2015 18:54,12/9/2015 18:54,Warren,Powell,NULL,105 E Lee Ave,NULL,Coalgate,74538,Warren Powell,NULL,NULL,105 E Lee Ave,NULL,Coalgate,74538,5809272461,5809272461,wepok@sbcglobal.net,wepok@sbcglobal.net,2683093,1
+8cfb1815-10-12,1,12/10/2015 10:44,12/10/2015 10:44,Richard,Valentine,NULL,13 Needle Palm Way,NULL,Elgin,29045,Richard Valentine,NULL,NULL,13 Needle Palm Way,NULL,Elgin,29045,8036652833,8036652833,just4f15@yahoo.com,just4f15@yahoo.com,2867860,1
+95200a15-10-12,1,12/10/2015 10:45,12/10/2015 10:45,Richard,Valentine,NULL,13 Needle Palm Way,NULL,Elgin,29045,Richard Valentine,NULL,NULL,13 Needle Palm Way,NULL,Elgin,29045,8036652833,8036652833,just4f15@yahoo.com,just4f15@yahoo.com,6920892,1
+08020015-10-12,1,12/10/2015 12:01,12/10/2015 12:01,Frank,Foster,Frank Foster,36502 Pebble Dr,NULL,Millsboro,19966,Frank Foster,Frank Foster,NULL,36502 Pebble Dr,NULL,Millsboro,19966,302-947-9207,301-381-0987,frankfoster9@verizon.net,frankfoster,7hiram93,0
+c91cd215-10-12,1,12/10/2015 12:21,12/10/2015 12:21,Gerald,Houston,NULL,426 Green Briar St,NULL,Deridder,70634-2180,Gerald Houston,NULL,NULL,426 Green Briar St,NULL,Deridder,70634-2180,3374634553,3374634553,houstongh@gmail.com,houstongh@gmail.com,mmason11,0
+e6355915-10-12,1,12/10/2015 14:18,12/10/2015 14:34,Charles,Waterstreet,Masonic Service Bureau,979 Bay Rd,Suite 2,Webster,14580,Executive Director,Masonic Service Bureau,NULL,979 Bay Rd,Suite 2,Webster,14580,585-671-9730,585-455-4795,bmasonic@rochester.rr.com,RochesterMSB,8039DeMolay,0
+64234315-10-12,1,12/10/2015 14:23,12/10/2015 14:23,Curtis,Sharpe,NULL,609 4th Street SW,NULL,Conover,28613,Curtis Sharpe,NULL,NULL,609 4th Street SW,NULL,Conover,28613,8284641505,8284465233,crsharpejr@bellsouth.net,crsharpejr@bellsouth.net,6891069,1
+2d1a9715-10-12,1,12/10/2015 18:17,12/10/2015 18:17,Tony,Percifield,419,7852 Hopkins Road,NULL,Maineville,45039,Tony Percifield,419,NULL,7852 Hopkins Road,NULL,Maineville,45039,5136738149,5136738149,tonyjoep@one.net,tonyjoep@one.net,mad419mad,0
+aa9d7815-10-12,1,12/10/2015 19:18,12/10/2015 19:18,James,Ridge,NULL,176 Blackberry Ln.,NULL,Minden,71055-7043,James Ridge,NULL,NULL,176 Blackberry Ln.,NULL,Minden,71055-7043,318-377-8179,318-210-7079,j.f.ridge@att.net,j.f.ridge@att.net,7898357,1
+f3769d15-11-12,1,12/11/2015 15:37,12/11/2015 15:38,Michael,Clinnin,NULL,3969 S 1st Pl,NULL,Milwaukee,53207-4307,Michael Clinnin,NULL,NULL,3969 S 1st Pl,NULL,Milwaukee,53207-4307,4142940238,NULL,mikeclinnin@yahoo.com,MClinnin,Rockette2016,0
+56f58515-11-12,1,12/11/2015 16:38,12/11/2015 16:38,Maurice,Little,Maurice W. Little,346 Alder Road,NULL,Dover,19904,Maurice Little,Maurice W. Little,NULL,346 Alder Road,NULL,Dover,19904,302-674-2416,NULL,mwlelec@fast.net,mwlelec@fast.net,3273487,1
+491af815-11-12,1,12/11/2015 17:55,12/11/2015 18:07,David,Layman,NULL,5233 Quail Hollow Cir,NULL,Roanoke,24019,David Layman,NULL,NULL,5233 Quail Hollow Cir,NULL,Roanoke,24019,540-562-2642,540-314-6242,dlayman8@cox.net,dlayman8,jettman9,0
+cddfa115-12-12,1,12/12/2015 15:48,12/12/2015 15:48,Chris,Thomas,NULL,734 Regent Rd,NULL,Cincinnati,45245,Chris Thomas,NULL,NULL,734 Regent Rd,NULL,Cincinnati,45245,513-703-0579,513-703-0579,chris.thomas@tekzone.com,netlurker,msa2015,0
+1362b515-14-12,1,12/14/2015 0:18,12/14/2015 0:18,Danny,Uden,NULL,27087 155th Rd,NULL,Arkansas City,67005,Danny Uden,NULL,NULL,27087 155th Rd,NULL,Arkansas City,67005,620-442-6988,NULL,irnantlr@outlook.com,irnantlr@outlook.com,9777556,1
+55535715-14-12,1,12/14/2015 0:32,12/14/2015 0:32,Danny,Uden,NULL,27087 155th Rd,NULL,Arkansas City,67005,Danny Uden,NULL,NULL,27087 155th Rd,NULL,Arkansas City,67005,620-442-6988,NULL,irnantlr@outlook.com,Dannys,Antler57,1
+0f0a0915-14-12,1,12/14/2015 0:54,12/14/2015 0:54,Jeffrey L,Knight,NULL,220 Devron Circle,NULL,East Peoria,61611,Jeff Knight,NULL,NULL,220 Devron Circle,NULL,East Peoria,61611,3096454655,3096454655,kriegshund1991@gmail.com,kriegshund1991@gmail.com,2021793,1
+8c123015-15-12,1,12/15/2015 11:18,12/15/2015 11:18,Ronald,Prioux,NULL,310 Ernest st.,NULL,New Iberia,70563-2715,Ronald Prioux,NULL,NULL,310 Ernest st.,NULL,New Iberia,70563-2715,3372563907,3372563907,rpriouxjr@cox.net,rpriouxjr@cox.net,Hayden02,0
+66020015-15-12,1,12/15/2015 20:01,12/15/2015 20:01,David,Husted,NULL,57 Bremmer Street,NULL,Richland,99352,David Husted,NULL,NULL,57 Bremmer Street,NULL,Richland,99352,5095286670,5095286670,daveahusted@gmail.com,daveahusted@gmail.com,9535648,1
+b7722915-16-12,1,12/16/2015 15:04,12/16/2015 15:04,Leland F,Ross,NULL,18 Elizabeth St,NULL,Plainville,2762,Leland F Ross,NULL,NULL,18 Elizabeth St,NULL,Plainville,2762,508-699-4554,508-455-7721,lross10@verizon.net,lross10,Lfr6994554,0
+18bcc615-16-12,1,12/16/2015 16:35,12/16/2015 16:35,John ,Warner,NULL,415 W 11th Avenue,NULL,Conshohocken,19428,John Warner,NULL,NULL,415 W 11th Avenue,NULL,Conshohocken,19428,610-941-5204,610-636-4949,fireftr71@aol.com,fireftr71@aol.com,9293196,1
+7bbcbd15-16-12,1,12/16/2015 19:38,12/16/2015 19:38,Ronald,Price,NULL,13014 Three Oaks Rd,NULL,Sawyer,49125,Ronald Price,NULL,NULL,13014 Three Oaks Rd,NULL,Sawyer,49125,269-756-3969,NULL,rdtjp1@wildblue.net,rdtjp1,Lad1jane,0
+f4a14f15-17-12,1,12/17/2015 10:31,12/17/2015 10:31,Richard,Marko,NULL,97 West 6th Street,NULL,Bayonne,7002,Richard Marko,NULL,NULL,97 West 6th Street,NULL,Bayonne,7002,2014371152,NULL,rcmarko@yahoo.com,rcmarko,seandave,0
+2efc7f15-17-12,1,12/17/2015 10:44,5/2/2016 17:16,Jason,Wilkins,NULL,230 South Main Street,NULL,Rawson,45881,Jason Wilkins,NULL,NULL,230 South Main Street,NULL,Rawson,45881,419-957-9797,NULL,jarhead11b@yahoo.com,jarhead11b,13MeatHead!,0
+0ccc9315-18-12,1,12/18/2015 0:11,12/18/2015 0:11,Jacob,Lewis,NULL,2021 Edgewood Ave,NULL,Las Vegas,89102-2202,Jacob Lewis,NULL,NULL,2021 Edgewood Ave,NULL,Las Vegas,89102-2202,7022059441,7022059441,jacob.alan.lewis@gmail.com,jacob.alan.lewis@gmail.com,JLae1383,0
+d057d615-18-12,1,12/18/2015 10:39,12/18/2015 10:39,Todd,Williams,NULL,4534 douglas road,NULL,toledo,43613,Todd M. Williams,Shindler Neff,NULL,300 Madison Avenue,12th Floor,Toledo,43604,4192157699,4192157699,williams.toddm@gmail.com,williams.toddm@gmail.com,7463156,1
+a331c215-18-12,1,12/18/2015 12:05,12/18/2015 12:05,DaNiel,Wood,NULL,4325 N. Alaska Avenue,NULL,Sioux Falls,57107,DaNiel Wood,NULL,NULL,4325 N. Alaska Avenue,NULL,Sioux Falls,57107,605-366-1290,605-366-1290,ddwood@sio.midco.net,ddwood@sio.midco.net,6909018,1
+503bf615-20-12,1,12/20/2015 11:41,12/20/2015 11:41,Arnulfo,Garcia,NULL,1519 s 60th ct,NULL,cicero,60804,Arnulfo Garcia,NULL,NULL,1519 s 60th ct,NULL,cicero,60804,3125930150,3125930150,ogt3000@yahoo.com,ogt3000@yahoo.com,morton312,0
+cb6b3215-21-12,1,12/21/2015 10:27,12/21/2015 10:27,Richard,Lowrey,Fellowship Lodge #345,P.O. Box 1235,NULL,Joplin,64802,Richard Lowrey,Fellowship Lodge #345,NULL,P.O. Box 1235,NULL,Joplin,64802,417-206-7695,NULL,fellowshiplodge345@gmail.com,fellowshiplodge345@gmail.com,6202378,1
+e03c7d15-21-12,1,12/21/2015 13:25,12/21/2015 13:25,John,Maihos,NULL,27 Pearl St,NULL,Beverly,1915,John Maihos,NULL,NULL,27 Pearl St,NULL,Beverly,1915,978-804-7143,978-804-7143,jmaihos@comcast.net,jmaihos@comcast.net,JM29832Msa,0
+ed013015-21-12,1,12/21/2015 17:33,12/21/2015 17:33,Oscar ,Orum,NULL,8607 Azalea Trail,NULL,Austin,78759-7501,Oscar Orum,NULL,NULL,8607 Azalea Trail,NULL,Austin,78759-7501,5125290414,5125290414,oorum@austin.rr.com,oorum@austin.rr.com,5694181,1
+8d79e415-21-12,1,12/21/2015 21:58,4/20/2016 14:33,Garry,Krom,NULL,52 Spruce Street,NULL,Kingston,12401,Garry Krom,NULL,NULL,52 Spruce Street,NULL,Kingston,12401,845-453-5230,845-453-5230,garry845@juno.com,garry845,garry7923,0
+0a3a1c15-22-12,1,12/22/2015 14:41,12/22/2015 14:41,Ramon,Voils,NULL,866 Lake Wellington Drive,NULL,Wellington,33414,Ramon Voils,NULL,NULL,866 Lake Wellington Drive,NULL,Wellington,33414,561-797-5133,NULL,rvoils@comcast.net,rvoils@comcast.net,7731837,1
+52a55f15-22-12,1,12/22/2015 14:51,12/22/2015 14:51,Alan,Walls,Springs Lodge No. 378,12821 E. Big Buck Trail,NULL,Floral City,34436,C. Walls,NULL,NULL,P.O. Box 912,NULL,Floral City,34436,3526375177,3526375177,awalls37@gmail.com,awalls37@gmail.com,master37,0
+64c93915-22-12,1,12/22/2015 21:38,12/22/2015 21:38,Andrew F.,Uglow,NULL,17 Edgecliff Lane,NULL,Stafford,22554,Andrew F. Uglow,NULL,NULL,17 Edgecliff Lane,NULL,Stafford,22554,540-272-1170,NULL,uglow_iglow@hotmail.com,uglow_iglow@hotmail.com,7655526,1
+7b7c6315-23-12,1,12/23/2015 11:45,12/23/2015 11:45,Theodore,Schvimmer,NULL,9607 SW 71st Loop,NULL,Ocala,34481-2527,Theodore Schvimmer,NULL,NULL,9607 SW 71st Loop,NULL,Ocala,34481-2527,3528546446,3528546446,tschvimm@gmail.com,tschvimm@gmail.com,6940614,1
+b6057c15-23-12,1,12/23/2015 15:11,12/23/2015 15:11,Russell,Humphrey,Humphrey,44 Russell Rd,NULL,Lonedell,63060,Russell Humphrey,Humphrey,NULL,44 Russell Rd,NULL,Lonedell,63060,636-629-1151,314-402-7723,jhumphreyr@gmail.com,jhumphreyr@gmail.com,6823923,1
+aceb8a15-24-12,1,12/24/2015 14:08,12/24/2015 14:08,Robert,Dunn,NULL,3 Osborne Place,NULL,Towaco,7082,Robert Dunn,NULL,NULL,3 Osborne Place,NULL,Towaco,7082,973-224-6365,973-224-6365,rfdunn9@gmail.com,dunnro1,beevah24,0
+c89e7215-24-12,1,12/24/2015 19:16,12/24/2015 19:29,Stevens,Moore,NULL,27406 Blue Cedar Lane,NULL,Spring,77386,Cornell Manuel,NULL,NULL,2236 Mendez Street,NULL,New Orleans,70122,832-491-2999,832-491-2999,semoore822@att.net,semoore822@att..net,phgl05Nt,0
+47f49015-25-12,1,12/25/2015 17:45,12/25/2015 17:45,Glenn D.,Miller M.D.,NULL,2246 Nashua Road,NULL,New Castle,16105,Glenn D. Miller M.D.,NULL,NULL,2246 Nashua Road,NULL,New Castle,16105,724-654-0122,724-654-0122,millerpsu@comcast.net,millerpsu@comcast.net,Nittany1425,0
+18c71415-26-12,1,12/26/2015 11:24,12/26/2015 11:24,Bradley,Ottum,NULL,4556 Benderville Rd,NULL,Green Bay,54311,Bradley Ottum,NULL,NULL,4556 Benderville Rd,NULL,Green Bay,54311,920-866-9474,NULL,bradottum@gmail.com,bradottum@gmail.com,1223932,1
+c0815d15-26-12,1,12/26/2015 15:38,12/26/2015 15:38,Larry,Fahnestock,NULL,12 Broadmoor Drive,NULL,Mechanicsburg,17055,Larry Fahnestock,NULL,NULL,12 Broadmoor Drive,NULL,Mechanicsburg,17055,717-766-6826,NULL,past97@comcast.net,past97@comcast.net,pm97ps03,0
+95f3e915-27-12,1,12/27/2015 13:43,12/27/2015 13:43,Peter,Studley,NULL,9720 harding road,NULL,Plainfield,54966,Peter Studley,NULL,NULL,9720 harding road,NULL,Plainfield,54966,7153354564,7153354564,apcs@uniontel.net,apcs@uniontel.net,8359867,1
+59965615-27-12,1,12/27/2015 14:18,12/27/2015 14:18,Henry,Fratz,Henry P. Fratz,230 Park Avenue,NULL,"Marlton, NJ",8053,Henry Fratz,Henry P. Fratz,NULL,230 Park Avenue,NULL,"Marlton, NJ",8053,6098023108,609-802-3108,towmotorh@aol.com,HankF1,k32986,0
+fd00ee15-28-12,1,12/28/2015 9:08,12/28/2015 9:08,Keith,Herman,Keith Herman,641 Guilford Road,NULL,Cherry Hill,8003,Keith Herman,Keith Herman,NULL,641 Guilford Road,NULL,Cherry Hill,8003,609.440.2217,609.440.2217,kaherman@msn.com,kaherman,4chelsea,0
+86a89e15-29-12,1,12/29/2015 21:36,12/29/2015 21:36,James,Higdon,James N. Higdon,10122 N. Manton Lane,NULL,San Antonio,78213,James Higdon,James N. Higdon,NULL,10122 N. Manton Lane,NULL,San Antonio,78213,2103499933,2107714309,jnhigdon@hhzlaw.com,Higdon,Barbara4309,0
+8e41be15-30-12,1,12/30/2015 10:38,12/30/2015 10:38,m. robert,wheatley,NULL,20425 phillips hill rd,NULL,millsboro,19966,m. robert wheatley,NULL,NULL,20425 phillips hill rd,NULL,millsboro,19966,302-934-0219,n/a,wheatbiz@yahoo.com,wheatbiz@yahoo.com,5384453,1
+40b3ae15-30-12,1,12/30/2015 11:36,12/30/2015 11:36,Rolf,Sorg,Rolf P. Sorg,11812 Meylston Drive,NULL,Lutherville,21093,Rolf Sorg,Rolf P. Sorg,NULL,11812 Meylston Drive,NULL,Lutherville,21093,410-252-1386,410-804-5173,rolfsorg@comcast.net,Rolf Sorg,mercedes,0
+51e12415-30-12,1,12/30/2015 16:40,12/30/2015 16:40,Phil ,Walker,NULL,1782 Rockdale Circle,NULL,SNELLVILLE,30078-3404,Phil Walker,NULL,NULL,1782 Rockdale Circle,NULL,SNELLVILLE,30078-3404,7709782771,NULL,pwalker@mindspring.com,pwalker@mindspring.com,7078223,1
+e47a2d15-30-12,1,12/30/2015 17:15,12/30/2015 17:15,Phillip,Walker,NULL,1782 Rockdale Circle,NULL,SNELLVILLE,30078-3404,Phillip Walker,NULL,NULL,1782 Rockdale Circle,NULL,SNELLVILLE,30078-3404,7709782771,NULL,pwalker@mindspring.com,pwalker@mindspring.com,6455464,1
+ce084215-30-12,1,12/30/2015 17:50,12/30/2015 17:53,ANDREW S,VANDEGRIFF,NULL,592 ICEDALE RD,NULL,HONEY BROOK,19344,ANDREW S VANDEGRIFF,NULL,NULL,592 ICEDALE RD,NULL,HONEY BROOK,19344,6102739833,6104634885,andyv592@ptdprolog.net,andyv592,Time2seelight,0
+79813715-31-12,1,12/31/2015 9:38,12/31/2015 9:47,Gerald,Piepiora,NULL,35 Antler Lane,NULL,Sedona,86336,Gerald Piepiora,NULL,NULL,35 Antler Lane,NULL,Sedona,86336,9282030834,4433241360,jerrypep@suddenlink.net,jerrypep,Mwgm1314,0
+ed212f16-02-01,1,1/2/2016 15:06,1/2/2016 15:06,Clint,Stevens,NULL,5502 Pinewood Springs,NULL,Houston,77066,Clint Stevens,NULL,NULL,5502 Pinewood Springs,NULL,Houston,77066,(281)382-8184,NULL,clint_stevens@sbcglobal.net,clint_stevens@sbcglobal.net,9802092,1
+b868e016-03-01,1,1/3/2016 16:09,1/3/2016 16:11,Stephen,Blakely,NULL,335 W 68th St,NULL,Jacksonville,32208,Stephen Blakely,NULL,NULL,335 W 68th St,NULL,Jacksonville,32208,904-765-1158,904-554-2837,sblake1016@att.net,sblake1016@att.net,1948747,1
+2169b516-04-01,1,1/4/2016 9:45,1/4/2016 9:45,Steven,Reinhold,NULL,1022 8th Ave S,NULL,Fargo,58103,Steven Reinhold,VEi Global,NULL,1020 36th St SW,NULL,Fargo,58103,(701) 235-2148,NULL,sreinhold71@yahoo.com,sreinhold71@yahoo.com,6786748,1
+e6904016-04-01,1,1/4/2016 15:11,1/4/2016 15:11,Charles,Wallace,NULL,909 Mayfield Road,NULL,Sharpsville,16150,Charles R. Wallace,NULL,NULL,909 Mayfield Road,NULL,Sharpsville,16150,724-699-5550,724-699-5550,charlesrwallace@gmail.com,CRWallace,Hermitage810,0
+fe2b9916-04-01,1,1/4/2016 15:41,1/4/2016 15:41,Terry,Troutt,1957,2261 Garfield,NULL,Ferndale,48220,Terry Troutt,1957,NULL,2261 Garfield,NULL,Ferndale,48220,2482591641,2482591641,tat48220@gmail.com,tat48220@gmail.com,may380,0
+2e2fc816-05-01,1,1/5/2016 10:09,1/5/2016 10:09,daniel,wilson,NULL,POB 310,NULL,Little Switzerland,28749,daniel wilson,NULL,NULL,POB 310,NULL,Little Switzerland,28749,8287659359,NULL,danasset@yahoo.com,danasset@yahoo.com,4546300,1
+67b34516-05-01,1,1/5/2016 18:11,1/5/2016 18:11,Joseph,Link,Statesville Lodge #27,P.O. Box 171,NULL,Statesville,28687,Joe Link,Statesville Lodge #27,NULL,1006 Wood Street,NULL,Statesville,28677,7046451563,7046451563,secretary@statesville27.og,statesville27,Pastmaster#27,0
+e3db2316-05-01,1,1/5/2016 18:51,1/5/2016 18:51,Randy,Heine,NULL,P.O. Box 3050,NULL,Carlsbad,88221,Randy Heine,NULL,NULL,P.O. Box 3050,NULL,Carlsbad,88221,5753618846,NULL,randy11@bajabb.com,randy11@bajabb.com,1497139,1
+fa9e9716-06-01,1,1/6/2016 12:36,1/6/2016 12:36,Robert,Troutman,NULL,22527 SAxony,NULL,Eastpointe,48021,Robert Troutman,NULL,NULL,22527 SAxony,NULL,Eastpointe,48021,568-945-3990,NULL,r.o.troutman@gmail.com,r.o.troutman@gmail.com,3098343,1
+c5a05316-06-01,1,1/6/2016 12:40,1/6/2016 12:40,George,Niessner,NULL,39 Montclaire Rd,NULL,Medford,8055,George Niessner,NULL,NULL,39 Montclaire Rd,NULL,Medford,8055,6092573159,6092305702,geown@comcast.net,Geown145,Clyde145,0
+706f6916-06-01,1,1/6/2016 19:51,1/6/2016 19:51,David,Cassesa,NULL,46 Wesley Dr,NULL,Wilder,41076,David Cassesa,NULL,NULL,46 Wesley Dr,NULL,Wilder,41076,8598165506,8598165506,dcassesa@yahoo.com,dcassesa,Xymox123,0
+19d99616-07-01,1,1/7/2016 7:22,1/7/2016 7:30,Fred,Messer,NULL,317 Meadow Road,NULL,Waitsfield,5673,Fred Messer,NULL,NULL,317 Meadow Road,NULL,Waitsfield,5673,8027932238,8027932238,fmesser@madriver.com,fredmesser,F383634m,0
+e8e3e416-07-01,1,1/7/2016 16:43,1/7/2016 16:43,Kenneth,White,NULL,PO Box 1250,NULL,Langley,29834,Kenneth White,NULL,NULL,341 Ascauga Lake Rd,NULL,Graniteville,29829,803-215-5668,803-215-5668,Kawinsurance@aol.com,Kwhite298,kw005218,0
+690ffb16-07-01,1,1/7/2016 22:16,1/7/2016 22:16,Lee A.,Post,None,910 N. Alameda St.,Carlsbad NM 88220,Carlsbad,88220,Lee A. Post,None,NULL,910 N. Alameda St.,Carlsbad NM 88220,Carlsbad,88220,5757069336,5757069336,leeapost@GMAIL.COM,leeapost@GMAIL.COM,6828994,1
+b73f9516-07-01,1,1/7/2016 22:18,1/7/2016 22:18,Lee A.,Post,None,910 N. Alameda St.,Carlsbad NM 88220,Carlsbad,88220,Lee A. Post,None,NULL,910 N. Alameda St.,Carlsbad NM 88220,Carlsbad,88220,5757069336,5757069336,leeapost@GMAIL.COM,leeapost@GMAIL.COM,2170466,1
+08630f16-08-01,1,1/8/2016 4:09,1/8/2016 4:09,Bo,Buchanan,NULL,2807 East Dahlia Drive,NULL,Phoenix,85032,Bo Buchanan,NULL,NULL,2807 East Dahlia Drive,NULL,Phoenix,85032,16308464663,16308464663,rfb321@gmail.com,rfb321@gmail.com,reality,0
+18033616-08-01,1,1/8/2016 11:53,1/8/2016 11:54,Kenneth,Nielsen,None,"95 Ira Ave.,",NULL,Colonia,07067-2434,Kenneth Nielsen,None,NULL,"95 Ira Ave.,",NULL,Colonia,07067-2434,732-382-6167,732-261-9711,cst229@comcast.net,cst229,27kln888,0
+1c409716-08-01,1,1/8/2016 14:52,1/8/2016 14:52,Bruce,Lott,Masonic Homes of KY,3761 Johnson Hall Dr.,NULL,Masonic Home,40041,Bruce Lott,Masonic Homes of KY,NULL,3761 Johnson Hall Dr.,NULL,Masonic Home,40041,502-259-9627,n/a,blott@mhky.com,blott@mhky.com,8920996,1
+ded67516-08-01,1,1/8/2016 16:44,1/8/2016 16:44,William,Rodgers,Clinton Lodge 47,1615 Bramblewood Circle NE,NULL,Massillon,44646,William Rodgers,Clinton Lodge 47,NULL,1615 Bramblewood Circle NE,NULL,Massillon,44646,330-833-7236,330-284-3553,w43j48@sssnet.com,w43j48@sssnet.com,2602569,1
+7e377616-08-01,1,1/8/2016 18:45,1/8/2016 18:45,Chris,Adams,NULL,10329 Waak Rd,NULL,Conroe,77306,Chris Adams,NULL,NULL,10329 Waak Rd,NULL,Conroe,77306,7138518952,713-851-8952,chrisadams@consolidated.net,cadams68,falcon68,0
+498be716-08-01,1,1/8/2016 22:49,1/8/2016 22:49,Fabian,Trudeau,NULL,4201 Americana Ln.,NULL,Mission,78572,Fabian Trudeau,NULL,NULL,4201 Americana Ln.,NULL,Mission,78572,956-519-8466,413-519-6998,FabianTrudeau@gmail.com,frtrudeau,Eagle0233,0
+c0da0516-10-01,1,1/10/2016 16:32,1/11/2016 15:01,Bob ,Reynolds,Ron Smith,201 Caesars Lane,apt 34,New Windsor ,12553,Ron Smith,Hudson River Lodge,NULL,201 Caesars Lane,apt 34,New Windsor ,12553,845 245 3066,845 863 4569,unclebob@hvc.rr.com,Hudson River,Rascal,1
+ccd8ab16-11-01,1,1/11/2016 15:10,1/11/2016 15:10,J,Morris,NULL,3333 Sycamore,NULL,Miami,33134,J Morris,NULL,NULL,3333 Sycamore,NULL,Miami,33134,313-775-3399,NULL,1234@gmail.com,1234@gmail.com,1123766,1
+e2ee6416-11-01,1,1/11/2016 21:33,1/11/2016 21:33,Michael,Manzella,NULL,162 Yarmouth Court,NULL,Holmdel,7733,Mike Manzella,NULL,NULL,162 Yarmouth Court,NULL,Holmdel,7733,7326879062,7326879062,michael.manzella@gmail.com,michael.manzella@gmail.com,lucky225,0
+ca52a216-14-01,1,1/14/2016 7:16,1/14/2016 7:16,Ronald,Seale,The Supreme Council,1733 16th Street NW,NULL,Washington,20009,Ronald Seale,The Supreme Council,NULL,1733 16th Street NW,NULL,Washington,20009,2027773135,NULL,grandcmdr@scottishrite.org,grandcmdr@scottishrite.org,6972664,1
+e436e616-14-01,1,1/14/2016 13:20,1/14/2016 13:20,John,Dickson,NULL,256 Rebel Cove,NULL,Milam,75959,John Dickson,NULL,NULL,256 Rebel Cove,NULL,Milam,75959,409-625-0275,936-201-8387,j60dickson@yahoo.com,j60dickson,Lister1896,0
+3e3a1716-15-01,1,1/15/2016 10:33,1/15/2016 10:33,Francis,Burek,NULL,7 St. Mary's Ave.,NULL,Troy ,12180-4525,Francis Burek,NULL,NULL,7 St. Mary's Ave.,NULL,Troy ,12180-4525,518-322-7966,518-322-7966,bluetick7175@gmail.com,Frank53,nanafrank98,0
+7bc51116-15-01,1,1/15/2016 12:43,1/15/2016 12:43,Dr. Ralph,Hathaway,NULL,4327 Stonesthrow View,NULL,Colorado Springs,80922,Dr. Ralph Hathaway,NULL,NULL,4327 Stonesthrow View,NULL,Colorado Springs,80922,7195911621,719 494 6516,amdochat@gmail.com,amdochat@gmail.com,doctor64,0
+949e7d16-18-01,1,1/18/2016 0:16,1/18/2016 0:16,Joseph,Barrow,NULL,1481 Oak Ridge Rd. ,NULL,Morgantown,42261,Joseph Barrow,NULL,NULL,1481 Oak Ridge Rd. ,NULL,Morgantown,42261,2702745157,NULL,jabarrow1@yahoo.com,jabarrow1@yahoo.com,6014391,1
+f9c8b216-18-01,1,1/18/2016 10:04,1/18/2016 10:04,John,Lobley,NULL,23 Welwyn RD,Plaza 273,Newark,19711,John Lobley,NULL,NULL,23 Welwyn RD,Plaza 273,Newark,19711,3022390307,3022390307,jgdeva@comcast.net,jgdeva@comcast.net,9120478,1
+93789316-18-01,1,1/18/2016 10:04,1/18/2016 10:04,John,Lobley,NULL,23 Welwyn RD,Plaza 273,Newark,19711,John Lobley,NULL,NULL,23 Welwyn RD,Plaza 273,Newark,19711,3022390307,3022390307,jgdeva@comcast.net,jgdeva@comcast.net,1040883,1
+1002ec16-18-01,1,1/18/2016 18:08,1/18/2016 18:08,Jesse,Davey,NULL,5050 Vines Rd,NULL,Howell,48843,Jesse Davey,NULL,NULL,5050 Vines Rd,NULL,Howell,48843,810-299-2151,810-299-2151,augustday@gmail.com,augustday@gmail.com,4150228,1
+20527016-19-01,1,1/19/2016 9:37,1/19/2016 9:37,Robert,Hickman,NULL,14347 Hunter Road,NULL,Harvest,35749,Robert Hickman,NULL,NULL,14347 Hunter Road,NULL,Harvest,35749,256-233-2336,NULL,hickma_b@bellsouth.net,hickma_b@bellsouth.net,2785515,1
+00860316-19-01,1,1/19/2016 23:05,1/19/2016 23:05,Kenneth,Patrick,NULL,692 railroad st,NULL,Jackson ,41339,Kenneth Patrick,NULL,NULL,692 railroad st,NULL,Jackson ,41339,6065686057,6065686057,Kwpatrick@yahoo.com,Kwpatrick,wayne1,0
+9ae1d316-20-01,1,1/20/2016 9:42,1/20/2016 9:42,Dan,Kemble,NULL,1540 St. Clair Street,NULL,Covington,41011,Dan Kemble,NULL,NULL,1540 St. Clair Street,NULL,Covington,41011,8598013095,NULL,dkemble@fbtlaw.com,dkemble@fbtlaw.com,2900504,1
+e6730616-20-01,1,1/20/2016 16:31,1/20/2016 16:31,Richard,Valentine,NULL,13 Needle Palm Way,NULL,Elgin,29045,Richard Valentine,NULL,NULL,13 Needle Palm Way,NULL,Elgin,29045,8036652833,8036652833,just4f15@yahoo.com,just4f15@yahoo.com,9258104,1
+ed490816-20-01,1,1/20/2016 16:32,1/20/2016 16:32,Dennis,Brassard,NULL,667 Marsh Hill Rd.,NULL,Dracut,1826,Dennis Brassard,NULL,NULL,667 Marsh Hill Rd.,NULL,Dracut,1826,9784538650,NULL,marsh667@comcast.net,marsh667@comcast.net,8219411,1
+28ad4116-21-01,1,1/21/2016 8:45,1/21/2016 8:45,David,Sageser,NULL,1004 14th Avenue,NULL,Havre,59501,David Sageser,NULL,NULL,1004 14th Avenue,NULL,Havre,59501,4062352003,NULL,davepupy@bresnan.net,davepupy@bresnan.net,3353910,1
+29af0716-21-01,1,1/21/2016 14:42,1/21/2016 14:42,Martin,Jones,Martin Jones,7401 E. Lakeside Dr,NULL,Tucson,85730,Martin Jones,Martin Jones,NULL,7401 E. Lakeside Dr,NULL,Tucson,85730,520-748-2998,NULL,brother_marty_jones@aol.com,brother_marty_jones@aol.com,8825235,1
+48b50f16-23-01,1,1/23/2016 11:13,1/23/2016 11:13,William,Gurley,NULL,1608 Forest Fern Circle,NULL,Virginia Beach,23454,William Gurley,NULL,NULL,1608 Forest Fern Circle,NULL,Virginia Beach,23454,757-721-7722,NULL,billgurley@cox.net,billgurley@cox.net,4797699,1
+2c956d16-25-01,1,1/25/2016 13:31,1/25/2016 13:31,WAYNE,LOSEE,NULL,21 CRESCENT ST.,NULL,YAPHANK,11980,WAYNE LOSEE,NULL,NULL,21 CRESCENT ST.,NULL,YAPHANK,11980,631 747 9179,631 747 9179,WAYTOM357@GMAIL.COM,WAYTOM357@GMAIL.COM,5014153,1
+63102016-26-01,1,1/26/2016 20:41,1/26/2016 20:41,James,Maertens,Lake Harriet Lodge 277,4509 Drew Ave. So.,NULL,Minneapolis,55410,James Maertens,Lake Harriet Lodge 277,NULL,4509 Drew Ave. So.,NULL,Minneapolis,55410,612-940-7062,612-940-7062,secretary@LHL277.org,JamesMaertens,flitwick999,0
+f4ad6c16-28-01,1,1/28/2016 14:42,1/31/2016 18:50,Daniel,Brandt,NULL,618 Lisbeth Road,NULL,Newark,19713,Daniel Brandt,NULL,NULL,618 Lisbeth Road,NULL,Newark,19713,302-286-6889,302-540-0995,gwarcyn@verizon.net,takuan29,Saredane39,0
+a9629616-29-01,1,1/29/2016 8:50,1/29/2016 8:50,John,Cannon,NULL,606 SE 2nd St.,NULL,Milford,19963,John Cannon,NULL,NULL,606 SE 2nd St.,NULL,Milford,19963,3022425002,3022425002,johnwcannon@gmail.com,johnwcannon@gmail.com,806SouthWa1nu7,0
+e2796616-31-01,1,1/31/2016 12:16,1/31/2016 12:16,Richard,Blankfein,Richard S. Blankfein,11 Lincoln Avenue,NULL,Glen Head,11545-1521,Richard Blankfein,Richard S. Blankfein,NULL,11 Lincoln Avenue,NULL,Glen Head,11545-1521,516-676-4437,516-528-9475,rsblankfein@gmail.com,rsblankfein,Haod#605,0
+f2a74716-01-02,1,2/1/2016 6:15,2/1/2016 6:15,Ralph,Frazier,NULL,6400 Murray Lane,NULL,Brentwood,37027,Ralph Frazier,Bankers Title,NULL,214 E College St,NULL,Dickson,37055,6155944436,6155944436,al@alfrazier.com,al@alfrazier.com,8580003,1
+f63ee116-01-02,1,2/1/2016 15:19,2/1/2016 15:19,Keith,Veitch,Fort Plain Masonic Lodge#433,9 Canal St,NULL,Fort Plain,13339,Keith Veitch,Fort Plain Masonic Lodge#433,NULL,359 State Highway 80,NULL,Fort Plain,13339,518-993-3853,NULL,kmveitch@live.com,kmveitch@live.com,6744587,1
+957d1716-02-02,1,2/2/2016 14:28,2/2/2016 14:28,Dave,Shealy,NULL,4155 west hoover rd,NULL,reva,22735,Dave Shealy,NULL,NULL,4155 west hoover rd,NULL,reva,22735,5409234806,NULL,daveshelay@gmail.com,daveshelay@gmail.com,5648204,1
+7c3ba316-03-02,1,2/3/2016 16:17,2/3/2016 16:17,Timothy ,Nicely,NULL,4221 County Road 15,NULL,South Point,45680,Timothy Nicely,NULL,NULL,4221 County Road 15,NULL,South Point,45680,740-479-0727,NULL,tnicely@bop.gov,tnicely@bop.gov,2357303,1
+a6a24416-03-02,1,2/3/2016 16:31,2/3/2016 16:31,gary r,pilgrim,NULL,506 East Capitol Drive,NULL,Hartland,53029-2204,gary r pilgrim,NULL,NULL,506 East Capitol Drive,NULL,Hartland,53029-2204,2623672309,4143224822,GRPilgrim@gmail.com,GRPilgrim@gmail.com,9514808,1
+c2500c16-03-02,1,2/3/2016 19:54,2/3/2016 19:54,Michael,Bain,Michael Bain,P.O. Box 337,NULL,Centerville,52544,Michael Bain,Michael Bain,NULL,P.O. Box 337,NULL,Centerville,52544,6418951908,NULL,mustang67@iowatelecom.net,mustang67@iowatelecom.net,8686361,1
+4535a116-04-02,1,2/4/2016 4:32,9/16/2016 3:43,Michael,Wright,NULL,98-083 Kanuku Place,Apt. D,Aiea,96701,Michael Wright,NULL,NULL,98-083 Kanuku Place,Apt. D,Aiea,96701,8083713671,8083713671,mike.chuanshi@gmail.com,mike.chuanshi,Ks_Mw_05142016,0
+94859b16-04-02,1,2/4/2016 16:55,2/4/2016 16:55,Brian,Anderson,NULL,825 hibiscus ave,NULL,Sandy,84094,Brian Anderson,NULL,NULL,825 hibiscus ave,NULL,Sandy,84094,8016945192,NULL,bander171@msn.com,bander171@msn.com,4214471,1
+2ecb2a16-05-02,1,2/5/2016 13:01,2/5/2016 13:01,Thomas,girardi,NULL,40 phelps road,NULL,barre,5641,Thomas girardi,NULL,NULL,40 phelps road,NULL,barre,5641,8027932959,8027932959,wa1ynu@gmail.com,wa1ynu@gmail.com,2160708,1
+19c79d16-06-02,1,2/6/2016 17:31,2/6/2016 17:31,David,Emberley,NULL,17 Sullivan Way,Unit 1,Laconia,3246,David Emberley,NULL,NULL,17 Sullivan Way,Unit 1,Laconia,3246,6035278892,NULL,davidemberley@metrocast.net,davida,davida58,0
+a560b316-07-02,1,2/7/2016 11:36,2/7/2016 11:36,Rick,Fetzer,NULL,565 Dishong Mtn Road,NULL,Johnstown,15906,Rick Fetzer,NULL,NULL,565 Dishong Mtn Road,NULL,Johnstown,15906,814-446-6237,NULL,rcfetzer@atlanticbb.net,rcfetzer@atlanticbb.net,9493900,1
+75323616-07-02,1,2/7/2016 13:12,5/20/2016 11:41,william,Simpson,WB William C. Simpson,134 Mill St,NULL,Ridgeville,29472,william Simpson,WB William C. Simpson,NULL,134 Mill St,NULL,Ridgeville,29472,8434123779,8434123779,uscgrps2@yahoo.com,uscgrps2,826381,0
+945d7d16-07-02,1,2/7/2016 18:12,2/14/2016 17:31,Gary,Hall,NULL,9016 30th Street East,NULL,Parrish,34219,Gary Hall,NULL,NULL,9016 30th Street East,NULL,Parrish,34219,9417768201,9415381826,gary.hall46@yahoo.com,gary.hall46@yahoo.com,1012596,1
+88105616-08-02,1,2/8/2016 13:18,2/8/2016 13:18,James,Rogerson,NULL,2310 Little Bear Ct,NULL,Euless,76039,James Rogerson,NULL,NULL,2310 Little Bear Ct,NULL,Euless,76039,817-471-3140,214-675-7831,j.rogerson@sbcglobal.net,j.rogerson@sbcglobal.net,9604410,1
+59b99f16-09-02,1,2/9/2016 12:41,2/9/2016 12:41,JOHN,WALLIS,NULL,5937 SUNDANCE CIR,NULL,MATHIS,78368,JOHN WALLIS,NULL,NULL,5937 SUNDANCE CIR,NULL,MATHIS,78368,8324098800,NULL,jcwint@jcwint.com,jcwint@jcwint.com,5601031,1
+33987d16-09-02,1,2/9/2016 14:06,2/9/2016 14:06,John,Ream,NULL,P.O. Box 94,NULL,Elton,15934,John Ream,NULL,NULL,P.O. Box 94,NULL,Elton,15934,814-266-3303,814-659-5480,jream126@comcast.net,pddgm@041,ktch@061,0
+d33dac16-09-02,1,2/9/2016 15:32,2/9/2016 15:32,William,Sizemore,Scottish Rite,1733 16th St NW,NULL,Washington,20009,William Sizemore,Scottish Rite,NULL,1733 16th St NW,NULL,Washington,20009,7573757948,NULL,bsizemore@scottishrite.org,bsizemore@scottishrite.org,9593001,1
+818dd416-09-02,1,2/9/2016 22:55,2/9/2016 22:55,Michael,Miller,NULL,1305 Bel Aire Road,NULL,Polk City,50226,Michael Miller,NULL,NULL,1305 Bel Aire Road,NULL,Polk City,50226,515-661-7357,NULL,PolkCityFisherman@gmail.com,PolkCityFisherman@gmail.com,8112231,1
+a3cd3216-10-02,1,2/10/2016 14:42,2/10/2016 14:42,Craig,Thighe,NULL,8655 Red Clover Ct,NULL,Parker,80134,Craig Thighe,NULL,NULL,8655 Red Clover Ct,NULL,Parker,80134,720-238-7950,NULL,cthighe@gmail.com,cthighe@gmail.com,3597366,1
+e494c616-10-02,1,2/10/2016 17:54,2/10/2016 17:54,Philip,Arony,NULL,5 Crestwood Drive,NULL,Charlton,12019,Philip Arony,NULL,NULL,5 Crestwood Drive,NULL,Charlton,12019,518-399-0968,518-573-3597,parony1@nycap.rr.com,philbob,3010toadhall,0
+08e9f816-10-02,1,2/10/2016 21:14,2/10/2016 21:14,Scott,Ford,NULL,2229 Ironwood Dr. SW,NULL,Altoona,50009,Scott Ford,NULL,NULL,2229 Ironwood Dr. SW,NULL,Altoona,50009,641-521-5520,641-521-5520,fordscam@gmail.com,fordscam@gmail.com,7077321,1
+081b1716-11-02,1,2/11/2016 21:44,2/11/2016 21:44,Jesse,Riggs,NULL,729 n Wickshire Way,NULL,Brentwood,37027,Jesse Riggs,NULL,NULL,729 N. Wickshire Way,NULL,Brentwood,37027,615 331-2005,615 972-0942,jesseriggs@bellsouth.net,jesseriggs@bellsouth.net,4222794,1
+1bb55e16-12-02,1,2/12/2016 11:06,2/12/2016 11:06,M Ralph,Dieter,NULL, 78 Olde Lantern Road,NULL,Bedford,3110,M Ralph Dieter,NULL,NULL, 78 Olde Lantern Road,NULL,Bedford,3110,603 472 5717,NULL,k1rd@k1rd.net,k1rd@k1rd.net,13times13,0
+e1a6e016-12-02,1,2/12/2016 16:31,2/12/2016 16:31,Earnest,Hudson,Joseph Warren-Gothic Lodge No. 934,"198-01 67th Avenue, Apt. F",NULL,Fresh Meadows,11365,Earnest Hudson,Joseph Warren-Gothic Lodge No. 934,NULL,"198-01 67th Avenue, Apt. F",NULL,Fresh Meadows,11365,5166339753,5166339753,elhudsonjr@gmail.com,elhudsonjr@gmail.com,itisingodiam7!,0
+a3eeef16-13-02,1,2/13/2016 9:35,2/13/2016 9:35,Harold,Campbell,NULL,4532 Picasso Dr,NULL,Virginia Beach,23456,Harold Campbell,NULL,NULL,4532 Picasso Dr,NULL,Virginia Beach,23456,7572897460,7574728847,hallenc2@cox.net,hallenc2@cox.net,1097451,1
+e5cac616-13-02,1,2/13/2016 11:22,2/13/2016 11:22,Merle,Wade,NULL,501 Country Club PL,NULL,Gadsden,35901,Merle Wade,Clinical Urology Associates,NULL,713 Goodyear Ave,NULL,Gadsden,35903,2564131944,NULL,tampauro@yahoo.com,tampauro,Cham1998,0
+d9ac9416-13-02,1,2/13/2016 12:19,2/13/2016 12:19,Charles,Persinger,C E Persinger,68 Aspen Cove,NULL,West Point,84015,Charles Persinger,C E Persinger,NULL,68 Aspen Cove,NULL,West Point,84015,801-721-1981,NULL,charliepersinger@gmail.com,charliepersinger,onthelevel,0
+629aab16-14-02,1,2/14/2016 9:56,2/14/2016 9:56,Chance,Robinson,NULL,PO Box 1088,NULL,Marfa,79843-1088,Chance Robinson,NULL,NULL,PO Box 1088,NULL,Marfa,79843-1088,432-729-1845,432-295-1929,crobinson@aggienetwork.com,163331,fido2007,0
+62117516-15-02,1,2/15/2016 18:09,2/15/2016 18:09,Charlie,Babb,NULL,1300 Jamestown,NULL,Edmond,73003,Charlie Babb,NULL,NULL,1300 Jamestown,NULL,Edmond,73003,4052104441,NULL,ckbabb@sbcglobal.net,ckbabb@sbcglobal.net,8875489,1
+23eae216-15-02,1,2/15/2016 19:45,2/15/2016 19:45,Ryan,Engle,Fort Thomas Lodge 808,PO Box 75094,NULL,Fort Thomas,41075,Ryan Engle,Fort Thomas Lodge 808,NULL,PO Box 75094,NULL,Fort Thomas,41075,859-282-9611,859-394-8472,ftml808@gmail.com,ftml808,357steps,0
+ba7de116-15-02,1,2/15/2016 23:57,2/15/2016 23:57,Chris,Tilley,NULL,809 misty morning ct.,NULL,St. Paul,63366,Chris Tilley,NULL,NULL,809 misty morning ct.,NULL,St. Paul,63366,636-379-2076,NULL,Ctilley52@yahoo.com,Ctilley52@yahoo.com,4627755,1
+ebe60116-16-02,1,2/16/2016 11:52,2/16/2016 11:52,Bill,Weathers,Jornada Lodge #70 AF&AM,P.O.Box 16168,NULL,Las Cruces,88004,Bill Weathers,Jornada Lodge #70 AF&AM,NULL,697 Rouault Ave,NULL,Las Cruces,88005,(575) 636-3482,NULL,j70af_am@aol.com,stratobill,2Bulleth,0
+042c3416-17-02,1,2/17/2016 11:17,2/17/2016 11:17,Ronald,Murad,NULL,197 N Martine Ave,NULL,Fanwood,7023,Ronald Murad,NULL,NULL,197 N Martine Ave,NULL,Fanwood,7023,(908) 499-1749,NULL,ronmurad@hotmail.com,ronmurad,72288,0
+3b7a2316-18-02,1,2/18/2016 8:49,2/18/2016 8:50,Gary ,Sockwell,NULL,"995 Canter Road, N.E.",NULL,Atlanta,30324,Gary Sockwell,NULL,NULL,"995 Canter Road, N.E.",NULL,Atlanta,30324,4042378525,NULL,gsockwel@comcast.net,gsockwel@comcast.net,6649553,1
+c8a08916-19-02,1,2/19/2016 10:32,2/19/2016 10:32,Chuck,Brust,NULL,421 11th Ave SE,NULL,Rochester,55904,Chuck Brust,NULL,NULL,421 11th Ave SE,NULL,Rochester,55904,5072545712,5072545712,brust.charles@mayo.edu,brust.charles@mayo.edu,3814879,1
+9a28b216-19-02,1,2/19/2016 15:57,2/19/2016 15:57,Amanda,Delong,NULL,1604 Arkansas Creek Rd,NULL,Martin,41649,Timothy Delong,NULL,NULL,1604 Arkansas Creek Rd,NULL,Martin,41649,6067910091,6067910091,ranmaysmom@icloud.com,ranmaysmom@icloud.com,8642684,1
+b2621316-19-02,1,2/19/2016 16:12,6/14/2016 14:00,KEITH,COOPER,NULL,5516 W PUEBLO AVE ,NULL,PHOENIX,85043,Jason Baxter ,NULL,NULL,11023 W Pierson St,NULL,PHOENIX,85037,6232024582,NULL,FUNKY2YA@GMAIL.COM,funky2ya,koopa911,1
+ac9e1c16-20-02,1,2/20/2016 10:59,2/20/2016 10:59,Thomas,Connors,NULL,47 Abbott Road,NULL,Dedham,02026-3011,Thomas M Connors,NULL,NULL,47 Abbott Road,NULL,Dedham,02026-3011,781-326-4744,781-249-7902,tomc@tomc.us,ThomasMConnors,1psscPSSC,0
+571dec16-20-02,1,2/20/2016 17:00,2/20/2016 17:00,Robert,Howard,NULL,863 Harristown Road,NULL,Glen Rock,7452,Robert Howard,NULL,NULL,863 Harristown Road,NULL,Glen Rock,7452,your kidding,201 925-6349,rwhoward@optonline.net,rwhoward@optonline.net,bobH1066,0
+95ea1c16-20-02,1,2/20/2016 22:59,2/20/2016 22:59,Gaylord,Thomas,NULL,1403 W. Cleveland Ave,NULL,Guthrie,73044,Gaylord Thomas,NULL,NULL,1403 W. Cleveland Ave,NULL,Guthrie,73044,4052939281,4054712747,gzthomas@cox.net,gzthomas@cox.net,7802178,1
+19f12b16-21-02,1,2/21/2016 18:29,2/21/2016 18:29,Joshua,Garwood ,NULL,3312 Delderfield,NULL,Las Vegas,89121,Joshua Garwood 1103647,C/O HDSP,NULL,PO Box 650,NULL,Indian Springs,89070,7022714209,7022714209,ljgarwood3@alo.com,ljgarwood3@alo.com,9271286,1
+cb9d4816-21-02,1,2/21/2016 18:37,2/21/2016 18:37,Leah,Garwood,NULL,3312 Delderfield,NULL,Las Vegas,89121,Joshua Garwood1103647,C/O HDSP,NULL,PO Box 650,NULL,Indian Springs,89070,7022714209,NULL,ljgarwood3@aol.com,ljgarwood3@aol.com,4237746,1
+498a2d16-21-02,1,2/21/2016 21:45,2/23/2016 14:30,James,Gregg,NULL,178 Norfolk Apt #4,NULL,New York,10002,James Gregg (Drama),The Juilliard School,NULL,60 Lincoln Center Plaza,NULL,New York,10023,646-335-3855,646-335-3855,jgregg@juilliard.edu,escher182,ray57411,0
+c9bc3416-22-02,1,2/22/2016 11:15,2/22/2016 11:15,Dan,Green,Wakeman Chapter #177 R.A.M.,776 Butler Rd N,NULL,New London,44851,"Howard Park, CEO",Wakeman chapter #177 R.A.M.,NULL,11817 West Rd,NULL,Wakeman,44889,419 929 0078,419 577 6384,dgreen4967@yahoo.com,Wakemanchapter177,177ram,0
+11a6ad16-22-02,1,2/22/2016 17:56,9/24/2016 18:26,TRUMAN,HIX,TRUMAN G. HIX,929 N. WASHINGTON ST #1,NULL,DENVER,80203,TRUMAN HIX,TRUMAN G. HIX,NULL,929 N. WASHINGTON ST #1,NULL,DENVER,80203,508-259-4742,508-259-4742,tghix1@comcast.net,tghix1@comcast.net,rwtghix,0
+f813ad16-24-02,1,2/24/2016 7:45,2/24/2016 7:45,Frank,York,Frank York,PO Box 236,NULL,Fulton,78358,Frank York,Rockport Masonic Lodge,NULL,602 Hickory,NULL,Rockport,78382,3617906600,3617906600,frnkyork@gmail.com,frnkyork@gmail.com,1021455,1
+12993916-24-02,1,2/24/2016 12:12,2/24/2016 12:12,David,Earnest,David Earnest,941 Tealwood Drive,Grapevine Lodge #288,Keller,76248,David Earnest,Grapevine Lodge #288,NULL,941 Tealwood Drive,NULL,Keller,76248,2142365707,2142365707,dea069@verizon.net,davidearnest,3731@DrE1,0
+c2622f16-24-02,1,2/24/2016 14:09,2/24/2016 14:09,David ,Stewart,NULL,43 Clearview CVourt,NULL,Southington,6489,David Stewart,NULL,NULL,43 Clearview CVourt,NULL,Southington,6489,203,2033763912,crowfeatherphoto@att.net,crowfeatherphoto@att.net,2480821,1
+7c261b16-24-02,1,2/24/2016 16:24,2/24/2016 16:24,Walter,Sawicki II,NULL,4562 Newport Ave.,NULL,St. Louis,63116,Walter Sawicki II,NULL,NULL,4562 Newport Ave.,NULL,St. Louis,63116,31456037107,3145603717,papa-02@sbcglobal.net,papa-02@sbcglobal.net,5374104,1
+b1f9b816-25-02,1,2/25/2016 17:24,3/9/2016 11:40,Daniel,Sutcliffe,Grand Lodge of New Mexico AF&AM,PO BOx 25004,NULL,Albuquerque,87125-0004,Dan Sutcliffe,Grand Lodge of New Mexico,NULL,1638 University Blvd. NE,NULL,Albuquerque,87102,505-243-4931,505-670-6128,gndsec@nmmasons.org,gndsec,Tubalcain6877,0
+1260a016-26-02,1,2/26/2016 10:54,2/26/2016 10:54,Janice,Miller,Grand Lodge of Illinois,2866 Via Verde,NULL,Springfield,62703,Janice Miller,Grand Lodge of Illinoit,NULL,2866 Via Verde,NULL,Springfield,62703,2175298900,2175298900,ofcmanager@ilmason.org,ofcmanager@ilmason.org,Ilmason1!,0
+b0349a16-26-02,1,2/26/2016 10:55,2/26/2016 10:55,J,morris,MSA,3950 National Drive,NULL,Burtonsville,20866,J morris,MSA,NULL,3950 National Drive,NULL,Burtonsville,20866,3014767330,NULL,jmorris@msana.com,jmorris@msana.com,1346552,1
+fea37516-26-02,1,2/26/2016 12:09,2/26/2016 12:09,Brandy,King,NULL,PO BOX 816,NULL,Bangor,4402,Brandy King,NULL,NULL,PO BOX 816,NULL,Bangor,4402,2079515557,NULL,brandyjk@gmail.com,brandyjk@gmail.com,1952600,1
+c3dd2f16-26-02,1,2/26/2016 16:07,2/26/2016 16:07,Frank,Loui,A&ASR,2850 19th Avenue,NULL,San Francisco,94132,Frank Loui,A&ASR,NULL,2850 19th Avenue,NULL,San Francisco,94132,4156098839,4156098839,frankloui@aol.com,frankloui@aol.com,8132323,1
+fc2df516-01-03,1,3/1/2016 15:05,4/11/2016 11:33,Thomas,Foster,Grand Lodge of A.F. & A.M. of Maryland,304 International Circle,NULL,Cockeysville,21030,Kenneth Taylor,Grand Lodge of A.F. & A.M. of Maryland,NULL,304 International Circle,NULL,Cockeysville,21030,4103169146,4109161363,tfoster@glmd.org,tfoster@glmd.org,sophie4502,1
+aaf0b416-01-03,1,3/1/2016 18:10,3/1/2016 18:10,phil,terrell,NULL,673 county road 586,NULL,rogersville,35652,phil terrell,NULL,NULL,673 county road 586,NULL,rogersville,35652,2564124515,2564124515,p.e.terrell@att.net,pterrell84,Tophat84,1
+b8778016-02-03,1,3/2/2016 14:54,3/22/2016 22:35,David,Williamson,David Williamson,213 Barnes Ave,NULL,Maryville,37803,David Williamson,NULL,NULL,213 Barnes Ave,NULL,Maryville,37803,(865)982-7716,(865)556-2213,dewilliamson556@charter.net,David Williamson,MySonGary1971,0
+a4403a16-02-03,1,3/2/2016 17:06,7/11/2016 16:05,Earl "Gene",Ammerman II,NULL,8703 W. Tillamook Dr,NULL,Boise,83704,Earl "Gene" Ammerman II,NULL,NULL,8703 W. Tillamook Dr,NULL,Boise,83704,2083538131,2083538131,wyo1970@gmail.com,wyo1970,bbgirl,0
+530d1016-03-03,1,3/3/2016 15:32,3/3/2016 15:32,Andre,Boivin,NULL,541 Prestwick Dr.,NULL,Davenport,33897-7377,Robert Dupel,Highlands Golf & Country Club,NULL,541 Prestwick Dr.,NULL,Davenport,33897-7377,819-503-9909,613-715-2751,boivin.an@videotron.ca,boivin.an@videotron.ca,1496179,1
+fbb70216-03-03,1,3/3/2016 19:58,3/3/2016 19:58,Gary,Hall,NULL,9016 30th Street East,NULL,Parrish,34219,Gary Hall,NULL,NULL,9016 30th Street East,NULL,Parrish,34219,9417768201,9415381826,gary.hall46@yahoo.com,gary.hall46@yahoo.com,4621260,1
+563af316-04-03,1,3/4/2016 11:29,3/4/2016 11:29,David,Grover,David R. Grover,2307 4th. St.,Apt.1,Tillamook,97141,David Grover,David R. Grover,NULL,2307 4th. St.,Apt.1,Tillamook,97141,503-815-1726,NULL,dndgrover@charter.net,dndgrover,d17661101,0
+2147cf16-07-03,1,3/7/2016 15:49,3/7/2016 15:49,Ken,Rood,NULL,10626 Sedco Drive,NULL,Union,41091,Ken Rood,"Boone-Union Lodge #304, F.& A.M.",NULL,10626 Sedco drive,NULL,Union,41091,859-384-4002,NULL,kz5kr58@gmail.com,kz5kr58@gmail.com,6487121,1
+9db68216-09-03,1,3/9/2016 11:11,3/9/2016 11:11,John,Burnett,Lunar Lodge,PO Box 713,NULL,Madison,35758,John Burnett,Lunar Lodge,NULL,PO Box 713,NULL,Madison,35758,2563250558,3606324810,jb45855@aol.com,jb45855@aol.com,5192579,1
+72757a16-09-03,1,3/9/2016 12:57,3/9/2016 12:57,Ken,Rood,Loren K Rood,10626 Sedco Drive,NULL,Union,41091,Ken Rood,Loren K Rood,NULL,10626 Sedco Drive,NULL,Union,41091,859-384-4002,8593844002,kz5kr58@gmail.com,kz5kr58@gmail.com,3890734,1
+8db82516-09-03,1,3/9/2016 18:02,3/9/2016 18:02,Rod,Kennedy,NULL,PO Box 655,NULL,Evansville,82636,Rod Kennedy,NULL,NULL,PO Box 655,NULL,Evansville,82636,307-333-4027,307-258-6800,wyo.master.mason@gmail.com,Rod_Kennedy68,Masonic15,0
+6cb4c916-09-03,1,3/9/2016 21:51,3/9/2016 21:51,luis,lasa,NULL,117 robertson court,NULL,north wales,19454,luis lasa,NULL,NULL,117 robertson court,NULL,north wales,19454,2154911823,NULL,ramon_lasa@yahoo.com,ramon_lasa@yahoo.com,1214914,1
+7d30ca16-09-03,1,3/9/2016 22:03,3/9/2016 22:03,Raymond,Feyes,NULL,10307 Kirkwren Dr,NULL,Houston,77089,Raymond Feyes,NULL,NULL,10307 Kirkwren Dr,NULL,Houston,77089,2817316709,281736709,r.feyes@yahoo.com,r.feyes@yahoo.com,4238378,1
+00450c16-10-03,1,3/10/2016 18:33,3/10/2016 18:33,Jeremy,Harris,NULL,812 N 14th St,NULL,Bismarck,58501,Jeremy Harris,NULL,NULL,812 N 14th St,NULL,Bismarck,58501,(386)466-4646,(386)466-4646,have2shoe@yahoo.com,crfd1405,Canada12,0
+b9c53816-11-03,1,3/11/2016 10:18,3/11/2016 10:18,Scott,Sholar,NULL,7905 Sutcliffe Drive,NULL,Raleigh,27613,Scott Sholar,NULL,NULL,7905 Sutcliffe Drive,NULL,Raleigh,27613,19192471910,19192471910,scott.sholar@gmail.com,scott.sholar@gmail.com,Shababa2,0
+bf18df16-11-03,1,3/11/2016 13:51,3/11/2016 13:51,Larry,York,NULL,13643 madison pike,NULL,Morning view,41063,Larry York,NULL,NULL,13643 madison pike,NULL,Morning view,41063,8597431826,NULL,Lprc2537@gmail.com,Lprc2537@gmail.com,5111839,1
+21e93416-11-03,1,3/11/2016 14:03,3/11/2016 14:03,Matthew,Dobbrow,NULL,11 Westwood Drive,NULL,Simsbury,6070,Matthew Dobbrow,NULL,NULL,11 Westwood Drive,NULL,Simsbury,6070,860-217-1576,NULL,dobbrow@gmail.com,dobbrow,Knat4Sag33&m,0
+5e282f16-11-03,1,3/11/2016 14:04,3/11/2016 14:04,Robert,Fowler,NULL,109 Oak Ridge Rd,NULL,swannanoa,28778,Robert Fowler,NULL,NULL,109 Oak Ridge Rd,NULL,swannan,28778,8287853320,NULL,bellathejack@charter.net,bellathejack@charter.net,7871788,1
+9f004616-13-03,1,3/13/2016 22:34,3/13/2016 22:34,Rick,Silva,NULL,3252 Cedar Ave,NULL,Long Beach,90806,Rick Silva,NULL,NULL,3252 Cedar Ave,NULL,Long Beach,90806,5622330418,5622330418,rcksil@me.com,rcksil,m1Ephrain!s,0
+84c1aa16-14-03,1,3/14/2016 8:24,3/14/2016 8:24,Marshall,Clowers,NULL,200 Circle Drive NE,NULL,Cleveland,37312,Marshall Clowers,NULL,NULL,200 Circle Drive NE,NULL,Cleveland,37312,4234768104,4233104235,marshall_clowers@bellsouth.net,mcclowers,Batshit1,0
+fd0b3916-14-03,1,3/14/2016 11:37,3/14/2016 11:37,Jonathan,Asencio,NULL,"207 Hawthorne Avenue, Apt. 17",NULL,Central Islip,11722,Jonathan Asencio,NULL,NULL,"207 Hawthorne Avenue, Apt. 17",NULL,Central Islip,11722,16315078076,16315078076,j.asencio149@gmail.com,Ja6957,Ja69573842UDT$L,0
+fb868f16-15-03,1,3/15/2016 12:33,3/15/2016 12:33,David,Carnes,Wilmington Lodge #362,15248 Madison Pike,NULL,Morning View,41063,David Carnes,Wilmington Lodge #362,NULL,15248 Madison Pike,NULL,Morning View,41063,8593563502,8593223409,paulaanddave@twc.com,tractorman,50jd8nford,0
+d5b92716-15-03,1,3/15/2016 13:28,3/15/2016 13:28,Beynon,St John,Grand Lodge AF&AM of Wyoming,PO Box 1328,NULL,Lander,82520,Beynon St John,NULL,NULL,566 Cliff St,NULL,Lander,82520,307-330-6214,NULL,grandsecretary@wyomingmasons.com,grandsecretary@wyomingmason.com,achiJn02,0
+91029a16-15-03,1,3/15/2016 15:43,3/15/2016 15:43,Robert,Comeau,Robert Comeau,6 Kendall Road,NULL,Boylston,1505,Robert Comeau,Robert Comeau,NULL,6 Kendall Road,NULL,Boylston,1505,508 869-2039,NULL,oilslick@mcgr.net,oilslick@mcgr.net,2006543,1
+70f89016-16-03,1,3/16/2016 0:49,3/16/2016 0:49,Ryan Paul,Brulinski,NULL,1112 Colorado Street,NULL,Bellevue,68005,Ryan Paul Brulinski,NULL,NULL,1112 Colorado Street,NULL,Bellevue,68005,4024089369,3018482453,Ryan.brulinski@gmail.com,Ryan.brulinski@gmail.com,1140802,1
+95b82516-16-03,1,3/16/2016 15:48,3/16/2016 15:48,Robert,Licata,Robert Licata,20 Alma Street,NULL,Sayville,11782,Robert Licata,Robert Licata,NULL,20 Alma Street,NULL,Sayville,11782,631.589.5035,5163983577,rjlicata@hotmail.com,rjlicata@hotmail.com,5201170,1
+e8428d16-16-03,1,3/16/2016 15:49,3/16/2016 15:49,Robert,Licata,Robert Licata,20 Alma Street,NULL,Sayville,11782,Robert Licata,Robert Licata,NULL,20 Alma Street,NULL,Sayville,11782,631.589.5035,5163983577,rjlicata@hotmail.com,rjlicata@hotmail.com,5089190,1
+b1b6ef16-16-03,1,3/16/2016 21:27,3/16/2016 21:27,August,Molitano,NULL,P.O. Bpx 427,NULL,Riverton,6065,August Molitano,NULL,NULL,P.O. Bpx 427,NULL,Riverton,6065,860-379-1185,NULL,cdb1865@snet.net,cdb1865@snet.net,1574828,1
+2387cf16-17-03,1,3/17/2016 10:55,3/17/2016 10:55,Robert,Schlegel,R F Schlegel,4053 SE 39th Circle,NULL,Ocala,34480-4954,Robert Schlegel,R F Schlegel,NULL,4053 SE 39th Circle,NULL,Ocala,34480-4954,3525120890,5168152816,RFSCHLEGEL45@COX.NET,rfschlegel,1150usar,0
+aaec6116-17-03,1,3/17/2016 11:25,3/17/2016 11:25,Arnold,Cobb ,NULL,2916 Wicker ST,NULL,Sanford,27330,Arnold Cobb ,NULL,NULL,2916 Wicker ST,NULL,Sanford,27330,919-671-4960,NULL,agcobb@nccumc.org,agcobb@nccumc.org,5667681,1
+83a11616-17-03,1,3/17/2016 11:48,3/17/2016 11:48,Stan,Barclay,GLMB,283 Augusta Dr,NULL,Winnipeg ,R3T 4H3,Stan Barclay,GLMB,NULL,283 Augusta Dr,NULL,Winnipeg,R3T 4H3,2042698454,NULL,Stan.barclat@shaw.ca,stanbarclay,Zaq12345,0
+4d817316-18-03,1,3/18/2016 11:04,3/18/2016 11:04,Tom,Merchant,Tom Merchant,315 Oak View Circle,NULL,El Lago,77586,Tom Merchant,Tom Merchant,NULL,315 Oak View Circle,NULL,El Lago,77586,281-326-2658,281-682-3670,tmerchant2@comcast.net,MERCH75,2013merch,0
+29e3a416-18-03,1,3/18/2016 11:41,3/18/2016 11:41,Benjamin,Schroeder,Raven Lodge #303,13701 Joliet road,NULL,Newark,60541,Benjamin Schroeder,Raven Lodge #303,NULL,13701 Joliet road,NULL,Newark,60541,815-736-6242,NULL,ravensecy@earthlink.net,ravensecy@earthlink.net,5970592,1
+80130216-18-03,1,3/18/2016 22:48,3/18/2016 22:48,Eric,Gillett,NULL,15595 East Twp Rd 12,NULL,Attica,44807,Eric Gillett,NULL,NULL,15595 East Twp Rd 12,NULL,Attica,44807,419-571-9302,419-571-9302,degillett@frontier.com,degillett@frontier.com,4414558,1
+e90e4a16-20-03,1,3/20/2016 11:33,3/20/2016 11:33,Paul,Bailey,NULL,3640 Windjammer Drive,NULL,Colorado Springs,80920,Paul Bailey,NULL,NULL,3640 Windjammer Drive,NULL,Colorado Springs,80920,(719) 548-5016,NULL,baileypaul0@googlemail.com,bail3640,P033155b,0
+08cd9816-20-03,1,3/20/2016 14:25,3/20/2016 14:25,Douglas,Russell,NULL,6528 Sunnyslope Ave,NULL,Van Nuys,91401-1743,Douglas Russell,NULL,NULL,6528 Sunnyslope Ave,NULL,Van Nuys,91401-1743,18189880683,1.42243E+11,dougrussell416@gmail.com,dougrussell416@gmail.com,zzy416zzx,0
+284c5116-20-03,1,3/20/2016 15:01,3/27/2016 8:47,Fred,Eastman,NULL,7111 28th Ave. N.W.,NULL,Seattle,98117,Fred Eastman,NULL,NULL,7111 28th Ave. N.W.,NULL,Seattle,98117,2067844653,2062000746,derftsam@aol.com,derftsam@aol.com,5879781,1
+a8707216-21-03,1,3/21/2016 9:32,3/21/2016 9:32,Benjamin,Schroeder,Raven Lodge #303,13701 Joliet Road,NULL,Newark,60541,Benjamin Schroeder,Raven Lodge #303,NULL,13701 Joliet Road,NULL,Newark,60541,815-736-6242,NULL,schsol@earthlink.net,schsol@earthlink.net,5292629,1
+029ff716-21-03,1,3/21/2016 12:47,3/21/2016 12:47,Richard,Maris,Eugene Loge 11,2777 MLK Blvd.,NULL,Eugene,97401,Secretary,Eugene Lodge 11,NULL,513 Pinto Way,NULL,Eugene,97401,541-344-9413,NULL,eugenelodge11@gmail.com,eugenelodge11,Hiram#11,0
+f8eb6516-21-03,1,3/21/2016 15:14,3/21/2016 15:14,Todd,Onesti,Stow Lodge #768,33 Prentiss Street,NULL,Munroe Falss,44262,Todd Onesti,Stow Lodge #768,NULL,33 Prentiss Street,NULL,Munroe Falss,44262,(330)687-0244,NULL,tonesti@sbcglobal.net,tonesti@sbcglobal.net,3974788,1
+d7125c16-21-03,1,3/21/2016 16:24,3/21/2016 16:24,Michael,Watson,Grand Lodge F. & A.M. of Ohio,1 Masonic Drive,NULL,Springfield,45504-3658,Michael Watson,Grand Lodge F. & A.M. of Ohio,NULL,1 Masonic Drive,NULL,Springfield,45504-3658,6148855318,NULL,mwatson@freemason.com,glohio,gmaster98,0
+d7e6b616-21-03,1,3/21/2016 19:51,3/21/2016 19:51,Arthur,Dickerson,NULL,1038 Hephzibah-McBean Road,NULL,Hephzibah,30815,Arthur Dickerson,NULL,NULL,1038 Hephzibah-McBean Road,NULL,Hephzibah,30815,7067936654,7068298647,adickerson9@comcast.net,adickerson9,thoma1s3,0
+ff223f16-22-03,1,3/22/2016 9:42,3/22/2016 9:42,Dale,Rogers,Retired,117 Hemlock Terrace North,NULL,Greentown,18426,Dale Rogers,Retired,NULL,117 Hemlock Terrace North,NULL,Greentown,18426,5706764198,N/A,cw3rogers@gmail.com,cw3rogers,chiefwo3,0
+7ef8ca16-22-03,1,3/22/2016 11:12,3/22/2016 11:12,James,Johnston,NULL,1616 Edinburgh Ave,NULL,Port Royal,29935-1808,James E. Johnston,NULL,NULL,1616 Edinburgh Ave,NULL,Port Royal,29935-1808,0,843-252-6160,jimbow@islc.net,Jimbow,Sniz6zel,0
+dae16e16-22-03,1,3/22/2016 11:44,3/22/2016 11:44,Thomas,Foster,Grand Lodge of A.F. & A.M. of Maryland,304 International Circle,NULL,Cockeysville,21030,Thomas Foster,Grand Lodge of A.F. & A.M. of Maryland,NULL,304 International Circle,NULL,Cockeysville,21030,4108335294,4108335294,tomwfos@comcast.net,tomwfos@comcast.net,4855914,1
+6bdd8416-22-03,1,3/22/2016 11:49,3/22/2016 11:49,Kenneth,Taylor,Grand Lodge of A.F. & A.M. of Maryland,304 International Circle,NULL,Cockeysville,21030,Kenneth Taylor,Grand Lodge of A.F. & A.M. of Maryland,NULL,304 International Circle,NULL,Cockeysville,21030,410-527-0600,410-527-0600,office@glmd.org,office@glmd.org,6467566,1
+f3507316-24-03,1,3/24/2016 9:53,3/24/2016 9:53,Dan,Kemble,NULL,1540 St. Clair Street,NULL,Covington,41011,Dan Kemble,NULL,NULL,1540 St. Clair Street,NULL,Covington,41011,8598013095,NULL,dkemble@fbtlaw.com,dkemble@fbtlaw.com,7815094,1
+c4b19c16-24-03,1,3/24/2016 10:38,3/24/2016 10:38,Paul,Mertz,NULL,47 Hawthorne Hill Rd,NULL,Hopkinton,3229,Paul Mertz,NULL,NULL,47 Hawthorne Hill Rd,NULL,Hopkinton,3229,6032263631,6032263631,pwmertz52@yahoo.com,paulmertz,winnipesaukee,0
+10799316-24-03,1,3/24/2016 10:42,3/24/2016 10:42,Gwen,Olson,Grand Lodge of South Dakota,520 S First Ave,NULL,Sioux Falls,57104,Gwen Olson,Grand Lodge of South Dakota,NULL,520 S First Ave,NULL,Sioux Falls,57104,605-332-2051,NULL,office@mygrandlodge.org,office@mygrandlodge.org,4051032,1
+eb238b16-25-03,1,3/25/2016 1:21,3/25/2016 1:21,Nico,Capolongo,NULL,4001 Pelham RD Unit 397,NULL,Greer,29650,Nico Capolongo,NULL,NULL,4001 Pelham RD Unit 397,NULL,Greer,29650,7185145180,7185145180,nico.capolongo1@gmail.com,nico.capolongo1@gmail.com,9861519,1
+ad1fdc16-25-03,1,3/25/2016 8:03,3/25/2016 8:03,Robert,Fitzgerald,NULL,476 SW CR 138,NULL,"Ft. White, Fl",32038,Robert Fitzgerald,NULL,NULL,476 SW CR 138,NULL,"Ft. White, Fl",32038,386 454 5103,NULL,fitzrm@windstream.net,fitzrm@windstream.net,6735607,1
+b4e6b516-25-03,1,3/25/2016 11:35,3/25/2016 11:35,Douglas,Tribou,"Western Star Masonic Lodge #91, A.F.&A.M.",PO Box 627,NULL,Rutherfordton,28139,Douglas Tribou,"Western Star Masonic Lodge #91, A.F.&A.M.",NULL,PO Box 627,NULL,Rutherfordton,28139,828-288-3977,828-817-9454,douguscgretired@gmail.com,M125578,dtri6oucg,0
+b92fc016-25-03,1,3/25/2016 11:36,3/25/2016 11:36,John,Burnett,Lunar Lodge #918,PO Box 713,NULL,Madison,35758,John Burnett,Lunar Lodge #918,NULL,PO Box 713,NULL,Madison,35758,256-325-0558,NULL,jb45855@aol.com,jb45855@aol.com,8954535,1
+c62feb16-25-03,1,3/25/2016 13:45,7/22/2016 8:39,Thomas ,Farr,NULL,5535 Downie Road,NULL,Denair,95316-9775,Thomas Farr,NULL,NULL,5535 Downie Road,NULL,Denair,95316-9775,209-632-1790,NULL,foc1652@aol.com,foc1652@aol.com,w6ij8873,0
+3b3a0c16-25-03,1,3/25/2016 16:23,3/25/2016 22:45,Joe,Pescador,NULL,7568 Roaring Springs Road,NULL,Gloucester,23061,Joe Pescador,NULL,NULL,7568 Roaring Springs Road,NULL,Gloucester,23061,8042101292,9173856576,japescador@aol.com,japescador,xiomara1,0
+1467a416-25-03,1,3/25/2016 21:37,3/25/2016 21:37,Jack,Levitt,NULL,2570 Fairway Drive,NULL,Bozeman,59715,Jack Levitt,NULL,NULL,2570 Fairway Drive,NULL,Bozeman,59715,4065859711,4065859711,levittjk@gmail.com,levittjk@gmail.com,dauben32,0
+538b9816-26-03,1,3/26/2016 7:36,3/26/2016 7:36,Ricky,Emerson,NULL,11825 US Hwy 60 West,NULL,Kevil,42053-9414,Ricky Emerson,NULL,NULL,11825 US Hwy 60 West,NULL,Kevil,42053-9414,2704623794,2705596409,bigfoot@brtc.net,pddgm707,Doublestar@449,0
+15ad1416-26-03,1,3/26/2016 10:00,3/26/2016 10:00,Richard,Maag,Masonic Temple Assoc. Co. of Sandusky,403 Wayne Street,NULL,Sandusky,44870,Richard Maag,Masonic Temple Assoc. Co. of Sandusky,NULL,403 Wayne Street,NULL,Sandusky,44870,4196255156,NULL,mooraker@aol.com,mooraker@aol.com,6582802,1
+4260b816-26-03,1,3/26/2016 18:04,3/26/2016 18:04,T David ,Jordan,NULL,1661 HWY 177,NULL,Russellville,35654,T David Jordan,NULL,NULL,1661 HWY 177,NULL,Russellville,35654,2563329614,2566687348,tdavid23@charter.net,tdavid23@charter.net,2116542,1
+a822ee16-27-03,1,3/27/2016 9:00,3/27/2016 9:00,Fred,Eastman,NULL,7111 28th Ave. N.W.,NULL,Seattle,98117,Fred Eastman,NULL,NULL,7111 28th Ave. N.W.,NULL,Seattle,98117,2067844653,2062000746,derftsam@aol.com,derftmsana1,demsana_1,1
+1a64a516-27-03,1,3/27/2016 17:34,3/27/2016 17:34,Russ,Charvonia,NULL,5536 N. Bryn Mawr St.,NULL,Ventura,93003,Russ Charvonia,NULL,NULL,5536 N. Bryn Mawr St.,NULL,Ventura,93003,8052581037,NULL,rcharvonia@freemason.org,rcharvonia@freemason.org,8686133,1
+c85f5c16-28-03,1,3/28/2016 10:18,3/28/2016 10:18,Robert,Kachelhofer,Hoover Lodge #644,2512 Old Rocky Ridge Road,NULL,Birmingham,35216,Robert Kachelhofer,Hoover Lodge #644,NULL,2512 Old Rocky Ridge Road,NULL,Birmingham,35216,205-989-7245,205-329-4254,bkachelhofer@charter.net,bkachelhofer@charter.net,7608915,1
+19224016-29-03,1,3/29/2016 10:04,3/30/2016 11:18,Gary,Gallaway,Lawn Lodge 1230 AF& AM,2538 Over St.,NULL,Abilene,79605,Gary Gallaway,Lawn Lodge 1230 AF& AM,NULL,2538 Over St.,NULL,Abilene,79605,325 690 0378,NULL,garygallaw@suddenlink.net,gary gallaway,bravo113,0
+5f0f0b16-29-03,1,3/29/2016 11:00,3/29/2016 11:00,Andrew,Cowley,NULL,359 overture way,NULL,centreville,21617,Andrew Cowley,NULL,NULL,359 overture way,NULL,centreville,21617,4107580523,4107580523,oldvet1966@yahoo.com,oldvet1966@yahoo.com,7993294,1
+2b74f816-29-03,1,3/29/2016 11:01,3/29/2016 11:01,Andrew,Cowley,NULL,359 overture way,NULL,centreville,21617,Andrew Cowley,NULL,NULL,359 overture way,NULL,centreville,21617,4107580523,4107580523,oldvet1966@yahoo.com,oldvet1966@yahoo.com,3089761,1
+a5520416-29-03,1,3/29/2016 16:14,3/29/2016 16:14,Matthew,Appel,NULL,18229 60th Ave. W,NULL,Lynnwood,98037,Matthew Appel,NULL,NULL,18229 60th Ave. W,NULL,Lynnwood,98037,4256730867,4256730867,mappel3@comcast.net,mappel3@comcast.net,4342785,1
+9cfb4416-29-03,1,3/29/2016 20:29,3/29/2016 20:29,Bud,Norcross,NULL,1210 Brookside Drive`,NULL,Rochelle,61068,Marshall Norcross,NULL,NULL,1210 Brookside Drive`,NULL,Rochelle,61068,8157621591,8157621591,bmenorcross@yahoo.com,bmenorcross@yahoo.com,2567568,1
+9846b316-30-03,1,3/30/2016 9:40,3/30/2016 9:40,Brian,Dodson,NULL,2707 Lakeside Village Dr,NULL,Missouri City,77459,Brian Dodson,NULL,NULL,2707 Lakeside Village Dr,NULL,Missouri City,77459,281-844-5747,281-844-5747,brdodson33@aol.com,brdodson33@aol.com,1780029,1
+34b12216-30-03,1,3/30/2016 9:45,3/30/2016 14:40,Brian,Dodson,NULL,2707 Lakeside Village Dr,NULL,Missouri City,77459,Brian Dodson,NULL,NULL,2707 Lakeside Village Dr,NULL,Missouri City,77459,281-844-5747,281-8445747,brdodson33@aol.com,brdodson,gmtx2006,1
+4beb6116-30-03,1,3/30/2016 18:15,3/30/2016 18:15,Walter,Sawicki II,NULL,4562 Newport Ave.,NULL,St. Louis,63116,Walter Sawicki II,NULL,NULL,4562 Newport Ave.,NULL,St. Louis,63116,3147524133,3145603717,papa-02@sbcglobal.net,papa-02@sbcglobal.net,1398269,1
+7c2deb16-30-03,1,3/30/2016 18:22,3/30/2016 18:22,Walter,Sawicki II,NULL,4562 Newport Ave.,NULL,St. Louis,63116,Walter Sawicki II,NULL,NULL,4562 Newport Ave.,NULL,St. Louis,63116,3147524133,3145603717,olivebranch-576@sbcglobal.net,olivebranch-576@sbcglobal.net,8373911,1
+3db32816-30-03,1,3/30/2016 23:14,3/30/2016 23:14,Ronald,Jarrett,NULL,10349 416th ,NULL,Britton,57430,Ronald Jarrett,NULL,NULL,10349 416th ,NULL,Britton,57430,6054485111,6058809866,rjarrett654@gmail.com,rjarrett654@gmail.com,9987640,1
+90182f16-31-03,1,3/31/2016 11:39,3/31/2016 11:39,Christopher,Henn,NULL,1821 South M street,NULL,wall,7719,Christopher Henn,NULL,NULL,1125 Audubon Drive,NULL,Toms River,8753,9086750036,NULL,chenn32@gmail.com,chenn32@gmail.com,5246731,1
+0386c916-01-04,1,4/1/2016 19:35,4/1/2016 19:35,Daniel,Mason,NULL,10790 Toepperwein,Apt 114,Converse,78109,Daniel Mason,NULL,NULL,10790 Toepperwein,Apt 114,Converse,78109,210-657-1936,NULL,scheib@earthlink.net,scheib@earthlink.net,7876695,1
+9e58dc16-02-04,1,4/2/2016 17:19,4/2/2016 17:19,Eric,Gamble,NULL,4012 Jasper Street,NULL,Metairie,70002,Eric Gamble,NULL,NULL,4012 Jasper Street,NULL,Metairie,70002,(504)454-0449,NULL,Egamble680@yahoo.com,Egamble680@yahoo.com,1061056,1
+c8181716-03-04,1,4/3/2016 12:10,4/3/2016 12:10,Daniel,Barston,NULL,15 Clark Street,NULL,Auburn,01501-1743,Daniel Barston,NULL,NULL,15 Clark Street,NULL,Auburn,01501-1743,5086122952,5086122952,dbarston@charter.net,dbarston@charter.net,3628237,1
+02ffeb16-03-04,1,4/3/2016 14:38,4/3/2016 14:38,Hal,Smith,NULL,6290 W Tropical Pkwy,NULL,Las Vegas,89130-1304,Hal Smith,NULL,NULL,6290 W Tropical Pkwy,NULL,Las Vegas,89130-1304,7026451655,7026451655,smithhal@embarqmail.com,smithhal@embarqmail.com,7304243,1
+78355916-03-04,1,4/3/2016 22:14,4/3/2016 22:14,Dallas,Carlson,NULL,851 Mahone Ave,NULL,Bismarck,58503,Dallas Carlson,NULL,NULL,851 Mahone Ave,NULL,Bismarck,58503,701-250-7859,701-220-7023,dcarlson403@yahoo.com,dcarlson,2014Rocket,0
+255ec216-04-04,1,4/4/2016 11:55,4/4/2016 11:55,Ralph,Jenkins,NULL,95,Lake Shore Drive,Montrose,18801,Ralph Jenkins,NULL,NULL,95,Lake Shore Drive,Montrose,18801,6077682521,6077682521,ralph_ump@yahoo.com,ralph_ump@yahoo.com,Yankee098,0
+f4b9fe16-04-04,1,4/4/2016 14:55,4/4/2016 14:55,Loren L.,Bower,Highland Lodge #38,P.O. Box 38,NULL,Hillsboro,45133,Loren L. Bower,Highland Lodge #38,NULL,P.O. Box 38,NULL,Hillsboro,45133,937-763-3954,NULL,bower22@frontier.com,bower22@frontier.com,Lizzie1msa1,0
+7a5f2516-05-04,1,4/5/2016 17:13,4/5/2016 17:13,John,Zabel,NULL,371 Lyndon Rd,NULL,Fairport,14450,John Zabel,NULL,NULL,371 Lyndon Rd,NULL,Fairport,14450,585-223-3228,585-576-4868,zabelj@mindspring.com,zabelj@mindspring.com,2268466,1
+abaed116-05-04,1,4/5/2016 23:05,4/5/2016 23:05,Joyce,Lane,NULL,9252 Dibble Ave NW,NULL,Seattle,98117,Joyce Lane,NULL,NULL,9252 Dibble Ave NW,NULL,Seattle,98117,206-755-5194,206-755-5194,dreamsbyjoyce@hotmail.com,dreamsbyjoyce@hotmail.com,my02kidsm,0
+40a82216-06-04,1,4/6/2016 10:16,4/6/2016 10:16,Larry,Lanning,NULL,102 Shepherd Lane,NULL,Lawson,64062,Larry Lanning,NULL,NULL,102 Shepherd Lane,NULL,Lawson,64062,815-591-4651,NULL,llanning102@aol.com,llanning102,1225lll,0
+20d45416-06-04,1,4/6/2016 16:01,4/6/2016 16:01,James W,Golladay Jr,James W Golladay Jr,P O Box 159,NULL,Stephens City,22655,same,same,NULL,same,NULL,same,same,540-869-3784,NULL,golladay01@verizon.net,golladay01@verizon.net,1585378,1
+8a4b9316-07-04,1,4/7/2016 16:19,4/7/2016 16:19,Jeff,Slattery,NULL,45 Carol Lane,NULL,Athens,45701,Jeff Slattery,NULL,NULL,45 Carol Lane,NULL,Athens,45701,740-592-6124,NULL,slattery@athensmasons.org,slattery@athensmasons.org,9247423,1
+69c6c516-07-04,1,4/7/2016 18:22,4/7/2016 18:22,Hal,Smith,NULL,6290 W Tropical Pkwy,NULL,Las Vegas,89130-1304,Hal Smith,NULL,NULL,6290 W Tropical Pkwy,NULL,Las Vegas,89130-1304,7026451655,7026451655,smithhal@embarqmail.com,halsmith,secondary,1
+840dac16-08-04,1,4/8/2016 13:10,4/8/2016 13:10,Earl ,Ferguson,NULL,404 Belfast Ct,NULL,Guyton,31312,Earl Ferguson,NULL,NULL,PO Box 774,NULL,Ellabell,31308,205-999-3068,205-999-3068,afvet17@earthlink.net,afvet17@earthlink.net,2812931,1
+10269f16-08-04,1,4/8/2016 13:14,6/25/2016 18:11,William,Powell,NULL,2466 Woodland Dr,NULL,Ogden,84403,William Powell,NULL,NULL,2466 Woodland Dr,NULL,Ogden,84403,801.479.0854,801.920.0385,wpowell448@q.com,Wpowell448,Myapplepw@29,0
+27dc5716-08-04,1,4/8/2016 13:18,4/8/2016 13:18,Earl ,Ferguson,NULL,404 Belfast Ct,NULL,guyton,31312,Earl Ferguson,NULL,NULL,Po Box 774,NULL,ellabell,31308,205-999-3068,205-999-3068,afvet17@earthlink.net,afvet17,F16c/dblock40,1
+ab9dfa16-08-04,1,4/8/2016 15:45,4/8/2016 15:45,Thomas,White,NULL,2959 Fairbanks Ave.,NULL,Simi Valley,93063,Thomas White,NULL,NULL,2959 Fairbanks Ave.,NULL,Simi Valley,93063,805 501-1876,same,thomgwhite@roadrunner.com,simithom2959,osu1958,0
+b05e5e16-11-04,1,4/11/2016 9:18,4/11/2016 9:25,Ricky,Emerson,NULL,11825 US Hwy 60 West,NULL,Kevil,42053,Ricky Emerson,NULL,NULL,11825 US Hwy 60 West,NULL,Kevil,42053,2705596409,NULL,bigfoot@brtc.net,bigfoot@brtc.net,6712896,1
+c74c0016-12-04,1,4/12/2016 12:58,4/12/2016 12:58,Hal,Smith,NULL,6290 W Tropical Pkwy,NULL,Las Vegas,89130-1304,Hal Smith,NULL,NULL,6290 W Tropical Pkwy,NULL,Las Vegas,89130-1304,7026451655,7026451655,smithhal@embarqmail.com,halsmith,a9zYfJatV6Bf,1
+53921216-12-04,1,4/12/2016 20:47,4/12/2016 20:47,Ryan Paul,Brulinski,NULL,1112 Colorado Street,NULL,Bellevue,68005,Ryan Paul Brulinski,NULL,NULL,1112 Colorado Street,NULL,Bellevue,68005,4024089369,NULL,elmo17302@gmail.com,rlbrulinski,50brownDR,0
+4ea18a16-13-04,1,4/13/2016 14:52,4/13/2016 14:52,David,Stewart,David Stewart,43 Clearview Court,NULL,Southington,6489,David Stewart,David Stewart,NULL,43 Clearview Court,NULL,Southington,6489,2033763912,2033763912,crowfeatherphoto@att.net,crowfeather,914357,0
+3aa1db16-14-04,1,4/14/2016 14:21,4/14/2016 14:21,Jesse,Riggs,NULL,729 N Wickshire Wa,NULL,Brentwood,37027,Daniel Jones,Nashville Scottish Rite,NULL,100 7th Avenue N.,NULL,Nashville,37203,615 331 2005,615 972 0942,jesseriggs@bellsouth.net,jesseriggs@bellsouth.net,4348067,1
+0dd38e16-15-04,1,4/15/2016 10:31,4/15/2016 10:31,Stephen,Colton,NULL,2152 Hoch Dr,NULL,Cuyahoga Falls,44221,Stephen Colton,NULL,NULL,2152 Hoch Dr,NULL,Cuyahoga Falls,44221,330-929-5227,NULL,scolton1@neo.rr.com,scolton44221,Star187cfo,0
+b0633016-15-04,1,4/15/2016 14:33,4/15/2016 14:33,Michael,Harrison,Michael Harrison & company,752 Leesville rd,NULL,Lynchburg,24502,Michael Harrison,Michael Harrison & company,NULL,752 Leesville rd,NULL,Lynchburg,24502,4342376828,4349423409,ea96mike@yahoo.com,ea96mike@yahoo.com,7294531,1
+23078d16-16-04,1,4/16/2016 12:18,4/16/2016 12:18,Roger,Rathburn,NULL,801 Gillaspie Dr. #164,NULL,Boulder,80305,Roger Rathburn,NULL,NULL,801 Gillaspie Dr. #164,NULL,Boulder,80305,303-817-1209,303-817-1209,buzrathburn@yahoo.com,buzrathburn@yahoo.com,8599380,1
+b3d46516-16-04,1,4/16/2016 14:25,4/16/2016 14:25,Ian,Berkowitz,NULL,PO Box 2157,NULL,Newburgh,12550,Ian Berkowitz,NULL,NULL,PO Box 2157,NULL,Newburgh,12550,8455620004,9147207908,vigilberk@aol.com,vigilberk,ny1956,0
+774a9a16-16-04,1,4/16/2016 17:55,4/16/2016 17:55,Jack,Mengel,NULL,3518 EASTBROOK DRIVE,NULL,ANN ARBOR,48105-9507,Jack Mengel,NULL,NULL,3518 EASTBROOK DR,NULL,ANN ARBOR,48105-9507,7347611127,7343472858,jhmengel@comcast.net,jhmengel@comcast.net,6068531,1
+969f7816-16-04,1,4/16/2016 20:51,4/16/2016 20:51,Darrel,Davis,NULL,40 Elgin Drive,NULL,Greensburg,15601,Darrel Davis,NULL,NULL,40 Elgin Drive,NULL,Greensburg,15601,724-836-0558,724-244-4273,y93z33@aol.com,y93z33@aol.com,12x211wMSA,0
+e985cb16-17-04,1,4/17/2016 0:58,4/17/2016 1:04,John,Corona,NULL,343 sims ave,NULL,San Antonio,78225,John Corona,NULL,NULL,343 sims ave,NULL,San Antonio,78225,2108004046,NULL,johnsters79@gmail.com,johnsters79@gmail.com,labtec,0
+8ae64216-17-04,1,4/17/2016 11:56,4/17/2016 11:56,Joseph,Wertz Jr,NULL,33 4th Street,NULL,Shoemakersville,19555,Joseph Wertz Jr,NULL,NULL,33 4th Street,NULL,Shoemakersville,19555,4845784420,NULL,joejr@wertzcs.com,joejr@wertzcs.com,1267337,1
+13b04516-17-04,1,4/17/2016 16:43,4/17/2016 16:43,Richard,Werpy,NULL,1903 Windermere Lane,NULL,Erie,80516,Richard Werpy,NULL,NULL,1903 Windermere Lane,NULL,Erie,80516,3035305154,7207716767,dickwerpy@msn.com,Haakon47,Timewarp,0
+75c6f716-18-04,1,4/18/2016 11:32,4/18/2016 11:32,Steven,Singleton,NULL,2545 Remington Trace,NULL,Clarksville,37043,Steven Singleton,NULL,NULL,2545 Remington Trace,NULL,Clarksville,37043,931-802-6598,405-612-1918,steve.singleton76@gmail.com,steve.singleton76@gmail.com,8360519,1
+c6ebc416-18-04,1,4/18/2016 14:37,4/18/2016 14:37,David,Duke,NULL,27682 Kingport,NULL,Splendora,77372,David Duke,NULL,NULL,27682 Kingport,NULL,Splendora,77372,2816895916,8322285936,dl.duke@att.net,dl.duke@att.net,9258104,1
+d2d24716-19-04,1,4/19/2016 11:11,4/19/2016 11:11,Jim,Sicinski,NULL,522 Alan Dr.,NULL,New Lenox,60451,Jim Sicinski,NULL,NULL,522 Alan Dr.,NULL,New Lenox,60451,8159312938,NULL,atlaspaintdec@gmail.com,atlaspaintdec@gmail.com,5092238,1
+87a15416-19-04,1,4/19/2016 19:17,4/19/2016 19:17,Richard,Hentz,NULL,31424 N. South Jackson Rd.,NULL,Elk,99009,Richard Hentz,NULL,NULL,31424 N. South Jackson Rd.,NULL,Elk,99009,509-999-1556,509-999-1556,goldenlodge@outlook.com,goldenlodge@outlook.com,3626809,1
+f9ba7216-19-04,1,4/19/2016 19:31,4/19/2016 19:31,Richard,Hentz,NULL,31424 N South Jackson Rd.,NULL,Elk,99009,Richard Hentz,NULL,NULL,31424 N South Jackson Rd.,NULL,Elk,99009,509-999-1556,NULL,GoldenDragon@outlook.com,GoldenDragon@outlook.com,9119869,1
+4ebf1116-21-04,1,4/21/2016 2:27,4/21/2016 2:27,Bobby,McKee,NULL,660 Willy Vester Rd,NULL,Van Alstyne,75495-2806,Bobby McKee,NULL,NULL,660 Willy Vester Rd,NULL,Van Alstyne,75495-2806,9034829333,2143924175,mckeetx@hotmail.com,mckeetx,S0ph!a213026944,0
+dbddff16-19-07,1,7/19/2016 16:45,7/19/2016 16:45,Tony,Lenard,NULL,560 Overhill Dr,NULL,Kerrville,78028,Tony Lenard,NULL,NULL,560 Overhill Dr,NULL,Kerrville,78028,830-370-9636,NULL,tonylenard@yahoo.com,tonylenard@yahoo.com,4714750,1
+83a29716-21-04,1,4/21/2016 11:44,4/21/2016 11:44,Russ,Charvonia,NULL,5536 N. Bryn Mawr St,NULL,Ventura,93003,Russ Charvonia,NULL,NULL,5536 N. Bryn Mawr St,NULL,Ventura,93003,8056507511,8052581037,rcharvonia@aol.com,rcharvonia@aol.com,4894945,1
+14d71816-22-04,1,4/22/2016 10:12,4/22/2016 10:12,Brandon,Hadley,NULL,1384 Harmony Dr,NULL,Wadsworth,44281,Brandon Hadley,NULL,NULL,1384 Harmony Dr,NULL,Wadsworth,44281,3306907037,3306907037,ksuflashes@yahoo.com,ksuflashes@yahoo.com,3362169,1
+224a3c16-22-04,1,4/22/2016 11:36,4/22/2016 11:36,Joseph,Fleming,Commonwealth Lodge 325,5599 Barbara Dr.,NULL,Fitchburg,53711,Joseph Fleming,Commonwealth Lodge 325,NULL,5599 Barbara Dr.,NULL,Fitchburg,53711,6082715574,NULL,lajfa@charter.net,lajfa@charter.net,4624491,1
+a5b30e16-22-04,1,4/22/2016 14:41,4/22/2016 14:43,Trent,Thiry,NULL,6697 WINDMILL LN,NULL,WEST BLOOMFIELD,48324,Trent Thiry,NULL,NULL,6697 WINDMILL LN,NULL,WEST BLOOMFIELD,48324,7343550693,7343550693,tthiry@gmail.com,tthiry@gmail.com,M4s0nry,1
+8e31af16-23-04,1,4/23/2016 16:08,4/23/2016 16:08,Edward,Choate,NULL,2118 E Charles ST,NULL,Republic,65738,Edward L Choate,NULL,NULL,2118 E Charles ST,NULL,Republic,65738,701-212-5089,701-212-5089,choateedwdl@gmail.com,choateed,ariadne1,0
+1164c316-23-04,1,4/23/2016 23:16,4/23/2016 23:16,Michael,Rodriguez,Midel Trkg. Co.,101 Harper Dr.,NULL,Anderson,64831,Michael Rodriguez,Midel Trkg. Co.,NULL,101 Harper Dr.,NULL,Anderson,64831,4178451575,NULL,miker495@msn.com,msamiker49,msA80Bett,0
+ccc26d16-24-04,1,4/24/2016 19:08,4/24/2016 19:08,James,Van Anda,NULL,5010 Cumberland Ct SE,NULL,Salem,97306,James Van Anda,NULL,NULL,5010 Cumberland Ct SE,NULL,Salem,97306,503-463-1614,NULL,jpvananda@gmail.com,marjimdt,dougtab1,0
+ec62bf16-25-04,1,4/25/2016 22:20,4/25/2016 22:20,joseph,roach,NULL,250 jacqueline rd,NULL,piedmont,29673,joseph roach,jospeh roach,NULL,250 jacqueline rd.,NULL,piedmont,29673,8645258376,NULL,fordfan006@yahoo.com,fordfan006@yahoo.com,3885107,1
+26782e16-26-04,1,4/26/2016 13:21,4/26/2016 13:21,Monica,Bradley,Washington Masonic Charities,4970 Bridgeport Way W.,NULL,University Place,98467,Monica Bradley,Washington Masonic Charities,NULL,4970 Bridgeport Way W.,NULL,University Place,98467,2534422505,2534422505,monica@wa-masoniccharities.org,monica@wa-masoniccharities.org,1844003,1
+89b56a16-26-04,1,4/26/2016 13:23,4/26/2016 13:23,Monica,Bradley,Washington Masonic Charities,4970 Bridgeport Way W.,NULL,University Place,98467,Monica Bradley,Washington Masonic Charities,NULL,4970 Bridgeport Way W.,NULL,University Place,98467,2534422505,2534422505,monica@wa-masoniccharities.org,monica@wa-masoniccharities.org,7773702,1
+d59eaf16-26-04,1,4/26/2016 21:49,4/26/2016 21:49,Robert,Ierien,NULL,134 Post Oak Road,NULL,La Vernia,78121,Robert Ierien,NULL,NULL,134 Post Oak Road,NULL,La Vernia,78121,830-779-5617,NULL,gcandpp@gmai.com,gcandpp@gmai.com,9050568,1
+1a851016-27-04,1,4/27/2016 13:06,4/27/2016 13:06,Rickey,Montey,Arlington Masonic Lodge 438,1415 W. Abram,NULL,Arlington,76013,Rickey Montey,Arlington Masonic Lodge 438,NULL,1415 W. Abram,NULL,Arlington,76013,817-274-7591,817-988-7021,arl438@sbcglobal.net,arl438@sbcglobal.net,8250527,1
+8c940916-27-04,1,4/27/2016 13:10,4/27/2016 13:10,Rickey,Montey,Arlngton Masonic Lodge #438,PO Box 23,NULL,Arlington,76004,Rick Montey,Arlington Masonic Lodge #438,NULL,1415 W. Abram St.,NULL,Arlington,76013,817-274-7591,817-988-7021,arl438@sbcglobal.net,arl438,adoniram,1
+fcd3a416-29-04,1,4/29/2016 13:14,4/29/2016 13:14,Carl,Strievski,NULL,14 Carrington Drive,NULL,East Northport,11731,Carl Strievski,NULL,NULL,14 Carrington Drive,NULL,East Northport,11731,5162054668,NULL,mrcms731@aol.com,mrcms731,summer,0
+da838116-29-04,1,4/29/2016 13:54,4/29/2016 13:54,Bob,Worthington,Sacramento Lodge 735,P.O. Box 365,NULL,Sacramento,42372,Bob Worthington,Sacramento Lodge 735,NULL,P.O. Box 365,NULL,Sacramento,42372,270-736-2784,NULL,bobworth945@bellsouth.net,bobworth945,3Xrt$yh9,0
+9bc09616-30-04,1,4/30/2016 9:13,4/30/2016 9:13,Kraig,Krueger,NULL,N2417 County Road CC,NULL,Maiden Rock,54750,Kraig Krueger,NULL,NULL,N2417 County Road CC,NULL,Maiden Rock,54750,6515032202,6515032202,kraigandangie@live.com,kkrueger,kkturkey,0
+8b722d16-30-04,1,4/30/2016 14:20,4/30/2016 14:20,Smith,Boyd,Smith Boyd,PO Box 1057,NULL,Livingston,35470,Smith Boyd,NULL,NULL,4820A Poplar Springs Drive,NULL,Meridian,39305,205-652-2127,205-609-0327,sumter_theatre@yahoo.com,sumter_theatre@yahoo.com,6260313,1
+1da47e16-30-04,1,4/30/2016 16:48,4/30/2016 16:48,Roy,Simpadian,NULL,38 East Ridgewood Avneue #179,NULL,Ridgewood,7450,Roy Simpadian,NULL,NULL,38 East Ridgewood Avneue #179,NULL,Ridgewood,7450,2019957138,NULL,simpadian@gmail.com,simpadian@gmail.com,1760693,1
+ccc86e16-30-04,1,4/30/2016 17:16,4/30/2016 17:16,Roy,Simpadian,NULL,38 E Ridgeowod Ave #179,NULL,Ridgewood,7450,Roy Simpadian,NULL,NULL,38 E Ridgeowod Ave #179,NULL,Ridgewood,7450,2019957138,NULL,simpadian@gmail.com,simpadian@gmail.com,5883978,1
+2b7a1316-01-05,1,5/1/2016 12:20,5/1/2016 12:20,David,Hanson,Plymouth Lodge #160,5707 W Broadway Ave Ste 1,NULL,Crystal,55428,David Hanson,Plymouth Lodge #160,NULL,5707 W Broadway Ave Ste 1,NULL,Crystal,55428,7638079763,7638079763,dvdzzhnsn@gmail.com,PlymouthLodge,#160af&am,1
+a04f6316-02-05,1,5/2/2016 16:02,5/2/2016 16:02,Melvin,Ash,Melvin Ash,2630 Delaware Dr.,NULL,Florissant,63033,Warren Dixon,NULL,NULL,3421 Five Oaks Ct.,NULL,Arnold,63010,314 809 9822,NULL,melash_1@yahoo.com,melash_1,troubles28,0
+b5f45316-02-05,1,5/2/2016 16:11,5/2/2016 16:11,Dennis,Montey,NULL,939 Marquette Street,NULL,Racine,53404-3111,Dennis Montey,NULL,NULL,939 Marquette Street,NULL,Racine,53404-3111,2626372500,2626372500,dennismontey55@gmail.com,dennismontey55@gmail.com,9997588,1
+f0b5de16-02-05,1,5/2/2016 17:51,5/2/2016 17:51,james,izzell,NULL,310 Tiffany Cir,NULL,Garner,27529,james izzell,NULL,NULL,310 Tiffany Cir,NULL,Garner,27529,9197790017,NULL,ncgeology@yahoo.com,ncgeology,schenk53,0
+8582e316-02-05,1,5/2/2016 18:15,5/2/2016 18:15,Thomas,Collins,Thomas A Collins,429 West Plum Ln,NULL,Reno,89509,Thomas Collins,Thomas A Collins,NULL,429 West Plum Ln,NULL,Reno,89509,7753226648,NULL,esates.reno9@gmail.com,Rhyolite,Belmont,0
+a8ee7816-02-05,1,5/2/2016 22:36,5/2/2016 22:36,Ernest,Cavin,-,2785 Ashton Dr,-,Lebanon,45036,Ernest Cavin,-,NULL,2785 Ashton Dr,-,Lebanon,45036,5136807801,5136807801,ecavin@haag-streit-usa.com,ecavin@haag-streit-usa.com,5141164,1
+539bd216-03-05,1,5/3/2016 0:22,5/3/2016 0:22,Gregory,Bodine,NULL,1100 Clint Dr SE,NULL,Hartselle,35640,Gregory Bodine,NULL,NULL,1100 Clint Dr SE,NULL,Hartselle,35640,2564796116,2564796116,gbodine@gmail.com,gbodine@gmail.com,2281169,1
+9b9bbf16-03-05,1,5/3/2016 9:52,5/3/2016 9:52,Daniel ,Berger ,NULL,50 Ivy Meadow Spur,NULL,Blairsville,30512,Daniel K. Berger,NULL,NULL,50 Ivy Meadow Spur,NULL,Blairsville,30512,7064000295,7064000295,berger88@bellsouth.net,berger88@bellsouth.net,3112810,1
+8476ea16-03-05,1,5/3/2016 9:56,5/3/2016 9:56,ROSS,BLACK,NULL,603 BEAVERBROOK DRIVE,NULL,AKRON,44333-2819,ROSS BLACK,NULL,NULL,603 BEAVERBROOK DRIVE,NULL,AKRON,44333-2819,3308643423,3302565523,ROSSRBLACK@GMAIL.COM,ROSSRBLACK@GMAIL.COM,3576483,1
+813e9d16-03-05,1,5/3/2016 12:47,5/3/2016 12:47,Ronald,Beem,Byron Lodge #274,9857 N Woodgate Ln,NULL,Byron,61010,Ronald Beem,Byron Lodge #274,NULL,9857 N Woodgate Ln,NULL,Byron,61010,8152342588,NULL,cliodoc@hotmail.com,cliodoc,brillig,0
+a3580a16-04-05,1,5/4/2016 14:19,5/4/2016 14:19,Jason,Lang,NULL,2458 59th street NE,NULL,Buffalo,55313,Jason Lang,NULL,NULL,2458 59th street NE,NULL,Buffalo,55313,7634583399,7634583399,jllang320@gmail.com,jllang320,@lspsHkgQZuH855E,0
+5a8a2816-04-05,1,5/4/2016 15:32,5/4/2016 15:32,Dean,Clatterbuck,Dean Clatterbuck,P.O. Box 149,NULL,New Market,22844,Dean Clatterbuck,Dean Clatterbuck,NULL,P.O. Box 149,NULL,New Market,22844,5407409287,3019222478,dclat@shentel.net,dclat@shentel.net,3771660,1
+83ac0416-04-05,1,5/4/2016 16:50,5/4/2016 16:50,Michael,Peeler,NULL,6 Lorraine Dr,NULL,Travelers Rest,29690,Michael Peeler,NULL,NULL,6 Lorraine Dr,NULL,Travelers Rest,29690,8643462435,8643462435,michaeldavidpeeler@gmail.com,cooper282,cooper282,0
+5354eb16-05-05,1,5/5/2016 18:10,5/5/2016 18:10,Pamela,Christensen,NULL,2517 Providence Road,NULL,Duluth,55811,Pamela Christensen,NULL,NULL,2517 Providence Road,NULL,Duluth,55811,218-722-4358,218-722-4358,christensen.pamela.j@gmail.com,pchriste,marisa1121,0
+f31c0a16-05-05,1,5/5/2016 19:16,5/5/2016 19:16,Charles,Bremner,NULL,892 S. Hillside Ave,NULL,Elmhurst,60126,Charles Bremner,NULL,NULL,892 S. Hillside Ave,NULL,Elmhurst,60126,2245789036,2245789036,Charlesstuartbremner@gmail.com,Charlesstuartbremner@gmail.com,4147929,1
+fdcc6c16-08-05,1,5/8/2016 7:59,5/8/2016 7:59,Richard,Hoover,Richard Hoover,334 59th Ln S,NULL,SAINT PETERSBURG,33707,Richard Hoover,Richard Hoover,NULL,334 59th Ln S,NULL,SAINT PETERSBURG,33707,727-409-6665,727-409-6665,rhoover3@tampabay.rr.com,gmglf2017,glf2017gm,0
+406f3d16-08-05,1,5/8/2016 14:57,5/8/2016 14:57,Corry,Lindsey,NULL,1421 McAlpin Road,NULL,Midlothian,76065,Corry Lindsey,NULL,NULL,1421 McAlpin Road,NULL,Midlothian,76065,972-775-3569,NULL,lindseyce@aol.com,lindseyce@aol.com,6416666,1
+800a6516-08-05,1,5/8/2016 18:28,5/8/2016 18:28,Mike,Hamrick,Phalanx Lodge #31,P.O. Box 472746,NULL,Charlotte,28247,Mike Hamrick,Phalanx Lodge #31,NULL,P.O. Box 472746,NULL,Charlotte,28247,704-724-8454,704-724-8454,secretary@phalanx31.org,mshamrick,Bubbabob1,0
+186bc116-09-05,1,5/9/2016 10:51,5/9/2016 10:51,Leonard,James,Leonard James,po box 327,NULL,Alburgh,5440,Leonard James,Leonard James,NULL,po box 327,NULL,Alburgh,5440,8027964410,NULL,lasj@fairpoint.net,lenbon2,bumpa1939,1
+48af4d16-10-05,1,5/10/2016 15:39,5/10/2016 15:39,Steven,Aberblatt,NULL,6820 Horrocks Street,NULL,Philadelphia,19149,Steven Aberblatt,NULL,NULL,6820 Horrocks Street,NULL,Philadelphia,19149,215-725-5448,NULL,steveab@comcast.net,SteveAb,3J$3y&h3MNB#,0
+fd8b3b16-10-05,1,5/10/2016 15:59,5/10/2016 15:59,Levy,Dean,NULL,57 Buckhorn Road,NULL,Baxley,31513,Levy Dean,NULL,NULL,57 Buckhorn Road,NULL,Baxley,31513,912-367-7104,912-213-4041,deanp@appling-hospital.org,deanp@appling-hospital.org,3057601,1
+707ad916-11-05,1,5/11/2016 8:11,5/11/2016 8:11,David ,Carter,Grand Lodge of Kentucky,300 Masonic Home Drive,NULL,Masonic Home,40041,David Carter,Grand Lodge of Kentucky,NULL,300 Masonic Home Drive,NULL,Masonic Home,40041,502-584-6185,502-594-9120,davidcarterpgm04@gmail.com,davidcarterpgm04@gmail.com,2959777,1
+9d3db116-12-05,1,5/12/2016 18:20,5/12/2016 18:20,Brandon ,Weaver,Brandon Weaver,311 woodvine dr,NULL,Lawrenceville,30044,Brandon Weaver,NULL,NULL,311 Woodvine dr,NULL,Lawrenceville,30044,7705008067,7705008067,bweaver458@gmail.com,bweaver458@gmail.com,8037555,1
+4b9a9516-13-05,1,5/13/2016 8:53,5/13/2016 8:53,Michael,Watson,Grand Lodge of Ohio,1 Masonic Drive,NULL,Springfield,45504,Michael Watson,Grand Lodge of Ohio,NULL,1 Masonic Drive,NULL,Springfield,45504,6148855318,9372714858,mwatson@freemason.com,mwatson@freemason.com,1685487,1
+78201216-13-05,1,5/13/2016 10:49,5/13/2016 10:49,Paul,Pilcher,Fort Valley Lodge #110,120 Southwind Dr,NULL,Kathleen,31047,Paul Pilcher,Fort Valley Lodge #110,NULL,120 Southwind Dr,NULL,Kathleen,31047,4782939839,4782939839,fortvalley110@gmail.com,FortValley110,2be1ask1,0
+3480e816-13-05,1,5/13/2016 11:59,5/13/2016 11:59,Kenneth,Blood,NULL,2417 E. Cumberland St.,NULL,Philadelphia,19125,Kenneth Blood,NULL,NULL,2417 E. Cumberland St.,NULL,Philadelphia,19125,215-634-8124,NULL,kcblood@averiaon.net,kcblood@verizon.net,kkc54gen,0
+cb7fd516-13-05,1,5/13/2016 12:56,5/13/2016 12:56,Keith,Morgan,NULL,2601 Tanglewood Drive,NULL,Durham,27705,Keith Morgan,NULL,NULL,2601 Tanglewood Drive,NULL,Durham,27705,9194892203,9195992180,j.keith.morgan@gmail.com,j.keith.morgan@gmail.com,1225909,1
+a3146316-13-05,1,5/13/2016 14:04,5/13/2016 14:04,Blake,Edwards,NULL,2115 McFarlin Lane ,NULL,Milton,30004,Blake Edwards,NULL,NULL,2115 McFarlin Lane ,NULL,Milton,30004,770-656-7328,770-656-7328,r.blake.edwards@gmail.com,r.blake.edwards@gmail.com,8697346,1
+455a5c16-14-05,1,5/14/2016 17:56,5/14/2016 17:56,Wayne,Grindle,Wayne Grindle,4216 High Ridge Road,NULL,Haymarket,20169,Wayne Grindle,Wayne Grindle,NULL,4216 High Ridge Road,NULL,Haymarket,20169,703-754-7651,703-407-5583,wwgrindle@comcast.net,Wayne Grindle,2gloway2,0
+91814516-15-05,1,5/15/2016 23:13,5/15/2016 23:13,James ,Young ,Kelly ,857 Lyles RD,NULL,Senatobia ,38668,James Young ,Kelly ,NULL,857 Lyles RD,NULL,Senatobia ,38668,6622883165,6622883165,Youngjames922@gmail.com,Youngj2812,josephine1234,0
+17d94016-16-05,1,5/16/2016 13:21,5/24/2016 4:09,Donald,Reasonover,Donald E Reasonover,1932 West Kirby Ave,NULL,Orange,77632,Donald Reasonover,Donald E Reasonover,NULL,1932 West Kirby Ave,NULL,Orange,77632,409-883-6260,NULL,d_reasonover@sbcglobal.net,TexasDutchman,M1A2D6ISON,0
+c98fb816-16-05,1,5/16/2016 16:01,5/16/2016 16:01,myles,mcmillan,NULL,6143 Shaw Hwy Se,NULL,Aumsville,97325,myles mcmillan,NULL,NULL,6143 Shaw Hwy Se,NULL,Aumsville,97325,5035106155,5035106155,acemyles@wvi.com,acemyles@wvi.com,8921556,1
+aa2ea616-17-05,1,5/17/2016 0:48,5/17/2016 0:48,Charles,Dukehart,1948,6905 Ridge Rd.,NULL,Marriottsville,21104,Charles Dukehart,1948,NULL,6905 Ridge Rd.,NULL,Marriottsville,21104,4105965075,4105965075,cjdukehart@verizon.net,cjdukehart@verizon.net,2301824,1
+64db0b16-17-05,1,5/17/2016 16:56,5/20/2016 11:39,William,Hussell,William Hujssell,PO Box 588,57 Riverside st,Clifton,25260,William Hussell,William Hujssell,NULL,PO Box 588,57 Riverside st,Clifton,25260,304 773-9108,304 675-0158,williamhussell@yahoo.com,wrhussell,clifton23,0
+33995816-17-05,1,5/17/2016 17:39,5/17/2016 17:39,John,Zabel,NULL,371 Lyndon Rd,NULL,Fairport,14450-9703,John Zabel,NULL,NULL,371 Lyndon Rd,NULL,Fairport,14450-9703,585-223-3228,585-576-4868,zabelj@mindspring.com,zabelj@mindspring.com,8248091,1
+388b2e16-17-05,1,5/17/2016 17:39,5/17/2016 17:39,John,Zabel,NULL,371 Lyndon Rd,NULL,Fairport,14450-9703,John Zabel,NULL,NULL,371 Lyndon Rd,NULL,Fairport,14450-9703,585-223-3228,585-576-4868,zabelj@mindspring.com,zabelj@mindspring.com,6351878,1
+eb6d8316-17-05,1,5/17/2016 19:46,5/17/2016 19:46,Jacob,Dermott,NULL,1 Arbor Ct,NULL,Nappanee,46550,Jacob Dermott,NULL,NULL,1 Arbor Ct,NULL,Nappanee,46550,574-773-4887,NULL,jdermott@embarqmail.com,jdermott@embarqmail.com,8946261,1
+4a567c16-18-05,1,5/18/2016 13:17,5/18/2016 13:17,Robert W.,Comeau,Robert W. Comeau,6 Kendall,NULL,Boylston,1505,Robert W. Comeau,Robert W. Comeau,NULL,6 Kendall,NULL,Boylston,1505,508 869-2039,NULL,oilslick@mcgr.net,oilslick@mcgr.net,3678818,1
+6bd65316-18-05,1,5/18/2016 23:04,5/18/2016 23:04,Gerald,Myers,NULL,1326 SW Looking Glass Loop,NULL,Oak Harbor,98277-4564,Gerald Myers,NULL,NULL,1326 SW Looking Glass Loop,NULL,Oak Harbor,98277-4564,360 679-5184,NULL,glacmyer@frontier.com,glacmyer@frontier.com,5791764,1
+b8b25616-19-05,1,5/19/2016 15:39,5/19/2016 15:39,Stephen,Nichols,Stephen Nichols,409 Hudson Ct,NULL,Cary,27511-3513,Stephen Nichols,Stephen Nichols,NULL,409 Hudson Ct,NULL,Cary,27511-3513,9193772295,9193772295,s.e.nichols@att.net,s.e.nichols@att.net,Phoebe16,0
+63ffa116-19-05,1,5/19/2016 20:06,5/19/2016 20:06,Robyn,Ryan,NULL,411 East Street N Lot 233,NULL,Claremont,55924,Robyn Ryan,NULL,NULL,411 East Street N Lot 233,NULL,Claremont,55924,6512467286,6512467286,robynryanradio@yahoo.com,robynryanradio@yahoo.com,2896357,1
+d43dd416-19-05,1,5/19/2016 20:44,5/19/2016 20:44,Richard,Friedman,NULL,38 Pioneer Drive,NULL,Fairport,14450,Richard Friedman,NULL,NULL,38 Pioneer Drive,NULL,Fairport,14450,5857396980,5857396980,richddgm1@gmail.com,richddgm1@gmail.com,8857395,1
+34f6b516-19-05,1,5/19/2016 22:15,5/19/2016 22:15,Charles,McDonald,NULL,702 Jay St,NULL,Rochester,14611,Charles McDonald,NULL,NULL,702 Jay St,NULL,Rochester,14611,585-509-1315,585-509-1315,alpha925@aol.com,alpha925@aol.com,2105840,1
+29aa0116-20-05,1,5/20/2016 8:44,5/20/2016 8:44,Chester,King,NULL,12024 Talitha Lane,NULL,Orlando,32827-7254,Chester King,NULL,NULL,12024 Talitha Lane,NULL,Orlando,32827-7254,407-405-3268,NULL,kingca1@excite.com,kingca1@excite.com,2785704,1
+f448bd16-20-05,1,5/20/2016 9:21,5/20/2016 9:21,Thomas,Price,NULL,402 E. Dixon St.,NULL,Forest,45843,Thomas Price,NULL,NULL,402 E. Dixon St.,NULL,Forest,45843,4192732882,4199576026,t.price36@yahoo.com,t.price36@yahoo.com,3292623,1
+f5701616-20-05,1,5/20/2016 9:41,5/20/2016 9:41,Ryan,Ramplin,NULL,181 Mt Vernon Ave,NULL,Rochester,14620,Ryan Ramplin,"BlackBox Biometrics, Inc.",NULL,125 Tech Park Drive,NULL,Rochester,14623,6107247336,6107247336,ryan.ramplin@gmail.com,ryan.ramplin@gmail.com,RyanRamplin,1
+66373d16-20-05,1,5/20/2016 11:24,5/20/2016 11:24,Arthur ,Sterling,Acme Lodge # 554 F. &A.M. of Ohio,46 N 4th Street,NULL,Newark,43055,Arthur Sterling,Acme Lodge # 554 F. &A.M. of Ohio,NULL,46 N 4th Street,NULL,Newark,43055,7403448184,7408779285,sterl-ing@juno.com,sterl-ing@juno.com,1732759,1
+31086c16-20-05,1,5/20/2016 17:53,5/20/2016 17:53,Douglas,Adams,NULL,30 Woodland Dr.,NULL,Carmel,10512,Douglas Adams,NULL,NULL,30 Woodland Dr.,NULL,Carmel,10512,8452229434,NULL,dda21@verizon.net,dda21@verizon.net,6674178,1
+38a08916-21-05,1,5/21/2016 10:42,5/21/2016 10:45,M.,Burton,burtprint,2061 Fallon,NULL,Lexington,40504,M. Burton,burtprint,NULL,2061 Fallon Rd,NULL,Lexington,40504,859-278-3626,859-475-3626,burtprint@aol.com.com,burtprint,Apr-63,0
+176ed316-21-05,1,5/21/2016 23:11,5/21/2016 23:11,Donald,Puder,NULL,128 Myrtle Street,NULL,Jamestown,14701,Donald Puder,NULL,NULL,128 Myrtle Street,NULL,Jamestown,14701,7164889828,NULL,dpuder@stny.rr.com,dpuder@stny.rr.com,1096849,1
+daa93b16-22-05,1,5/22/2016 11:24,6/3/2016 21:46,John,Gramse,John M Gramse,P.O. Box 505,NULL,Malvern,44644,John Gramse,NULL,NULL,61 Oneida Trail,NULL,Malvern,44644,3302058895,3302058895,jgramse@hotmail.com,Jgramse,Bluzie,0
+62d7c116-24-05,1,5/24/2016 1:18,5/24/2016 1:18,Mark,Robbins,NULL,467 Marvin Blvd.,NULL,North Mankato,56003-3317,Mark Robbins,NULL,NULL,467 Marvin Blvd.,NULL,North Mankato,56003-3317,507-345-8104,NULL,markrobbins@mankatomasons.org,markrobbins@mankatomasons.org,9720381,1
+f37c7716-24-05,1,5/24/2016 11:06,5/24/2016 11:06,Jerry ,Garris,Jerry A. Garris,2901 Lyndell Way,NULL,Lancaster,29720,Jerry Garris,Jerry A. Garris,NULL,2901 Lyndell Way,NULL,Lancaster,29720,803-286-0356,NULL,MGarris_43@yahoo.com,MGarris_43@yahoo.com,5664738,1
+d3857b16-24-05,1,5/24/2016 12:16,5/24/2016 12:16,Jerry,Hinman,Jerry Hinman,3069 HWY 93,NULL,Darby,59829-9706,Jerry Hinman,Jerry Hinman,NULL,3069 HWY 93,NULL,Darby,59829-9706,4068213702,4062407479,4jahinman@gmail.com,4jahinman@gmail.com,38nella19,0
+e43c0016-25-05,1,5/25/2016 9:42,5/25/2016 9:42,STEVEN,SETZER,NULL,319 TALL OAKS TRAIL,NULL,INMAN,29349,STEVEN SETZER,NULL,NULL,319 TALL OAKS TRAIL,NULL,INMAN,29349,8643279437,8645808551,STEVENSETZER51@GMAIL.COM,STEVENSETZER51@GMAIL.COM,4375659,1
+c72ec316-25-05,1,5/25/2016 13:31,5/25/2016 13:31,John,Boyer,Christine Boyer,1340 Maple Ave,NULL,Twin Falls,83301,John Boyer,NULL,NULL,1838 Addison Ave. East,NULL,Twin Falls,83301,208-733-4552,NULL,boyer01@mindspring.com,boyer01@mindspring.com,6826565,1
+34078416-26-05,1,5/26/2016 11:08,11/3/2016 12:53,William,Shelley,NULL,2926 94th Street,NULL,Sturtevant,53177,William Shelley,NULL,NULL,2926 94th Street,NULL,Sturtevant,53177,262-498-3059,NULL,wshelley@wi.rr.com,wshelley,unitylodge367,0
+54014116-27-05,1,5/27/2016 13:44,5/27/2016 13:44,Richard,Allen,Host Lodge No. 6,2 Ridge Rd.,NULL,High Bridge,8822,Richard Allen,Host Lodge No. 6,NULL,45 Decker Rd.,NULL,Flemington,8822,908.616.1322,908.616.1322,rjallen2011@gmail.com,rjallen2011@gmail.com,1057377,1
+f3300a16-27-05,1,5/27/2016 14:04,5/27/2016 14:04,Richard,Allen,Richard Allen,45 Decker Rd.,NULL,Flemington,8822,Richard Allen,Richard Allen,NULL,45 Decker Rd.,NULL,Flemington,8822,908.616.1322,908.616.1322,rjallen2011@gmail.com,rjallen2011@gmail.com,7207142,1
+a422e916-27-05,1,5/27/2016 17:53,5/27/2016 17:55,Dayton,Berg,NULL,53153 Rush Lake Trail,NULL,Rush City,55069-2670,Dayton Berg,NULL,NULL,53153 Rush Lake Trail,NULL,Rush City,55069-2670,320-358-3768,651-434-8031,bergdayton@gmail.com,mansonic,Minnesota1,0
+4cdcf716-28-05,1,5/28/2016 14:32,5/28/2016 14:32,Bobby,Taylor,NULL,11859 West Lake Dr.,NULL,MURCHISON,75778,Bobby Taylor,NULL,NULL,11859 West Lake Dr.,NULL,MURCHISON,75778,9038527452,9036817481,blt2537@earthlink.net,blt2537@earthlink.net,7244807,1
+ac2aad16-28-05,1,5/28/2016 15:06,5/28/2016 15:06,Robert,Hobday,NULL,"80 Sycamore Drive, APT 317",NULL,Elizabethtown,17022,Robert Hobday,NULL,NULL,"80 Sycamore Drive, APT 317",NULL,Elizabethtown,17022,7173613973,NULL,bobh31@comcast.net,bobh31@comcast.net,3726544,1
+dcc21d16-28-05,1,5/28/2016 17:43,5/28/2016 17:43,Joe,Dooly Jr,NULL,3975A E. Dripping Springs Rd,NULL,Winkelman,85192,Joe Dooly Jr,NULL,NULL,3975A E. Dripping Springs Rd,NULL,Winkelman,85192,480-828-2403,480-828-2403,joedoolyjr@gmail.com,JJYAHWEH44AHAVA,jd44252322,0
+44621016-31-05,1,5/31/2016 23:03,5/31/2016 23:03,Glenn E. ,Chandler,NULL,5360 Redrac Street,NULL,Jacksonville,32205-9603,Glenn E. Chandler,NULL,NULL,5360 Redrac Street,NULL,Jacksonville,32205-9603,9047817263,NULL,gechandlersnr@bellsouth.net,gechandlersnr@bellsouth.net,3678192,1
+0a159416-01-06,1,6/1/2016 10:13,6/1/2016 10:13,Ronert,Knowles,NULL,7315 Ashlar Vlg,NULL,Wallingford,6492,Ronert Knowles,NULL,NULL,7315 Ashlar Vlg,NULL,Wallingford,6492,000-000-0000,000-000-0000,robert.knowles@uconn.edu,robert.knowles@uconn.edu,8056166,1
+9ddc5116-01-06,1,6/1/2016 14:40,6/1/2016 14:40,Larry,Hall,NULL,9835 Buxhill Dr,NULL,Dallas,75238-4309,Larry Hall,NULL,NULL,9835 Buxhill Dr,NULL,Dallas,75238-4309,2143487594,2144581849,Lvanhall@sbcglobal.net,Lvanhall@sbcglobal.net,1162829,1
+7e49a116-01-06,1,6/1/2016 18:32,6/1/2016 18:32,William,Stewart,NULL,200 Sumwalt St.,NULL,Sandston,23150,William Stewart,NULL,NULL,200 Sumwalt St.,NULL,Sandston,23150,804-914-1589,804-914-1589,Sgtbillstewart@aol.com,Sgtbillstewart@aol.com,8389281,1
+10563e16-03-06,1,6/3/2016 12:48,6/3/2016 12:48,James,Higdon,NULL,10122 N. Manton Lane,NULL,San Antonio,78213-1948,James N. Higdon,NULL,NULL,12000 Huebner Road,Suite 200,San Antonio,78230-1210,210-349-9933,210-771-4309,jnhigdon@hhzlaw.com,jnhigdon@hhzlaw.com,6197420,1
+d9654316-05-06,1,6/5/2016 1:32,6/5/2016 1:32,Christopher,Tilley,NULL,809 Misty morning ct.,NULL,St. Paul,63366,Christopher Tilley,NULL,NULL,809 Misty morning ct.,NULL,St. Paul,63366,636-299-3133,NULL,Ctilley52@yahoo.com,Lodge46,Lodge46,0
+6536a516-06-06,1,6/6/2016 10:42,6/6/2016 10:42,James,Rogers,NULL,146 Hendricks Circle,NULL,Madison,47250,James Rogers,NULL,NULL,146 Hendricks Circle,NULL,Madison,47250,8122733236,8122733236,jlrogers@seidata.com,jlrogers@seidata.com,3610547,1
+8505fd16-06-06,1,6/6/2016 10:58,6/6/2016 10:58,James,Rogers,James Rogers,146 Hendricks Circle,NULL,Madison,47250,James Rogers,James Rogers,NULL,146 Hendricks Circle,NULL,Madison,47250,8122733236,8122733236,jlrogers@seidata.com,jlrogers@seidata.com,treeman,1
+97dbce16-06-06,1,6/6/2016 20:17,6/6/2016 20:17,Jace,McFerran,NULL,6429 Northanna Dr,NULL,Springfield,22150,Jace McFerran,NULL,NULL,6429 Northanna Dr,NULL,Springfield,22150,5409075833,5409075833,Jokerd119@hotmail.com,Jokerd119@hotmail.com,1886914,1
+d924df16-07-06,1,6/7/2016 6:45,6/7/2016 6:45,Jace,McFerran,NULL,6429 Northanna Dr,NULL,Springfield,22150,Jace McFerran,NULL,NULL,6429 Northanna Dr,NULL,Springfield,22150,5409075833,5409075833,jokerd119@hotmail.com,jokerd119@hotmail.com,4240634,1
+ab414816-07-06,1,6/7/2016 9:04,6/7/2016 9:04,Robert,Holland,NULL,4405 Green Acres Pkwy,NULL,Portsmouth,23703,Robert Holland,NULL,NULL,4405 Green Acres Pkwy,NULL,Portsmouth ,23703,757-484-5311,NULL,Rcholland3@gmail.com,Rcholland3,Cam48$peed,0
+24c61c16-07-06,1,6/7/2016 9:58,6/7/2016 9:58,Paul,Maglinger,NULL,901 Dover Ct.,NULL,Evansville,47710,Paul Maglinger,NULL,NULL,901 Dover Ct.,NULL,Evansville,47710,8124642523,8122045015,316pm2011@gmail.com,316pm2011@gmail.com,8920037,1
+188f1a16-07-06,1,6/7/2016 14:21,6/7/2016 14:21,Mark ,Arend,NULL,210 Church Ave,NULL,Oshkosh,54901,Mark Arend,NULL,NULL,210 Church Ave,NULL,Oshkosh,54901,920-210-6280,920-210-6280,mwarend@new.rr.com,mwarend@new.rr.com,5707799,1
+c50bd116-08-06,1,6/8/2016 9:42,6/8/2016 9:42,W. Richard ,Dillon,W. Richard Dillon,943 Farmington Ave.,NULL,Pottstown,19464,W. Richard Dillon,None,NULL,943 Farmington Ae.,NULL,Pottstown,19464,None,None,boyertown741@verizon.net,boyertown741,#wrd588*,1
+c2f06516-08-06,1,6/8/2016 10:44,10/17/2016 13:34,Fred,Shoemaker,NULL,117 E. North St.,NULL,Waverly,45690,Fred Shoemaker,NULL,NULL,117 E. North St.,NULL,Waverly,45690,7409472927,7407082927,fgsll@aol.com,FredOrient,357light,0
+40b28d16-09-06,1,6/9/2016 11:49,6/9/2016 11:49,D.Frank,"Buchanan,Jr.",NULL,302 Millbrook Ave.,NULL,Randolph,7869,"D.Frank Buchanan,Jr.",NULL,NULL,302 Millbrook Ave.,NULL,Randolph,7869,9733663871,NULL,frabar1@verizon.net,frabar1,missy123,0
+737f3816-09-06,1,6/9/2016 14:23,6/9/2016 14:23,David,Collignon,Sparta Lodge No. 296,1600 E. Windridge,NULL,Ozark,65721-7332,David Collignon,Sparta Lodge No. 296,NULL,1600 E. Windridge,NULL,Ozark,65721-7332,(417)581-4651,(417) 496-5908,dvcollig@msn.com,dcollignon,D21v93C47,0
+907ae316-09-06,1,6/9/2016 14:51,10/17/2016 10:14,W. Richard,Dillon,W. Richard Dillon,043 Farmington Ave.,NULL,Pottstown,19464,W. Richard Dillon,NULL,NULL,943 Farmington Ave.,NULL,Pottstown,19464,None,None,wrd.943@verizon.net,wrd.943,#wrd588*,0
+7e641716-10-06,1,6/10/2016 14:13,6/10/2016 14:13,Robert,Baker,NULL,46 Burnham St.,NULL,Silver City,88022,Robert Baker,NULL,NULL,46 Burnham St.,NULL,Silver City,88022,5755388561,NULL,mnat@q.com,mnat@q.com,7125555,1
+20c2f116-10-06,1,6/10/2016 15:59,6/10/2016 15:59,J N R,Riggs,NULL,729 N Wickshire Way,NULL,Brentwood,37027-8275,J N R Riggs,NULL,NULL,729 N Wickshire Way,NULL,Brentwood,37027-8275,6159720942,NULL,mhriggs@bellsouth.net,maur4054een,JNR6914mr,0
+ed05a916-11-06,1,6/11/2016 12:09,6/11/2016 12:12,tom,phipps,NULL,810 elm st.,NULL,adrian,49221,tom phipps,NULL,NULL,810 elm st.,NULL,adrian,49221,5716120323,5176120323,tphipps2@comcast.net,TomPhipps2,Mollis1948,0
+214cdc16-11-06,1,6/11/2016 16:28,6/11/2016 16:28,RICK,SANTELLA,NULL,56 MAYFLOWER DRIVE,NULL,SICKLERVILLE,8081,RICK SANTELLA,NULL,NULL,56 MAYFLOWER DRIVE,NULL,SICKLERVILLE,8081,8567400623,2672498152,FUBS1@AOL.COM,FUBS1@AOL.COM,5749109,1
+1373f916-11-06,1,6/11/2016 17:37,6/11/2016 17:37,Victor,Stone,NULL,24 Alpine Dr.,NULL,Jericho,5465,Victor Stone,NULL,NULL,24 Alpine Dr.,NULL,Jericho,5465,802-899-2849,NULL,victor.stone2@myfairpoint.net,victor.stone2@myfairpoint.net,1743212,1
+51991d16-11-06,1,6/11/2016 18:24,6/11/2016 18:24,Jerry,Wardrip,NULL,408 Adams Circle,NULL,Sterling,80751,Jerry Wardrip,NULL,NULL,408 Adams Circle,NULL,Sterling,80751,9705220244,NULL,jryward1@q.com,jrywardPM,my16search,0
+9c24a616-12-06,1,6/12/2016 14:44,6/12/2016 14:44,Joseph,Marvian,NULL,2316 Jamaica Drive,NULL,Wilmington,DE,Joseph Marvian,NULL,NULL,2316 Jamaica Drive,NULL,Wilmington,DE,302-439-4569,302-593-0506,itsdink@comcast.net,jmarvian,lizcat,0
+1841a116-12-06,1,6/12/2016 18:09,6/12/2016 18:09,Jason,Crowder,NULL,10606 Ne Skidmore,NULL,Portland,97220,Jason Crowder,NULL,NULL,10606 Ne Skidmore,NULL,Portland,97220,5038666743,5038666743,losthermit@gmail.com,losthermit@gmail.com,4401038,1
+e4c9f816-14-06,1,6/14/2016 14:32,6/14/2016 14:32,Bruce,Mann,NULL,1607 Pineland Dr,NULL,Bainbridge,39819,Bruce D Mann,NULL,NULL,P O Box 1921,NULL,Bainbridge,39818,2292463046,2294166024,bmanncpa@yahoo.com,bmanncpa@yahoo.com,8352635,1
+2e4ac216-14-06,1,6/14/2016 17:33,6/14/2016 17:33,Michael,Smith,Anaba Publishing LLC,1690 Royalsborough Rd.,NULL,Durham,4222,Michael Smith,Anaba Publishing LLC,NULL,1690 Royalsborough Rd.,NULL,Durham,4222,207 446 2529,NULL,Smith_michael_a@hotmail.com,Smith_michael_a@hotmail.com,2283919,1
+1d97a716-16-06,1,6/16/2016 1:58,6/16/2016 1:58,Robert,Conrad,NULL,5002 E 17th Street,NULL,Tucson,85711-4357,Robert Conrad,NULL,NULL,5002 E 17th Street,NULL,Tucson,85711-4357,520-748-8627,NULL,bjcon1@juno.com,bjcon1@juno.com,4018508,1
+a736f216-16-06,1,6/16/2016 22:04,6/16/2016 22:04,Pasquale,Imbimbo,NULL,142 Beecher Road,NULL,Granville,12832,Pasquale Imbimbo,NULL,NULL,142 Beecher Road,NULL,Granville,12832,347-219-0373,347-219-0373,metrosspat@aol.com,metrosspat@aol.com,9139267,1
+42549a16-18-06,1,6/18/2016 12:25,6/18/2016 12:25,Thomas,Elkins,NULL,20557 Eastwood Ave,NULL,Torrance,90503,Thomas Elkins,NULL,NULL,20557 Eastwood Ave,NULL,Torrance,90503,3105428244,none,tom_elkins@yahoo.com,tom_elkins@yahoo.com,8442789,1
+25a36f16-18-06,1,6/18/2016 12:33,6/18/2016 12:33,Vance,Pascal,n/a,n/a,NULL,n/a,n/a,Vance A. Pascal,NULL,NULL,227 Montpelier Drive,NULL,Winston-Salem,27103,3367653331,NULL,vpascal227@aol.com,vpascal227@aol.com,2229077,1
+81c32416-20-06,1,6/20/2016 11:54,6/20/2016 11:54,Joseph ,Helminiak,NULL,1229 Pecan Station,NULL,San Antonio,78258-7843,Joseph Helminiak,NULL,NULL,1229 Pecan Station,NULL,San Antonio,78258-7843,210-843-5271,210-843-5271,josephh49@yahoo.com,josephh49,karate,0
+7b64f516-21-06,1,6/21/2016 14:36,6/21/2016 14:36,John,Zabel,NULL,371 Lyndon Rd,NULL,Fairport,14450-9703,John Zabel,NULL,NULL,371 Lyndon Rd,NULL,Fairport,14450-9703,585-223-3228,585-576-4868,zabelj@mindspring.com,zabelj@mindspring.com,2210549,1
+50bcfe16-21-06,1,6/21/2016 16:13,6/21/2016 16:13,Edward A,Magilton,NULL,5088 State Route 97,NULL,Narrowsburg,12764,Edward A Magilton,NULL,NULL,5088 State Route 97,NULL,Narrowsburg,12764,8452527232,8457015468,nyed001@yahoo.com,nyed001@yahoo.com,2322800,1
+100df116-22-06,1,6/22/2016 22:26,6/22/2016 22:26,Matthew,Lehman,NULL,31 n. Lebanon st,NULL,Lebanon ,17042,Matthew Lehman,NULL,NULL,31 n. Lebanon st,NULL,Lebanon ,17042,7173332941,7173332941,Matt.lehman33@gmail.com,Chefmatt33,144981emt,0
+51c74316-23-06,1,6/23/2016 8:42,6/23/2016 8:42,Peter,Opstrup,NULL,100 Eastview Rd,NULL,Cambridge,5444,Peter Opstrup,NULL,NULL,100 Eastview Rd,NULL,Cambridge,5444,802.644.5449,NULL,paopstrup@gmail.com,popstrup,ra643585c,0
+cd7eed16-23-06,1,6/23/2016 21:23,6/23/2016 21:23,Jeffrey,Modzelewski,Jeffrey Modzelewski,2115 Postoffice Street,NULL,Galveston,77550-2023,Jeffrey Modzelewski,NULL,NULL,2115 Postoffice Street,NULL,Galveston,77550-2023,409-739-3879,409-739-3879,jeffiemod@gmail.com,jeffiemod@gmail.com,62056,0
+33348c16-24-06,1,6/24/2016 18:46,6/24/2016 18:46,James,Roderick,NULL,14250 North 145th East Avenue,NULL,Collinsville,74021,James Roderick,NULL,NULL,14250 North 145th East Avenue,NULL,Collinsville,74021,918-652-1808,918-652-1808,salebarn.jr@gmail.com,JamesRoderick,jamesr2,0
+59293616-24-06,1,6/24/2016 22:25,6/24/2016 22:25,Christopher,Hodapp,NULL,9310 Seascape Drive,NULL,Indianapolis,46256,Christopher Hodapp,NULL,NULL,9310 Seascape Drive,NULL,Indianapolis,46256,3178421103,3174439354,hodapp@aol.com,hodapp@aol.com,eggbert,0
+ba0fb716-25-06,1,6/25/2016 9:22,6/25/2016 9:22,Chet,Caskey,Audubon Park Lodge #272,C/O Secretary Chet Caskey,818 W 29th Avenue,Spokane,99203,Chet Caskey,Audubon Park Lodge #272,NULL,C/O Secretary Chet Caskey,818 W 29th Avenue,Spokane,99203,5098632519,Same,Chester.caskey@gmail.com,Chester.caskey@gmail.com,5367924,1
+3df65916-25-06,1,6/25/2016 15:49,6/25/2016 15:49,Michael,Moran,NULL,31 Windsor Way,NULL,Red Lion,17356,Michael Moran,NULL,NULL,31 Windsor Way,NULL,Red Lion,17356,5704998456,5704998456,mikeleemoran@gmail.com,mikeleemoran@gmail.com,5450715,1
+abfd2916-25-06,1,6/25/2016 23:04,6/25/2016 23:04,Lisa,Algee,West Florida No 210,941 Pinoak Lane,NULL,Cantonment,32533,Lisa Algee,West Florida No 210,NULL,941 Pinoak Lane,NULL,Cantonment,32533,8509680468,8502067362,lwalgee@panhandle.rr.com,lwalgee@panhandle.rr.com,7714780,1
+66ed5216-26-06,1,6/26/2016 9:31,6/26/2016 9:31,Andrew,Elson,NULL,6753 N Kendall Dr. ,Apt B-111,Miami,33156,Andrew Elson,NULL,NULL,6753 N Kendall Dr. ,Apt B-111,Miami,33156,305-968-5054,305-968-5054,datsaltydog@gmail.com,datsaltydog@gmail.com,1688302,1
+21292416-26-06,1,6/26/2016 12:16,6/26/2016 12:16,Brian,Spooner,NULL,4278 W 223rd St,NULL,Fairview Park,44126,Brian Spooner,NULL,NULL,4278 W 223rd St,NULL,Fairview Park,44126,4407342741,NULL,Bspooner@spoonman.net,Bspooner@spoonman.net,7817196,1
+824a2416-26-06,1,6/26/2016 15:24,6/26/2016 15:24,Byron,Morgan,NULL,212 East Long Street,Apt B,Carson City,89706,Byron Morgan,NULL,NULL,212 East Long Street,Apt B,Carson City,89706,7758849242,NULL,byron.morgan212@gmail.com,byron.morgan212@gmail.com,6019236,1
+08ba8c16-26-06,1,6/26/2016 21:55,6/26/2016 21:55,thomas,frady,NULL,412 davis rd,NULL,liberty,29657,thomas frady,NULL,NULL,412 davis rd,NULL,liberty,29657,8649798726,8649798726,tsfrady@bellsouth.net,tsfrady@bellsouth.net,7891093,1
+fae4f116-27-06,1,6/27/2016 14:29,6/27/2016 14:29,john,alsip,NULL,p.o.box 28,NULL,loda,60948,john alsip,NULL,NULL,p.o.box 28,NULL,loda,60948,2173862219,NULL,johnalsip21@gmail.com,johnalsip21@gmail.com,6550972,1
+994a9716-27-06,1,6/27/2016 16:06,6/27/2016 16:06,John,Beringer,Martinez Lodge 41,P.O. Box 2221,NULL,Martinez,94553,John D. Beringer,Martinez Lodge 41,NULL,22 Kilgo Court,NULL,Pleasant Hill,94523,925 933 7494,NULL,Jbernger@comcast.net,Jbernger@comcast.net,3359721,1
+686f5d16-28-06,1,6/28/2016 5:07,6/28/2016 5:07,ootcmlvu,qwloxvxj,Acunetix,3137 Laguna Street,3137 Laguna Street,San Francisco,94102,dahlexrr,Acunetix,NULL,3137 Laguna Street,3137 Laguna Street,San Francisco,94102,555-666-0606,555-666-0606,sample@email.tst,whuaqruf,g00dPa$$w0rD,0
+57043216-28-06,1,6/28/2016 17:51,6/28/2016 17:51,Phillip,Cheek,NULL,6339 Dr Thomas Walker Rd,NULL,Rose Hill,24281,Phillip Cheek,NULL,NULL,6339 Dr Thomas Walker Rd,NULL,Rose Hill,24281,276-445-5157,NULL,Sgtcheek@msn.com,Sgtcheek@msn.com,2556888,1
+f66adf16-30-06,1,6/30/2016 8:48,6/30/2016 8:48,Henry,Stein,NULL,2 Spring Valley Drive,NULL,Florham Park,7932,Henry Stein,NULL,NULL,2 Spring Valley Drive,NULL,Florham Park,7932,9733779479,NULL,hankstein@optonline.net,hankstein@optonline.net,4729383,1
+6e216016-30-06,1,6/30/2016 15:03,6/30/2016 15:03,Thomas,Royce,Thomas Royce,10029 East Rocky Wash Drive,NULL,Tucson,85748,Thomas Royce,Thomas Royce,NULL,10029 East Rocky Wash Drive,NULL,Tucson,85748,520-546-5847,520-275-0660,twroyce@cox.net,twroyce,kingfisher2,0
+3777e416-01-07,1,7/1/2016 10:28,7/1/2016 10:28,Andrew,Martinez,NULL,307 Candlewood Ct.,NULL,Millersville,21108,Andrew Martinez,NULL,NULL,307 Candlewood Ct.,NULL,Millersville,21108,2402981943,2402981943,g.andrew.martinez@gmail.com,g.andrew.martinez@gmail.com,7899252,1
+60a5d116-01-07,1,7/1/2016 15:48,7/1/2016 15:48,William,Inghram,William V. Inghram,144 Mayfair Court,NULL,Sanford,32771,William Inghram,William V. Inghram,NULL,144 Mayfair Court,NULL,Sanford,32771,4073227269,4076204515,w.inghram@att.net,w.inghram@att.net,9739974,1
+53d30216-05-07,1,7/5/2016 9:45,7/5/2016 9:45,Anthony,De Angelo,NULL,14909 PELICAN POINT PL,NULL,TAMPA,33625-1501,Anthony De Angelo,NULL,NULL,14909 PELICAN POINT PL,NULL,TAMPA,33625-1501,8133181700,8133181700,TonyN2MFT@gmail.com,RHTonyDe,S3g5r8n6Za2L,0
+393a9f16-05-07,1,7/5/2016 20:03,7/18/2016 15:25,Fred,Koeck,NULL,135 Hillside Ct.,NULL,Stroudsburg,18360,Fred Koeck,NULL,NULL,135 Hillside Ct.,NULL,Stroudsburg,18360,570-620-2002,NULL,fskoeck4@verizon.net,fkoeck,Barger66,0
+abe01e16-06-07,1,7/6/2016 13:08,7/6/2016 13:08,Robert,Hobday,Robert Hobday,80 Sycamore Drive,APT 317,Elizabethtown,17022,Robert Hobday,Robert Hobday,NULL,80 Sycamore Drive,APT 317,Elizabethtown,17022,7173613973,NULL,bobh31@comcast.net,bobh31@comcast.net,2368390,1
+b5aed916-07-07,1,7/7/2016 12:18,7/7/2016 12:18,Roy,Jacobs,NULL,2926 River Bend Dr.,NULL,Rosenberg,77471,Roy Jacobs,NULL,NULL,2926 River Bend Dr.,NULL,Rosenberg,77471,7135946552,NULL,roypjacobs@aol.com,roypjacobs@aol.com,2272907,1
+ef0fd016-09-07,1,7/9/2016 15:17,7/9/2016 15:17,Michael,Zabrowski,NULL,6804 Glenmont St,NULL,Falls Church,22042,Michael Zabrowski,NULL,NULL,6804 Glenmont St,NULL,Falls Church,22042,7035242527,NULL,mzski13@gmail.com,mzabrow,necmip7,0
+d0e1ec16-10-07,1,7/10/2016 14:39,7/10/2016 14:39,Paul,Schlehr,NULL,2200 Van Diest Road,NULL,Winnemucca,89445,Paul Schlehr,NULL,NULL,2200 Van Diest Road,NULL,Winnemucca,89445,775 304-0741,775 304-0741,paul.schlehr@gmail.com,paul.schlehr@gmail.com,1562917,1
+b2d4e116-10-07,1,7/10/2016 15:43,7/10/2016 15:43,Dale,Kubichek,NULL,3417 W. MAson Rd,NULL,Sidney,45365,Dale Kubichek,NULL,NULL,3417 W. MAson Rd,NULL,Sidney,45365,937-726-6677,same,N6JSX@yahoo.com,N6JSX@yahoo.com,5461312,1
+0196b516-10-07,1,7/10/2016 17:59,7/10/2016 17:59,Thomas,Kuhn,NULL,P. O. Box 515197,NULL,St. Louis,63151-5197,Thomas Kuhn,NULL,NULL,P. O. Box 515197,NULL,St. Louis,63151-5197,3144872906,NULL,tom.kuhn.kpsi@gmail.com,tom.kuhn.kpsi@gmail.com,3396837,1
+87455716-10-07,1,7/10/2016 20:22,7/10/2016 20:22,Robert,Bianchi,NULL,4 Rainbow Dr,NULL,Nashua,3062,Robert Bianchi,NULL,NULL,4 Rainbow Dr,NULL,Nashua,3062,6038970788,NULL,rbianchi1@comcast.net,rbianchi1@comcast.net,7715813,1
+4e38c716-13-07,1,7/13/2016 13:57,7/13/2016 13:59,Ed,Short,Ed Short,422 Mulberry St,NULL,Warsaw,62379,Ed Short,Ed Short,NULL,422 Mulberry St,NULL,Warsaw,62379,217-256-4521,319-795-2709,eshort@rocketmail.com,eshort,les7172,0
+4a409416-14-07,1,7/14/2016 11:39,7/14/2016 11:39,Ralph,Baron,NULL,82 Whitford Drive,NULL,Burlington,8016,Ralph Baron,NULL,NULL,82 Whitford Drive,NULL,Burlington,8016,609.351.6857,609.351.6857,Ralphb33@hotmail.com,Ralphb33@hotmail.com,4430122,1
+c0a3c616-14-07,1,7/14/2016 13:39,7/14/2016 13:39,Joshua,Hiers,NULL,1806 Gilpin Ave,NULL,Wilmington,19806,Joshua Hiers,NULL,NULL,1806 Gilpin Ave,NULL,Wilmington,19806,302-312-4121,302-312-4121,emajth@hotmail.com,emajth@hotmail.com,9882186,1
+116acd16-15-07,1,7/15/2016 10:36,7/15/2016 10:36,Jeffrey,Collinsworth,NULL,317 Palmetto Tyrone Rd.,NULL,Newnan,30265,Jeffrey,Collinsworth,NULL,317 Palmetto Tyrone Rd.,NULL,Newnan,30265,7703012832,NULL,chevcst396@aol.com,jlc317,capitol,0
+089eb016-17-07,1,7/17/2016 23:41,10/14/2016 17:45,Fred,Duncan,Fred Duncan,"336 Roundup Ave, #334",NULL,Newcastle,82701,Fred Duncan,Fred Duncan,NULL,"336 Roundup Ave, #334",NULL,Newcastle,82701,none,850-776-1928,BluLodgr52@yahoo.com,BluLodgr52,5-Jun-62,0
+0278ec16-18-07,1,7/18/2016 14:18,7/18/2016 14:18,Ronald,Runion,Wellington Lodge No. 127,42450 Smith road,NULL,Wellington,44090-9671,Ronald Runion,NULL,NULL,42450 Smith road,NULL,Wellington,44090-9671,3306189553,3306189553,rlrunion@gmail.com,runion33,ptpm0406,0
+db797e16-18-07,1,7/18/2016 22:29,7/18/2016 22:29,Paul,Woschanko,Paul Woschanko,90 Scout Road,NULL,Gansevoort,12831,Paul Woschanko,Paul Woschanko,NULL,90 Scout Road,NULL,Gansevoort,12831,518-584-4854,NULL,pwoschanko@gmail.com,pwoschanko@gmail.com,4940383,1
+f9a1b316-19-07,1,7/19/2016 10:29,7/19/2016 10:29,Chris,Cochrane ,NULL,4172 Westview Lane,NULL,Oshkosh,54904,Chris Cochrane ,NULL,NULL,4172 Westview Lane,NULL,Oshkosh,54904,9204503117,9204503117,Crcmagic@gmail.com,Crcmagic@gmail.com,9377899,1
+47f9b116-21-07,1,7/21/2016 10:13,7/21/2016 10:13,Gary,Donovan,NULL,5366 State rte. 31,NULL,Verona,13478,Gary Donovan,NULL,NULL,5366 State rte. 31,NULL,Verona,13478,315 264 5820,315 264 5820,garydonovan48@gmail.com,garydonovan48@gmail.com,4054967,1
+ab028f16-21-07,1,7/21/2016 10:20,7/21/2016 10:20,Gary,Donovan,NULL,5366 State rte. 31,NULL,Verona,13478,Gary Donovan,NULL,NULL,5366 State rte. 31,NULL,Verona,13478,315 264 5820,315 264 5820,garydonovan48@gmail.com,garydonovan48@gmail.com,1038596,1
+03498116-21-07,1,7/21/2016 12:25,7/21/2016 12:25,Paul,Woschanko,Rising Sun Lodge,90 Scout Road,NULL,Gansevoort,12831,Paul Woschanko,Rising Sun Lodge,NULL,90 Scout Road,NULL,Gansevoort,12831,518-584-4854,NULL,pwoschanko@gmail.com,pwoschanko@gmail.com,4927170,1
+d3a41416-21-07,1,7/21/2016 15:07,7/21/2016 15:07,Kenneth,Gorgen,NULL,535 Quinlan Drive,NULL,Pewaukee,53072,Kenneth Gorgen,NULL,NULL,535 Quinlan Drive,NULL,Pewaukee,53072,2626910859,2625011879,ken.gorgen@gmail.com,ken.gorgen@gmail.com,5823914,1
+4de52116-21-07,1,7/21/2016 15:22,7/21/2016 15:22,Patriick,Cholka,NULL,9034 W. Lapham Street,NULL,West Allis,53214,Patriick Cholka,NULL,NULL,9034 W. Lapham Street,NULL,West Allis,53214,414-254-5543,414-254-5543,pat.cholka@gmail.com,pat.cholka@gmail.com,7226665,1
+21b57916-22-07,1,7/22/2016 10:04,7/22/2016 10:04,Ronald,Jackson,NULL,21 Pine Hill Road,NULL,South Hadley,1075,Ronald Jackson,NULL,NULL,21 Pine Hill Road,NULL,South Hadley,1075,4135320132,NULL,rejackson21@comcast.net,MAJA000C,Pdgm85gl,0
+7bc0d716-22-07,1,7/22/2016 16:56,7/22/2016 16:56,Gerald,Myers,NULL,1326 SW Looking Glass Loop,NULL,Oak Harbor,98277-4564,Gerald Myers,NULL,NULL,1326 SW Looking Glass Loop,NULL,Oak Harbor,98277-4564,360 679-5184,NULL,glacmyer@frontier.com,glacmyer@frontier.com,9946318,1
+08874716-23-07,1,7/23/2016 9:17,8/5/2016 10:10,Ronald,Murphy,Ronald Murphy,po box 6093,NULL,Hermon,4402,Ronald Murphy,Ronald Murphy,NULL,po box 6093,NULL,Hermon,4402,2078485462,2079441518,murphy8708@roadrunner.com,shadow,1tanner1,0
+30cfc816-23-07,1,7/23/2016 9:46,7/23/2016 9:46,John,Zabel,NULL,371 Lyndon Rd,NULL,Fairport,14450-9703,John Zabel,NULL,NULL,371 Lyndon Rd,NULL,Fairport,14450-9703,585-223-3228,585-576-4868,zabelj@mindspring.com,zabelj@mindspring.com,7605648,1
+29b71e16-24-07,1,7/24/2016 9:48,7/24/2016 9:48,Eugene,Fratz,NULL,2431 Ellwood Avenue,NULL,Atco,8004,Eugene Fratz,NULL,NULL,2431 Ellwood Avenue,NULL,Atco,8004,8562973800,NULL,genefratz@yahoo.com,genefratz@yahoo.com,1214325,1
+28320616-25-07,1,7/25/2016 9:09,7/25/2016 9:09,Zach,Holmes,Notasulga Lodge #119,PO box 34,NULL,Loachapoka,36865,Zach Holmes,Notasulga Lodge #119,NULL,PO box 34,NULL,Loachapoka,36865,2563101953,2563101953,zachholmes32@gmail.com,zachholmes32@gmail.com,2885521,1
+2b508a16-25-07,1,7/25/2016 12:30,7/25/2016 12:30,Oscar,Orum,NULL,8607 Azalea Trail,NULL,Austin,78759,Oscar Orum,NULL,NULL,8607 Azalea Trail,NULL,Austin,78759,5125290414,5125290414,oorum@aistin.rr.com,oorum@aistin.rr.com,2499390,1
+35dce616-25-07,1,7/25/2016 12:32,7/25/2016 12:32,Stephen,Cross,Stephen Cross,P. O. Box 3375,NULL,Borger,79008,Stephen Cross,Stephen Cross,NULL,P. O. Box 3375,NULL,Borger,79008,8062742889,8068868666,sfcrosslaw@aol.com,sfcrosslaw,merle1911,0
+2cab5f16-25-07,1,7/25/2016 12:37,7/25/2016 12:37,John,Logan,NULL,13913 Kirkland Ridge,NULL,Edmond,73013-7080,John Logan,MCFOK,NULL,PO Box 2406,NULL,Edmond,73083-2406,4053487500,4054350318,jllogan@sbcglobal.net,jllogan,$Freemason33,0
+567a1616-26-07,1,7/26/2016 8:50,7/26/2016 8:50,DENNIS,GEORGE,NULL,70 JENNESS ROAD,NULL,EPPING,3042,DENNIS GEORGE,NULL,NULL,70 JENNESS ROAD,NULL,EPPING,3042,603 679 8368,603 234 5653,dengeo@comcast.net,DENNIS,Daisey123,0
+c8875716-26-07,1,7/26/2016 15:44,7/26/2016 15:44,Floyd,McGuirt,Stone Mtn. Lodge #449,5924 Millstone Lane,NULL,Stone Mountain,30087,Floyd McGuirt,Stone Mtn. Lodge #449,NULL,5924 Millstone Lane,NULL,Stone Mountain,30087,770 923 8946,NULL,merlin4670@comcast.net,merlin4670@comcast.net,7242743,1
+3200d916-26-07,1,7/26/2016 16:44,7/26/2016 16:44,robert,yonaitis,NULL,34 FRANKLIN STREET,NULL,CONCORD,3301,robert yonaitis,NULL,NULL,34 FRANKLIN STREET,NULL,CONCORD,3301,6034967414,NULL,ryonaitis@gmail.com,ROBYONAITIS,MYMASON123,0
+3eae7416-26-07,1,7/26/2016 22:02,7/26/2016 22:02,Brent,Myers,NULL,901 Rosewood Dr.,NULL,Lincoln,68510,Brent Myers,NULL,NULL,901 Rosewood Dr.,NULL,Lincoln,68510,402-770-0901,NULL,bmyers@prconline.com,bmyers@prconline.com,4070781,1
+be44a016-27-07,1,7/27/2016 11:17,7/27/2016 11:17,Eric,Lineberger,NULL,118 colt thornburg rd,NULL,dallas,28034,Eric Lineberger,NULL,NULL,118 colt thornburg rd,NULL,dallas,28034,9805226583,9805226583,jericl@bellsouth.net,jericl@bellsouth.net,8372061,1
+7585d016-27-07,1,7/27/2016 11:44,7/27/2016 11:44,Tim,Anderson,Grand Lodge of Iowa,813 1st Ave SE,NULL,Cedar Rapids,52402,Tim Anderson,Grand Lodge of Iowa,NULL,813 1st Ave SE,NULL,Cedar Rapids,52402,319-365-1438,641-344-0446,dgs@gl-iowa.org,TimAstor,1939Coupe#,0
+b3848816-27-07,1,7/27/2016 15:46,7/27/2016 15:46,Kris,Pich,NULL,5308 Ewing Ave s,NULL,Minneapolis,55410,James Maertens,Lake Harriet Lodge #277,NULL,4519 France Ave S,NULL,Minneapolis,55410,6129251631,NULL,kwpich@msn.com,kwpich@msn.com,Isabella,0
+565f1b16-31-07,1,7/31/2016 10:59,7/31/2016 10:59,Patricia,Bradbury,NULL,5874 Lexington Drive,NULL,Pipersville,18947,Patricia Bradbury,NULL,NULL,5874 Lexington Drive,NULL,Pipersville,18947,215-766-2244,NULL,pabradbury@verizon.net,pabradbury@verizon.net,3968804,1
+fe574f16-31-07,1,7/31/2016 20:27,7/31/2016 20:28,Michael,Askew,Michael L Askew,8274 Fayette Street,NULL,Philadelphia,19150,Michael L Askew,Michael L Askew,NULL,8274 Fayette Street,NULL,Philadelphia,19150,215 248 9297,215 518 2220,mla2207@bellatlantic.net,mac2207,1@grandson,1
+e0c5bd16-01-08,1,8/1/2016 3:46,8/1/2016 3:46,George,Morris,Unique lodge 85,5806 Vernedale Rd,NULL,Charlotte,28212,George Morris,Unique lodge 85,NULL,5806 Vernedale Rd,NULL,Charlotte,28212,704-563-8559,704-307-3965,sfcmorris2@me.com,sfcmorris2,boazone1,1
+62f81316-01-08,1,8/1/2016 18:08,8/1/2016 18:08,James,LaSalle,James LaSalle,51 Bock Lane,NULL,Baden,15005,James LaSalle,James LaSalle,NULL,51 Bock Lane,NULL,Baden,15005,724-869-0306,NULL,jjlasalle@gmail.com,jjlasalle,E8O^OtWQ#X#z,0
+5ee61616-03-08,1,8/3/2016 10:23,8/3/2016 10:23,Howard,Dalton,NULL,18455 Plantation Court Drive,NULL,Prairieville,70769-3726,Howard Dalton,NULL,NULL,18455 Plantation Court Drive,NULL,Prairieville,70769-3726,225-933-2321,225-933-2321,HLDALTON@EATEL.NET,HLDALTON@EATEL.NET,6777526,1
+6a295716-03-08,1,8/3/2016 10:27,8/3/2016 10:27,Dan ,Kemble,NULL,1540 St. Clair Street,NULL,Covington,41011,Dan Kemble,NULL,NULL,1540 St. Clair Street,NULL,Covington,41011,8598013095,NULL,dkemble@fbtlaw.com,dkemble@fbtlaw.com,1863704,1
+66e5ed16-03-08,1,8/3/2016 12:15,8/3/2016 12:15,Jeremy,Vaughn,NULL,1409 Lauren Ln,NULL,Filer,83328,Jeremy Vaughn,NULL,NULL,1409 Lauren Ln,NULL,Filer,83328,208-339-6849,NULL,jvaughn311@gmail.com,jvaughn311@gmail.com,7650058,1
+f0953e16-05-08,1,8/5/2016 12:34,8/5/2016 12:34,Christopher,Tecklenburg,AASR Valley of Reading,430 S Seventh Ave,NULL,West Reading,19611,Christopher Tecklenburg,AASR Valley of Reading,NULL,430 S Seventh Ave,NULL,West Reading,19611,610-373-0722,NULL,valley.of.reading@comcast.net,valley.of.reading@comcast.net,6133996,1
+a6ab5d16-05-08,1,8/5/2016 14:06,8/5/2016 14:06,Gene,Maples,NULL,280 Pee Dee Road,NULL,Southern Pines,28387,Gene Maples,Southern Pines Lodge 484,NULL,280 Pee Dee Road,NULL,Southern Pines,28387,9107251316,9107251316,gnmaples@embarqmail.com,gnmaples@embarqmail.com,7729724,1
+f6dbae16-05-08,1,8/5/2016 18:10,9/6/2016 10:26,Gene,Maples,Southern Pines Lodge 484,280 Pee Dee Road,NULL,Southern Pines,28387,Gene Maples,Southern Pines Lodge 484,NULL,280 Pee Dee Road,NULL,Southern Pines,28387,9107251316,9107251316,gnmaples@embarqmail.com,gnmaples,starNabby2,1
+a9955b16-09-08,1,8/9/2016 8:30,8/9/2016 8:30,William,Gilbert,William Gilbert,7301 Token Valley Road,NULL,Manassas,20112,William Gilbert,William Gilbert,NULL,7301 Token Valley Road,NULL,Manassas,20112,6628018949,6628018949,gilbert.van@gmail.com,gilbert.van@gmail.com,5013524,1
+a5edb216-10-08,1,8/10/2016 9:57,8/10/2016 9:57,William C ,mollica,William C Mollica,P.O. box 263,NULL,Manawa,54949,William Mollica,NULL,NULL,803 Meadow Lane,NULL,Manawa,54949,9205962476,9205720937,manawalodge@hotmail.com,manawalodge@hotmail.com,7772764,1
+92bf2216-10-08,1,8/10/2016 14:45,8/10/2016 14:45,Gary,Pilgrim,Oconomowoc-Hartland Lodge No. 42,506 East Capitol Drive,NULL,Hartland,53029,Gary Pilgrim,Oconomowoc-Hartland Lodge No. 42,NULL,506 East Capitol Drive,NULL,Hartland,53029,262.367.2309,NULL,apastmaster.wi@gmail.com,apastmaster.wi@gmail.com,9705158,1
+63406b16-10-08,1,8/10/2016 14:49,8/10/2016 14:49,Gary,Pilgrim,Oconomowoc-Hartland Lodge No. 42,506 East Capitol Drive,NULL,Hartland,53029,Gary Pilgrim,Oconomowoc-Hartland Lodge No. 42,NULL,506 East Capitol Drive,NULL,Hartland,53029,262.367.2309,NULL,apastmaster.wi@gmail.com,apastmaster.wi@gmail.com,4954304,1
+d690e716-10-08,1,8/10/2016 16:50,8/10/2016 16:50,William,CLARK,"Herrick, Langdon & Langdon",666 Walnut Street,Suite 1550,DES MOINES,50309-3972,William CLARK,"Herrick, Langdon & Langdon",NULL,666 Walnut Street,Suite 1550,DES MOINES,50309-3972,515-282-8150,515-28-28150,herricklangdonlaw@dwx.com,herricklangdonlaw@dwx.com,8416900,1
+86ad5916-10-08,1,8/10/2016 17:00,8/10/2016 17:00,William,Clark,"Herrick, Langdon & Langdon","666 Walnut St., Ste 1550",NULL,Des Moines,50309-3972,William CLARK,"Herrick, Langdon & Langdon",NULL,"666 Walnut St., Ste. 1550",NULL,Des Moines,50309-3972,515-282-8150,515-282-8150,herricklangdonlaw@dwx.com,herricklangdonlaw@dwx.com,3019084,1
+d9097216-10-08,1,8/10/2016 19:33,8/10/2016 19:33,William,West,Belpre Masonic #609,1977 Bender Rd.,NULL,Marietta,45750,William West,Belpre Masonic #609,NULL,1977 Bender Rd.,NULL,Marietta,45750,7403737078,NULL,willie277@yahoo.com,willie277@yahoo.com,1243216,1
+c2f44816-11-08,1,8/11/2016 10:50,8/11/2016 10:50,Cecil,Conyers,NULL,209 Plantation Rd.,NULL,Townville,29689,Cecil Conyers,NULL,NULL,209 Plantation Rd.,NULL,Townville,29689,864-723-9118,NULL,adam_conyers@charter.net,adam_conyers@charter.net,7672464,1
+015f6316-11-08,1,8/11/2016 20:36,8/11/2016 20:36,Stephen,Tharaldsen,NULL,PO Box 75,NULL,Gouverneur,13642,Stephen Tharaldsen,NULL,NULL,PO Box 75,NULL,Gouverneur,13642,3154088874,3154088874,a17viking@gmail.com,a17viking@gmail.com,6026237,1
+b2852516-13-08,1,8/13/2016 15:04,8/13/2016 15:04,Michael,Jaffee,NULL,621 NE 5th Terr,NULL,Gainesville,32601,Michael Jaffee,NULL,NULL,621 NE 5th Terr,NULL,Gainesville,32601,210-316-6753,210-316-6753,michael.jaffee@gmail.com,michael.jaffee@gmail.com,scotty66,0
+a6a59016-15-08,1,8/15/2016 13:12,8/15/2016 13:12,George,Morris,Unique lodge 85,5806 Vernedale Rd,NULL,Charlotte,28212,George Morris,Unique lodge 85,NULL,5806 Vernedale Rd,NULL,Charlotte,28212,704-563-8559,704-307-3965,sfcmorris2@me.com,sfcmorris2@me.com,9192856,1
+8b570f16-16-08,1,8/16/2016 10:20,8/16/2016 10:20,Frank R,Herbst,NULL,5189 garnaby Lane ,NULL,Peachtree Corners,30092-2138,Frank R Herbst,NULL,NULL,PO Box 5 ,1268 CR 29 ,Olmstedville,12857,5182515971,7132949186,frasnkherbst63@yahoo.com,FRHersbt,Oville,0
+8159f616-16-08,1,8/16/2016 13:51,8/16/2016 13:51,Norman,McKee,Indiana Frankllin Lodge #313,42 S. 11th Street,NULL,Indiana,15701,Norman McKee,NULL,NULL,3194 Warren Road,NULL,Indiana,15701,724-599-6431,724-599-6431,indianafranklinlodge313@gmail.com,rickmckee,mastermason,0
+5d9ca216-19-08,1,8/19/2016 11:33,8/19/2016 11:33,Ken,Nagel,Liberty Lodge #299,2131 Briarwood Dr,NULL,Santa Clara,95051-1944,Ken Nagel,Liberty Lodge #299,NULL,2131 Briarwood Dr,NULL,Santa Clara,95051-1944,408 984-0839,510 468-9864,knagel@comcast.net,knagel@comcast.net,6270415,1
+7411f416-20-08,1,8/20/2016 18:54,8/20/2016 18:54,Jack,FREITAG,NULL,14209 119th PL N. E.,NULL,Kirkland,98034,JACK D. FREITAG,RETIRED,NULL,14209 119TH PL N.E.,NULL,KIRKLAND,98034,425-820-4609,NULL,jackdfreitag@gmail.com,jackdfreitag,rumandcoke,0
+ad219616-21-08,1,8/21/2016 17:47,8/21/2016 17:47,Donald,Crews,NULL,2724 Willard Ave,NULL,Cincinnati,45209,Donald Crews,NULL,NULL,2724 Willard Ave,NULL,Cincinnati,45209,5137025784,5137025784,emperor.1959@gmail.com,emperor.1959@gmail.com,5086448,1
+819e3116-22-08,1,8/22/2016 18:19,8/22/2016 18:19,Bert,Reinink,NULL,2102 Avalanche Dr,NULL,Holt,48842,Bert J Reinink,NULL,NULL,2102 Avalanche Dr,NULL,Holt,48842,8084897900,8084897900,reininkbj@hotmail.com,bert.reinink,pikipoko,0
+40a3a416-23-08,1,8/23/2016 10:33,8/23/2016 10:33,R. J. ,Hughes,NULL,306 Butler Rd,NULL,Saxonburg,16056,R. J. Hughes ,NULL,NULL,2404 Hemlock St,NULL,Natrona Heights,15065,724-591-1340,412-327-6301,rjhughesiii@gmail.com,rjhughesiii@gmail.com,1325550,1
+19ae2416-25-08,1,8/25/2016 10:30,8/25/2016 10:30,Ken,Smith,NULL,20 Field Rd,NULL,Silver Bay,55614,Ken Smith,NULL,NULL,20 Field Rd,NULL,Silver Bay,55614,612-867-1119,NULL,ken@kensmithjr.com,ken@kensmithjr.com,5834043,1
+a2541f16-26-08,1,8/26/2016 11:02,8/26/2016 11:02,James ,Greely,Nellis Lodge No. 46,2200 W. Mesquite Ave.,Suite # 115,"Las Vegas, ",89106,James Greely,Nellis Lodge No. 46,NULL,2200 W. Mesquite Ave.,Suite # 115,"Las Vegas, ",89106,702-387-0046,702-604-5542,secretary@nellislodge46.org,jtg111,2005jeep,0
+e1d3d616-27-08,1,8/27/2016 13:06,8/27/2016 13:06,Ryan,Tyler,NULL,4630 Newark Rd,NULL,Cochranville,19330,Ryan Tyler,NULL,NULL,4630 Newark Rd,NULL,Cochranville,19330,484-614-6552,NULL,ryan@ryanktyler.com,ryan@ryanktyler.com,6601997,1
+668c5016-29-08,1,8/29/2016 1:07,8/29/2016 1:07,Skip,Smith,Skip Smith,127 Melody Lane,NULL,Monett,65708,Skip Smith,Skip Smith,NULL,127 Melody Lane,NULL,Monett,65708,417 235 5683,417 489 0468,skips98@att.net,skips98@att.net,5942999,1
+f91aeb16-29-08,1,8/29/2016 11:26,8/29/2016 11:26,Gerald,Piepiora,Gerald Piepiora,35 Antler Lane,NULL,Sedona,86336,Gerald Piepiora,Gerald Piepiora,NULL,35 Antler Lane,NULL,Sedona,86336,9282030834,4433241360,jerrypep@suddenlink.net,jerrypep@suddenlink.net,5630780,1
+db37b616-29-08,1,8/29/2016 21:04,8/29/2016 21:04,Paul,Mason,NULL,2802 Dogwood Park,NULL,Richland Hills,76118,Forrest Lykins,NULL,NULL,6617 Kingbury Ave.,NULL,Richland Hills,76118,8172847219,NULL,pmmasa12@sbcglobal.net,pmmasa12@sbcglobal.net,3771435,1
+2ed49616-03-09,1,9/3/2016 23:11,9/3/2016 23:11,Howard,Kurtz,NULL,114 N. Ruby Lane,NULL,Fairview Heights,62208,Howard Kurtz,NULL,NULL,114 N. Ruby Lane,NULL,Fairview Heights,62208,6187954635,NULL,hkurtz385@yahoo.com,hkurtz385@yahoo.com,Sheriff442,0
+d3e0bb16-03-09,1,9/3/2016 23:38,9/3/2016 23:38,Jeff,Schaefer,NULL,5507 Hinton St,NULL,Springfield,22151,Jeff Schaefer,NULL,NULL,5507 Hinton St,NULL,Springfield,22151,703-307-8499,703-307-8499,dogfonian@gmail.com,jschaefer,MSANA*13,0
+d391b816-04-09,1,9/4/2016 12:13,9/4/2016 12:13,Eugene,Mackey,NULL,537 Wells AVE. N.,NULL,Renton,98057,Eugene Mackey,NULL,NULL,537 Wells AVE. N.,NULL,Renton,98057,4255242749,4253060304,eugene_mackey@msn.com,eugene_mackey@msn.com,6134803,1
+1313ef16-04-09,1,9/4/2016 12:27,9/4/2016 12:27,Eugene,Mackey,NULL,537 Wells AVE. N.,NULL,Renton,98057,Eugene Mackey,NULL,NULL,537 Wells AVE. N.,NULL,Renton,98057,4255242749,4253060304,eugene_mackey@msn.com,eugene_mackey@msn.com,3044416,1
+a26ea416-05-09,1,9/5/2016 11:22,9/5/2016 11:22,Riley,Miller,NULL,PO Box 311284,NULL,New Braunfels,78131,Riley Miller,NULL,NULL,PO Box 311284,NULL,New Braunfels,78131,830-660-7655,NULL,rcmiller268@gmail.com,rcmiller268@gmail.com,6349100,1
+93be7216-06-09,1,9/6/2016 13:31,9/6/2016 13:31,Dudley,"Raine, Jr.","D. A. Raine, Jr",581 Christian Springs Road,NULL,Amherst,24521,"Dudley Raine, Jr.","D. A. Raine, Jr",NULL,581 Christian Springs Road,NULL,Amherst,24521,434 946-5069,434 944-2985,draine2@msn.com,draine2,August51947,0
+6dc4fe16-08-09,1,9/8/2016 10:28,9/8/2016 10:28,seemee,ma,aducatoor,tanchi bazar,non,bannu,non,seemee,aducator,NULL,bannu,non,bannu,non,non,non,no@nogmail.com,seemee,seemee,0
+557ee716-08-09,1,9/8/2016 13:44,9/8/2016 13:44,Tyler,Vanice,NULL,801 15th St. South,Apt. 102,arlington,22202,Tyler Vanice,NULL,NULL,801 15th St. South,Apt. 102,arlington,22202,7163414003,7163414003,tyler.vanice@daemen.edu,commador01,rang19idol,0
+e8a5cc16-09-09,1,9/9/2016 16:57,9/9/2016 16:57,Fred ,Shoemaker,NULL,117 E. North St.,NULL,Waverly,45690,Fred Shoemaker,NULL,NULL,117 E. North St.,NULL,Waverly,45690,740-947-2927,740-708-2927,fgsll@aol.com,fgsll@aol.com,1979672,1
+fb5ec416-09-09,1,9/9/2016 17:02,9/9/2016 17:02,Fred,Shoemaker,NULL,117 E. North St.,NULL,Waverly,45690,Fred Shoemaker,NULL,NULL,117 E. North St.,NULL,Waverly,45690,740-947-2927,740-708-2927,fgsll@aol.com,fgsll@aol.com,3044228,1
+65b4e916-10-09,1,9/10/2016 23:24,9/10/2016 23:24,robert ,suite,NULL,239 hobbitts lane ,NULL,westminster,21158,robert suite,NULL,NULL,239 hobbitts lane ,NULL,westminster ,21158,4436552365,NULL,bobfox365@gmail.com,bobfox365@gmail.com,7317236,1
+85fc0116-10-09,1,9/10/2016 23:28,9/10/2016 23:28,robert,suite,NULL,239 hobbitts lane,NULL,westminster,21158,robert suite,NULL,NULL,239 hobbitts lane,NULL,westminster,21158,4436552365,4436552365,bobfox365@gmail.com,bobfox365@gmail.com,3636684,1
+f0219016-13-09,1,9/13/2016 1:14,9/13/2016 1:14,Michael,Day,NULL,3360 Broadstone Way,NULL,Apex,27502,Michael Day,NULL,NULL,3360 Broadstone Way,NULL,Apex,27502,9196165972,9196165972,mlday101@gmail.com,mlday101@gmail.com,2582160,1
+e76b3716-13-09,1,9/13/2016 9:07,9/13/2016 9:07,Keith,Parker,NULL,P.O. Box 730,NULL,Dayton,37321,Keith Parker,NULL,NULL,P.O. Box 730,NULL,Dayton,37321,4235701284,NULL,kp42804@aol.com,kdparker,Sally11,0
+3a37a616-13-09,1,9/13/2016 12:37,9/13/2016 12:37,Maurice,Ward,Maurice Ward,270 Oak Creek Circle,NULL,Luling,78648,Maurice Ward,Maurice Ward,NULL,270 Oak Creek Circle,NULL,Luling,78648,830.875.5962,512.393.4570,bsward69@sbcglobal.net,bsward69,1205c364,0
+42f8b316-13-09,1,9/13/2016 16:45,9/13/2016 16:45,Charles,Holloway,NULL,651 Four Points Rd,NULL,Jackson,30233-4266,Charles Holloway,NULL,NULL,651 Four Points Rd,NULL,Jackson,30233-4266,7084762404,7084762404,hollowaycharles@bellsouth.net,hollowaycharles@bellsouth.net,7638889,1
+e2695b16-14-09,1,9/14/2016 1:21,9/14/2016 1:21,Robert,Baer,Dickinson Famiy Counseling Center,11 2nd Ave E,Suit B,Dickinson,58601,Robert Baer,Dickinson Famiy Counseling Center,NULL,11 2nd Ave E,Suit B,Dickinson,58601,7014839720,7015900238,dr.robertbaer@gmail.com,dr.robertbaer@gmail.com,3482696,1
+f3057b16-14-09,1,9/14/2016 22:48,9/14/2016 22:48,Glenn ,Palmertree ,Bethel Lodge # 107,2065 Attala Rd 3028,NULL,Kosciusko ,39090,Glenn Palmertree ,Bethel Lodge # 107,NULL,2065 Attala Rd 3028,NULL,Kosciusko ,39090,662-289-6637,662-582-0192,trezzdr@me.com,trezzdr@me.com,2912527,1
+8b106b16-14-09,1,9/14/2016 22:48,9/14/2016 22:48,Glenn ,Palmertree ,Bethel Lodge # 107,2065 Attala Rd 3028,NULL,Kosciusko ,39090,Glenn Palmertree ,Bethel Lodge # 107,NULL,2065 Attala Rd 3028,NULL,Kosciusko ,39090,662-289-6637,662-582-0192,trezzdr@me.com,trezzdr@me.com,1649387,1
+8521da16-15-09,1,9/15/2016 8:55,9/15/2016 8:55,Charlie,Veach,19th Masonic District,2163 Krause Rd.,NULL,Centerburg,43011,Charlie Veach,19th Masonic District,NULL,2163 Krause Rd.,NULL,Centerburg,43011,740-625-0956,NULL,ymra1991@yahoo.com,District 19,Constitution,0
+91c2a016-15-09,1,9/15/2016 12:26,9/15/2016 12:26,Charles,Bremner,NULL,925 Grey Avenue,NULL,Evanston,60202,Charles Bremner,NULL,NULL,925 Grey Avenue,NULL,Evanston,60202,2245789036,NULL,Charlesstuartbremner@gmail.com,Charlesstuartbremner@gmail.com,9988265,1
+65e59f16-15-09,1,9/15/2016 13:36,9/15/2016 13:36,Kenneth,Gorgen,NULL,535 Quinlan Drive,NULL,Pewaukee,53072,Kenneth Gorgen,NULL,NULL,535 Quinlan Drive,NULL,Pewaukee,53072,2625011879,2625011879,ken.gorgen@gmail.com,Kenneth Gorgen,quin535lan,0
+3752f316-18-09,1,9/18/2016 17:10,9/18/2016 17:10,Richard,Littlefield,NULL,14465 Holland Ct.,NULL,Apple Valley,55124,Richard Littlefield,NULL,NULL,14465 Holland Ct.,NULL,Apple Valley,55124,6125162971,6125162971,rrlittlefield@gmail.com,rrlittlefield@gmail.com,5310895,1
+dd22d316-19-09,1,9/19/2016 12:22,9/19/2016 12:22,John,Gordy,NULL,3114 Harbor Pointe,NULL,Rowlett,75088,John Gordy,NULL,NULL,3114 Harbor Pointe,NULL,Rowlett,75088,214 402 3531,NULL,gordini@ix.netcom.com,gordini@ix.netcom.com,9820855,1
+296d6116-19-09,1,9/19/2016 19:53,9/19/2016 19:53,Gerald,Frey,NULL,73 James Landing Road,NULL,Newport News,23606,Gerald Frey,NULL,NULL,118 Towne Square Drive,NULL,Newport News,23607,757.380.0692,NULL,frey_gerald@hotmail.com,GeraldFrey,jibsjibs,0
+f7d80716-19-09,1,9/19/2016 23:24,9/19/2016 23:24,Danilo,Diego,NULL,1101 EDGE BROOK CT,NULL,VIRGINIA BEACH,234545774,Danilo Diego,NULL,NULL,1101 EDGE BROOK CT,NULL,VIRGINIA BEACH,234545774,7574265474,7572774734,dannybdiego@verizon.net,dannybdiego@verizon.net,4365915,1
+cf035016-19-09,1,9/19/2016 23:27,9/19/2016 23:27,Danilo,Diego,NULL,1101 EDGE BROOK CT,NULL,VIRGINIA BEACH,234545774,Danilo Diego,NULL,NULL,1101 EDGE BROOK CT,NULL,VIRGINIA BEACH,234545774,7574265474,7574265474,dannybdiego@verizon.net,dannybdiego@verizon.net,3461967,1
+1e3ccf16-20-09,1,9/20/2016 14:01,9/20/2016 14:17,Thomas,Clark,N/A,1300 AVE D,APT 410,PLATTSMOUTH,68048,THOMAS CLARK,NULL,NULL,1300 AVE D,APT 410,PLATTSMOUTH,68048,N/A,402-301-1012,TAC33308@GMAIL.COM,TAC33308@GMAIL.COM,TAKOMAPK,0
+8d16c816-20-09,1,9/20/2016 14:34,9/20/2016 14:34,Michael,Stein,NULL,1288 Paddington Road,NULL,Mahwah,7430,Michael Stein,NULL,NULL,1288 Paddington Road,NULL,Mahwah,7430,201-785-8858,201-547-3801,masrpac@yahoo.com,masrpac@yahoo.com,2093053,1
+bccb5216-20-09,1,9/20/2016 17:07,9/20/2016 17:07,samuel,laucks,NULL,40 holly hill drive,NULL,dallastown,17313,samuel laucks,NULL,NULL,40 holly hill drive,NULL,dallastown,17313,7172447845,NULL,slaucks@wellspan.org,slaucks,40holly,0
+799a3c16-21-09,1,9/21/2016 10:02,9/21/2016 10:02,Marcus,Monk,NULL,5665 Aven Road,NULL,Marietta,30068,Marcus Monk,NULL,NULL,5665 Aven Road,NULL,Marietta,30068,770-994-0491,678-296-0330,Gmonk@bellsouth.net,Gmonk@bellsouth.net,1730856,1
+03cc8b16-21-09,1,9/21/2016 10:20,9/21/2016 10:20,Robert,Holland,Robert Holland,4405 Green Acres Pkwy,NULL,Portsmouth,23703,Robert Holland,Robert Holland,NULL,4405 Green Acres Pkwy,NULL,Portsmouth,23703,757-484-5311,757-334-4504,Rcholland3@gmail.com,Rcholland3@gmail.com,9736567,1
+34942c16-21-09,1,9/21/2016 13:25,9/21/2016 13:25,Richard,Hutchison,NULL,92 Endeavor Dr,NULL,Clyde,28721,Richard Hutchison,NULL,NULL,92 Endeavor Dr,NULL,Clyde,28721,8284005931,8284005931,kthutch04@aol.com,kthutch04@aol.com,8061849,1
+df076a16-21-09,1,9/21/2016 14:21,9/21/2016 14:21,Lester,Hanson,Salem Lodge 125 F.A.M.,"110 N. Van Ness St.,",NULL,West Salem,54669-1603,Lester Hanson,Salem Lodge 125 F.A.M.,NULL,"110 N. Van Ness St.,",NULL,West Salem,54669-1603,608-786-0930,NULL,lhanson003@centurytel.net,lhanson003@centurytel.net,6938654,1
+f36ae816-21-09,1,9/21/2016 16:32,9/21/2016 16:32,Roy,Thompson,NULL,2723 ILSE PL,NULL,San Antonio,78217,Roy Thompson,NULL,NULL,2723 ILSE PL,NULL,San Antonio,78217,2108261507,2108261507,rthomp5526@sbcglobal.net,rthomp5526@sbcglobal.net,7827290,1
+c1db8116-21-09,1,9/21/2016 19:59,9/21/2016 19:59,ronald,swank,NULL,2420east,1300 south,romney,47981,ronald swank,NULL,NULL,2420east,1300 south,romney,47981,7655382665,7657140538,mrswank2420@gmail.com,mrwank,flowerlady,0
+42f31d16-21-09,1,9/21/2016 21:09,9/21/2016 21:09,Gary,Hanson,NULL,3725 NE Chapel Dr.,NULL,Lee's Summit,64064-1928,Gary Hanson,NULL,NULL,3725 NE Chapel Dr.,NULL,Lee's Summit,64064-1928,816-525-2681,NULL,pgmark2001@aol.com,pgmark2001@aol.com,7329724,1
+c213af16-23-09,1,9/23/2016 1:07,9/23/2016 1:07,Josef,Pronnet,NULL,4570 Imperial Dr.,NULL,Brookfield,53045,Josef Pronnet,NULL,NULL,4570 Imperial Dr.,NULL,Brookfield,53045,262-790-9989,NULL,imperialjcp@att.net,imperialjcp@att.net,sepp1935,0
+651c4416-23-09,1,9/23/2016 9:37,9/23/2016 9:37,Timothy ,Nicely,NULL,4221 County Road 15,NULL,South Point,45680,Timothy Nicely,NULL,NULL,4221 County Road 15,NULL,South Point,45680,740-894-0691,740-479-0727,tsnicely@zoominternet.net,tnicely,Ancientofdays@79,0
+986d9a16-23-09,1,9/23/2016 19:00,9/23/2016 19:00,Michael,Stein,NULL,1288 Paddington Road,NULL,Mahwah,7430,Michael Stein,NULL,NULL,1288 Paddington Road,NULL,Mahwah,7430,201-574-3801,NULL,masrpac@yahoo.com,masrpac@yahoo.com,9513217,1
+35b2c716-24-09,1,9/24/2016 15:59,9/24/2016 15:59,Don,Carnes,NULL,5063 Hawk Eye Dr,NULL,Bulverde,78163,Don Carnes,NULL,NULL,5063 Hawk Eye Dr,NULL,Bulverde,78163,830-980-5008,210-325-6161,dcarnes@gvtc.com,dcarnes,H3R-qWT-3UM-XcE,0
+64b99f16-24-09,1,9/24/2016 18:26,9/24/2016 18:26,Robert,Helmic,R.Helmic,1525 N. Fairviwe,NULL,Lansing,48912,Robert Helmic,R.Helmic,NULL,1525 N. Fairviwe,NULL,Lansing,48912,517-372-4535,NULL,helmic8@aol.com,helmic8@aol.com,Markmaster,0
+91f1d616-24-09,1,9/24/2016 23:11,9/24/2016 23:11,William,Feuer,William Feuer,14909 Hanover Pike,NULL,Upperco,21155,William Feuer,NULL,NULL,117 Highshire Court,NULL,Dundalk,21222,4436906875,4436906875,feuerwilliam@gmail.com,elephantwf,Block$2016,0
+c1f96716-25-09,1,9/25/2016 12:19,9/25/2016 12:19,Dennis,Noahubi,NULL,PO Box 51,NULL,Connerville,74836,Dennis Noahubi,NULL,NULL,PO Box 51,NULL,Connerville,74836,5805049412,5805049412,noahubiann@yahoo.com,noahubiann@yahoo.com,2892565,1
+4e501516-25-09,1,9/25/2016 12:30,9/25/2016 12:30,Stephney,Noahubi,NULL,PO Box 51,NULL,Connerville,74836,Stephney Noahubi,NULL,NULL,PO Box 51,NULL,Connerville,74836,5805049412,5805049412,noahubiann@yahoo.com,noahubiann@yahoo.com,4923891,1
+fed6d516-26-09,1,9/26/2016 13:21,9/26/2016 13:21,Howard,Harris,NULL,5 Chesterfield Drive North,NULL,Beaufort,299069907,Howard Harris,NULL,NULL,5 Chesterfield Drive North,NULL,Beaufort,299069907,843-524-0981,843-441-8317,jabberwocky1943@gmail.com,hharris,h1a1r5r4i3s,0
+1240e316-26-09,1,9/26/2016 16:05,9/26/2016 16:05,Matthew,Harden,NULL,PO Box 7,NULL,Haskell,74436,Matthew Harden,NULL,NULL,PO Box 7,NULL,Haskell,74436,9187985860,9187985860,ecphoto05@gmail.com,ECPhoto05,1BrotherSon,0
+ed2dbc16-27-09,1,9/27/2016 11:49,9/27/2016 11:49,Richard,Schmidt,NULL,23852 Samuel Adams Circle,NULL,Millsboro,19966,Richard Schmidt,NULL,NULL,23852 Samuel Adams Circle,NULL,Millsboro,19966,302-945-2313,908-391-4072,rschmidt.masonic@gmail.com,RWRichard230,RWLecturer163,0
+60dfc316-27-09,1,9/27/2016 17:43,9/27/2016 17:43,Rob,Moore,Detroit Masonic Temple Library,1430 W.Farnum,NULL,Royal Oak,48067,Rob Moore,Detroit Masonic Temple Library,NULL,1430 W.Farnum,NULL,Royal Oak,48067,2488638008,2488638008,rm78@hotmail.com,rm78@hotmail.com,9201234,1
+5022cc16-27-09,1,9/27/2016 17:45,9/27/2016 17:45,Rob,Moore,Detroit Masonic Temple Library,1430 W.Farnum,NULL,Royal Oak,48067,Rob Moore,Detroit Masonic Temple Library,NULL,1430 W.Farnum,NULL,Royal Oak,48067,2488638008,2488638008,rm78@hotmail.com,rm78@hotmail.com,3100493,1
+d9d2d316-27-09,1,9/27/2016 17:52,9/27/2016 17:52,Robert,Tripp,NULL,26857 Lyndon,NULL,Redford,48239,Robert Tripp,NULL,NULL,26857 Lyndon,NULL,Redford,48239,3135503652,3135503652,robetripp@gmail.com,robetripp@gmail.com,6734941,1
+79aefa16-28-09,1,9/28/2016 23:05,9/28/2016 23:05,Robert S.,Gilbert,NULL,1300 Ave C,NULL,Denton,76205,Robert S. Gilbert,NULL,NULL,1300 Ave C,NULL,Denton,76205,940-387-6590,NULL,staffwalker@yahoo.com,staffwalker@yahoo.com,7883932,1
+16565716-29-09,1,9/29/2016 23:04,9/29/2016 23:04,Mike,Tipton,NULL,31269 S 200 Rd,NULL,Henryetta,74437,Mike Tipton,NULL,NULL,31269 S 200 Rd,NULL,Henryetta,74437,918-949-7555,918-949-7555,miketipton279@gmail.com,miketipton279@gmail.com,7499554,1
+5075c616-30-09,1,9/30/2016 9:06,9/30/2016 9:06,Dana,Keirstead,NULL,248 Charles Ave.,NULL,Smithville,44677,Dana Keirstead,NULL,NULL,248 Charles Ave.,NULL,Smithville,44677,330-669-2514,NULL,Danagk@aol.com,Danagk,af21314197,0
+82f45b16-30-09,1,9/30/2016 9:34,9/30/2016 9:34,Bernard,Frost,Bernard Frost,28 Lacroix Road,NULL,Peru,4290,Bernard Frost,Bernard Frost,NULL,28 Lacroix Road,NULL,Peru,4290,(207)562-4523,NULL,rheannefrost@gmail.com,BAFrost,KHBAF1945,0
+40c5a116-30-09,1,9/30/2016 13:46,9/30/2016 13:46,Willard,Lynch,"Myrtle Grove Lodge 352, F&AM",7101 Wymart Rd.,NULL,Pensacola,325263903,Willard Lynch,"Myrtle Grove Lodge 352, F&AM",NULL,7101 Wymart Rd.,NULL,Pensacola,325263903,8505014258,NULL,jumpsuitwill352@yahoo.com,jumpsuitwill352@yahoo.com,2698941,1
+92980a16-30-09,1,9/30/2016 16:27,9/30/2016 16:27,M.Todd,Hess,NULL,3158 N Jackson Rd,NULL,Pecatonica,61063,M.Todd Hess,NULL,NULL,3158 N Jackson Rd,NULL,Pecatonica,61063,815-239-1797,815-979-4478,mtoddh@gmail.com,mtoddh,mtodd77,0
+f2df2716-30-09,1,9/30/2016 19:46,9/30/2016 19:46,Wayne,Grindle,Wayne Grindle,4216 High Ridge Road,NULL,Haymarket,20169,Wayne Grindle,Wayne Grindle,NULL,4216 High Ridge Road,NULL,Haymarket,20169,703-754-7651,703-407-5583,wwgrindle@comcast.net,wwgrindle@comcast.net,8124979,1
+a2f93216-30-09,1,9/30/2016 20:01,9/30/2016 20:01,Bob,Rhynsburger,DLayne Rhynsburger,126 Grandview Ave,NULL,New Braunfels,78130,Bob Rhynsburger,DLayne Rhynsburger,NULL,126 Grandview Ave,NULL,New Braunfels,78130,8306299224,8302145545,Simplertime@sbcglobal.net,Simplertime@sbcglobal.net,3982855,1
+69323f16-30-09,1,9/30/2016 21:05,9/30/2016 21:05,Stanley,Reith,Stanley A. Reith,221 N Ruch ST,NULL,Coplay,18037-1711,Stanley Reith,Stanley A. Reith,NULL,221 N Ruch ST,NULL,Coplay,18037-1711,610-261-1245,610-360-6316,zebulon@rcn.com,zebulon@rcn.com,6669265,1
+063d3816-01-10,1,10/1/2016 15:05,10/1/2016 15:32,Robert ,Welch,Holland Lodge No. 1,4911 Montrose Blvd,NULL,Houston,77006-1338,Robert Welch,Holland Lodge No. 1,NULL,4911 Montrose Blvd,NULL,Houston,77006-6530,713-825-5040,NULL,secretary@hollandloge.org,secretary@hollandlodge.org,msadutchcabin,0
+3ddbb116-02-10,1,10/2/2016 19:45,10/2/2016 19:45,Kevin F.,Heiner,For: Grove City Masonic Lodge #33,340 Lansing Street,Apt. # 25,Blackfoot,83221,Kevin F. Heiner,For: Grove City Masonic Lodge #33,NULL,340 Lansing Street,Apt. # 25,Blackfoot,83221,2082067337,2082067337,kfheiner76@yahoo.com,kfheiner76@yahoo.com,1188067,1
+3ee10116-03-10,1,10/3/2016 10:35,10/3/2016 10:35,John ,Schoendorff,NULL,65736 Beeham Run Road,NULL,Cambridge,43725,John Schoendorff,NULL,NULL,65736 Beeham Run Road,NULL,Cambridge,43725,740.489.5093,NULL,john.schoendorff@gmail.com,john.schoendorff@gmail.com,1779785,1
+15704416-03-10,1,10/3/2016 11:45,10/3/2016 11:45,Richard ,Wesner,NULL,108 Morton Circle,NULL,Myrtle Beach,29579-7124,Richard Wesner,NULL,NULL,108 Morton Circle,NULL,Myrtle Beach,29579-7124,843-236-2982,843-340-2174,rawesner@aol.com,rawesner@aol.com,Kayce6,0
+84af5216-03-10,1,10/3/2016 13:48,10/3/2016 13:56,Kenton,Wolfe,NULL,32100 SW Cypress Pt,NULL,Wilsonville,97070-6478,Kenton Wolfe,NULL,NULL,32100 SW Cypress Pt,NULL,Wilsonville,97070-6478,503-694-8376,NULL,kenton_wolfe@msn.com,kentonwolfe,kawmkw2383,0
+56dc1916-03-10,1,10/3/2016 14:32,10/3/2016 14:32,Bill,Edwards,NULL,28 Kathrene Court,NULL,Webster,14580,Bill Edwards,NULL,NULL,28 Kathrene Court,NULL,Webster,14580,5858723993,5854722229,bille@rochester.rr.com,bille67,katiem95,0
+00608116-04-10,1,10/4/2016 20:43,10/4/2016 20:43,Jerome,Greenberg,NULL,220 N. Clermont Ave,NULL,Margate City,8402,Jerome Greenberg,NULL,NULL,220 N. Clermont Ave,NULL,Margate City,8402,6098231478,NULL,jerrymyra@comcast.net,jerrymyra@comcast.net,5708564,1
+3f074816-05-10,1,10/5/2016 10:30,10/5/2016 10:30,Carl,Turner,NULL,1188 Main St,NULL,Long Lake,12847-2204,Carl Turner,NULL,NULL,1188 Main St,NULL,Long Lake,12847-2204,5186242337,NULL,carlturner@gmx.us,carlturner@gmx.us,6245557,1
+d6b8b716-05-10,1,10/5/2016 15:58,10/5/2016 15:58,Nelson,Bryant,NULL,7305 Kenneth Drive,NULL,Henrico,23228,Nelson Bryant,NULL,NULL,7305 Kenneth Drive,NULL,Henrico,23228,8042623321,8044055602,nbryant10@comcast.net,nbryant10@comcast.net,4057731,1
+0ed99016-06-10,1,10/6/2016 10:48,10/6/2016 10:52,Stanley N,McIrvin,personal,291 Indian Paintbrush,Unit H,Casper,82604,Stanley N McIrvin,personal,NULL,291 Indian Paintbrush,Unit H,Casper,82604,307-234-4052,307-234-4052,stan1kych@gmail.com,stan1kych@gmail.com,stan0799,0
+13c29f16-06-10,1,10/6/2016 11:51,10/6/2016 11:51,Thomas,Jenkins,Omar N. Bradley Lodge,10612 Galatea Pl,NULL,El Paso,79924,Thomas Jenkins,Omar N. Bradley Lodge,NULL,10612 Galatea Pl,NULL,El Paso,79924,915-543-0331,915-543-0331,txdolfan@yahoo.com,txdolfan@yahoo.com,8736171,1
+6474e916-06-10,1,10/6/2016 14:14,10/6/2016 14:14,MIchael,McCleary,NULL,216 Peale Court,NULL,Cibolo,78108,MIchael McCleary,NULL,NULL,216 Peale Court,NULL,Cibolo,78108,2103865900,2103865900,mmccleary@satx.rr.com,mmccleary,Sammie123,0
+d5c7fa16-06-10,1,10/6/2016 16:06,10/6/2016 16:06,Jerome,Greenberg,NULL,220 N. Clermont Ave,NULL,Margate,8402,Jerome Greenberg,NULL,NULL,220 N. Clermont Ave,NULL,Margate,8402,609-823-1478,NULL,jerrymyra@comcast.net,jerrymyra@comcast.net,5569454,1
+a2d49316-07-10,1,10/7/2016 9:22,10/7/2016 9:22,Paul,Green,Paul Timothy Green,P.O. Box 496,NULL,Pottsboro,75076,Paul Timothy Green,NULL,NULL,5978 N. State Hwy 289,NULL,Sherman,75092,9038214827,9038214827,ptg289@texoma.net,Grayson46,tacobella,0
+5774dc16-08-10,1,10/8/2016 9:10,10/8/2016 9:10,Randy,Carter,Randal Carter,11026 Wynfield Springs Dr,NULL,Richmond,77406,Randy Carter,Randal Carter,NULL,11026 Wynfield Springs Dr,NULL,Richmond,77406,8322222979,2814503556,Randy.carter@reagan.com,Ranleecarter,Houston12,0
+8692d916-08-10,1,10/8/2016 23:08,10/8/2016 23:08,Stephen,Tharaldsen,Stephen Tharaldsen,PO Box 75,NULL,Gouverneur,13642,Stephen Tharaldsen,Stephen Tharaldsen,NULL,PO Box 75,NULL,Gouverneur,13642,3154088874,3154088874,a17viking@gmail.com,a17viking,Oslo1920,0
+79eba516-11-10,1,10/11/2016 14:18,10/11/2016 14:18,Frank,Lincoln,Frank Lincoln,P.O. Box 106,3074 E. Pinzon St.,Tuscola,61953,Frank Lincoln,Frank Lincoln,NULL,P.O. Box 106,3074 E. Pinzon St.,Tuscola,61953,(217) 253-3897,(217) 840-7013,mrlnlincoln@yahoo.com,violaw,depauw1837,0
+60c35316-11-10,1,10/11/2016 15:39,10/11/2016 15:39,Edward,Hooper,NULL,po box 280,NULL,Whitwell,37397,Edward Hooper,NULL,NULL,po box 280,NULL,Whitwell,37397,none,4232401184,edhooper@charter.net,edhooper@charter.net,1960716,1
+0e9e6f16-11-10,1,10/11/2016 15:43,10/11/2016 15:43,Edward,Hooper,NULL,po box 280,NULL,Whitwell,37397,Edward Hooper,NULL,NULL,po box 280,NULL,Whitwell,37397,none,4232401184,edhooper@charter.net,edhooper@charter.net,1616683,1
+4e6ef116-11-10,1,10/11/2016 17:51,10/11/2016 17:51,Carl,Jeffries,Mr.,510 Valley Circle Rd,NULL,Hagerman,83332,Carl Jeffries,Mr.,NULL,510 Valley Circle Rd,NULL,Hagerman,83332,2085396027,2085396027,CDJEFF@CABLEONE.NET,CDJEFF@CABLEONE.NET,4483260,1
+e82c0e16-12-10,1,10/12/2016 19:41,10/12/2016 19:41,RICHARD,MULLARD,NULL,832 RIEDEL AVE,NULL,Fullerton,92831,RICHARD MULLARD,NULL,NULL,832 RIEDEL AVE,NULL,Fullerton,92831,714 446-9515,714 5194479,mullardrj@att.net,mullardrj@att.net,5853727,1
+4bcbd416-12-10,1,10/12/2016 21:47,10/12/2016 21:47,Zachary,Johnson,NULL,2218 Chelsea Ridge Court,NULL,Katy,77450,Zachary Johnson,NULL,NULL,2218 Chelsea Ridge Court,NULL,Katy,77450,5125179195,5125179195,zpjohnson@gmail.com,zpjohnson@gmail.com,7054850,1
+eb882916-13-10,1,10/13/2016 9:51,10/13/2016 9:59,Larry,Thomas,NULL,1703 Elaine Street,NULL,Scottsboro,35769,Larry Thomas,NULL,NULL,1703 Elaine Street,NULL,Scottsboro,35769,256-259-5491,256-599-8062,thinman@scottsboro.org,thinman6,lgtdptcwtcct,0
+93f9a916-13-10,1,10/13/2016 12:27,10/13/2016 12:27,James,Camper,Peninsula Masonic Lodge #168,10 Birch St. #207,NULL,Redwood City,94062-1444,James Camper,Peninsula Masonic Lodge #168,NULL,10 Birch St. #207,NULL,Redwood City,94062-1444,650-568-4343,650-722-2043,jcamperjr@gmail.com,jcamperjr@gmail.com,4932203,1
+f2744216-13-10,1,10/13/2016 12:38,10/13/2016 12:38,Thomas,White,"Thomas G. White, PM,HA",2959 Fairbanks Ave.,NULL,Simi Valley,93063,Thomas White,"Thomas G. White, PM,HA",NULL,2959 Fairbanks Ave.,NULL,Simi Valley,93063,805 501-1876,same,thomgwhite@roadrunner.com,thomgwhite@roadrunner.com,7568352,1
+1b025e16-13-10,1,10/13/2016 15:19,10/13/2016 15:19,JARED,GROCE,NULL,2413 cr 337,NULL,gainesville,76240,JARED GROCE,NULL,NULL,2413 cr 337,NULL,gainesville,76240,9403900081,NULL,jgroce@mossyoakproperties.com,jgroce@mossyoakproperties.com,3112929,1
+fa2da616-13-10,1,10/13/2016 17:10,10/13/2016 17:10,Patricia,King,Patricia King,PO Box 56,1447 State Route 63 South,Dansville,14437,Patricia King,Patricia King,NULL,PO Box 56,1447 State Route 63 South,Dansville,14437,5853353996,5852980506,Pat@thekings.us,PatKing,Pansy123,0
+fbf64416-13-10,1,10/13/2016 20:47,10/13/2016 20:47,Gene,Ulrich,NULL,8726 126th Ave NE,NULL,Kirkland,98033,Gene Ulrich,NULL,NULL,8726 126th Ave NE,NULL,Kirkland,98033,000-000-0000,NULL,nsnwinc@gmail.com,nsnwinc@gmail.com,7776314,1
+199ba916-13-10,1,10/13/2016 21:04,10/13/2016 21:04,Hubert,Urruttia,NULL,3 Rea Court,NULL,Monroe,10950,Hubert Urruttia,NULL,NULL,3 Rea Court,NULL,Monroe,10950,914-719-5726,NULL,hubert.mason.3rd@gmail.com,hubert.mason.3rd@gmail.com,9485997,1
+9b269a16-14-10,1,10/14/2016 9:28,10/14/2016 9:28,Arjit,Mahal,NULL,954 Florida Grove Rd,NULL,Perth Amboy,8861,Arjit Mahal,NULL,NULL,954 Florida Grove Rd,NULL,Perth Amboy,8861,732-442-1389,NULL,mahalzen@gmail.com,mahalzen@gmail.com,7599292,1
+e10ec516-14-10,1,10/14/2016 11:11,10/14/2016 11:11,Robert,Dorr,NULL,96 Windsor,NULL,Waterbury,6708,Robert Dorr,NULL,NULL,96 Windsor,NULL,Waterbury,6708,203-437-7960,NULL,bobcva4064@aol.com,bobcva4064@aol.com,4939076,1
+f29c5e16-14-10,1,10/14/2016 11:54,10/14/2016 11:54,D'Layne,Rhynsburger,NULL,126 Grandview Ave,NULL,New Braunfels,78130,D'Layne Rhynsburger,NULL,NULL,126 Grandview Ave,NULL,New Braunfels,78130,8306299224,NULL,Bobanddlayne@sbcglobal.net,Bobanddlayne@sbcglobal.net,2233645,1
+d30e2b16-14-10,1,10/14/2016 18:44,10/14/2016 18:44,Harry,Clark,Harry Clark,2664 FM 36 S.,NULL,Caddo Mills,75135,Harry Clark,Harry Clark,NULL,2664 FM 36 S.,NULL,Caddo Mills,75135,817-312-1773,817-312-1773,grandbanks49@gmail.com,hclark,Apr-10,0
+a7173c16-15-10,1,10/15/2016 13:27,10/15/2016 13:27,Richard,Beecher,NULL,7033 SW 42nd Ave,NULL,Amarillo,79109,Richard Beecher,NULL,NULL,7033 SW 42nd Ave,NULL,Amarillo,79109,8062822265,8062822265,Richardbeecher@suddenlink.net,Richardbeecher@suddenlink.net,2264232,1
+2f012616-17-10,1,10/17/2016 12:59,10/17/2016 12:59,Clarence,Vranish,NULL,1912 West Anderson ST,NULL,Evanston,82930,Clarence Vranish,NULL,NULL,1912 West Anderson ST,NULL,Evanston,82930,3074442580,3076772020,clarence@allwest.net,clarence@allwest.net,8076268,1
+24f50316-17-10,1,10/17/2016 15:29,10/17/2016 15:29,JOHN,DEGNAN,JOHN DEGNAN,10100 BURNT STORE RD,UNIT#24,PUNTA GORDA,33950,JOHN DEGNAN,JOHN DEGNAN,NULL,10100 BURNT STORE RD,UNIT#24,PUNTA GORDA,33950,941-833-0263,NULL,jdegnanqc26@embarqmail.com,jdegnanqc26,stretch1a1,0
+d99e5c16-17-10,1,10/17/2016 15:53,10/17/2016 15:53,Dennis,Anderson,NULL,921 Poplar,PO Box 206,T or C,87901,Dennis Anderson,NULL,NULL,405 N Date Suite 1,PO Box 206,T or C,87901,5757407533,5757407533,ddfromtc@yahoo.com,ddfromtc,Banan@22,0
+f3776c16-17-10,1,10/17/2016 16:59,10/17/2016 16:59,James,Beimly,NULL,1041 Furnas Road,NULL,Vandalia,45377-9791,James Beimly,NULL,NULL,1041 Furnas Road,NULL,Vandalia,45377-9791,937.698.3624,937.902.2286,jbeimly@woh.rr.com,jbeimly,Weiser,0
+ed074816-17-10,1,10/17/2016 17:14,10/17/2016 17:14,James,Beimly,NULL,1041 Furnas Road,NULL,Vandalia,45377-9791,James Beimly,NULL,NULL,1041 Furnas Road,NULL,Vandalia,45377-9791,937.698.3624,937.902.2286,jbeimly@woh.rr.com,jbeimly@woh.rr.com,9947388,1
+521fac16-17-10,1,10/17/2016 18:32,10/17/2016 18:32,James,Brown,NULL,PO Box 2089,NULL,Red Lodge,59068,James Brown,NULL,NULL,PO Box 2089,NULL,Red Lodge,59068,4024300410,4024300410,jbrown2@unl.edu,Red Lodge Jim,Bristen1006,0
+56239616-19-10,1,10/19/2016 14:23,10/19/2016 14:23,Brad,Fowler,NULL,506 SE Brentwood Drive,NULL,Lee's Summit,64063,Brad Fowler,NULL,NULL,506 SE Brentwood Drive,NULL,Lee's Summit,64063,8168093992,NULL,Fbradfowler@gmail.com,Fbradfowler,446Ivanhoe,0
+bead9f16-20-10,1,10/20/2016 12:41,10/20/2016 12:41,J ,Humphrey,NULL,44 Russell Rd,NULL,Lonedell,63060,J Humphrey,NULL,NULL,44 Russell Rd,NULL,Lonedell,63060,636-629-1151,314-663-0663,jhumphreyr@gmail.com,jhumphreyr@gmail.com,8680230,1
+21ceff16-20-10,1,10/20/2016 21:49,10/20/2016 21:49,Robert,Bianchi,NULL,4 Rainbow Dr,NULL,Nashua,3062,Robert Bianchi,NULL,NULL,4 Rainbow Dr,NULL,Nashua,3062,6038970788,NULL,rbianchi1@comcast.net,rbianchi1@comcast.net,9251582,1
+c9f14516-21-10,1,10/21/2016 16:05,10/21/2016 16:05,Joel,Berg,Dr. Joel Berg,3054 Canal Walk Road,NULL,Henderson,89052,Joel Berg,Dr. Joel Berg,NULL,3054 Canal Walk Road,NULL,Henderson,89052,702-629-5401,NULL,jbergx@cox.net,jbergx,prince,0
+d9af2c16-22-10,1,10/22/2016 23:05,10/22/2016 23:05,Leon,Rackley,NULL,246 Westover Dr,Apt 150,Hattiesburg,39402,Leon Rackley,NULL,NULL,246 Westover Dr,Apt 150,Hattiesburg,39402,601-599-1059,601-551-3139,ltrackley@msn.com,ltrackley,marianna7,0
+9a941716-23-10,1,10/23/2016 9:28,10/23/2016 9:28,Greg,Houk,NULL,5379 Bear Creek Pass,NULL,Auburn,46706,Greg Houk,NULL,NULL,5379 Bear Creek Pass,NULL,Auburn,46706,2603994876,2609203039,ghouk@hotmail.com,ghouk777,GH54404685f%,0
+89fc4416-24-10,1,10/24/2016 13:24,10/24/2016 13:24,Charles,Carmichael,NULL,3011 Solstice Lane,NULL,Annapolis,21401,Charles Carmichael,NULL,NULL,3011 Solstice Lane,NULL,Annapolis,21401,4109569618,4433884900,c.carmichael1@verizon.net,c.carmichael1@verizon.net,3781639,1
+530c9516-24-10,1,10/24/2016 19:00,10/24/2016 19:00,Franklin,Boner,Center No. 86,10866 HButler Road,NULL,Newark,32055,Franklin C. Boner,Center 86,NULL,46 n 4th Street,NULL,Newark,43055-5025,740-345-0828,740-398-3377,sricfofusa@windstream.net,fcboner,28chevy,0
+9297ca16-25-10,1,10/25/2016 0:24,10/25/2016 0:24,Shawn,Niemann,NULL,N3427 County Road AB,NULL,Luxemburg,54217,Shawn Niemann,NULL,NULL,N3427 County Road AB,NULL,Luxemburg,54217,9203664685,9203664685,niemann04@gmail.com,Niemann04,Mallard1,0
+7c2f2e16-25-10,1,10/25/2016 7:39,10/25/2016 7:39,Chris,Morgan,NULL,101 Beechmont St,NULL,Dearborn,48124,Chris Morgan,NULL,NULL,101 Beechmont St,NULL,Dearborn,48124,7168124156,7168124156,Chrismorgan583@hotmail.com,Chrismorgan583@hotmail.com,7856632,1
+5ac7a816-25-10,1,10/25/2016 18:16,10/25/2016 18:16,Mark,Anderson,Minnesota Masonic Heritage Center,11411 Masonic Home Drive,NULL,Bloomington,55437,Mark Anderson,Minnesota Masonic Heritage Center,NULL,11411 Masonic Home Drive,NULL,Bloomington,55437,9529486503,NULL,mark.anderson@mnmasonic.org,MNHeritage,LaddNelson,0
+7457cc16-25-10,1,10/25/2016 20:29,10/25/2016 20:29,Robert,Budlow,NULL,5320 Wind Point Road,NULL,Racine,53402,Robert Budlow,NULL,NULL,5320 Wind Point Road,NULL,Racine,53402,262-639-1341,262-498-5236,bob@budlow.com,bob@budlow.com,3525074,1
+3b404516-26-10,1,10/26/2016 9:07,10/26/2016 9:07,Wayne,Cornelius,Wayne Cornelius,21590 Hwy 5,NULL,Lynn,35575,Wayne Cornelius,NULL,NULL,21590 Hwy 5,NULL,Lynn,35575,2058935370,2053023810,waynestools@yahoo.com,Wayne Cornelius ,66fairlane,0
+bd736316-26-10,1,10/26/2016 17:32,10/26/2016 17:32,Vance,Pascal,NULL,227 Montpelier Drive,NULL,Winston-Salem,27103,Vance Pascal,NULL,NULL,227 Montpelier Drive,NULL,Winston-Salem,27103,3367653331,NULL,vpascal227@aol.com,vpascal227@aol.com,4858497,1
+2906f816-26-10,1,10/26/2016 23:31,10/26/2016 23:31,Gary,Fehl,NULL,3471 Yorkshire Rd,NULL,Green Bay,54311,Gary Fehl,NULL,NULL,3471 Yorkshire Rd,NULL,Green Bay,54311,9204069192,NULL,garyfehl@gmail.com,gfehl945,Gf@42793345,0
+7ac89d16-28-10,1,10/28/2016 9:31,10/28/2016 9:31,Edward,King,Grand Lodge of Maine,PO Box 430,NULL,Holden,04429-0430,Edward L. King,Acadia Hearing Center,NULL,18 High Street,NULL,Ellsworth,04605-1727,(207) 843-1086,NULL,grandlibrarian@mainemason.org,edking,peanut1,0
+eb697916-28-10,1,10/28/2016 11:09,10/28/2016 11:09,Gerald,McNeil,Gerald McNeil,5317 Delia Ter,NULL,East Stroudsburg,18301,Gerald McNeil,Gerald McNeil,NULL,5317 Delia Ter,NULL,East Stroudsburg,18301,5704208936,5708567397,whgjm@ptd.net,ghm137z,qpakt5c,0
+d2bf8b16-28-10,1,10/28/2016 11:36,10/28/2016 11:36,John,Karnes,NULL,P O Box 189,NULL,Cape Girardeau,63702,John Karnes,NULL,NULL,P O Box 189,NULL,Cape Girardeau,63702,573-334-6203,573-837-2840,jmkarnes@gmail.com,jmkarnes,arcadia12,0
+8c02af16-29-10,1,10/29/2016 16:14,10/29/2016 16:14,Don,Weiner,Don Weiner,156 Hilltop DR,NULL,Churchville,18966,Don Weiner,Don Weiner,NULL,156 Hilltop DR,NULL,Churchville,18966,2153640812,2156306950,dweiner@donweinerassoc.com,dweiner,42Clyde42,1
+fecdbc16-01-11,1,11/1/2016 15:33,11/1/2016 15:33,Bill,Luth,A-A-Parrots & Toys,10450 Co. Rd. 2450,NULL,Terrell,75160-8603,Bill Luth,A-A-Parrots & Toys,NULL,10450 Co. Rd. 2450,NULL,Terrell,75160-8603,972-524-3184,-,poetryamazons@msn.com,LUTH3R295,295luther,0
+1a509216-05-11,1,11/5/2016 11:43,11/5/2016 11:43,Gary,Gresh,Gary Gresh,1061 Crest Drive,NULL,Crescent,15046,Gary Gresh,Gary Gresh,NULL,1061 Crest Drive,NULL,Crescent,15046,724-457-8691,NULL,ggresh523@gmail.com,ggresh523@gmail.com,7954916,1
+ada81116-07-11,1,11/7/2016 21:20,11/7/2016 21:20,Jesse,Ruch,NULL,105 Mill Drive,NULL,Mastic Beach,11951,Jesse Ruch,NULL,NULL,105 Mill Drive,NULL,Mastic Beach,11951,6095017694,6095017694,JSRUCH@GMAIL.COM,JSRUCH@GMAIL.COM,4593427,1
+4b754616-08-11,1,11/8/2016 17:51,11/8/2016 17:51,Jeff,Honeycutt ,NULL,218 Lewis dr,NULL,Wellford,29385,Jeff Honeycutt ,NULL,NULL,218 Lewis dr,NULL,Wellford,29385,8644399323,8648090866,fatbaby@bellsouth.net,fatbaby201 ,peytonh1,0
+ce360816-10-11,1,11/10/2016 10:15,11/10/2016 10:15,Larry,Senderhauf,LMS 33 LLC,12087 E. Sand Hills Rd,NULL,Scottsdale,85255,Larry Senderhauf,LMS 33 LLC,NULL,12087 E. Sand Hills Rd,NULL,Scottsdale,85255,480-361-8633,NULL,Senderhauf33@aol.com,Larry M. Senderhauf,Lion33!,0
+1d6bed16-11-11,1,11/11/2016 1:26,11/11/2016 12:24,Robert,Potts,Zelmar Grotto,1237 E Weisgarber Rd # 52713,NULL,Knoxville,37950,Robert Potts,Zelmar Grotto,NULL,1237 E Weisgarber Rd # 52713,NULL,Knoxville,37950,423-304-1930,423-304-1930,ZelmarGrotto@GMail.com,ZelmarGrotto,123456,0
+3c349e16-11-11,1,11/11/2016 23:01,11/11/2016 23:09,Jerry Norman ,Stuart,NULL,24 Pineridge Rd.,NULL,Purvis ,39475,Jerry Norman Stuart,NULL,NULL,24 Pineridge Rd.,NULL,Purvis ,39475,601-551-2016,NULL,Normanstuart624@yahoo.com,Norman,Sanford443,0
+4bc1d516-12-11,1,11/12/2016 9:08,11/12/2016 9:08,Todd,Tubby,NULL,8 Mohican Place,NULL,Lake Hiawatha,7034,Todd Tubby,NULL,NULL,8 Mohican place,NULL,Lake Hiawatha,7034,9733348343,8623253116,ttubby4892@aol.com,trtubby7432,Lenin#1924,0
+e1025916-17-11,1,11/17/2016 22:09,11/17/2016 22:09,Glenn,Cantor,Ocean Lodge #89,8 Weasel Creek Court,NULL,Howell,7731,Glenn Cantor,Ocean Lodge #89,NULL,8 Weasel Creek Court,NULL,Howell,7731,908-596-0805,908-596-0805,GlennCan@optonline.net,GlennCan,Melyssa518,0
+02faea16-18-11,1,11/18/2016 10:12,11/18/2016 10:12,Jim,Stoker,Charles Baskerville #281,P. O. Box 882,NULL,Fayette,35555,Charles Baskerville #281,NULL,NULL,P. O. Box 882,NULL,Fayette,35555,2059326639,NULL,fystoker@aol.com,fystoker,c/b-281,0
+ccdc5b16-20-11,1,11/20/2016 2:12,11/20/2016 2:12,Quinn,Harry,NULL,9334 Steeple Court,NULL,Laurel,20723,Quinn Harry,NULL,NULL,9334 Steeple Court,NULL,Laurel,20723,301-776-3971,240-338-9230,quinnharry@verizon.net,qharry,eskimo01,0
+b2d40216-21-11,1,11/21/2016 15:33,11/21/2016 15:33,Robert,Hagon,NULL,169 Woolf Road,NULL,Milford,8848,Robert Hagon,NULL,NULL,169 Woolf Road,NULL,Milford,8848,9082464015,9082464015,rfhagon169@gmail.com,rfhagon1,Host#6,0
+f3476016-21-11,1,11/21/2016 17:03,11/21/2016 17:03,Maurice,Little,Maurice W Little,346 Alder Road,NULL,Dover,19904,Maurice Little,Maurice W Little,NULL,346 Alder Road,NULL,Dover,19904,302-674-2416,302-242-0896,mwlelec@fast.net,mwlelec@fast.net,2877835,1
+f34c3416-22-11,1,11/22/2016 13:32,11/22/2016 13:32,Chester,King,NULL,12024 Talitha Lane,NULL,Orlando,32827,Chester King,NULL,NULL,12024 Talitha Lane,NULL,Orlando,32827,407-405-3268,407-405-3268,kingca1@excite.com,kingca1,cAk11951,0
+fe265016-22-11,1,11/22/2016 18:21,11/22/2016 18:21,cody,presley,NULL,12676 NS 3665,NULL,wewoka,74884,cody presley,NULL,NULL,12676 NS 3665,NULL,wewoka,74884,405-683-9427,405-683-9427,presleycody@yahoo.com,presley cody,mistypoodle,0
+e71e9b16-23-11,1,11/23/2016 8:52,11/23/2016 8:52,Harry Joe,Brooks,NULL,405 Greear Place,NULL,Herndon,20170,Harry Joe Brooks,NULL,NULL,c/o ManorCare,1070 Stouffer Ave,Chambersburg,17201,7039095532,7039095532,brookspjbe@aol.com,brookspjbe@aol.com,7760367,1
+663ce916-23-11,1,11/23/2016 8:55,11/23/2016 8:55,Philip,Brooks,NULL,405 Greear Place,NULL,Herndon,20170,Philip B Brooks,NULL,NULL,405 Greear Place,NULL,Herndon,20170,7039095532,7039095532,brookspjbe@aol.com,brookspjbe@aol.com,9057602,1
+f5dca916-23-11,1,11/23/2016 9:21,11/23/2016 9:21,Richard,Lowrey,Fellowship Lodge #345,P.O. Box 1235,NULL,Joplin,64802,Richard Lowrey,Fellowship Lodge #345,NULL,P.O. Box 1235,NULL,Joplin,64802,417-206-7695,NULL,fellowshiplodge345@gmail.com,fellowshiplodge345@gmail.com,7767278,1
+f1663016-23-11,1,11/23/2016 10:58,11/23/2016 10:58,James,Murphy,Evolution for Success,10840 Bedfordtown Drive,NULL,Raleigh,27614,James Murphy,Evolution for Success,NULL,10840 Bedfordtown Drive,NULL,Raleigh,27614,9197920085,9197457569,james@evolutionforsuccess.com,evolutioncoach,Love2emme,0
diff --git a/perl/cw_dump.pl b/perl/cw_dump.pl new file mode 100644 index 0000000..af97132 --- /dev/null +++ b/perl/cw_dump.pl @@ -0,0 +1,109 @@ +#!/usr/bin/perl + +use Text::CSV; +use Data::Dumper; + +# cw_products +# 0 id 1 sku 2 product_name + +# cw_skus +# 0 sku_id 1 sku 2 product_id + +# cw_orders +# 0 order_id 1 date 2 status 3 customer_id + +# cw_order_skus +# 0 id 1 order_id 2 sku_id + +# cw_customers +# 0 customer_id 1 customer_type 2 date_added 3 date_modified 4 first_name 5 last_name +# 6 7 8 9 10 = address + +@products = load_csv("cw_products.csv"); +@skus = load_csv("cw_skus.csv"); +@orders = load_csv("cw_orders.csv"); +@order_skus = load_csv("cw_order_skus.csv"); +@customers = load_csv("cw_customers.csv"); + +$product_name_lookup = {}; +for $product (@products) { + $sku_name = $product->[1]; + $product_name = $product->[2]; + $product_name_lookup->{ $sku_name } = $product_name; +} + +$customer_name_lookup = {}; +for $customer (@customers) { + $id = $customer->[0]; + $name = $customer->[5] . " " . $customer->[4]; + $customer_name_lookup->{ $id } = $name; +} + +$customer_lookup = {}; +for $customer (@customers) { + $id = $customer->[0]; + $customer_name_lookup->{ $id } = $customer; +} + +$sku_id_lookup = {}; +for $sku (@skus) { + $sku_id = $sku->[0]; + $sku_name = $sku->[1]; + $product_name = $product_name_lookup->{ $sku_name }; + $sku_id_lookup->{ $sku_id } = $product_name; +} + +$order_customer_lookup = {}; +for $order (@orders) { + $order_id = $order->[0]; + $customer_id = $order->[3]; + $customer_name = $customer_name_lookup->{ $customer_id }; + $order_customer_lookup->{ $order_id } = lc( $customer_name ); +} + +$order_sku_lookup = {}; +for $order_sku (@order_skus) { + $order_id = $order_sku->[1]; + $sku_id = $order_sku->[2]; + $sku_name = $sku_id_lookup->{ $sku_id }; + $customer_name = $order_customer_lookup->{ $order_id }; + if ( not exists($order_sku_lookup->{ $customer_name })) { + $order_sku_lookup->{ $customer_name } = {}; + } + $order_sku_lookup->{ $customer_name }->{ $sku_name } = 1; + if ( $customer_name =~ /dieter/ ) { + print $sku_name . "\n"; + } +} + +# print Dumper( $order_sku_lookup ); + + + + + + + + + + + + + + + +sub load_csv () { + my $filename = shift; + my @rows; + my $csv = Text::CSV->new ( { binary => 1 } ) # should set binary attribute. + or die "Cannot use CSV: ".Text::CSV->error_diag (); + + open my $fh, "<:encoding(utf8)", $filename or die "$filename: $!"; + while ( my $row = $csv->getline( $fh ) ) { + push @rows, $row; + } + $csv->eof or $csv->error_diag(); + close $fh; + return @rows; +} + diff --git a/perl/cw_order_skus.csv b/perl/cw_order_skus.csv new file mode 100644 index 0000000..c94735c --- /dev/null +++ b/perl/cw_order_skus.csv @@ -0,0 +1,5140 @@ +"68","1302151509-77a4","20","2","55","110","0",NULL,"20",,"0"
+"69","1302152001-2c8d","20","1","55","55","0",NULL,"20",,"0"
+"66","1302142206-e760","10","40","0.5","20","0",NULL,"10",,"0"
+"67","1302151144-fef1","20","1","55","55","0",NULL,"20",,"0"
+"65","1302142127-c614","1","1","13.5","13.5","0",NULL,"1",,"0"
+"8","1302021036-38bd","10","1","0.5","0.5","0",NULL,"10",,"0"
+"12","1302021731-1b20","15","1","3.5","2","0",NULL,"15",,"1.5"
+"11","1302021054-1b20","8","1","0.1","0.1","0",NULL,"8",,"0"
+"64","1302141822-6a06","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"63","1302141822-6a06","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"62","1302141822-6a06","18","1","3.5","1.25","0",NULL,"18",,"2.25"
+"61","1302141822-6a06","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"60","1302141517-75b0","1","2","13.5","25","0",NULL,"1",,"1"
+"46","1302121438-a62d","1","3","13.5","37.5","0",NULL,"1",,"1"
+"47","1302121438-a62d","11","2","30","36","0",NULL,"11",,"12"
+"48","1302121438-a62d","8","150","0.1","15","0",NULL,"8",,"0"
+"49","1302121438-a62d","6","150","0.1","15","0",NULL,"6",,"0"
+"45","1302121438-a62d","14","2","25","30","0",NULL,"14",,"10"
+"44","1302121438-a62d","7","3","13.5","37.5","0",NULL,"7",,"1"
+"70","1302161358-ad08","20","1","55","55","0",NULL,"20",,"0"
+"71","1302161358-ad08","18","1","3.5","1","0",NULL,"18",,"2.5"
+"72","1302161358-ad08","17","1","3.5","1","0",NULL,"17",,"2.5"
+"73","1302161358-ad08","19","1","3.5","1","0",NULL,"19",,"2.5"
+"74","1302161358-ad08","16","1","3.5","1","0",NULL,"16",,"2.5"
+"75","1302161358-ad08","15","1","3.5","1","0",NULL,"15",,"2.5"
+"78","1302171506-c945","1","1","13.5","13.5","0",NULL,"1",,"0"
+"77","1302162226-4106","2","1","12","12","0",NULL,"2",,"0"
+"93","1302200109-36eb","11","2","30","36","0",NULL,"11",,"12"
+"92","1302200109-36eb","8","100","0.1","10","0",NULL,"8",,"0"
+"91","1302200109-36eb","14","2","25","30","0",NULL,"14",,"10"
+"90","1302200058-f1e7","21","1","110","110","0",NULL,"21",,"0"
+"99","1302201359-7a97","1","1","13.5","13.5","0",NULL,"1",,"0"
+"84","1302180731-8d6c","18","1","3.5","1","0",NULL,"18",,"2.5"
+"85","1302180731-8d6c","17","1","3.5","1","0",NULL,"17",,"2.5"
+"86","1302180731-8d6c","15","1","3.5","1","0",NULL,"15",,"2.5"
+"87","1302180731-8d6c","19","1","3.5","1","0",NULL,"19",,"2.5"
+"88","1302180731-8d6c","16","1","3.5","1","0",NULL,"16",,"2.5"
+"94","1302200109-36eb","7","2","13.5","25","0",NULL,"7",,"1"
+"95","1302200109-36eb","1","2","13.5","25","0",NULL,"1",,"1"
+"96","1302200904-327c","20","1","55","55","0",NULL,"20",,"0"
+"97","1302200952-8bb5","21","1","110","110","0",NULL,"21",,"0"
+"98","1302201216-8b1a","21","1","110","110","0",NULL,"21",,"0"
+"111","1302211910-a455","20","1","55","55","0",NULL,"20",,"0"
+"110","1302211528-1ba8","1","2","13.5","25","0",NULL,"1",,"1"
+"109","1302211528-1ba8","7","2","13.5","25","0",NULL,"7",,"1"
+"108","1302210835-a436","14","1","25","15","0",NULL,"14",,"10"
+"107","1302201809-46c0","20","1","55","55","0",NULL,"20",,"0"
+"106","1302201809-46c0","2","1","12","12","0",NULL,"2",,"0"
+"112","1302220946-ea58","1","2","13.5","25","0",NULL,"1",,"1"
+"113","1302221009-7de2","7","1","13.5","13.5","0",NULL,"7",,"0"
+"114","1302221009-7de2","1","1","13.5","13.5","0",NULL,"1",,"0"
+"115","1302221112-919c","18","1","3.5","1","0",NULL,"18",,"2.5"
+"116","1302221112-919c","17","1","3.5","1","0",NULL,"17",,"2.5"
+"117","1302221112-919c","15","1","3.5","1","0",NULL,"15",,"2.5"
+"118","1302221112-919c","19","1","3.5","1","0",NULL,"19",,"2.5"
+"119","1302221112-919c","16","1","3.5","1","0",NULL,"16",,"2.5"
+"120","1302221126-6cd6","21","1","110","110","0",NULL,"21",,"0"
+"121","1302231822-1cba","21","1","110","110","0",NULL,"21",,"0"
+"150","1302281133-c7e0","19","5","3.5","10","0",NULL,"19",,"1.5"
+"151","1302281133-c7e0","7","1","13.5","13.5","0",NULL,"7",,"0"
+"138","1302251040-fcfa","2","1","12","12","0",NULL,"2",,"0"
+"139","1302251201-4030","20","1","55","55","0",NULL,"20",,"0"
+"140","1302251333-9e32","20","1","55","55","0",NULL,"20",,"0"
+"149","1302281133-c7e0","15","1","3.5","2","0",NULL,"15",,"1.5"
+"148","1302281133-c7e0","17","1","3.5","2","0",NULL,"17",,"1.5"
+"130","1302241949-00c7","18","10","3.5","20","0",NULL,"18",,"1.5"
+"131","1302241949-00c7","1","1","13.5","13.5","0",NULL,"1",,"0"
+"132","1302241949-00c7","14","1","25","15","0",NULL,"14",,"10"
+"153","1302281133-c7e0","10","50","0.5","25","0",NULL,"10",,"0"
+"152","1302281133-c7e0","1","1","13.5","13.5","0",NULL,"1",,"0"
+"147","1302281133-c7e0","18","2","3.5","4","0",NULL,"18",,"1.5"
+"146","1302281133-c7e0","16","1","3.5","2","0",NULL,"16",,"1.5"
+"154","1302281133-c7e0","8","50","0.1","5","0",NULL,"8",,"0"
+"155","1302281133-c7e0","6","50","0.1","5","0",NULL,"6",,"0"
+"156","1302281133-c7e0","11","1","30","18","0",NULL,"11",,"12"
+"157","1302281822-0c84","2","1","12","12","0",NULL,"2",,"0"
+"158","1303010946-5c18","2","1","12","12","0",NULL,"2",,"0"
+"159","1303010946-5c18","14","1","25","15","0",NULL,"14",,"10"
+"160","1303010946-5c18","1","1","13.5","13.5","0",NULL,"1",,"0"
+"161","1303010946-5c18","17","1","3.5","1","0",NULL,"17",,"2.5"
+"162","1303010946-5c18","18","1","3.5","1","0",NULL,"18",,"2.5"
+"163","1303010946-5c18","19","1","3.5","1","0",NULL,"19",,"2.5"
+"164","1303010946-5c18","16","1","3.5","1","0",NULL,"16",,"2.5"
+"165","1303011740-cd04","20","1","55","55","0",NULL,"20",,"0"
+"166","1303012301-c8fd","1","3","13.5","37.5","0",NULL,"1",,"1"
+"167","1303032246-0c44","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"168","1303032246-0c44","2","1","12","12","0",NULL,"2",,"0"
+"169","1303032246-0c44","21","1","110","110","0",NULL,"21",,"0"
+"172","1303052101-777b","2","1","12","12","0",NULL,"2",,"0"
+"173","1303061804-9ef1","19","1","3.5","1","0",NULL,"19",,"2.5"
+"174","1303061804-9ef1","16","1","3.5","1","0",NULL,"16",,"2.5"
+"175","1303061804-9ef1","18","1","3.5","1","0",NULL,"18",,"2.5"
+"176","1303061804-9ef1","17","1","3.5","1","0",NULL,"17",,"2.5"
+"177","1303061804-9ef1","15","1","3.5","1","0",NULL,"15",,"2.5"
+"178","1303061804-9ef1","2","1","12","12","0",NULL,"2",,"0"
+"179","1303061804-9ef1","1","1","13.5","13.5","0",NULL,"1",,"0"
+"181","1303072036-cae2","14","1","25","15","0",NULL,"14",,"10"
+"182","1303072036-cae2","8","20","0.1","2","0",NULL,"8",,"0"
+"183","1303072036-cae2","11","1","30","18","0",NULL,"11",,"12"
+"184","1303072036-cae2","1","1","13.5","13.5","0",NULL,"1",,"0"
+"196","1303171349-4d8d","14","1","25","15","0",NULL,"14",,"10"
+"193","1303122222-b5f6","1","2","13.5","25","0",NULL,"1",,"1"
+"192","1303121428-0167","8","60","0.1","6","0",NULL,"8",,"0"
+"191","1303121428-0167","10","15","0.5","7.5","0",NULL,"10",,"0"
+"190","1303121428-0167","7","1","13.5","13.5","0",NULL,"7",,"0"
+"195","1303150917-2eca","2","1","12","12","0",NULL,"2",,"0"
+"197","1303171349-4d8d","19","5","3.5","10","0",NULL,"19",,"1.5"
+"198","1303171349-4d8d","8","25","0.1","2.5","0",NULL,"8",,"0"
+"199","1303171349-4d8d","17","5","3.5","10","0",NULL,"17",,"1.5"
+"200","1303171349-4d8d","6","25","0.1","2.5","0",NULL,"6",,"0"
+"201","1303171349-4d8d","1","1","13.5","13.5","0",NULL,"1",,"0"
+"202","1303171955-53cb","1","1","13.5","13.5","0",NULL,"1",,"0"
+"203","1303181043-78fd","16","1","3.5","1","0",NULL,"16",,"2.5"
+"204","1303181043-78fd","6","10","0.1","1","0",NULL,"6",,"0"
+"205","1303181043-78fd","15","1","3.5","1","0",NULL,"15",,"2.5"
+"206","1303181043-78fd","19","1","3.5","1","0",NULL,"19",,"2.5"
+"207","1303181043-78fd","17","1","3.5","1","0",NULL,"17",,"2.5"
+"208","1303181043-78fd","20","1","55","55","0",NULL,"20",,"0"
+"209","1303191253-26a3","20","1","55","55","0",NULL,"20",,"0"
+"218","1303222004-24f7","20","1","55","55","0",NULL,"20",,"0"
+"211","1303202315-8196","21","1","110","110","0",NULL,"21",,"0"
+"212","1303220827-53a5","2","1","12","12","0",NULL,"2",,"0"
+"213","1303221206-9829","15","1","3.5","1","0",NULL,"15",,"2.5"
+"214","1303221206-9829","19","1","3.5","1","0",NULL,"19",,"2.5"
+"215","1303221206-9829","16","1","3.5","1","0",NULL,"16",,"2.5"
+"216","1303221206-9829","18","1","3.5","1","0",NULL,"18",,"2.5"
+"217","1303221206-9829","17","1","3.5","1","0",NULL,"17",,"2.5"
+"219","1303241057-2c38","1","1","13.5","13.5","0",NULL,"1",,"0"
+"220","1303241057-2c38","21","1","110","110","0",NULL,"21",,"0"
+"221","1303241057-2c38","19","1","3.5","1","0",NULL,"19",,"2.5"
+"222","1303241057-2c38","15","1","3.5","1","0",NULL,"15",,"2.5"
+"223","1303241057-2c38","17","1","3.5","1","0",NULL,"17",,"2.5"
+"224","1303241057-2c38","16","1","3.5","1","0",NULL,"16",,"2.5"
+"225","1303241057-2c38","18","1","3.5","1","0",NULL,"18",,"2.5"
+"226","1303241057-2c38","2","1","12","12","0",NULL,"2",,"0"
+"243","1303251725-05c4","1","2","13.5","25","0",NULL,"1",,"1"
+"240","1303251552-d6dc","1","2","13.5","25","0",NULL,"1",,"1"
+"241","1303251725-05c4","2","1","12","12","0",NULL,"2",,"0"
+"242","1303251725-05c4","10","10","0.5","5","0",NULL,"10",,"0"
+"238","1303251059-8e1e","2","1","12","12","0",NULL,"2",,"0"
+"233","1303250836-a249","17","1","3.5","1","0",NULL,"17",,"2.5"
+"234","1303250836-a249","15","1","3.5","1","0",NULL,"15",,"2.5"
+"235","1303250836-a249","19","1","3.5","1","0",NULL,"19",,"2.5"
+"236","1303250836-a249","16","1","3.5","1","0",NULL,"16",,"2.5"
+"237","1303250836-a249","18","1","3.5","1","0",NULL,"18",,"2.5"
+"244","1303261217-2012","20","1","55","55","0",NULL,"20",,"0"
+"245","1303261217-2012","21","1","110","110","0",NULL,"21",,"0"
+"246","1303271108-509c","20","1","55","55","0",NULL,"20",,"0"
+"247","1303281229-27f7","16","1","3.5","1","0",NULL,"16",,"2.5"
+"248","1303281229-27f7","18","1","3.5","1","0",NULL,"18",,"2.5"
+"249","1303281229-27f7","19","1","3.5","1","0",NULL,"19",,"2.5"
+"250","1303281229-27f7","17","1","3.5","1","0",NULL,"17",,"2.5"
+"251","1303281229-27f7","15","1","3.5","1","0",NULL,"15",,"2.5"
+"252","1303281229-27f7","2","1","12","12","0",NULL,"2",,"0"
+"253","1303281518-5cfd","18","1","3.5","1","0",NULL,"18",,"2.5"
+"254","1303281518-5cfd","8","1","0.1","0.1","0",NULL,"8",,"0"
+"255","1303281518-5cfd","19","1","3.5","1","0",NULL,"19",,"2.5"
+"256","1303281518-5cfd","9","1","0.6","0.6","0",NULL,"9",,"0"
+"257","1303281518-5cfd","10","1","0.5","0.5","0",NULL,"10",,"0"
+"258","1303281518-5cfd","15","1","3.5","1","0",NULL,"15",,"2.5"
+"259","1303281518-5cfd","6","1","0.1","0.1","0",NULL,"6",,"0"
+"260","1303281518-5cfd","17","1","3.5","1","0",NULL,"17",,"2.5"
+"261","1303281518-5cfd","1","3","13.5","37.5","0",NULL,"1",,"1"
+"262","1303291929-c8cf","2","1","12","12","0",NULL,"2",,"0"
+"263","1303311240-0c91","2","1","12","12","0",NULL,"2",,"0"
+"264","1303311620-0284","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"265","1303311620-0284","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"266","1303311620-0284","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"267","1303311825-1e6a","2","1","12","12","0",NULL,"2",,"0"
+"268","1303312350-344e","2","1","12","12","0",NULL,"2",,"0"
+"276","1304022320-36ed","2","1","12","12","0",NULL,"2",,"0"
+"270","1304011236-f868","7","2","13.5","25","0",NULL,"7",,"1"
+"271","1304011725-75f0","8","1","0.1","0.1","0",NULL,"8",,"0"
+"272","1304011725-75f0","7","1","13.5","13.5","0",NULL,"7",,"0"
+"273","1304011725-75f0","1","1","13.5","13.5","0",NULL,"1",,"0"
+"274","1304011725-75f0","14","1","25","15","0",NULL,"14",,"10"
+"275","1304012137-fb72","2","1","12","12","0",NULL,"2",,"0"
+"277","1304051312-93a6","19","1","3.5","1","0",NULL,"19",,"2.5"
+"278","1304051312-93a6","16","1","3.5","1","0",NULL,"16",,"2.5"
+"279","1304051312-93a6","18","1","3.5","1","0",NULL,"18",,"2.5"
+"280","1304051312-93a6","17","1","3.5","1","0",NULL,"17",,"2.5"
+"281","1304051312-93a6","15","1","3.5","1","0",NULL,"15",,"2.5"
+"282","1304051312-93a6","20","1","55","55","0",NULL,"20",,"0"
+"283","1304051335-ee97","20","1","55","55","0",NULL,"20",,"0"
+"284","1304051335-ee97","21","1","110","110","0",NULL,"21",,"0"
+"287","1304091329-953c","2","1","12","12","0",NULL,"2",,"0"
+"286","1304071344-fa80","20","1","55","55","0",NULL,"20",,"0"
+"288","1304091417-7d0c","20","1","55","55","0",NULL,"20",,"0"
+"289","1304102232-0bc9","21","1","110","110","0",NULL,"21",,"0"
+"290","1304111432-d01c","20","1","55","55","0",NULL,"20",,"0"
+"291","1304132157-cb36","20","1","55","55","0",NULL,"20",,"0"
+"292","1304141746-e040","7","1","13.5","13.5","0",NULL,"7",,"0"
+"293","1304141746-e040","20","1","55","55","0",NULL,"20",,"0"
+"294","1304151837-0736","2","1","12","12","0",NULL,"2",,"0"
+"295","1304161203-b302","21","1","110","110","0",NULL,"21",,"0"
+"296","1304171321-de06","20","1","55","55","0",NULL,"20",,"0"
+"297","1304171356-a462","7","1","13.5","13.5","0",NULL,"7",,"0"
+"298","1304171356-a462","8","100","0.1","10","0",NULL,"8",,"0"
+"299","1304171356-a462","1","2","13.5","25","0",NULL,"1",,"1"
+"300","1304181324-53ce","2","1","12","12","0",NULL,"2",,"0"
+"301","1304181324-53ce","20","1","55","55","0",NULL,"20",,"0"
+"302","1304181551-6d96","17","1","3.5","2","0",NULL,"17",,"1.5"
+"303","1304181551-6d96","1","1","13.5","13.5","0",NULL,"1",,"0"
+"304","1304182122-01b2","2","1","12","12","0",NULL,"2",,"0"
+"305","1304182139-01b2","18","1","3.5","1","0",NULL,"18",,"2.5"
+"306","1304182139-01b2","17","1","3.5","1","0",NULL,"17",,"2.5"
+"307","1304182139-01b2","15","1","3.5","1","0",NULL,"15",,"2.5"
+"308","1304182139-01b2","19","1","3.5","1","0",NULL,"19",,"2.5"
+"309","1304182139-01b2","16","1","3.5","1","0",NULL,"16",,"2.5"
+"310","1304191638-d2d2","2","1","12","12","0",NULL,"2",,"0"
+"311","1304201008-991d","21","1","110","110","0",NULL,"21",,"0"
+"312","1304201107-b800","2","1","12","12","0",NULL,"2",,"0"
+"313","1304211020-c9b2","19","1","3.5","1","0",NULL,"19",,"2.5"
+"314","1304211020-c9b2","16","1","3.5","1","0",NULL,"16",,"2.5"
+"315","1304211020-c9b2","18","1","3.5","1","0",NULL,"18",,"2.5"
+"316","1304211020-c9b2","17","1","3.5","1","0",NULL,"17",,"2.5"
+"317","1304211020-c9b2","15","1","3.5","1","0",NULL,"15",,"2.5"
+"318","1304211850-936a","2","1","12","12","0",NULL,"2",,"0"
+"319","1304212045-eaae","8","30","0.1","3","0",NULL,"8",,"0"
+"320","1304221609-26c4","20","1","55","55","0",NULL,"20",,"0"
+"321","1304221717-c048","1","1","13.5","13.5","0",NULL,"1",,"0"
+"322","1304221717-c048","2","1","12","12","0",NULL,"2",,"0"
+"323","1304230811-aab5","14","1","25","15","0",NULL,"14",,"10"
+"324","1304230811-aab5","6","50","0.1","5","0",NULL,"6",,"0"
+"325","1304230811-aab5","8","50","0.1","5","0",NULL,"8",,"0"
+"326","1304230811-aab5","1","1","13.5","13.5","0",NULL,"1",,"0"
+"327","1304230818-c4d1","1","4","13.5","50","0",NULL,"1",,"1"
+"328","1304241015-c320","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"329","1304241015-c320","18","1","3.5","1.25","0",NULL,"18",,"2.25"
+"330","1304241015-c320","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"331","1304241015-c320","2","1","12","12","0",NULL,"2",,"0"
+"332","1304241648-2707","10","1","0.5","0.5","0",NULL,"10",,"0"
+"333","1304241648-2707","8","1","0.1","0.1","0",NULL,"8",,"0"
+"334","1304241648-2707","19","1","3.5","1","0",NULL,"19",,"2.5"
+"335","1304241648-2707","17","1","3.5","1","0",NULL,"17",,"2.5"
+"336","1304241648-2707","15","1","3.5","1","0",NULL,"15",,"2.5"
+"337","1304241648-2707","18","1","3.5","1","0",NULL,"18",,"2.5"
+"338","1304241648-2707","16","1","3.5","1","0",NULL,"16",,"2.5"
+"347","1304301418-c872","2","1","12","12","0",NULL,"2",,"0"
+"348","1304301418-c872","4","1","432","432","0",NULL,"4",,"0"
+"341","1304280418-2af6","21","1","110","110","0",NULL,"21",,"0"
+"345","1304290808-ab9d","1","1","13.5","13.5","0",NULL,"1",,"0"
+"346","1304291209-4daa","2","1","12","12","0",NULL,"2",,"0"
+"349","1305011206-2358","20","1","55","55","0",NULL,"20",,"0"
+"352","1305021501-0a08","16","1","3.5","1.25","0",NULL,"16",,"2.25"
+"351","1305020718-6c19","21","1","110","110","0",NULL,"21",,"0"
+"353","1305021501-0a08","1","2","13.5","25","0",NULL,"1",,"1"
+"354","1305052125-0515","19","1","3.5","1","0",NULL,"19",,"2.5"
+"355","1305052125-0515","17","1","3.5","1","0",NULL,"17",,"2.5"
+"356","1305052125-0515","15","1","3.5","1","0",NULL,"15",,"2.5"
+"357","1305052125-0515","16","1","3.5","1","0",NULL,"16",,"2.5"
+"358","1305052125-0515","21","1","110","110","0",NULL,"21",,"0"
+"359","1305072143-20fa","10","1","0.5","0.5","0",NULL,"10",,"0"
+"360","1305072143-20fa","8","1","0.1","0.1","0",NULL,"8",,"0"
+"361","1305072143-20fa","6","1","0.1","0.1","0",NULL,"6",,"0"
+"362","1305072143-20fa","9","1","0.6","0.6","0",NULL,"9",,"0"
+"363","1305072143-20fa","18","1","3.5","1","0",NULL,"18",,"2.5"
+"364","1305072143-20fa","16","1","3.5","1","0",NULL,"16",,"2.5"
+"365","1305072143-20fa","19","1","3.5","1","0",NULL,"19",,"2.5"
+"366","1305072143-20fa","17","1","3.5","1","0",NULL,"17",,"2.5"
+"367","1305072143-20fa","15","1","3.5","1","0",NULL,"15",,"2.5"
+"368","1305081036-07ca","20","1","55","55","0",NULL,"20",,"0"
+"369","1305081714-0eee","20","2","55","110","0",NULL,"20",,"0"
+"370","1305081840-9a35","20","1","55","55","0",NULL,"20",,"0"
+"371","1305082103-5c0e","2","1","12","12","0",NULL,"2",,"0"
+"372","1305090523-4757","11","1","30","18","0",NULL,"11",,"12"
+"373","1305090523-4757","15","5","3.5","10","0",NULL,"15",,"1.5"
+"374","1305090523-4757","17","5","3.5","10","0",NULL,"17",,"1.5"
+"375","1305090523-4757","19","5","3.5","10","0",NULL,"19",,"1.5"
+"376","1305090523-4757","14","1","25","15","0",NULL,"14",,"10"
+"377","1305090523-4757","7","1","13.5","13.5","0",NULL,"7",,"0"
+"378","1305090523-4757","8","50","0.1","5","0",NULL,"8",,"0"
+"379","1305090523-4757","6","50","0.1","5","0",NULL,"6",,"0"
+"380","1305091053-f49c","1","20","13.5","200","0",NULL,"1",,"3.5"
+"383","1305101247-0172","2","1","12","12","0",NULL,"2",,"0"
+"382","1305092129-313a","21","1","110","110","0",NULL,"21",,"0"
+"391","1305140914-ff41","21","1","110","110","0",NULL,"21",,"0"
+"385","1305121826-44a3","20","1","55","55","0",NULL,"20",,"0"
+"386","1305122005-15f4","22","1","3.5","3.5","0",NULL,"22",,"0"
+"387","1305122005-15f4","8","1","0.1","0.1","0",NULL,"8",,"0"
+"388","1305122005-15f4","6","1","0.1","0.1","0",NULL,"6",,"0"
+"389","1305122005-15f4","10","1","0.5","0.5","0",NULL,"10",,"0"
+"390","1305122005-15f4","20","1","55","55","0",NULL,"20",,"0"
+"392","1305141438-6dc0","22","1","3.5","3.5","0",NULL,"22",,"0"
+"393","1305141829-32ed","20","2","55","110","0",NULL,"20",,"0"
+"394","1305151051-ef1a","2","1","12","12","0",NULL,"2",,"0"
+"395","1305151051-ef1a","20","1","55","55","0",NULL,"20",,"0"
+"396","1305161228-c26d","2","1","12","12","0",NULL,"2",,"0"
+"397","1305161228-c26d","21","1","110","110","0",NULL,"21",,"0"
+"398","1305161228-c26d","16","1","3.5","1","0",NULL,"16",,"2.5"
+"399","1305161228-c26d","19","1","3.5","1","0",NULL,"19",,"2.5"
+"400","1305161228-c26d","15","1","3.5","1","0",NULL,"15",,"2.5"
+"401","1305161228-c26d","17","1","3.5","1","0",NULL,"17",,"2.5"
+"402","1305161228-c26d","18","1","3.5","1","0",NULL,"18",,"2.5"
+"403","1305181150-60aa","22","1","3.5","3.5","0",NULL,"22",,"0"
+"404","1305181508-6a06","2","1","12","12","0",NULL,"2",,"0"
+"405","1305190046-0d17","2","1","12","12","0",NULL,"2",,"0"
+"406","1305190046-0d17","20","1","55","55","0",NULL,"20",,"0"
+"407","1305190140-7831","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"408","1305190140-7831","20","1","55","55","0",NULL,"20",,"0"
+"409","1305192009-0629","2","1","12","12","0",NULL,"2",,"0"
+"410","1305192009-0629","20","1","55","55","0",NULL,"20",,"0"
+"411","1305210928-41a9","22","1","3.5","3.5","0",NULL,"22",,"0"
+"412","1305210928-41a9","20","1","55","55","0",NULL,"20",,"0"
+"413","1305211524-05b3","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"414","1305211524-05b3","1","1","13.5","13.5","0",NULL,"1",,"0"
+"415","1305211524-05b3","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"416","1305211524-05b3","22","1","3.5","3.5","0",NULL,"22",,"0"
+"417","1305220925-b119","2","1","12","12","0",NULL,"2",,"0"
+"418","1305220925-b119","22","1","3.5","3.5","0",NULL,"22",,"0"
+"419","1305221043-05d5","22","1","3.5","3.5","0",NULL,"22",,"0"
+"420","1305221159-1360","21","1","110","110","0",NULL,"21",,"0"
+"421","1305221340-fada","20","1","55","55","0",NULL,"20",,"0"
+"422","1305240744-9678","20","1","55","55","0",NULL,"20",,"0"
+"423","1305240755-6cd1","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"424","1305240755-6cd1","18","1","3.5","1.25","0",NULL,"18",,"2.25"
+"425","1305240755-6cd1","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"426","1305241327-1a1c","2","1","12","12","0",NULL,"2",,"0"
+"427","1305241807-b035","20","1","55","55","0",NULL,"20",,"0"
+"428","1305252102-1be5","20","1","55","55","0",NULL,"20",,"0"
+"429","1305271418-6afd","20","1","55","55","0",NULL,"20",,"0"
+"430","1305281432-5d87","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"431","1305281432-5d87","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"432","1305281432-5d87","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"433","1305281432-5d87","2","1","12","12","0",NULL,"2",,"0"
+"434","1305281506-7f21","2","1","12","12","0",NULL,"2",,"0"
+"446","1306032344-3d8e","2","1","12","12","0",NULL,"2",,"0"
+"437","1306011237-bb16","20","1","55","55","0",NULL,"20",,"0"
+"438","1306011454-d3c3","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"439","1306011454-d3c3","1","1","13.5","13.5","0",NULL,"1",,"0"
+"440","1306011454-d3c3","14","1","25","15","0",NULL,"14",,"10"
+"441","1306011454-d3c3","11","1","30","18","0",NULL,"11",,"12"
+"442","1306011454-d3c3","8","50","0.1","5","0",NULL,"8",,"0"
+"443","1306011454-d3c3","6","50","0.1","5","0",NULL,"6",,"0"
+"444","1306011454-d3c3","22","20","3.5","70","0",NULL,"22",,"0"
+"445","1306011454-d3c3","20","1","55","55","0",NULL,"20",,"0"
+"447","1306032344-3d8e","17","1","3.5","1","0",NULL,"17",,"2.5"
+"448","1306032344-3d8e","15","1","3.5","1","0",NULL,"15",,"2.5"
+"449","1306032344-3d8e","19","1","3.5","1","0",NULL,"19",,"2.5"
+"450","1306032344-3d8e","16","1","3.5","1","0",NULL,"16",,"2.5"
+"451","1306032344-3d8e","18","1","3.5","1","0",NULL,"18",,"2.5"
+"452","1306041033-8121","22","1","3.5","3.5","0",NULL,"22",,"0"
+"453","1306041033-8121","2","1","12","12","0",NULL,"2",,"0"
+"463","1306111156-354d","2","1","12","12","0",NULL,"2",,"0"
+"455","1306041546-56a8","2","1","12","12","0",NULL,"2",,"0"
+"456","1306041546-56a8","22","1","3.5","3.5","0",NULL,"22",,"0"
+"457","1306052315-4db4","20","1","55","55","0",NULL,"20",,"0"
+"467","1306121043-fe7e","22","2","3.5","7","0",NULL,"22",,"0"
+"466","1306111515-ab4d","22","3","3.5","10.5","0",NULL,"22",,"0"
+"465","1306111353-354d","2","1","12","12","0",NULL,"2",,"0"
+"464","1306111342-354d","2","1","12","12","0",NULL,"2",,"0"
+"462","1306100107-2c46","21","1","110","110","0",NULL,"21",,"0"
+"468","1306121311-9073","22","1","3.5","3.5","0",NULL,"22",,"0"
+"469","1306121607-f179","22","1","3.5","3.5","0",NULL,"22",,"0"
+"470","1306121731-3516","20","1","55","55","0",NULL,"20",,"0"
+"471","1306131034-9010","10","1","0.5","0.5","0",NULL,"10",,"0"
+"472","1306131034-9010","8","1","0.1","0.1","0",NULL,"8",,"0"
+"473","1306131034-9010","19","1","3.5","1","0",NULL,"19",,"2.5"
+"474","1306131034-9010","15","1","3.5","1","0",NULL,"15",,"2.5"
+"475","1306131034-9010","18","1","3.5","1","0",NULL,"18",,"2.5"
+"476","1306131034-9010","22","1","3.5","3.5","0",NULL,"22",,"0"
+"477","1306131344-0172","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"478","1306131344-0172","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"479","1306131344-0172","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"480","1306131344-0172","22","1","3.5","3.5","0",NULL,"22",,"0"
+"481","1306131746-a5c8","22","1","3.5","3.5","0",NULL,"22",,"0"
+"482","1306141207-72d9","14","1","25","15","0",NULL,"14",,"10"
+"483","1306141317-00c2","22","1","3.5","3.5","0",NULL,"22",,"0"
+"484","1306141536-ae00","18","1","3.5","1","0",NULL,"18",,"2.5"
+"485","1306141536-ae00","17","1","3.5","1","0",NULL,"17",,"2.5"
+"486","1306141536-ae00","19","1","3.5","1","0",NULL,"19",,"2.5"
+"487","1306141536-ae00","15","1","3.5","1","0",NULL,"15",,"2.5"
+"488","1306141536-ae00","22","1","3.5","3.5","0",NULL,"22",,"0"
+"489","1306141739-84fd","22","5","3.5","17.5","0",NULL,"22",,"0"
+"490","1306142209-ba27","22","2","3.5","7","0",NULL,"22",,"0"
+"518","1306181329-7ebb","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"492","1306151324-25a4","8","100","0.1","10","0",NULL,"8",,"0"
+"493","1306151324-25a4","1","1","13.5","13.5","0",NULL,"1",,"0"
+"494","1306151324-25a4","18","2","3.5","4","0",NULL,"18",,"1.5"
+"495","1306151324-25a4","23","2","3.5","4","0",NULL,"23",,"1.5"
+"496","1306151324-25a4","17","2","3.5","4","0",NULL,"17",,"1.5"
+"497","1306151324-25a4","22","4","3.5","14","0",NULL,"22",,"0"
+"498","1306151732-00d4","22","1","3.5","3.5","0",NULL,"22",,"0"
+"499","1306160200-24c9","2","1","12","12","0",NULL,"2",,"0"
+"500","1306161018-2339","22","1","3.5","3.5","0",NULL,"22",,"0"
+"502","1306161414-ba27","22","2","3.5","7","0",NULL,"22",,"0"
+"519","1306181329-7ebb","18","1","3.5","1.25","0",NULL,"18",,"2.25"
+"505","1306170738-3ec6","21","1","110","110","0",NULL,"21",,"0"
+"520","1306181329-7ebb","22","1","3.5","3.5","0",NULL,"22",,"0"
+"507","1306171327-b777","1","2","13.5","25","0",NULL,"1",,"1"
+"508","1306171327-b777","19","2","3.5","4","0",NULL,"19",,"1.5"
+"509","1306171327-b777","17","2","3.5","4","0",NULL,"17",,"1.5"
+"510","1306171327-b777","15","2","3.5","4","0",NULL,"15",,"1.5"
+"511","1306171327-b777","8","100","0.1","10","0",NULL,"8",,"0"
+"512","1306171327-b777","22","1","3.5","3.5","0",NULL,"22",,"0"
+"513","1306171544-677b","22","1","3.5","3.5","0",NULL,"22",,"0"
+"514","1306171648-a6d1","22","1","3.5","3.5","0",NULL,"22",,"0"
+"515","1306171854-2bc0","2","1","12","12","0",NULL,"2",,"0"
+"516","1306171952-22d6","22","1","3.5","3.5","0",NULL,"22",,"0"
+"517","1306180926-d9e4","22","1","3.5","3.5","0",NULL,"22",,"0"
+"521","1306191120-c75e","22","1","3.5","3.5","0",NULL,"22",,"0"
+"522","1306191318-2e86","21","1","110","110","0",NULL,"21",,"0"
+"523","1306191509-a5c8","22","2","3.5","7","0",NULL,"22",,"0"
+"524","1306191522-a5c8","22","1","3.5","3.5","0",NULL,"22",,"0"
+"525","1306191534-36dd","22","1","3.5","3.5","0",NULL,"22",,"0"
+"526","1306191557-fada","2","1","12","12","0",NULL,"2",,"0"
+"540","1306202248-3012","2","1","12","12","0",NULL,"2",,"0"
+"542","1306211449-15f7","22","2","3.5","7","0",NULL,"22",,"0"
+"529","1306192317-2309","2","1","12","12","0",NULL,"2",,"0"
+"530","1306192317-2309","22","1","3.5","3.5","0",NULL,"22",,"0"
+"531","1306200737-0b52","15","1","3.5","1","0",NULL,"15",,"2.5"
+"532","1306200737-0b52","18","1","3.5","1","0",NULL,"18",,"2.5"
+"533","1306200737-0b52","17","1","3.5","1","0",NULL,"17",,"2.5"
+"534","1306200737-0b52","23","1","3.5","1","0",NULL,"23",,"2.5"
+"535","1306200737-0b52","19","1","3.5","1","0",NULL,"19",,"2.5"
+"541","1306210551-af1b","22","1","3.5","3.5","0",NULL,"22",,"0"
+"538","1306201543-5a39","22","1","3.5","3.5","0",NULL,"22",,"0"
+"543","1306212208-f78e","22","2","3.5","7","0",NULL,"22",,"0"
+"557","1306261342-5824","9","1","0.6","0.6","0",NULL,"9",,"0"
+"545","1306221747-a078","22","1","3.5","3.5","0",NULL,"22",,"0"
+"546","1306222114-8dae","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"547","1306222114-8dae","22","2","3.5","7","0",NULL,"22",,"0"
+"551","1306250921-37d1","15","1","3.5","1","0",NULL,"15",,"2.5"
+"549","1306232057-7c88","21","1","110","110","0",NULL,"21",,"0"
+"558","1306261342-5824","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"552","1306250921-37d1","19","1","3.5","1","0",NULL,"19",,"2.5"
+"553","1306250921-37d1","10","5","0.5","2.5","0",NULL,"10",,"0"
+"554","1306250921-37d1","6","5","0.1","0.5","0",NULL,"6",,"0"
+"555","1306250921-37d1","24","1","9","9","0",NULL,"24",,"0"
+"559","1306261342-5824","24","1","9","9","0",NULL,"24",,"0"
+"560","1306261617-6b3a","22","2","3.5","7","0",NULL,"22",,"0"
+"561","1306262034-e50b","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"562","1306262034-e50b","18","1","3.5","1.25","0",NULL,"18",,"2.25"
+"563","1306262034-e50b","22","1","3.5","3.5","0",NULL,"22",,"0"
+"564","1306262156-4c8f","10","1","0.5","0.5","0",NULL,"10",,"0"
+"565","1306262156-4c8f","8","1","0.1","0.1","0",NULL,"8",,"0"
+"566","1306262156-4c8f","6","1","0.1","0.1","0",NULL,"6",,"0"
+"567","1306262156-4c8f","9","1","0.6","0.6","0",NULL,"9",,"0"
+"568","1306262156-4c8f","22","1","3.5","3.5","0",NULL,"22",,"0"
+"569","1306262156-4c8f","17","1","3.5","1","0",NULL,"17",,"2.5"
+"570","1306262156-4c8f","19","1","3.5","1","0",NULL,"19",,"2.5"
+"571","1306262156-4c8f","15","1","3.5","1","0",NULL,"15",,"2.5"
+"572","1306262159-c9be","22","1","3.5","3.5","0",NULL,"22",,"0"
+"576","1306271033-64b0","2","1","12","12","0",NULL,"2",,"0"
+"577","1306271033-64b0","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"575","1306270932-4a8e","22","1","3.5","3.5","0",NULL,"22",,"0"
+"578","1306271235-9a2b","6","1","0.1","0.1","0",NULL,"6",,"0"
+"579","1306271235-9a2b","9","1","0.6","0.6","0",NULL,"9",,"0"
+"580","1306271235-9a2b","8","1","0.1","0.1","0",NULL,"8",,"0"
+"581","1306271235-9a2b","10","1","0.5","0.5","0",NULL,"10",,"0"
+"582","1306271235-9a2b","22","1","3.5","3.5","0",NULL,"22",,"0"
+"586","1306281219-2560","2","1","12","12","0",NULL,"2",,"0"
+"584","1306272043-0840","20","1","55","55","0",NULL,"20",,"0"
+"585","1306280936-8877","21","1","110","110","0",NULL,"21",,"0"
+"587","1306281219-2560","24","1","9","9","0",NULL,"24",,"0"
+"589","1306300958-1009","6","1","0.1","0.1","0",NULL,"6",,"0"
+"590","1306300958-1009","15","1","3.5","1","0",NULL,"15",,"2.5"
+"591","1306300958-1009","23","1","3.5","1","0",NULL,"23",,"2.5"
+"592","1306300958-1009","19","1","3.5","1","0",NULL,"19",,"2.5"
+"593","1306300958-1009","17","1","3.5","1","0",NULL,"17",,"2.5"
+"594","1306300958-1009","22","1","3.5","3.5","0",NULL,"22",,"0"
+"595","1306301101-d50d","2","1","12","12","0",NULL,"2",,"0"
+"596","1306301147-9539","8","20","0.1","2","0",NULL,"8",,"0"
+"597","1306301147-9539","6","20","0.1","2","0",NULL,"6",,"0"
+"598","1306301147-9539","10","20","0.5","10","0",NULL,"10",,"0"
+"605","1307010726-fc84","2","1","12","12","0",NULL,"2",,"0"
+"628","1307031235-53cb","15","1","3.5","1","0",NULL,"15",,"2.5"
+"638","1307031633-8723","2","1","12","12","0",NULL,"2",,"0"
+"602","1306301558-e034","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"603","1306301558-e034","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"604","1306301558-e034","22","2","3.5","7","0",NULL,"22",,"0"
+"606","1307010726-fc84","24","1","9","9","0",NULL,"24",,"0"
+"607","1307011619-53d0","2","1","12","12","0",NULL,"2",,"0"
+"608","1307011619-53d0","20","1","55","55","0",NULL,"20",,"0"
+"609","1307011619-5236","22","2","3.5","7","0",NULL,"22",,"0"
+"629","1307031235-53cb","18","1","3.5","1","0",NULL,"18",,"2.5"
+"639","1307031633-8723","22","4","3.5","14","0",NULL,"22",,"0"
+"613","1307020847-544b","20","1","55","55","0",NULL,"20",,"0"
+"614","1307021015-0ca1","10","1","0.5","0.5","0",NULL,"10",,"0"
+"615","1307021015-0ca1","9","1","0.6","0.6","0",NULL,"9",,"0"
+"616","1307021015-0ca1","17","1","3.5","1","0",NULL,"17",,"2.5"
+"617","1307021015-0ca1","19","1","3.5","1","0",NULL,"19",,"2.5"
+"618","1307021015-0ca1","15","1","3.5","1","0",NULL,"15",,"2.5"
+"637","1307031633-8723","15","1","3.5","1","0",NULL,"15",,"2.5"
+"624","1307030041-05b3","20","1","55","55","0",NULL,"20",,"0"
+"623","1307021933-2560","22","1","3.5","3.5","0",NULL,"22",,"0"
+"630","1307031235-53cb","17","1","3.5","1","0",NULL,"17",,"2.5"
+"631","1307031235-53cb","23","1","3.5","1","0",NULL,"23",,"2.5"
+"632","1307031235-53cb","22","1","3.5","3.5","0",NULL,"22",,"0"
+"633","1307031235-53cb","9","10","0.6","6","0",NULL,"9",,"0"
+"634","1307031235-53cb","19","1","3.5","1","0",NULL,"19",,"2.5"
+"635","1307031235-53cb","7","1","13.5","13.5","0",NULL,"7-3","Popular","0"
+"636","1307031235-53cb","20","1","55","55","0",NULL,"20",,"0"
+"642","1307041229-90d8","2","1","12","12","0",NULL,"2",,"0"
+"641","1307032359-6354","21","1","110","110","0",NULL,"21",,"0"
+"643","1307041229-90d8","20","1","55","55","0",NULL,"20",,"0"
+"644","1307041243-548e","21","1","110","110","0",NULL,"21",,"0"
+"645","1307041243-548e","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"646","1307041243-548e","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"647","1307041540-a1be","22","1","3.5","3.5","0",NULL,"22",,"0"
+"648","1307041540-a1be","24","1","9","9","0",NULL,"24",,"0"
+"649","1307051303-f868","20","1","55","55","0",NULL,"20",,"0"
+"650","1307052058-46e3","21","1","110","110","0",NULL,"21",,"0"
+"651","1307060535-1638","20","1","55","55","0",NULL,"20",,"0"
+"652","1307061141-2c06","20","1","55","55","0",NULL,"20",,"0"
+"653","1307061505-6c15","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"654","1307061505-6c15","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"655","1307061505-6c15","24","1","9","9","0",NULL,"24",,"0"
+"656","1307061505-6c15","21","1","110","110","0",NULL,"21",,"0"
+"658","1307100039-5797","22","1","3.5","3.5","0",NULL,"22",,"0"
+"659","1307100039-5797","8","1","0.1","0.1","0",NULL,"8",,"0"
+"660","1307100039-5797","24","1","9","9","0",NULL,"24",,"0"
+"661","1307101306-d3cf","22","2","3.5","7","0",NULL,"22",,"0"
+"662","1307101850-e19a","7","1","13.5","13.5","0",NULL,"7-4","Popular","0"
+"663","1307102137-6c15","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"664","1307102137-6c15","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"665","1307102137-6c15","24","1","9","9","0",NULL,"24",,"0"
+"666","1307102137-6c15","21","1","110","110","0",NULL,"21",,"0"
+"667","1307102235-19da","20","1","55","55","0",NULL,"20",,"0"
+"668","1307102302-82d7","20","1","55","55","0",NULL,"20",,"0"
+"669","1307111214-1563","21","1","110","110","0",NULL,"21",,"0"
+"670","1307111330-5763","2","1","12","12","0",NULL,"2",,"0"
+"671","1307120243-a85c","2","1","12","12","0",NULL,"2",,"0"
+"672","1307120251-a85c","18","1","3.5","1.25","0",NULL,"18",,"2.25"
+"673","1307120251-a85c","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"674","1307120251-a85c","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"675","1307131817-ec97","1","1","13.5","13.5","0",NULL,"1",,"0"
+"676","1307132228-cb5c","20","1","55","55","0",NULL,"20",,"0"
+"677","1307132228-cb5c","21","1","110","110","0",NULL,"21",,"0"
+"678","1307132228-cb5c","2","1","12","12","0",NULL,"2",,"0"
+"679","1307141147-993a","1","1","13.5","13.5","0",NULL,"1",,"0"
+"689","1307151312-5921","24","1","9","9","0",NULL,"24",,"0"
+"681","1307142002-dab3","19","1","3.5","1","0",NULL,"19",,"2.5"
+"682","1307142002-dab3","15","1","3.5","1","0",NULL,"15",,"2.5"
+"683","1307142002-dab3","17","1","3.5","1","0",NULL,"17",,"2.5"
+"684","1307142002-dab3","23","1","3.5","1","0",NULL,"23",,"2.5"
+"685","1307142002-dab3","24","1","9","9","0",NULL,"24",,"0"
+"686","1307150902-ce62","2","1","12","12","0",NULL,"2",,"0"
+"687","1307150902-ce62","20","1","55","55","0",NULL,"20",,"0"
+"688","1307151211-46f8","22","1","3.5","3.5","0",NULL,"22",,"0"
+"690","1307151312-5921","21","1","110","110","0",NULL,"21",,"0"
+"691","1307151445-62c6","22","1","3.5","3.5","0",NULL,"22",,"0"
+"692","1307151535-4dff","21","1","110","110","0",NULL,"21",,"0"
+"693","1307151554-1e29","1","1","13.5","13.5","0",NULL,"1",,"0"
+"694","1307151554-1e29","10","25","0.5","12.5","0",NULL,"10",,"0"
+"695","1307151902-cc77","24","1","9","9","0",NULL,"24",,"0"
+"696","1307151902-cc77","20","1","55","55","0",NULL,"20",,"0"
+"698","1307161248-90ff","22","1","3.5","3.5","0",NULL,"22",,"0"
+"699","1307161248-90ff","20","1","55","55","0",NULL,"20",,"0"
+"700","1307161443-1382","20","1","55","55","0",NULL,"20",,"0"
+"701","1307162014-4242","20","1","55","55","0",NULL,"20",,"0"
+"702","1307162026-e901","20","1","55","55","0",NULL,"20",,"0"
+"703","1307162026-e901","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"704","1307162026-e901","2","1","12","12","0",NULL,"2",,"0"
+"717","1307181315-12d3","14","1","25","15","0",NULL,"14",,"10"
+"716","1307181315-12d3","22","1","3.5","3.5","0",NULL,"22",,"0"
+"707","1307171041-2f10","22","4","3.5","14","0",NULL,"22",,"0"
+"708","1307171534-ebf5","20","1","55","55","0",NULL,"20",,"0"
+"709","1307171534-ebf5","21","1","110","110","0",NULL,"21",,"0"
+"710","1307172002-4a53","21","1","110","110","0",NULL,"21",,"0"
+"721","1307181315-12d3","15","1","3.5","1","0",NULL,"15",,"2.5"
+"720","1307181315-12d3","17","1","3.5","1","0",NULL,"17",,"2.5"
+"719","1307181315-12d3","6","5","0.1","0.5","0",NULL,"6",,"0"
+"718","1307181315-12d3","8","5","0.1","0.5","0",NULL,"8",,"0"
+"722","1307181315-12d3","19","1","3.5","1","0",NULL,"19",,"2.5"
+"723","1307181315-12d3","18","1","3.5","1","0",NULL,"18",,"2.5"
+"724","1307181631-e205","8","10","0.1","1","0",NULL,"8",,"0"
+"725","1307181631-e205","23","1","3.5","1","0",NULL,"23",,"2.5"
+"726","1307181631-e205","17","1","3.5","1","0",NULL,"17",,"2.5"
+"727","1307181631-e205","18","1","3.5","1","0",NULL,"18",,"2.5"
+"728","1307181631-e205","19","1","3.5","1","0",NULL,"19",,"2.5"
+"729","1307181631-e205","6","10","0.1","1","0",NULL,"6",,"0"
+"730","1307181631-e205","15","1","3.5","1","0",NULL,"15",,"2.5"
+"731","1307181631-e205","24","1","9","9","0",NULL,"24",,"0"
+"732","1307181631-e205","22","1","3.5","3.5","0",NULL,"22",,"0"
+"733","1307181631-e205","21","1","110","110","0",NULL,"21",,"0"
+"734","1307181959-add0","10","4","0.5","2","0",NULL,"10",,"0"
+"735","1307181959-add0","21","1","110","110","0",NULL,"21",,"0"
+"736","1307181959-add0","8","5","0.1","0.5","0",NULL,"8",,"0"
+"737","1307181959-add0","15","1","3.5","1","0",NULL,"15",,"2.5"
+"738","1307181959-add0","2","1","12","12","0",NULL,"2",,"0"
+"739","1307181959-add0","24","1","9","9","0",NULL,"24",,"0"
+"741","1307191301-2571","21","1","110","110","0",NULL,"21",,"0"
+"742","1307200340-20f8","21","1","110","110","0",NULL,"21",,"0"
+"743","1307200913-1d1a","20","1","55","55","0",NULL,"20",,"0"
+"744","1307200913-1d1a","2","1","12","12","0",NULL,"2",,"0"
+"745","1307200919-2571","6","10","0.1","1","0",NULL,"6",,"0"
+"746","1307200919-2571","18","1","3.5","1","0",NULL,"18",,"2.5"
+"747","1307200919-2571","15","1","3.5","1","0",NULL,"15",,"2.5"
+"748","1307200919-2571","8","25","0.1","2.5","0",NULL,"8",,"0"
+"749","1307201043-3166","20","1","55","55","0",NULL,"20",,"0"
+"750","1307210836-c2ea","15","1","3.5","1","0",NULL,"15",,"2.5"
+"751","1307210836-c2ea","18","1","3.5","1","0",NULL,"18",,"2.5"
+"752","1307210836-c2ea","17","1","3.5","1","0",NULL,"17",,"2.5"
+"753","1307210836-c2ea","23","1","3.5","1","0",NULL,"23",,"2.5"
+"754","1307210836-c2ea","19","1","3.5","1","0",NULL,"19",,"2.5"
+"755","1307210836-c2ea","20","1","55","55","0",NULL,"20",,"0"
+"756","1307211328-10ba","21","1","110","110","0",NULL,"21",,"0"
+"757","1307212207-50ec","18","1","3.5","1","0",NULL,"18",,"2.5"
+"758","1307212207-50ec","23","1","3.5","1","0",NULL,"23",,"2.5"
+"759","1307212207-50ec","6","1","0.1","0.1","0",NULL,"6",,"0"
+"760","1307212207-50ec","19","3","3.5","3","0",NULL,"19",,"2.5"
+"761","1307212207-50ec","15","3","3.5","3","0",NULL,"15",,"2.5"
+"762","1307212207-50ec","17","5","3.5","5","0",NULL,"17",,"2.5"
+"765","1307221701-86cf","22","5","3.5","17.5","0",NULL,"22",,"0"
+"764","1307221347-fc44","2","1","12","12","0",NULL,"2",,"0"
+"766","1307221823-50ec","18","1","3.5","1","0",NULL,"18",,"2.5"
+"767","1307221823-50ec","23","1","3.5","1","0",NULL,"23",,"2.5"
+"768","1307221823-50ec","6","1","0.1","0.1","0",NULL,"6",,"0"
+"769","1307221823-50ec","19","3","3.5","3","0",NULL,"19",,"2.5"
+"770","1307221823-50ec","15","3","3.5","3","0",NULL,"15",,"2.5"
+"771","1307221823-50ec","17","5","3.5","5","0",NULL,"17",,"2.5"
+"772","1307230333-8e04","1","2","13.5","25","0",NULL,"1",,"1"
+"773","1307230958-d4d9","1","1","13.5","13.5","0",NULL,"1",,"0"
+"774","1307232357-3b97","21","1","110","110","0",NULL,"21",,"0"
+"775","1307240645-8162","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"776","1307240645-8162","1","1","13.5","13.5","0",NULL,"1",,"0"
+"782","1307251326-564b","21","1","110","110","0",NULL,"21",,"0"
+"778","1307241432-ce1a","20","1","55","55","0",NULL,"20",,"0"
+"779","1307241521-3612","20","1","55","55","0",NULL,"20",,"0"
+"780","1307242157-44ea","2","1","12","12","0",NULL,"2",,"0"
+"781","1307242157-44ea","20","1","55","55","0",NULL,"20",,"0"
+"783","1307261133-0d99","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"784","1307261133-0d99","17","1","3.5","1","0",NULL,"17",,"2.5"
+"785","1307261133-0d99","15","1","3.5","1","0",NULL,"15",,"2.5"
+"786","1307261133-0d99","1","1","13.5","13.5","0",NULL,"1",,"0"
+"787","1307261133-0d99","10","1","0.5","0.5","0",NULL,"10",,"0"
+"788","1307261133-0d99","9","1","0.6","0.6","0",NULL,"9",,"0"
+"789","1307261133-0d99","8","1","0.1","0.1","0",NULL,"8",,"0"
+"790","1307261133-0d99","6","1","0.1","0.1","0",NULL,"6",,"0"
+"791","1307261158-d0bb","22","1","3.5","3.5","0",NULL,"22",,"0"
+"792","1307261158-d0bb","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"793","1307261158-d0bb","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"794","1307271208-0caf","20","1","55","55","0",NULL,"20",,"0"
+"795","1307271306-b96f","20","1","55","55","0",NULL,"20",,"0"
+"796","1307271356-4c58","20","1","55","55","0",NULL,"20",,"0"
+"797","1307271658-b96f","23","1","3.5","1","0",NULL,"23",,"2.5"
+"798","1307271658-b96f","19","1","3.5","1","0",NULL,"19",,"2.5"
+"799","1307271658-b96f","15","1","3.5","1","0",NULL,"15",,"2.5"
+"800","1307271658-b96f","18","1","3.5","1","0",NULL,"18",,"2.5"
+"801","1307271658-b96f","17","1","3.5","1","0",NULL,"17",,"2.5"
+"802","1307271658-b96f","20","1","55","55","0",NULL,"20",,"0"
+"803","1307281206-1aab","2","1","12","12","0",NULL,"2",,"0"
+"804","1307281206-1aab","20","1","55","55","0",NULL,"20",,"0"
+"805","1307281706-cabb","20","1","55","55","0",NULL,"20",,"0"
+"810","1307301200-dd5d","22","5","3.5","17.5","0",NULL,"22",,"0"
+"809","1307301105-3875","21","1","110","110","0",NULL,"21",,"0"
+"808","1307291832-b870","21","1","110","110","0",NULL,"21",,"0"
+"811","1307301200-dd5d","15","5","3.5","5","0",NULL,"15",,"2.5"
+"812","1307302038-1c8d","8","50","0.1","5","0",NULL,"8",,"0"
+"813","1307302038-1c8d","6","50","0.1","5","0",NULL,"6",,"0"
+"814","1307302038-1c8d","11","1","30","18","0",NULL,"11",,"12"
+"815","1307302038-1c8d","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"816","1307311131-5d63","14","3","25","45","0",NULL,"14",,"10"
+"817","1307311808-d42f","20","1","55","55","0",NULL,"20",,"0"
+"818","1308010836-f3b2","22","1","3.5","3.5","0",NULL,"22",,"0"
+"819","1308010836-f3b2","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"820","1308011234-98ad","21","1","110","110","0",NULL,"21",,"0"
+"821","1308021453-9ba8","7","2","13.5","25","0",NULL,"7","Popular","1"
+"822","1308021453-9ba8","14","2","25","30","0",NULL,"14",,"10"
+"823","1308021453-9ba8","8","200","0.1","20","0",NULL,"8",,"0"
+"824","1308031441-01f9","20","1","55","55","0",NULL,"20",,"0"
+"831","1308070928-4908","1","2","13.5","25","0",NULL,"1",,"1"
+"832","1308071941-ebf0","20","1","55","55","0",NULL,"20",,"0"
+"827","1308041518-b625","20","1","55","55","0",NULL,"20",,"0"
+"833","1308071953-ebf0","2","1","12","12","0",NULL,"2",,"0"
+"834","1308102047-ef11","20","2","55","110","0",NULL,"20",,"0"
+"835","1308110647-5a33","20","1","55","55","0",NULL,"20",,"0"
+"836","1308111437-9336","23","1","3.5","2","0",NULL,"23",,"1.5"
+"837","1308111437-9336","24","1","9","9","0",NULL,"24",,"0"
+"838","1308131352-ea3b","7","2","13.5","25","0",NULL,"7-6","Popular","1"
+"839","1308131352-ea3b","14","2","25","30","0",NULL,"14",,"10"
+"840","1308131352-ea3b","8","100","0.1","10","0",NULL,"8",,"0"
+"841","1308131457-5734","20","1","55","55","0",NULL,"20",,"0"
+"842","1308141539-7842","2","1","12","12","0",NULL,"2",,"0"
+"843","1308150741-a249","2","1","12","12","0",NULL,"2",,"0"
+"844","1308150852-df0e","20","1","55","55","0",NULL,"20",,"0"
+"845","1308150900-df0e","20","1","55","55","0",NULL,"20",,"0"
+"846","1308150911-df0e","20","1","55","55","0",NULL,"20",,"0"
+"847","1308151518-50a7","22","1","3.5","3.5","0",NULL,"22",,"0"
+"848","1308151518-50a7","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"849","1308151518-50a7","1","2","13.5","25","0",NULL,"1",,"1"
+"850","1308151518-50a7","19","1","3.5","2","0",NULL,"19",,"1.5"
+"851","1308151518-50a7","15","1","3.5","2","0",NULL,"15",,"1.5"
+"852","1308151518-50a7","17","1","3.5","2","0",NULL,"17",,"1.5"
+"853","1308151518-50a7","8","100","0.1","10","0",NULL,"8",,"0"
+"854","1308170152-5e3a","20","1","55","55","0",NULL,"20",,"0"
+"855","1308170732-889f","23","1","3.5","1.25","0",NULL,"23",,"2.25"
+"856","1308170732-889f","24","1","9","9","0",NULL,"24",,"0"
+"857","1308170732-889f","20","1","55","55","0",NULL,"20",,"0"
+"858","1308171200-5e3a","20","1","55","55","0",NULL,"20",,"0"
+"859","1308181532-a87c","20","1","55","55","0",NULL,"20",,"0"
+"860","1308181708-f549","17","1","3.5","2","0",NULL,"17",,"1.5"
+"861","1308181708-f549","22","1","3.5","3.5","0",NULL,"22",,"0"
+"862","1308181910-3b6b","24","1","9","9","0",NULL,"24",,"0"
+"863","1308181926-b40f","20","1","55","55","0",NULL,"20",,"0"
+"864","1308182151-6e4e","1","1","13.5","13.5","0",NULL,"1",,"0"
+"865","1308182151-6e4e","8","1","0.1","0.1","0",NULL,"8",,"0"
+"866","1308182151-6e4e","7","1","13.5","13.5","0",NULL,"7-7","Popular","0"
+"867","1308191055-3d00","9","1","0.6","0.6","0",NULL,"9",,"0"
+"868","1308191120-3d00","6","1","0.1","0.1","0",NULL,"6",,"0"
+"869","1308191120-3d00","1","1","13.5","13.5","0",NULL,"1",,"0"
+"870","1308191120-3d00","9","1","0.6","0.6","0",NULL,"9",,"0"
+"871","1308191248-450b","20","1","55","55","0",NULL,"20",,"0"
+"872","1308191803-a28d","24","1","9","9","0",NULL,"24",,"0"
+"873","1308201052-47b9","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"874","1308201834-8472","20","1","55","55","0",NULL,"20",,"0"
+"875","1308211549-fd30","20","2","55","110","0",NULL,"20",,"0"
+"876","1308211810-fd30","20","2","55","110","0",NULL,"20",,"0"
+"877","1308211825-21f5","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"878","1308211825-21f5","24","1","9","9","0",NULL,"24",,"0"
+"879","1308211825-21f5","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"880","1308212033-7f21","21","1","110","110","0",NULL,"21",,"0"
+"881","1308212129-14cc","20","1","55","55","0",NULL,"20",,"0"
+"882","1308212153-f645","24","1","9","9","0",NULL,"24",,"0"
+"883","1308220401-3930","9","1","0.6","0.6","0",NULL,"9",,"0"
+"884","1308220401-3930","10","1","0.5","0.5","0",NULL,"10",,"0"
+"885","1308220401-3930","22","1","3.5","3.5","0",NULL,"22",,"0"
+"886","1308220401-3930","23","2","3.5","2","0",NULL,"23",,"2.5"
+"887","1308220401-3930","19","1","3.5","1","0",NULL,"19",,"2.5"
+"888","1308220401-3930","15","1","3.5","1","0",NULL,"15",,"2.5"
+"889","1308220401-3930","18","1","3.5","1","0",NULL,"18",,"2.5"
+"890","1308220401-3930","17","1","3.5","1","0",NULL,"17",,"2.5"
+"891","1308220401-3930","24","1","9","9","0",NULL,"24",,"0"
+"892","1308221536-d611","24","1","9","9","0",NULL,"24",,"0"
+"893","1308221553-e77e","20","1","55","55","0",NULL,"20",,"0"
+"894","1308221922-70a2","24","1","9","9","0",NULL,"24",,"0"
+"895","1308221922-70a2","2","1","12","12","0",NULL,"2",,"0"
+"896","1308222355-5b96","24","1","9","9","0",NULL,"24",,"0"
+"897","1308230028-a909","24","1","9","9","0",NULL,"24",,"0"
+"898","1308231104-cd7d","20","2","55","110","0",NULL,"20",,"0"
+"899","1308231104-cd7d","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"900","1308231104-cd7d","22","5","3.5","17.5","0",NULL,"22",,"0"
+"901","1308231200-c51f","18","1","3.5","1","0",NULL,"18",,"2.5"
+"902","1308231200-c51f","17","1","3.5","1","0",NULL,"17",,"2.5"
+"903","1308231200-c51f","19","1","3.5","1","0",NULL,"19",,"2.5"
+"904","1308231200-c51f","15","1","3.5","1","0",NULL,"15",,"2.5"
+"905","1308231200-c51f","23","1","3.5","1","0",NULL,"23",,"2.5"
+"906","1308231200-c51f","24","1","9","9","0",NULL,"24",,"0"
+"907","1308231257-9a17","24","1","9","9","0",NULL,"24",,"0"
+"908","1308231257-9a17","18","1","3.5","1.25","0",NULL,"18",,"2.25"
+"909","1308231257-9a17","23","1","3.5","1.25","0",NULL,"23",,"2.25"
+"910","1308231257-9a17","20","1","55","55","0",NULL,"20",,"0"
+"911","1308231542-05ac","24","2","9","18","0",NULL,"24",,"0"
+"912","1308231542-05ac","23","1","3.5","1.25","0",NULL,"23",,"2.25"
+"913","1308241824-b807","21","1","110","110","0",NULL,"21",,"0"
+"914","1308250010-14d5","20","1","55","55","0",NULL,"20",,"0"
+"915","1308260954-4df6","2","1","12","12","0",NULL,"2",,"0"
+"916","1308260954-4df6","19","1","3.5","1","0",NULL,"19",,"2.5"
+"917","1308260954-4df6","22","3","3.5","10.5","0",NULL,"22",,"0"
+"918","1308261325-f516","24","1","9","9","0",NULL,"24",,"0"
+"919","1308261334-738c","21","1","110","110","0",NULL,"21",,"0"
+"920","1308261834-3382","20","1","55","55","0",NULL,"20",,"0"
+"921","1308262301-4f1d","20","1","55","55","0",NULL,"20",,"0"
+"922","1308271229-dbbc","20","1","55","55","0",NULL,"20",,"0"
+"923","1308271400-9951","17","1","3.5","1","0",NULL,"17",,"2.5"
+"924","1308271400-9951","23","1","3.5","1","0",NULL,"23",,"2.5"
+"925","1308271400-9951","19","1","3.5","1","0",NULL,"19",,"2.5"
+"926","1308271400-9951","18","1","3.5","1","0",NULL,"18",,"2.5"
+"927","1308271400-9951","15","1","3.5","1","0",NULL,"15",,"2.5"
+"928","1308271400-9951","24","1","9","9","0",NULL,"24",,"0"
+"929","1308271703-9169","21","1","110","110","0",NULL,"21",,"0"
+"930","1308272233-617a","8","30","0.1","3","0",NULL,"8",,"0"
+"931","1308272233-617a","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"932","1308272233-617a","1","1","13.5","13.5","0",NULL,"1",,"0"
+"933","1308272315-c89d","20","1","55","55","0",NULL,"20",,"0"
+"934","1308272315-c89d","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"935","1308272315-c89d","22","2","3.5","7","0",NULL,"22",,"0"
+"936","1308272315-c89d","1","1","13.5","13.5","0",NULL,"1",,"0"
+"937","1308281130-aea0","19","1","3.5","1","0",NULL,"19",,"2.5"
+"938","1308281130-aea0","15","1","3.5","1","0",NULL,"15",,"2.5"
+"939","1308281130-aea0","20","2","55","110","0",NULL,"20",,"0"
+"940","1308281130-aea0","24","1","9","9","0",NULL,"24",,"0"
+"941","1308281508-4e8c","21","1","110","110","0",NULL,"21",,"0"
+"942","1308281738-a317","21","2","110","220","0",NULL,"21",,"0"
+"943","1308281747-a317","21","2","110","220","0",NULL,"21",,"0"
+"944","1308291445-c89d","20","1","55","55","0",NULL,"20",,"0"
+"945","1308291445-c89d","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"946","1308291445-c89d","22","2","3.5","7","0",NULL,"22",,"0"
+"947","1308291445-c89d","1","1","13.5","13.5","0",NULL,"1",,"0"
+"948","1308291534-7df4","22","1","3.5","3.5","0",NULL,"22",,"0"
+"949","1308292230-b05e","20","1","55","55","0",NULL,"20",,"0"
+"950","1308301252-5731","23","1","3.5","1","0",NULL,"23",,"2.5"
+"951","1308301252-5731","10","1","0.5","0.5","0",NULL,"10",,"0"
+"952","1308301252-5731","8","1","0.1","0.1","0",NULL,"8",,"0"
+"953","1308301252-5731","6","1","0.1","0.1","0",NULL,"6",,"0"
+"954","1308301252-5731","9","1","0.6","0.6","0",NULL,"9",,"0"
+"955","1308301252-5731","22","1","3.5","3.5","0",NULL,"22",,"0"
+"956","1308302258-bee5","20","1","55","55","0",NULL,"20",,"0"
+"957","1308310201-788d","20","1","55","55","0",NULL,"20",,"0"
+"958","1308312015-ab79","21","1","110","110","0",NULL,"21",,"0"
+"959","1308312024-403c","24","1","9","9","0",NULL,"24",,"0"
+"960","1308312024-403c","20","1","55","55","0",NULL,"20",,"0"
+"961","1308312348-b350","20","1","55","55","0",NULL,"20",,"0"
+"962","1309011241-cc4c","20","1","55","55","0",NULL,"20",,"0"
+"963","1309012032-0d4e","1","2","13.5","25","0",NULL,"1",,"1"
+"964","1309012032-0d4e","8","100","0.1","10","0",NULL,"8",,"0"
+"965","1309012032-0d4e","6","50","0.1","5","0",NULL,"6",,"0"
+"966","1309012032-0d4e","7","2","13.5","25","0",NULL,"7-9","Popular","1"
+"967","1309020128-c8ec","20","1","55","55","0",NULL,"20",,"0"
+"968","1309021135-96a1","23","1","3.5","2","0",NULL,"23",,"1.5"
+"969","1309021135-96a1","24","1","9","9","0",NULL,"24",,"0"
+"970","1309021149-566e","20","1","55","55","0",NULL,"20",,"0"
+"971","1309021159-0594","20","1","55","55","0",NULL,"20",,"0"
+"972","1309021319-27ca","23","1","3.5","1","0",NULL,"23",,"2.5"
+"973","1309021319-27ca","19","1","3.5","1","0",NULL,"19",,"2.5"
+"974","1309021319-27ca","15","1","3.5","1","0",NULL,"15",,"2.5"
+"975","1309021319-27ca","18","1","3.5","1","0",NULL,"18",,"2.5"
+"976","1309021319-27ca","17","1","3.5","1","0",NULL,"17",,"2.5"
+"977","1309021327-b555","21","1","110","110","0",NULL,"21",,"0"
+"978","1309031143-cd2a","20","1","55","55","0",NULL,"20",,"0"
+"979","1309031143-cd2a","24","1","9","9","0",NULL,"24",,"0"
+"980","1309031143-cd2a","22","1","3.5","3.5","0",NULL,"22",,"0"
+"981","1309031143-cd2a","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"982","1309031232-246e","20","1","55","55","0",NULL,"20",,"0"
+"983","1309051009-de20","23","1","3.5","2","0",NULL,"23",,"1.5"
+"984","1309051009-de20","24","1","9","9","0",NULL,"24",,"0"
+"985","1309061709-22d6","24","1","9","9","0",NULL,"24",,"0"
+"986","1309061722-22d6","18","1","3.5","1","0",NULL,"18",,"2.5"
+"987","1309061722-22d6","17","1","3.5","1","0",NULL,"17",,"2.5"
+"988","1309061722-22d6","23","1","3.5","1","0",NULL,"23",,"2.5"
+"989","1309061722-22d6","19","1","3.5","1","0",NULL,"19",,"2.5"
+"990","1309061722-22d6","15","1","3.5","1","0",NULL,"15",,"2.5"
+"991","1309062245-145b","21","1","110","110","0",NULL,"21",,"0"
+"992","1309070236-1342","21","1","110","110","0",NULL,"21",,"0"
+"993","1309071023-1b13","24","1","9","9","0",NULL,"24",,"0"
+"994","1309080451-94a2","20","1","55","55","0",NULL,"20",,"0"
+"995","1309080858-2cb6","21","1","110","110","0",NULL,"21",,"0"
+"996","1309092143-9abb","24","1","9","9","0",NULL,"24",,"0"
+"997","1309101535-bbaf","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"998","1309101535-bbaf","1","1","13.5","13.5","0",NULL,"1",,"0"
+"999","1309101642-eb19","20","1","55","55","0",NULL,"20",,"0"
+"1000","1309101642-eb19","2","1","12","12","0",NULL,"2",,"0"
+"1001","1309101642-eb19","24","1","9","9","0",NULL,"24",,"0"
+"1002","1309111030-f62c","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1003","1309111030-f62c","15","1","3.5","2","0",NULL,"15",,"1.5"
+"1004","1309111030-f62c","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1005","1309111030-f62c","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1006","1309111030-f62c","14","1","25","15","0",NULL,"14",,"10"
+"1007","1309111030-f62c","8","50","0.1","5","0",NULL,"8",,"0"
+"1008","1309111030-f62c","6","50","0.1","5","0",NULL,"6",,"0"
+"1009","1309111236-987a","2","1","12","12","0",NULL,"2",,"0"
+"1010","1309121248-821f","24","1","9","9","0",NULL,"24",,"0"
+"1011","1309131150-d162","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1012","1309131150-d162","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1013","1309131150-d162","24","1","9","9","0",NULL,"24",,"0"
+"1014","1309131150-d162","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1015","1309131150-d162","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1016","1309151432-5673","8","10","0.1","1","0",NULL,"8",,"0"
+"1017","1309151432-5673","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1018","1309151432-5673","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1019","1309151432-5673","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1020","1309151432-5673","2","1","12","12","0",NULL,"2",,"0"
+"1021","1309161207-4a0e","9","1","0.6","0.6","0",NULL,"9",,"0"
+"1022","1309161207-4a0e","23","1","3.5","1.25","0",NULL,"23",,"2.25"
+"1023","1309161207-4a0e","6","1","0.1","0.1","0",NULL,"6",,"0"
+"1024","1309161207-4a0e","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1025","1309161353-1c96","2","1","12","12","0",NULL,"2",,"0"
+"1026","1309162216-d93f","22","4","3.5","14","0",NULL,"22",,"0"
+"1027","1309162240-e13b","22","4","3.5","14","0",NULL,"22",,"0"
+"1028","1309170229-4e2b","2","1","12","12","0",NULL,"2",,"0"
+"1029","1309170229-4e2b","8","10","0.1","1","0",NULL,"8",,"0"
+"1030","1309170229-4e2b","6","10","0.1","1","0",NULL,"6",,"0"
+"1031","1309170229-4e2b","15","3","3.5","3","0",NULL,"15",,"2.5"
+"1032","1309170229-4e2b","19","3","3.5","3","0",NULL,"19",,"2.5"
+"1033","1309170229-4e2b","17","3","3.5","3","0",NULL,"17",,"2.5"
+"1034","1309170229-4e2b","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1035","1309170229-4e2b","23","3","3.5","3","0",NULL,"23",,"2.5"
+"1036","1309191113-3cfb","23","2","3.5","2.5","0",NULL,"23",,"2.25"
+"1037","1309191113-3cfb","24","2","9","18","0",NULL,"24",,"0"
+"1038","1309201306-26df","2","1","12","12","0",NULL,"2",,"0"
+"1039","1309221652-b102","2","1","12","12","0",NULL,"2",,"0"
+"1040","1309222031-b8d0","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1041","1309222031-b8d0","24","1","9","9","0",NULL,"24",,"0"
+"1042","1309231225-4ee4","2","1","12","12","0",NULL,"2",,"0"
+"1043","1309231338-fefe","11","1","30","18","0",NULL,"11",,"12"
+"1044","1309231338-fefe","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1045","1309231338-fefe","8","20","0.1","2","0",NULL,"8",,"0"
+"1046","1309231338-fefe","6","20","0.1","2","0",NULL,"6",,"0"
+"1047","1309231338-fefe","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1048","1309231338-fefe","7","2","13.5","25","0",NULL,"7-10","Popular","1"
+"1049","1309241403-432e","24","1","9","9","0",NULL,"24",,"0"
+"1050","1309241640-defd","2","1","12","12","0",NULL,"2",,"0"
+"1051","1309261537-066b","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1052","1309261537-066b","8","50","0.1","5","0",NULL,"8",,"0"
+"1053","1309261537-066b","14","1","25","15","0",NULL,"14",,"10"
+"1054","1309261537-066b","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1055","1309281048-e699","24","1","9","9","0",NULL,"24",,"0"
+"1056","1309281048-e699","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1057","1309281053-3267","24","1","9","9","0",NULL,"24",,"0"
+"1058","1309281053-3267","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1059","1310011904-826a","2","1","12","12","0",NULL,"2",,"0"
+"1060","1310021645-6ed5","20","1","90","90","0",NULL,"20",,"0"
+"1061","1310051304-2aa9","7","2","13.5","25","0",NULL,"7","Popular","1"
+"1062","1310061738-2793","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1063","1310061738-2793","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1064","1310061738-2793","8","1","0.1","0.1","0",NULL,"8",,"0"
+"1065","1310061738-2793","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1066","1310061738-2793","24","1","9","9","0",NULL,"24",,"0"
+"1067","1310061738-2793","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1068","1310061738-2793","6","1","0.1","0.1","0",NULL,"6",,"0"
+"1069","1310061738-2793","2","1","12","12","0",NULL,"2",,"0"
+"1070","1310062003-fc74","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1071","1310062024-fc74","2","1","12","12","0",NULL,"2",,"0"
+"1072","1310082036-b480","22","2","3.5","7","0",NULL,"22",,"0"
+"1073","1310101148-a575","1","2","13.5","25","0",NULL,"1",,"1"
+"1074","1310101438-2554","2","2","12","24","0",NULL,"2",,"0"
+"1075","1310141542-4a78","24","1","9","9","0",NULL,"24",,"0"
+"1076","1310161455-7880","2","1","12","12","0",NULL,"2",,"0"
+"1077","1310220819-1cbb","14","1","25","15","0",NULL,"14",,"10"
+"1078","1310220819-1cbb","2","1","12","12","0",NULL,"2",,"0"
+"1079","1310220819-1cbb","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1080","1310220830-1cbb","14","1","25","15","0",NULL,"14",,"10"
+"1081","1310220830-1cbb","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1082","1310220830-1cbb","2","1","12","12","0",NULL,"2",,"0"
+"1083","1310221434-9745","4","1","432","432","0",NULL,"4",,"0"
+"1084","1310241118-3958","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1085","1310241435-d769","14","6","25","90","0",NULL,"14",,"10"
+"1086","1310241439-d769","14","6","25","90","0",NULL,"14",,"10"
+"1087","1310252130-8ae1","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1088","1310262032-938a","2","1","12","12","0",NULL,"2",,"0"
+"1089","1310281205-44ec","8","50","0.1","5","0",NULL,"8",,"0"
+"1090","1310281205-44ec","6","50","0.1","5","0",NULL,"6",,"0"
+"1091","1310281205-44ec","7","1","13.5","13.5","0",NULL,"7-12","Popular","0"
+"1092","1310281400-bd76","24","1","9","9","0",NULL,"24",,"0"
+"1093","1310281400-bd76","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1094","1310282326-1df5","24","1","9","9","0",NULL,"24",,"0"
+"1095","1310282326-1df5","9","1","0.6","0.6","0",NULL,"9",,"0"
+"1096","1310282326-1df5","6","1","0.1","0.1","0",NULL,"6",,"0"
+"1097","1310282326-1df5","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1098","1310282326-1df5","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1099","1310282326-1df5","23","1","3.5","1","0",NULL,"23",,"2.5"
+"1100","1310282326-1df5","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1101","1310301649-276f","7","2","13.5","25","0",NULL,"7","Popular","1"
+"1102","1310301649-276f","14","2","25","30","0",NULL,"14",,"10"
+"1103","1310301807-6c31","6","1","0.1","0.1","0",NULL,"6",,"0"
+"1104","1310301807-6c31","8","2","0.1","0.2","0",NULL,"8",,"0"
+"1105","1310301807-6c31","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1106","1310301807-6c31","2","1","12","12","0",NULL,"2",,"0"
+"1107","1310311437-cc9d","2","1","12","12","0",NULL,"2",,"0"
+"1108","1311010820-de98","4","1","432","432","0",NULL,"4",,"0"
+"1109","1311032055-3822","2","1","12","12","0",NULL,"2",,"0"
+"1110","1311040954-a677","20","1","90","90","0",NULL,"20",,"0"
+"1111","1311041000-a677","15","4","3.5","5","0",NULL,"15",,"2.25"
+"1112","1311041011-a677","6","50","0.1","5","0",NULL,"6",,"0"
+"1113","1311041011-a677","8","50","0.1","5","0",NULL,"8",,"0"
+"1114","1311041429-fefe","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1115","1311041514-46d6","20","1","90","90","0",NULL,"20",,"0"
+"1116","1311051048-3012","2","1","12","12","0",NULL,"2",,"0"
+"1117","1311051717-fc65","22","3","3.5","10.5","0",NULL,"22",,"0"
+"1118","1311081509-1c1b","14","2","25","30","0",NULL,"14",,"10"
+"1119","1311082245-5b5b","8","21","0.1","2.1","0",NULL,"8",,"0"
+"1120","1311082245-5b5b","11","1","30","18","0",NULL,"11",,"12"
+"1121","1311082245-5b5b","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1122","1311082245-5b5b","6","20","0.1","2","0",NULL,"6",,"0"
+"1123","1311082245-5b5b","7","3","13.5","37.5","0",NULL,"7","Popular","1"
+"1124","1311082246-fbe4","2","1","12","12","0",NULL,"2",,"0"
+"1125","1311082246-fbe4","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1126","1311101652-e124","21","1","150","150","0",NULL,"21",,"0"
+"1127","1311102135-a581","2","1","12","12","0",NULL,"2",,"0"
+"1128","1311102256-987a","2","1","12","12","0",NULL,"2",,"0"
+"1129","1311111446-9029","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"1130","1311111446-9029","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"1131","1311111446-9029","24","1","9","9","0",NULL,"24",,"0"
+"1132","1311111446-9029","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1133","1311121840-e7cd","10","50","0.5","25","0",NULL,"10",,"0"
+"1134","1311121840-e7cd","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1135","1311121840-e7cd","8","1","0.1","0.1","0",NULL,"8",,"0"
+"1136","1311121840-e7cd","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1137","1311130019-181a","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"1138","1311130019-181a","23","1","3.5","1.25","0",NULL,"23",,"2.25"
+"1139","1311130019-181a","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"1140","1311132250-2391","10","25","0.5","12.5","0",NULL,"10",,"0"
+"1141","1311132250-2391","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1142","1311141759-3071","2","1","12","12","0",NULL,"2",,"0"
+"1143","1311141836-c4ad","2","1","12","12","0",NULL,"2",,"0"
+"1144","1311151352-55db","2","1","12","12","0",NULL,"2",,"0"
+"1145","1311151352-55db","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1146","1311151352-55db","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1147","1311151352-55db","23","1","3.5","1","0",NULL,"23",,"2.5"
+"1148","1311151352-55db","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1149","1311151352-55db","20","1","90","90","0",NULL,"20",,"0"
+"1150","1311181355-95ad","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1151","1311181355-95ad","14","1","25","15","0",NULL,"14",,"10"
+"1152","1311181355-95ad","8","50","0.1","5","0",NULL,"8",,"0"
+"1153","1311181355-95ad","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1154","1311181355-95ad","6","50","0.1","5","0",NULL,"6",,"0"
+"1155","1311181355-95ad","11","1","30","18","0",NULL,"11",,"12"
+"1156","1311181355-95ad","19","1","3.5","2","0",NULL,"19",,"1.5"
+"1157","1311181355-95ad","18","1","3.5","2","0",NULL,"18",,"1.5"
+"1158","1311181355-95ad","17","1","3.5","2","0",NULL,"17",,"1.5"
+"1159","1311181355-95ad","23","1","3.5","2","0",NULL,"23",,"1.5"
+"1160","1311181355-95ad","15","1","3.5","2","0",NULL,"15",,"1.5"
+"1161","1311221152-48b7","14","3","25","45","0",NULL,"14",,"10"
+"1162","1311252006-8671","2","1","12","12","0",NULL,"2",,"0"
+"1163","1311261116-53e7","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1164","1311261116-53e7","2","3","12","36","0",NULL,"2",,"0"
+"1165","1312021037-1bf1","11","1","30","18","0",NULL,"11",,"12"
+"1166","1312021037-1bf1","1","2","13.5","25","0",NULL,"1",,"1"
+"1167","1312021604-ca38","2","1","12","12","0",NULL,"2",,"0"
+"1168","1312031407-455e","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1169","1312031407-455e","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1170","1312031407-455e","23","1","3.5","1","0",NULL,"23",,"2.5"
+"1171","1312031407-455e","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1172","1312031407-455e","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1173","1312031407-455e","2","1","12","12","0",NULL,"2",,"0"
+"1174","1312031407-455e","20","1","90","90","0",NULL,"20",,"0"
+"1175","1312032306-3846","9","5","0.6","3","0",NULL,"9",,"0"
+"1176","1312032306-3846","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1177","1312032306-3846","8","20","0.1","2","0",NULL,"8",,"0"
+"1178","1312032306-3846","6","20","0.1","2","0",NULL,"6",,"0"
+"1179","1312032306-3846","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1180","1312032306-3846","23","1","3.5","1","0",NULL,"23",,"2.5"
+"1181","1312032306-3846","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1182","1312032306-3846","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1183","1312041535-42f0","20","2","90","180","0",NULL,"20",,"0"
+"1184","1312041535-42f0","21","1","150","150","0",NULL,"21",,"0"
+"1185","1312051248-c5e2","2","1","12","12","0",NULL,"2",,"0"
+"1186","1312061439-4ebe","2","1","12","12","0",NULL,"2",,"0"
+"1187","1312081234-a21f","2","1","12","12","0",NULL,"2",,"0"
+"1188","1312090909-77af","23","20","3.5","20","0",NULL,"23",,"2.5"
+"1189","1312090909-77af","15","20","3.5","20","0",NULL,"15",,"2.5"
+"1190","1312090909-77af","18","20","3.5","20","0",NULL,"18",,"2.5"
+"1191","1312090909-77af","17","20","3.5","20","0",NULL,"17",,"2.5"
+"1192","1312090909-77af","19","20","3.5","20","0",NULL,"19",,"2.5"
+"1193","1312120225-7ebe","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1194","1312120225-7ebe","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1195","1312170019-d988","24","1","9","9","0",NULL,"24",,"0"
+"1196","1312171343-6de3","22","5","3.5","17.5","0",NULL,"22",,"0"
+"1197","1312171343-6de3","19","25","3.5","25","0",NULL,"19",,"2.5"
+"1198","1312231312-3c90","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1199","1312231408-03e6","2","1","12","12","0",NULL,"2",,"0"
+"1200","1312262246-b47b","2","1","12","12","0",NULL,"2",,"0"
+"1201","1312301735-e5fe","2","1","12","12","0",NULL,"2",,"0"
+"1202","1312301739-e5fe","19","1","3.5","2","0",NULL,"19",,"1.5"
+"1203","1312301739-e5fe","15","1","3.5","2","0",NULL,"15",,"1.5"
+"1204","1401021543-74a9","26","1","5","5","0",NULL,"26",,"0"
+"1205","1401031726-985a","2","1","12","12","0",NULL,"2",,"0"
+"1206","1401031726-985a","26","1","5","5","0",NULL,"26",,"0"
+"1207","1401031943-7464","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1208","1401031943-7464","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1209","1401031943-7464","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1210","1401031943-7464","23","1","3.5","1","0",NULL,"23",,"2.5"
+"1211","1401031943-7464","20","1","90","90","0",NULL,"20",,"0"
+"1212","1401081232-3d00","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1213","1401091254-1106","2","1","12","12","0",NULL,"2",,"0"
+"1214","1401091318-a4c6","7","2","13.5","25","0",NULL,"7","Popular","1"
+"1215","1401091318-a4c6","1","2","13.5","25","0",NULL,"1",,"1"
+"1216","1401092027-9480","14","1","25","15","0",NULL,"14",,"10"
+"1217","1401102029-f570","17","10","3.5","10","0",NULL,"17",,"2.5"
+"1218","1401102029-f570","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1219","1401102029-f570","11","1","30","18","0",NULL,"11",,"12"
+"1220","1401102029-f570","7","2","13.5","25","0",NULL,"7","Popular","1"
+"1221","1401111335-085c","2","1","12","12","0",NULL,"2",,"0"
+"1222","1401111335-085c","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1223","1401130809-267a","24","1","9","9","0",NULL,"24",,"0"
+"1224","1401130809-267a","10","1","0.5","0.5","0",NULL,"10",,"0"
+"1225","1401130809-267a","8","1","0.1","0.1","0",NULL,"8",,"0"
+"1226","1401130809-267a","6","1","0.1","0.1","0",NULL,"6",,"0"
+"1227","1401130809-267a","9","1","0.6","0.6","0",NULL,"9",,"0"
+"1228","1401130809-267a","2","1","12","12","0",NULL,"2",,"0"
+"1229","1401130809-267a","26","1","5","5","0",NULL,"26",,"0"
+"1230","1401130809-267a","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1231","1401130809-267a","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1232","1401130809-267a","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1233","1401130809-267a","23","1","3.5","1","0",NULL,"23",,"2.5"
+"1234","1401130809-267a","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1235","1401131433-3d81","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"1236","1401131433-3d81","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"1237","1401131433-3d81","26","1","5","5","0",NULL,"26",,"0"
+"1238","1401131515-bb20","4","1","432","432","0",NULL,"4",,"0"
+"1239","1401132311-cc75","2","1","12","12","0",NULL,"2",,"0"
+"1240","1401132311-cc75","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1241","1401181800-941b","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1242","1401190624-f3ef","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1243","1401190706-f3ef","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1244","1401190736-bb64","23","1","3.5","1","0",NULL,"23",,"2.5"
+"1245","1401190736-bb64","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1246","1401190736-bb64","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1247","1401190736-bb64","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1248","1401190736-bb64","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1249","1401191036-3e4d","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1250","1401191036-3e4d","23","1","3.5","1","0",NULL,"23",,"2.5"
+"1251","1401191036-3e4d","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1252","1401191036-3e4d","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1253","1401191036-3e4d","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1254","1401191036-3e4d","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1255","1401210912-f3e3","26","1","5","5","0",NULL,"26",,"0"
+"1256","1401210912-f3e3","19","1","3.5","2","0",NULL,"19",,"1.5"
+"1257","1401211024-fce4","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1258","1401250942-4421","26","2","5","10","0",NULL,"26",,"0"
+"1259","1401250942-4421","23","2","3.5","2","0",NULL,"23",,"2.5"
+"1260","1401250942-4421","19","2","3.5","2","0",NULL,"19",,"2.5"
+"1261","1401250942-4421","15","2","3.5","2","0",NULL,"15",,"2.5"
+"1262","1401250942-4421","17","2","3.5","2","0",NULL,"17",,"2.5"
+"1263","1401250942-4421","2","1","12","12","0",NULL,"2",,"0"
+"1264","1401261012-3f00","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1265","1401261012-3f00","26","1","5","5","0",NULL,"26",,"0"
+"1266","1401261012-3f00","2","1","12","12","0",NULL,"2",,"0"
+"1267","1401261533-758e","7","2","13.5","25","0",NULL,"7","Popular","1"
+"1268","1401261533-758e","8","200","0.1","20","0",NULL,"8",,"0"
+"1269","1401271221-b8db","2","1","12","12","0",NULL,"2",,"0"
+"1270","1401271857-9846","8","6","0.1","0.6","0",NULL,"8",,"0"
+"1271","1401271857-9846","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1272","1401271857-9846","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1273","1401271857-9846","6","6","0.1","0.6","0",NULL,"6",,"0"
+"1274","1401280827-5143","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1275","1401280827-5143","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1276","1401280827-5143","17","2","3.5","2","0",NULL,"17",,"2.5"
+"1277","1401280827-5143","26","1","5","5","0",NULL,"26",,"0"
+"1278","1401281929-f85f","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1279","1401281949-8e3d","26","20","5","100","0",NULL,"26",,"0"
+"1280","1401281949-8e3d","17","20","3.5","20","0",NULL,"17",,"2.5"
+"1281","1401281949-8e3d","14","2","25","30","0",NULL,"14",,"10"
+"1282","1401281949-8e3d","1","2","13.5","25","0",NULL,"1",,"1"
+"1283","1401291117-7c2f","18","1","3.5","1.25","0",NULL,"18",,"2.25"
+"1284","1401291117-7c2f","23","1","3.5","1.25","0",NULL,"23",,"2.25"
+"1285","1401291117-7c2f","26","1","5","5","0",NULL,"26",,"0"
+"1286","1401291733-a5e4","23","1","3.5","1","0",NULL,"23",,"2.5"
+"1287","1401291733-a5e4","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1288","1401291733-a5e4","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1289","1401291733-a5e4","26","1","5","5","0",NULL,"26",,"0"
+"1290","1401291733-a5e4","8","1","0.1","0.1","0",NULL,"8",,"0"
+"1291","1401291733-a5e4","10","1","0.5","0.5","0",NULL,"10",,"0"
+"1292","1401291733-a5e4","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1293","1401291733-a5e4","6","1","0.1","0.1","0",NULL,"6",,"0"
+"1294","1401291733-a5e4","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1295","1401292012-b4c4","26","1","5","5","0",NULL,"26",,"0"
+"1296","1401292019-762a","26","1","5","5","0",NULL,"26",,"0"
+"1297","1401301442-1396","2","1","12","12","0",NULL,"2",,"0"
+"1298","1401301442-1396","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1299","1401301442-1396","26","1","5","5","0",NULL,"26",,"0"
+"1300","1401311303-2afe","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1301","1401311303-2afe","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1302","1402011530-e73d","26","1","5","5","0",NULL,"26",,"0"
+"1303","1402031203-f712","14","1","25","15","0",NULL,"14",,"10"
+"1304","1402031203-f712","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1305","1402032035-01f9","19","1","3.5","2","0",NULL,"19",,"1.5"
+"1306","1402032035-01f9","26","1","5","5","0",NULL,"26",,"0"
+"1307","1402051422-7f15","26","2","5","10","0",NULL,"26",,"0"
+"1308","1402051648-33e8","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"1309","1402051648-33e8","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"1310","1402051648-33e8","2","1","12","12","0",NULL,"2",,"0"
+"1311","1402051648-33e8","23","1","3.5","1.25","0",NULL,"23",,"2.25"
+"1312","1402052038-bbef","26","1","5","5","0",NULL,"26",,"0"
+"1313","1402080852-2339","26","1","5","5","0",NULL,"26",,"0"
+"1314","1402111844-364b","18","1","3.5","1.25","0",NULL,"18",,"2.25"
+"1315","1402111844-364b","23","1","3.5","1.25","0",NULL,"23",,"2.25"
+"1316","1402111844-364b","24","1","9","9","0",NULL,"24",,"0"
+"1317","1402111844-364b","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1318","1402130945-f9ee","2","1","12","12","0",NULL,"2",,"0"
+"1319","1402151539-a768","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"1320","1402151539-a768","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"1321","1402151539-a768","26","1","5","5","0",NULL,"26",,"0"
+"1322","1402161636-9ac7","2","1","12","12","0",NULL,"2",,"0"
+"1323","1402161636-9ac7","26","1","5","5","0",NULL,"26",,"0"
+"1324","1402161636-9ac7","28","1","90","90","0",NULL,"28",,"0"
+"1325","1402172050-b06c","26","3","5","15","0",NULL,"26",,"0"
+"1326","1402211339-db66","20","1","90","90","0",NULL,"20",,"0"
+"1327","1402211339-db66","28","1","60","60","0",NULL,"28",,"0"
+"1328","1402211635-4ce3","14","1","25","15","0",NULL,"14",,"10"
+"1329","1402211635-4ce3","7","1","13.5","13.5","0",NULL,"7-13","Popular","0"
+"1330","1402231230-7054","2","1","12","12","0",NULL,"2",,"0"
+"1331","1402231250-7054","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1332","1402231250-7054","26","1","5","5","0",NULL,"26",,"0"
+"1333","1402231250-7054","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1334","1402231250-7054","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1335","1402231250-7054","23","1","3.5","1","0",NULL,"23",,"2.5"
+"1336","1402231250-7054","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1337","1402241355-41b1","20","1","90","90","0",NULL,"20",,"0"
+"1338","1402252308-3649","6","1","0.1","0.1","0",NULL,"6",,"0"
+"1339","1402252308-3649","10","1","0.5","0.5","0",NULL,"10",,"0"
+"1340","1402252308-3649","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1341","1402252308-3649","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1342","1402252308-3649","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1343","1402252308-3649","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1344","1402252308-3649","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1345","1402252308-3649","28","1","60","60","0",NULL,"28",,"0"
+"1346","1402252308-3649","20","1","90","90","0",NULL,"20",,"0"
+"1347","1402252308-3649","26","1","5","5","0",NULL,"26",,"0"
+"1348","1402261144-a385","15","1","3.5","2","0",NULL,"15",,"1.5"
+"1349","1402261144-a385","27","1","115","115","0",NULL,"27",,"0"
+"1350","1402262254-39f0","10","10","0.5","5","0",NULL,"10",,"0"
+"1351","1402262254-39f0","8","50","0.1","5","0",NULL,"8",,"0"
+"1352","1402262254-39f0","24","1","9","9","0",NULL,"24",,"0"
+"1353","1402262254-39f0","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1354","1402262254-39f0","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1355","1402262254-39f0","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1356","1402270541-7d90","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1357","1402270541-7d90","7","3","13.5","37.5","0",NULL,"7","Popular","1"
+"1358","1402270541-7d90","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1612","1404102150-52cb","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1611","1404102150-52cb","2","1","12","12","0",NULL,"2",,"0"
+"1610","1404101149-d9a8","28","1","60","60","0",NULL,"28",,"0"
+"1609","1404101149-d9a8","20","1","90","90","0",NULL,"20",,"0"
+"1608","1404101149-d9a8","26","1","5","5","0",NULL,"26",,"0"
+"1607","1404082343-6c19","27","1","115","115","0",NULL,"27",,"0"
+"1366","1402271149-8934","26","1","5","5","0",NULL,"26",,"0"
+"1367","1403011928-7d0c","28","1","60","60","0",NULL,"28",,"0"
+"1368","1403021102-4a63","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1369","1403021102-4a63","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1370","1403021102-4a63","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1371","1403021102-4a63","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1372","1403021102-4a63","8","1","0.1","0.1","0",NULL,"8",,"0"
+"1373","1403021102-4a63","6","1","0.1","0.1","0",NULL,"6",,"0"
+"1374","1403021102-4a63","14","1","25","15","0",NULL,"14",,"10"
+"1375","1403021138-7891","17","1","3.5","2","0",NULL,"17",,"1.5"
+"1376","1403021138-7891","15","1","3.5","2","0",NULL,"15",,"1.5"
+"1613","1404102150-52cb","26","1","5","5","0",NULL,"26",,"0"
+"1378","1403031317-1578","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1379","1403031317-1578","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1380","1403031317-1578","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1381","1403031317-1578","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1382","1403031317-1578","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1383","1403031317-1578","2","1","12","12","0",NULL,"2",,"0"
+"1384","1403031356-0955","26","1","5","5","0",NULL,"26",,"0"
+"1385","1403031637-82d7","28","1","60","60","0",NULL,"28",,"0"
+"1386","1403031755-1beb","8","50","0.1","5","0",NULL,"8",,"0"
+"1387","1403031755-1beb","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1388","1403031755-1beb","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1389","1403031805-1638","28","1","60","60","0",NULL,"28",,"0"
+"1390","1403032007-e3df","28","1","60","60","0",NULL,"28",,"0"
+"1391","1403032104-999e","28","1","60","60","0",NULL,"28",,"0"
+"1392","1403032150-2358","28","1","60","60","0",NULL,"28",,"0"
+"1393","1403032312-f83b","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1394","1403032312-f83b","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1395","1403032312-f83b","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1396","1403032312-f83b","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1397","1403032312-f83b","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1398","1403040657-e02c","2","1","12","12","0",NULL,"2",,"0"
+"1399","1403040915-7cbd","26","1","5","5","0",NULL,"26",,"0"
+"1400","1403040915-7cbd","2","1","12","12","0",NULL,"2",,"0"
+"1401","1403040915-7cbd","20","1","90","90","0",NULL,"20",,"0"
+"1402","1403040915-7cbd","28","1","60","60","0",NULL,"28",,"0"
+"1403","1403041240-a9b3","28","1","60","60","0",NULL,"28",,"0"
+"1404","1403041240-a9b3","27","1","115","115","0",NULL,"27",,"0"
+"1405","1403041744-5c45","28","1","60","60","0",NULL,"28",,"0"
+"1406","1403041808-22ad","7","3","13.5","37.5","0",NULL,"7","Popular","1"
+"1407","1403042352-df3d","27","1","115","115","0",NULL,"27",,"0"
+"1408","1403051022-ed9d","28","1","60","60","0",NULL,"28",,"0"
+"1409","1403051022-ed9d","20","1","90","90","0",NULL,"20",,"0"
+"1410","1403051441-c13c","22","2","3.5","7","0",NULL,"22",,"0"
+"1411","1403051547-2088","24","1","9","9","0",NULL,"24",,"0"
+"1412","1403051547-2088","31","6","3.5","6","0",NULL,"31",,"2.5"
+"1413","1403051547-2088","18","4","3.5","4","0",NULL,"18",,"2.5"
+"1414","1403051617-0515","27","1","115","115","0",NULL,"27",,"0"
+"1415","1403051617-0515","21","1","150","150","0",NULL,"21",,"0"
+"1416","1403061006-c26d","27","1","115","115","0",NULL,"27",,"0"
+"1417","1403061024-c26d","24","1","9","9","0",NULL,"24",,"0"
+"1418","1403061308-d126","28","1","60","60","0",NULL,"28",,"0"
+"1419","1403061308-d126","20","1","90","90","0",NULL,"20",,"0"
+"1420","1403061417-c6e2","28","1","60","60","0",NULL,"28",,"0"
+"1421","1403061417-c6e2","26","1","5","5","0",NULL,"26",,"0"
+"1422","1403061740-d207","2","1","12","12","0",NULL,"2",,"0"
+"1423","1403061857-19da","28","1","60","60","0",NULL,"28",,"0"
+"1424","1403071158-455e","28","1","60","60","0",NULL,"28",,"0"
+"1425","1403071319-0840","28","1","60","60","0",NULL,"28",,"0"
+"1426","1403080934-a177","1","2","13.5","25","0",NULL,"1",,"1"
+"1427","1403081003-cd93","26","1","5","5","0",NULL,"26",,"0"
+"1428","1403090035-7d7e","2","1","12","12","0",NULL,"2",,"0"
+"1429","1403091625-13b0","28","1","60","60","0",NULL,"28",,"0"
+"1430","1403100025-05b3","28","1","60","60","0",NULL,"28",,"0"
+"1431","1403101223-fe7e","27","1","115","115","0",NULL,"27",,"0"
+"1432","1403101230-f241","19","1","3.5","2","0",NULL,"19",,"1.5"
+"1433","1403101230-f241","26","1","5","5","0",NULL,"26",,"0"
+"1434","1403101645-6d6b","27","1","115","115","0",NULL,"27",,"0"
+"1435","1403101839-3e9a","29","1","3.5","3.5","0",NULL,"29",,"0"
+"1436","1403101839-3e9a","26","1","5","5","0",NULL,"26",,"0"
+"1437","1403101839-3e9a","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1438","1403101839-3e9a","19","2","3.5","2","0",NULL,"19",,"2.5"
+"1439","1403101839-3e9a","2","1","12","12","0",NULL,"2",,"0"
+"1440","1403101839-3e9a","27","1","115","115","0",NULL,"27",,"0"
+"1441","1403101839-3e9a","21","1","150","150","0",NULL,"21",,"0"
+"1442","1403101950-b196","2","1","12","12","0",NULL,"2",,"0"
+"1443","1403111139-2339","26","1","5","5","0",NULL,"26",,"0"
+"1444","1403111239-62bd","2","1","12","12","0",NULL,"2",,"0"
+"1445","1403111534-aa5c","28","1","60","60","0",NULL,"28",,"0"
+"1446","1403111912-24bd","28","1","60","60","0",NULL,"28",,"0"
+"1447","1403111912-24bd","20","1","90","90","0",NULL,"20",,"0"
+"1448","1403112224-892c","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1449","1403112224-892c","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1450","1403112224-892c","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1451","1403112224-892c","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1452","1403112224-892c","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1453","1403112224-892c","2","1","12","12","0",NULL,"2",,"0"
+"1454","1403112238-f0a3","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1455","1403112238-f0a3","2","1","12","12","0",NULL,"2",,"0"
+"1456","1403112238-f0a3","27","1","115","115","0",NULL,"27",,"0"
+"1457","1403112238-f0a3","21","1","150","150","0",NULL,"21",,"0"
+"1458","1403121019-f878","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1459","1403121019-f878","14","2","25","30","0",NULL,"14",,"10"
+"1460","1403121211-ce1a","28","1","60","60","0",NULL,"28",,"0"
+"1461","1403121535-ea49","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1462","1403122034-d545","14","1","25","15","0",NULL,"14",,"10"
+"1463","1403131453-e0cc","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1464","1403131453-e0cc","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1465","1403131453-e0cc","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1466","1403131453-e0cc","2","1","12","12","0",NULL,"2",,"0"
+"1467","1403131453-e0cc","14","1","25","15","0",NULL,"14",,"10"
+"1468","1403131453-e0cc","30","1","3.5","3.5","0",NULL,"30",,"0"
+"1469","1403131453-e0cc","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1470","1403131453-e0cc","26","2","5","10","0",NULL,"26",,"0"
+"1471","1403131623-f9fb","21","1","150","150","0",NULL,"21",,"0"
+"1472","1403131623-f9fb","27","1","115","115","0",NULL,"27",,"0"
+"1473","1403141342-3679","7","4","13.5","50","0",NULL,"7","Popular","1"
+"1474","1403141342-3679","14","4","25","60","0",NULL,"14",,"10"
+"1475","1403150013-266a","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1476","1403150013-266a","8","150","0.1","15","0",NULL,"8",,"0"
+"1477","1403150013-266a","7","3","13.5","37.5","0",NULL,"7","Popular","1"
+"1478","1403151408-2183","26","1","5","5","0",NULL,"26",,"0"
+"1479","1403161950-7c82","28","1","60","60","0",NULL,"28",,"0"
+"1480","1403171623-dc17","2","1","12","12","0",NULL,"2",,"0"
+"1481","1403171901-9b3e","2","1","12","12","0",NULL,"2",,"0"
+"1482","1403181448-0ac9","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1483","1403181448-0ac9","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1484","1403201126-59b8","28","1","60","60","0",NULL,"28",,"0"
+"1485","1403201723-1792","28","1","60","60","0",NULL,"28",,"0"
+"1486","1403202257-e922","7","2","13.5","25","0",NULL,"7","Popular","1"
+"1487","1403210015-1e24","28","1","60","60","0",NULL,"28",,"0"
+"1488","1403211142-14aa","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1489","1403231355-0ee6","14","1","25","15","0",NULL,"14",,"10"
+"1490","1403231355-0ee6","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1491","1403231355-0ee6","6","10","0.1","1","0",NULL,"6",,"0"
+"1492","1403231355-0ee6","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1493","1403232254-d822","26","1","5","5","0",NULL,"26",,"0"
+"1494","1403232254-d822","8","50","0.1","5","0",NULL,"8",,"0"
+"1495","1403232254-d822","14","1","25","15","0",NULL,"14",,"10"
+"1496","1403232254-d822","7","1","13.5","13.5","0",NULL,"7-15","Popular","0"
+"1497","1403241146-a4c3","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1498","1403241146-a4c3","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1499","1403241146-a4c3","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1500","1403241146-a4c3","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1501","1403241146-a4c3","26","1","5","5","0",NULL,"26",,"0"
+"1502","1403241146-a4c3","28","1","60","60","0",NULL,"28",,"0"
+"1503","1403241146-a4c3","24","1","9","9","0",NULL,"24",,"0"
+"1504","1403241146-a4c3","20","1","90","90","0",NULL,"20",,"0"
+"1505","1403250755-80cb","31","3","3.5","3","0",NULL,"31",,"2.5"
+"1506","1403250755-80cb","15","3","3.5","3","0",NULL,"15",,"2.5"
+"1507","1403250755-80cb","26","5","5","25","0",NULL,"26",,"0"
+"1508","1403251135-5a72","28","1","60","60","0",NULL,"28",,"0"
+"1509","1403251336-7a5f","2","1","12","12","0",NULL,"2",,"0"
+"1510","1403251543-1619","2","1","12","12","0",NULL,"2",,"0"
+"1511","1403251854-3346","2","1","12","12","0",NULL,"2",,"0"
+"1512","1403252044-b8d1","27","1","115","115","0",NULL,"27",,"0"
+"1513","1403252346-21d2","27","1","115","115","0",NULL,"27",,"0"
+"1514","1403261635-328b","2","1","12","12","0",NULL,"2",,"0"
+"1515","1403270728-27f7","2","1","12","12","0",NULL,"2",,"0"
+"1516","1403271144-7922","20","1","90","90","0",NULL,"20",,"0"
+"1517","1403271452-8196","2","1","12","12","0",NULL,"2",,"0"
+"1518","1403271457-c90a","20","1","90","90","0",NULL,"20",,"0"
+"1519","1403271457-c90a","28","1","60","60","0",NULL,"28",,"0"
+"1520","1403272055-be30","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1521","1403272055-be30","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1522","1403272055-be30","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1523","1403272055-be30","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1524","1403272055-be30","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1525","1403272055-be30","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1526","1403280916-86e1","26","1","5","5","0",NULL,"26",,"0"
+"1527","1403280916-86e1","24","1","9","9","0",NULL,"24",,"0"
+"1528","1403280916-86e1","20","1","90","90","0",NULL,"20",,"0"
+"1529","1403280916-86e1","17","2","3.5","2","0",NULL,"17",,"2.5"
+"1530","1403280916-86e1","28","1","60","60","0",NULL,"28",,"0"
+"1531","1403280916-86e1","2","1","12","12","0",NULL,"2",,"0"
+"1532","1403280955-7df4","2","1","12","12","0",NULL,"2",,"0"
+"1533","1403280955-7df4","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1534","1403281140-b5bf","2","1","12","12","0",NULL,"2",,"0"
+"1535","1403281309-076f","20","1","90","90","0",NULL,"20",,"0"
+"1536","1403281552-3703","4","1","432","432","0",NULL,"4",,"0"
+"1537","1403281635-c574","2","1","12","12","0",NULL,"2",,"0"
+"1538","1403281835-8e9d","21","1","150","150","0",NULL,"21",,"0"
+"1539","1403290635-b440","1","6","13.5","75","0",NULL,"1",,"1"
+"1540","1403291637-4609","27","1","115","115","0",NULL,"27",,"0"
+"1541","1403291727-0cd1","2","1","12","12","0",NULL,"2",,"0"
+"1542","1403291727-0cd1","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"1543","1403291727-0cd1","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1544","1403291817-d67f","26","1","5","5","0",NULL,"26",,"0"
+"1545","1403291817-d67f","7","4","13.5","50","0",NULL,"7","Popular","1"
+"1546","1403291955-c660","2","1","12","12","0",NULL,"2",,"0"
+"1547","1403301530-8330","28","2","60","120","0",NULL,"28",,"0"
+"1548","1403301605-51ea","6","50","0.1","5","0",NULL,"6",,"0"
+"1549","1403301605-51ea","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1550","1403301605-51ea","8","100","0.1","10","0",NULL,"8",,"0"
+"1551","1403301718-f50d","2","1","12","12","0",NULL,"2",,"0"
+"1552","1403301934-eecb","2","1","12","12","0",NULL,"2",,"0"
+"1553","1403301937-eecb","2","1","12","12","0",NULL,"2",,"0"
+"1554","1403311005-144d","2","1","12","12","0",NULL,"2",,"0"
+"1555","1403311013-144d","2","1","12","12","0",NULL,"2",,"0"
+"1556","1403311016-144d","2","1","12","12","0",NULL,"2",,"0"
+"1557","1403311112-51e2","2","1","12","12","0",NULL,"2",,"0"
+"1558","1403312156-549a","28","1","60","59","0",NULL,"28",,"1"
+"1559","1404010412-0172","28","1","60","59","0",NULL,"28",,"1"
+"1560","1404010412-0172","20","1","90","90","0",NULL,"20",,"0"
+"1561","1404010843-0892","17","2","3.5","2","0",NULL,"17",,"2.5"
+"1562","1404010843-0892","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1563","1404010843-0892","31","3","3.5","3","0",NULL,"31",,"2.5"
+"1564","1404010900-f10d","1","6","13.5","75","0",NULL,"1",,"1"
+"1565","1404010906-8573","2","1","12","12","0",NULL,"2",,"0"
+"1566","1404010906-8573","20","1","90","90","0",NULL,"20",,"0"
+"1567","1404010906-8573","28","1","60","59","0",NULL,"28",,"1"
+"1568","1404011628-e677","28","1","60","59","0",NULL,"28",,"1"
+"1569","1404011855-242b","2","1","12","12","0",NULL,"2",,"0"
+"1570","1404020550-5d87","2","1","12","12","0",NULL,"2",,"0"
+"1571","1404020807-a27d","8","50","0.1","5","0",NULL,"8",,"0"
+"1572","1404020807-a27d","6","50","0.1","5","0",NULL,"6",,"0"
+"1573","1404020807-a27d","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1574","1404020807-a27d","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1575","1404021445-272b","2","1","12","12","0",NULL,"2",,"0"
+"1576","1404022121-f7ac","26","1","5","5","0",NULL,"26",,"0"
+"1577","1404022121-f7ac","31","2","3.5","2","0",NULL,"31",,"2.5"
+"1578","1404022121-f7ac","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1579","1404022121-f7ac","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1580","1404022121-f7ac","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1581","1404022121-f7ac","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1582","1404031118-f9e5","2","1","12","12","0",NULL,"2",,"0"
+"1583","1404031119-f9e5","2","1","12","12","0",NULL,"2",,"0"
+"1584","1404031510-d112","2","2","12","24","0",NULL,"2",,"0"
+"1585","1404031543-c3d8","28","1","60","59","0",NULL,"28",,"1"
+"1586","1404041522-f057","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1587","1404041522-f057","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1588","1404041522-f057","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"1589","1404041522-f057","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1590","1404042049-be3b","2","1","12","12","0",NULL,"2",,"0"
+"1591","1404051527-75f4","2","1","12","12","0",NULL,"2",,"0"
+"1592","1404051831-2dea","2","1","12","12","0",NULL,"2",,"0"
+"1593","1404061040-b37b","26","1","5","5","0",NULL,"26",,"0"
+"1594","1404061040-b37b","24","1","9","9","0",NULL,"24",,"0"
+"1595","1404061040-b37b","2","1","12","12","0",NULL,"2",,"0"
+"1596","1404061040-b37b","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1597","1404061040-b37b","20","1","90","90","0",NULL,"20",,"0"
+"1598","1404061040-b37b","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1599","1404061040-b37b","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1600","1404061040-b37b","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1601","1404061040-b37b","28","1","60","59","0",NULL,"28",,"1"
+"1602","1404070958-fbd3","28","1","60","59","0",NULL,"28",,"1"
+"1603","1404070958-fbd3","20","1","90","90","0",NULL,"20",,"0"
+"1604","1404071020-fbd3","20","1","90","90","0",NULL,"20",,"0"
+"1605","1404071020-fbd3","28","1","60","59","0",NULL,"28",,"1"
+"1606","1404071122-2dcd","2","2","12","24","0",NULL,"2",,"0"
+"1614","1404102150-52cb","22","5","3.5","17.5","0",NULL,"22",,"0"
+"1615","1404102150-52cb","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1616","1404102150-52cb","19","5","3.5","5","0",NULL,"19",,"2.5"
+"1617","1404111514-6726","8","1500","0.1","150","0",NULL,"8",,"0"
+"1618","1404111514-6726","14","1","25","15","0",NULL,"14",,"10"
+"1619","1404111514-6726","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1620","1404111522-44a3","28","1","60","60","0",NULL,"28",,"0"
+"1621","1404111648-c44e","14","1","25","15","0",NULL,"14",,"10"
+"1622","1404121255-53c3","2","1","12","12","0",NULL,"2",,"0"
+"1623","1404131802-991d","26","1","5","5","0",NULL,"26",,"0"
+"1624","1404131802-991d","27","1","115","115","0",NULL,"27",,"0"
+"1625","1404141255-009f","28","1","60","60","0",NULL,"28",,"0"
+"1626","1404141256-c3fb","27","1","115","115","0",NULL,"27",,"0"
+"1627","1404141256-c3fb","21","1","150","150","0",NULL,"21",,"0"
+"1628","1404141307-9473","26","1","5","5","0",NULL,"26",,"0"
+"1629","1404141307-9473","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1630","1404141307-9473","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1631","1404141307-9473","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1632","1404141307-9473","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1633","1404141307-9473","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1634","1404141801-69ee","2","1","12","12","0",NULL,"2",,"0"
+"1635","1404161141-69d5","7","1","13.5","13.5","0",NULL,"7-19","Popular","0"
+"1636","1404161616-c8fd","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1637","1404161619-4e9a","2","1","12","12","0",NULL,"2",,"0"
+"1638","1404171526-d434","2","1","12","12","0",NULL,"2",,"0"
+"1639","1404172331-44df","26","1","5","5","0",NULL,"26",,"0"
+"1640","1404172331-44df","2","1","12","12","0",NULL,"2",,"0"
+"1641","1404180129-5e04","2","1","12","12","0",NULL,"2",,"0"
+"1642","1404191202-cbfd","2","1","12","12","0",NULL,"2",,"0"
+"1643","1404191713-0505","20","1","90","90","0",NULL,"20",,"0"
+"1644","1404191713-0505","28","1","60","60","0",NULL,"28",,"0"
+"1645","1404191938-5a33","26","1","5","5","0",NULL,"26",,"0"
+"1646","1404191938-5a33","28","1","60","60","0",NULL,"28",,"0"
+"1647","1404201746-5cc0","28","1","60","60","0",NULL,"28",,"0"
+"1648","1404201751-6e4a","28","1","60","60","0",NULL,"28",,"0"
+"1649","1404211429-4c03","2","1","12","12","0",NULL,"2",,"0"
+"1650","1404211429-4c03","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1651","1404211543-7859","21","1","150","150","0",NULL,"21",,"0"
+"1652","1404211543-7859","27","1","115","115","0",NULL,"27",,"0"
+"1653","1404221415-fcdd","2","1","12","12","0",NULL,"2",,"0"
+"1654","1404221415-fcdd","20","1","90","90","0",NULL,"20",,"0"
+"1655","1404221415-fcdd","28","1","60","60","0",NULL,"28",,"0"
+"1656","1404221415-fcdd","26","1","5","5","0",NULL,"26",,"0"
+"1657","1404222221-1250","28","1","60","60","0",NULL,"28",,"0"
+"1658","1404222257-1250","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1659","1404222257-1250","26","2","5","10","0",NULL,"26",,"0"
+"1660","1404222257-1250","6","60","0.1","6","0",NULL,"6",,"0"
+"1661","1404231012-7d3f","2","1","12","12","0",NULL,"2",,"0"
+"1662","1404231032-cb99","30","1","3.5","3.5","0",NULL,"30",,"0"
+"1663","1404231032-cb99","29","1","3.5","3.5","0",NULL,"29",,"0"
+"1664","1404231032-cb99","2","1","12","12","0",NULL,"2",,"0"
+"1665","1404231032-cb99","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1666","1404231032-cb99","19","4","3.5","4","0",NULL,"19",,"2.5"
+"1667","1404231032-cb99","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1668","1404231032-cb99","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1669","1404231032-cb99","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1670","1404231032-cb99","26","1","5","5","0",NULL,"26",,"0"
+"1671","1404231712-9cfa","28","1","60","60","0",NULL,"28",,"0"
+"1672","1404231712-9cfa","20","1","90","90","0",NULL,"20",,"0"
+"1673","1404231838-e686","20","1","90","90","0",NULL,"20",,"0"
+"1674","1404231838-e686","28","1","60","60","0",NULL,"28",,"0"
+"1675","1404261247-5cb2","14","1","25","15","0",NULL,"14",,"10"
+"1676","1404261247-5cb2","2","1","12","12","0",NULL,"2",,"0"
+"1677","1404261604-7e67","20","1","90","90","0",NULL,"20",,"0"
+"1678","1404261604-7e67","28","1","60","60","0",NULL,"28",,"0"
+"1679","1404281104-a4a2","28","1","60","60","0",NULL,"28",,"0"
+"1680","1404281918-f17e","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1681","1404290727-0dd8","20","1","90","90","0",NULL,"20",,"0"
+"1682","1404290727-0dd8","28","1","60","60","0",NULL,"28",,"0"
+"1683","1404292141-1b62","2","1","12","12","0",NULL,"2",,"0"
+"1684","1404301225-ed84","20","1","90","90","0",NULL,"20",,"0"
+"1685","1404301706-428f","2","1","12","12","0",NULL,"2",,"0"
+"1686","1405011114-f044","26","1","5","5","0",NULL,"26",,"0"
+"1687","1405011114-f044","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1688","1405011114-f044","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1689","1405011114-f044","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1690","1405011114-f044","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1691","1405011114-f044","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1692","1405012044-584b","20","1","90","90","0",NULL,"20",,"0"
+"1693","1405012044-584b","28","1","60","60","0",NULL,"28",,"0"
+"1694","1405041451-2c19","2","1","12","12","0",NULL,"2",,"0"
+"1695","1405041626-7f21","27","1","115","115","0",NULL,"27",,"0"
+"1696","1405042246-81ac","2","1","12","12","0",NULL,"2",,"0"
+"1697","1405051152-94d9","20","1","90","90","0",NULL,"20",,"0"
+"1698","1405051152-94d9","28","1","60","60","0",NULL,"28",,"0"
+"1699","1405051230-ea2c","20","1","90","90","0",NULL,"20",,"0"
+"1700","1405051230-ea2c","28","1","60","60","0",NULL,"28",,"0"
+"1701","1405051446-f3b0","21","1","150","150","0",NULL,"21",,"0"
+"1702","1405051446-f3b0","27","1","115","115","0",NULL,"27",,"0"
+"1703","1405051720-c08d","14","10","25","150","0",NULL,"14",,"10"
+"1704","1405051720-c08d","8","500","0.1","50","0",NULL,"8",,"0"
+"1705","1405051720-c08d","1","10","13.5","115","0",NULL,"1",,"2"
+"1706","1405051720-c08d","7","15","13.5","172.5","0",NULL,"7","Popular","2"
+"1707","1405052128-58dc","27","1","115","115","0",NULL,"27",,"0"
+"1708","1405052128-58dc","21","1","150","150","0",NULL,"21",,"0"
+"1709","1405060728-e6ab","14","1","25","15","0",NULL,"14",,"10"
+"1710","1405060728-e6ab","2","1","12","12","0",NULL,"2",,"0"
+"1711","1405060728-e6ab","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1712","1405060728-e6ab","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1713","1405060728-e6ab","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1714","1405061110-1401","7","4","13.5","50","0",NULL,"7","Popular","1"
+"1715","1405061110-1401","6","100","0.1","10","0",NULL,"6",,"0"
+"1716","1405061110-1401","1","6","13.5","75","0",NULL,"1",,"1"
+"1717","1405061111-0c58","14","4","25","60","0",NULL,"14",,"10"
+"1718","1405061111-0c58","7","4","13.5","50","0",NULL,"7","Popular","1"
+"1719","1405061734-82b4","28","1","60","60","0",NULL,"28",,"0"
+"1720","1405071134-326d","2","1","12","12","0",NULL,"2",,"0"
+"1721","1405071500-f8f9","27","1","115","115","0",NULL,"27",,"0"
+"1722","1405071500-f8f9","21","1","150","150","0",NULL,"21",,"0"
+"1723","1405072018-7f21","2","1","12","12","0",NULL,"2",,"0"
+"1724","1405081650-1140","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1725","1405090956-22da","28","1","60","60","0",NULL,"28",,"0"
+"1726","1405090956-22da","20","1","90","90","0",NULL,"20",,"0"
+"1727","1405092001-dc48","26","1","5","5","0",NULL,"26",,"0"
+"1728","1405092001-dc48","2","1","12","12","0",NULL,"2",,"0"
+"1729","1405092001-dc48","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1730","1405092001-dc48","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1731","1405092001-dc48","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1732","1405092001-dc48","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1733","1405092001-dc48","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1734","1405101333-cd93","20","1","90","90","0",NULL,"20",,"0"
+"1735","1405101333-cd93","2","1","12","12","0",NULL,"2",,"0"
+"1736","1405101348-cd93","28","1","60","60","0",NULL,"28",,"0"
+"1737","1405120130-aaab","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1738","1405120130-aaab","8","50","0.1","5","0",NULL,"8",,"0"
+"1739","1405120130-aaab","14","1","25","15","0",NULL,"14",,"10"
+"1740","1405120130-aaab","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1741","1405120130-aaab","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1742","1405132319-da49","7","4","13.5","50","0",NULL,"7","Popular","1"
+"1743","1405140117-1b43","2","1","12","12","0",NULL,"2",,"0"
+"1744","1405140117-1b43","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1745","1405140117-1b43","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1746","1405140117-1b43","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1747","1405140117-1b43","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1748","1405140117-1b43","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1749","1405140117-1b43","26","1","5","5","0",NULL,"26",,"0"
+"1750","1405140117-1b43","28","1","60","60","0",NULL,"28",,"0"
+"1751","1405140117-1b43","20","1","90","90","0",NULL,"20",,"0"
+"1752","1405140959-b9c9","6","5","0.1","0.5","0",NULL,"6",,"0"
+"1753","1405140959-b9c9","28","1","60","60","0",NULL,"28",,"0"
+"1754","1405140959-b9c9","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1755","1405140959-b9c9","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1756","1405140959-b9c9","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1757","1405142359-70a2","2","1","12","12","0",NULL,"2",,"0"
+"1758","1405142359-70a2","20","1","90","90","0",NULL,"20",,"0"
+"1759","1405150910-fd70","32","1","14","14","0",NULL,"32",,"0"
+"1760","1405151432-14ef","7","40","13.5","400","0",NULL,"7-20","Popular","3.5"
+"1761","1405151538-a939","8","100","0.1","10","0",NULL,"8",,"0"
+"1762","1405151538-a939","7","2","13.5","25","0",NULL,"7","Popular","1"
+"1763","1405151538-a939","1","2","13.5","25","0",NULL,"1",,"1"
+"1764","1405151538-a939","14","2","25","30","0",NULL,"14",,"10"
+"1765","1405151538-a939","6","100","0.1","10","0",NULL,"6",,"0"
+"1766","1405160918-2178","7","2","13.5","25","0",NULL,"7","Popular","1"
+"1767","1405162048-80c5","8","50","0.1","5","0",NULL,"8",,"0"
+"1768","1405162048-80c5","14","1","25","15","0",NULL,"14",,"10"
+"1769","1405162048-80c5","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1770","1405171359-e040","28","1","60","60","0",NULL,"28",,"0"
+"1771","1405181217-c602","31","1","3.5","2","0",NULL,"31",,"1.5"
+"1772","1405181217-c602","2","1","12","12","0",NULL,"2",,"0"
+"1773","1405181455-6238","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1774","1405181455-6238","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1775","1405191005-999c","6","30","0.1","3","0",NULL,"6",,"0"
+"1776","1405191005-999c","8","30","0.1","3","0",NULL,"8",,"0"
+"1777","1405191005-999c","14","2","25","30","0",NULL,"14",,"10"
+"1778","1405191510-9864","28","1","60","60","0",NULL,"28",,"0"
+"1779","1405192238-0172","2","1","12","12","0",NULL,"2",,"0"
+"1780","1405192238-0172","26","1","5","5","0",NULL,"26",,"0"
+"1781","1405201611-a9e3","28","1","60","60","0",NULL,"28",,"0"
+"1782","1405201611-a9e3","20","1","90","90","0",NULL,"20",,"0"
+"1783","1405201807-f618","2","1","12","12","0",NULL,"2",,"0"
+"1784","1405211051-562c","2","1","12","12","0",NULL,"2",,"0"
+"1785","1405211051-562c","20","1","90","90","0",NULL,"20",,"0"
+"1786","1405211051-562c","28","1","60","60","0",NULL,"28",,"0"
+"1787","1405212318-1d0d","28","1","60","60","0",NULL,"28",,"0"
+"1788","1405212318-1d0d","20","1","90","90","0",NULL,"20",,"0"
+"1789","1405212318-1d0d","2","1","12","12","0",NULL,"2",,"0"
+"1790","1405212318-1d0d","26","1","5","5","0",NULL,"26",,"0"
+"1791","1405212318-1d0d","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1792","1405212318-1d0d","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1793","1405212318-1d0d","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1794","1405212318-1d0d","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1795","1405212318-1d0d","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1796","1405220056-76a2","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1797","1405220056-76a2","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1798","1405220056-76a2","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1799","1405220056-76a2","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1800","1405220056-76a2","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1801","1405220056-76a2","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1802","1405220056-76a2","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1803","1405220931-9328","2","1","12","12","0",NULL,"2",,"0"
+"1804","1405221009-a677","19","5","3.5","5","0",NULL,"19",,"2.5"
+"1805","1405221009-a677","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1806","1405221009-a677","14","1","25","15","0",NULL,"14",,"10"
+"1807","1405221009-a677","26","3","5","15","0",NULL,"26",,"0"
+"1808","1405261813-795d","26","2","5","10","0",NULL,"26",,"0"
+"1809","1405271956-4041","20","1","90","90","0",NULL,"20",,"0"
+"1810","1405271956-4041","28","1","60","60","0",NULL,"28",,"0"
+"1811","1406010228-6377","6","1","0.1","0.1","0",NULL,"6",,"0"
+"1812","1406010228-6377","10","1","0.5","0.5","0",NULL,"10",,"0"
+"1813","1406010228-6377","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1814","1406010228-6377","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1815","1406010228-6377","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1816","1406010228-6377","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1817","1406010228-6377","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1818","1406010228-6377","30","1","3.5","3.5","0",NULL,"30",,"0"
+"1819","1406010228-6377","2","1","12","12","0",NULL,"2",,"0"
+"1820","1406010228-6377","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1821","1406011640-55ff","28","2","60","120","0",NULL,"28",,"0"
+"1822","1406011714-73e2","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1823","1406011714-73e2","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1824","1406011714-73e2","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1825","1406011714-73e2","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1826","1406011714-73e2","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1827","1406011714-73e2","2","1","12","12","0",NULL,"2",,"0"
+"1828","1406012152-62c8","31","1","3.5","1.25","0",NULL,"31",,"2.25"
+"1829","1406012152-62c8","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"1830","1406012152-62c8","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"1831","1406012152-62c8","2","1","12","12","0",NULL,"2",,"0"
+"1832","1406012240-da77","28","1","60","60","0",NULL,"28",,"0"
+"1833","1406021257-8a16","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1834","1406021257-8a16","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"1835","1406021257-8a16","2","1","12","12","0",NULL,"2",,"0"
+"1836","1406030914-0349","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1837","1406031001-adad","2","1","12","12","0",NULL,"2",,"0"
+"1838","1406040751-d2d2","2","1","12","12","0",NULL,"2",,"0"
+"1839","1406041052-c26d","2","1","12","12","0",NULL,"2",,"0"
+"1840","1406051026-a677","2","1","12","12","0",NULL,"2",,"0"
+"1841","1406071128-5d4a","2","2","12","24","0",NULL,"2",,"0"
+"1842","1406082004-2d68","2","1","12","12","0",NULL,"2",,"0"
+"1843","1406090932-dd5e","14","1","25","15","0",NULL,"14",,"10"
+"1844","1406091036-585c","32","1","14","14","0",NULL,"32",,"0"
+"1845","1406100736-46c0","2","1","12","12","0",NULL,"2",,"0"
+"1846","1406101049-01fc","20","1","90","90","0",NULL,"20",,"0"
+"1847","1406101602-0b86","20","1","90","90","0",NULL,"20",,"0"
+"1848","1406101607-4b63","20","1","90","90","0",NULL,"20",,"0"
+"1849","1406102227-da77","2","1","12","12","0",NULL,"2",,"0"
+"1850","1406111712-08e1","2","1","12","12","0",NULL,"2",,"0"
+"1851","1406151640-b35f","2","1","12","12","0",NULL,"2",,"0"
+"1852","1406161742-a560","2","1","12","12","0",NULL,"2",,"0"
+"1853","1406171342-315e","28","1","60","60","0",NULL,"28",,"0"
+"1854","1406171342-315e","2","1","12","12","0",NULL,"2",,"0"
+"1855","1406171420-3113","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1856","1406171420-3113","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1857","1406171420-3113","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1858","1406171420-3113","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1859","1406171420-3113","2","1","12","12","0",NULL,"2",,"0"
+"1860","1406171613-05f0","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"1861","1406171613-05f0","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"1862","1406171613-05f0","31","1","3.5","1.25","0",NULL,"31",,"2.25"
+"1863","1406171613-05f0","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1864","1406181240-ed62","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1865","1406181240-ed62","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1866","1406181240-ed62","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1867","1406181240-ed62","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1868","1406181240-ed62","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1869","1406191254-d0a1","2","1","12","12","0",NULL,"2",,"0"
+"1870","1406191350-6793","2","1","12","12","0",NULL,"2",,"0"
+"1871","1406201611-50bb","6","50","0.1","5","0",NULL,"6",,"0"
+"1872","1406201611-50bb","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1873","1406201611-50bb","8","50","0.1","5","0",NULL,"8",,"0"
+"1874","1406201611-50bb","14","1","25","15","0",NULL,"14",,"10"
+"1875","1406201611-50bb","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1876","1406211347-2c35","14","2","25","30","0",NULL,"14",,"10"
+"1877","1406211347-2c35","7","2","13.5","25","0",NULL,"7","Popular","1"
+"1878","1406211347-2c35","1","2","13.5","25","0",NULL,"1",,"1"
+"1879","1406211355-2c35","10","2","0.5","1","0",NULL,"10",,"0"
+"1880","1406211355-2c35","7","2","13.5","25","0",NULL,"7","Popular","1"
+"1881","1406211355-2c35","1","2","13.5","25","0",NULL,"1",,"1"
+"1882","1406231139-5d4a","2","1","12","12","0",NULL,"2",,"0"
+"1883","1406232001-ea49","22","6","3.5","21","0",NULL,"22",,"0"
+"1884","1406232001-ea49","26","1","5","5","0",NULL,"26",,"0"
+"1885","1406240041-ecb3","22","3","3.5","10.5","0",NULL,"22",,"0"
+"1886","1406240047-8080","22","1","3.5","3.5","0",NULL,"22",,"0"
+"1887","1406251140-787d","26","1","5","5","0",NULL,"26",,"0"
+"1888","1406251140-787d","28","1","60","60","0",NULL,"28",,"0"
+"1889","1406251140-787d","20","1","90","90","0",NULL,"20",,"0"
+"1890","1406251140-787d","6","100","0.1","10","0",NULL,"6",,"0"
+"1891","1406251700-94d2","8","50","0.1","5","0",NULL,"8",,"0"
+"1892","1406251700-94d2","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1893","1406261407-bb99","2","5","12","60","0",NULL,"2",,"0"
+"1894","1406271007-4c03","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"1895","1406271007-4c03","18","1","3.5","1.25","0",NULL,"18",,"2.25"
+"1896","1406271007-4c03","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"1897","1406271935-f7a3","27","1","115","115","0",NULL,"27",,"0"
+"1898","1406271935-f7a3","2","1","12","12","0",NULL,"2",,"0"
+"1899","1406272238-4905","2","1","12","12","0",NULL,"2",,"0"
+"1900","1406301258-d50e","2","5","12","60","0",NULL,"2",,"0"
+"1901","1407011206-9846","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1902","1407011206-9846","7","1","13.5","13.5","0",NULL,"7-22","Popular","0"
+"1903","1407020720-0333","14","2","25","30","0",NULL,"14",,"10"
+"1904","1407020720-0333","7","2","13.5","25","0",NULL,"7","Popular","1"
+"1905","1407020720-0333","1","2","13.5","25","0",NULL,"1",,"1"
+"1906","1407040833-8a13","2","1","12","12","0",NULL,"2",,"0"
+"1907","1407041018-cb3b","31","1","3.5","1.25","0",NULL,"31",,"2.25"
+"1908","1407041018-cb3b","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"1909","1407041018-cb3b","2","1","12","12","0",NULL,"2",,"0"
+"1910","1407060959-0162","24","1","9","9","0",NULL,"24",,"0"
+"1911","1407060959-0162","18","1","3.5","1.25","0",NULL,"18",,"2.25"
+"1912","1407060959-0162","2","1","12","12","0",NULL,"2",,"0"
+"1913","1407071232-2659","28","1","60","60","0",NULL,"28",,"0"
+"1914","1407071232-2659","20","1","90","90","0",NULL,"20",,"0"
+"1915","1407080008-681f","15","1","3.5","2","0",NULL,"15",,"1.5"
+"1916","1407080008-681f","2","1","12","12","0",NULL,"2",,"0"
+"1917","1407082328-fc76","2","1","12","12","0",NULL,"2",,"0"
+"1918","1407091511-f4b2","14","2","25","30","0",NULL,"14",,"10"
+"1919","1407091511-f4b2","7","2","13.5","25","0",NULL,"7","Popular","1"
+"1920","1407091511-f4b2","1","2","13.5","25","0",NULL,"1",,"1"
+"1921","1407110400-ae80","18","2","3.5","2","0",NULL,"18",,"2.5"
+"1922","1407110400-ae80","22","2","3.5","7","0",NULL,"22",,"0"
+"1923","1407110400-ae80","26","2","5","10","0",NULL,"26",,"0"
+"1924","1407111503-b47f","6","600","0.1","60","0",NULL,"6",,"0"
+"1925","1407111503-b47f","7","12","13.5","138","0",NULL,"7","Popular","2"
+"1926","1407111503-b47f","10","12","0.5","6","0",NULL,"10",,"0"
+"1927","1407111503-b47f","8","600","0.1","60","0",NULL,"8",,"0"
+"1928","1407111503-b47f","1","12","13.5","138","0",NULL,"1",,"2"
+"1929","1407120945-3951","2","1","12","12","0",NULL,"2",,"0"
+"1930","1407120945-3951","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1931","1407120945-3951","26","1","5","5","0",NULL,"26",,"0"
+"1932","1407161328-1044","2","1","12","12","0",NULL,"2",,"0"
+"1933","1407161454-23ce","21","1","150","150","0",NULL,"21",,"0"
+"1934","1407161511-2cea","32","1","14","14","0",NULL,"32",,"0"
+"1935","1407161511-2cea","26","1","5","5","0",NULL,"26",,"0"
+"1936","1407161613-4807","32","1","14","14","0",NULL,"32",,"0"
+"1937","1407161613-4807","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1938","1407171402-d6b9","34","1","5.5","5.5","0",NULL,"34",,"0"
+"1939","1407171451-3777","20","1","90","90","0",NULL,"20",,"0"
+"1940","1407171451-3777","28","1","60","60","0",NULL,"28",,"0"
+"1941","1407171539-171c","28","1","60","60","0",NULL,"28",,"0"
+"1942","1407171539-171c","20","1","90","90","0",NULL,"20",,"0"
+"1943","1407180859-d9ab","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"1944","1407180859-d9ab","26","1","5","5","0",NULL,"26",,"0"
+"1945","1407180859-d9ab","28","1","60","60","0",NULL,"28",,"0"
+"1946","1407181020-a2d7","2","1","12","12","0",NULL,"2",,"0"
+"1947","1407181020-a2d7","22","2","3.5","7","0",NULL,"22",,"0"
+"1948","1407190906-455e","28","1","60","60","0",NULL,"28",,"0"
+"1949","1407200752-5cc8","34","1","5.5","5.5","0",NULL,"34",,"0"
+"1950","1407200922-08f4","20","1","90","90","0",NULL,"20",,"0"
+"1951","1407200922-08f4","28","1","60","60","0",NULL,"28",,"0"
+"1952","1407210704-03de","6","50","0.1","5","0",NULL,"6",,"0"
+"1953","1407210704-03de","26","1","5","5","0",NULL,"26",,"0"
+"1954","1407210704-03de","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1955","1407210704-03de","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1956","1407210704-03de","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1957","1407210704-03de","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1958","1407210704-03de","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1959","1407211855-97af","31","1","3.5","1.25","0",NULL,"31",,"2.25"
+"1960","1407211855-97af","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"1961","1407211855-97af","2","1","12","12","0",NULL,"2",,"0"
+"1962","1407220809-a677","6","300","0.1","30","0",NULL,"6",,"0"
+"1963","1407220809-a677","10","300","0.5","150","0",NULL,"10",,"0"
+"1964","1407220809-a677","1","6","13.5","75","0",NULL,"1",,"1"
+"1965","1407220809-a677","7","6","13.5","75","0",NULL,"7","Popular","1"
+"1966","1407220809-a677","8","300","0.1","30","0",NULL,"8",,"0"
+"1967","1407221437-2131","32","1","14","14","0",NULL,"32",,"0"
+"1968","1407221729-4395","2","1","12","12","0",NULL,"2",,"0"
+"1969","1407231029-fa7f","28","1","60","60","0",NULL,"28",,"0"
+"1970","1407232140-6d47","10","30","0.5","15","0",NULL,"10",,"0"
+"1971","1407241238-ed13","32","1","14","14","0",NULL,"32",,"0"
+"1972","1407241535-da77","2","1","12","12","0",NULL,"2",,"0"
+"1973","1407241541-da77","2","1","12","12","0",NULL,"2",,"0"
+"1974","1407241653-da7a","1","1","13.5","13.5","0",NULL,"1",,"0"
+"1975","1407241732-a772","26","2","5","10","0",NULL,"26",,"0"
+"1976","1407241735-a772","26","1","5","5","0",NULL,"26",,"0"
+"1977","1407241808-d879","26","1","5","5","0",NULL,"26",,"0"
+"1978","1407241808-d879","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1979","1407241808-d879","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1980","1407241808-d879","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1981","1407241808-d879","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1982","1407241808-d879","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1983","1407250840-bafe","33","1","27","27","0",NULL,"33",,"0"
+"1984","1407250848-b494","33","1","27","27","0",NULL,"33",,"0"
+"1985","1407251454-44d7","2","1","12","12","0",NULL,"2",,"0"
+"1986","1407251630-6868","32","1","14","14","0",NULL,"32",,"0"
+"1987","1407261758-cd19","32","1","14","14","0",NULL,"32",,"0"
+"1988","1407262100-0c2f","10","200","0.5","100","0",NULL,"10",,"0"
+"1989","1407262100-0c2f","7","4","13.5","50","0",NULL,"7","Popular","1"
+"1990","1407270728-85bb","15","1","3.5","1","0",NULL,"15",,"2.5"
+"1991","1407270728-85bb","18","1","3.5","1","0",NULL,"18",,"2.5"
+"1992","1407270728-85bb","17","1","3.5","1","0",NULL,"17",,"2.5"
+"1993","1407270728-85bb","31","1","3.5","1","0",NULL,"31",,"2.5"
+"1994","1407270728-85bb","19","1","3.5","1","0",NULL,"19",,"2.5"
+"1995","1407270728-85bb","2","1","12","12","0",NULL,"2",,"0"
+"1996","1407271103-5eaa","2","1","12","12","0",NULL,"2",,"0"
+"1997","1407271737-6eb2","2","1","12","12","0",NULL,"2",,"0"
+"1998","1407271924-44df","2","1","12","12","0",NULL,"2",,"0"
+"1999","1407271924-44df","32","1","14","14","0",NULL,"32",,"0"
+"2000","1407281446-46d7","28","1","60","60","0",NULL,"28",,"0"
+"2001","1407281515-7f40","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2002","1407281515-7f40","6","1","0.1","0.1","0",NULL,"6",,"0"
+"2003","1407281515-7f40","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2004","1407281515-7f40","26","1","5","5","0",NULL,"26",,"0"
+"2005","1407281738-e591","1","2","13.5","25","0",NULL,"1",,"1"
+"2006","1407281738-e591","33","2","27","54","0",NULL,"33",,"0"
+"2007","1407281847-f820","24","1","9","9","0",NULL,"24",,"0"
+"2008","1407281847-f820","35","1","0.5","0.5","0",NULL,"35",,"0"
+"2009","1407281847-f820","10","1","0.5","0.5","0",NULL,"10",,"0"
+"2010","1407281847-f820","8","1","0.1","0.1","0",NULL,"8",,"0"
+"2011","1407281847-f820","6","1","0.1","0.1","0",NULL,"6",,"0"
+"2012","1407281847-f820","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2013","1407281847-f820","15","1","3.5","1","0",NULL,"15",,"2.5"
+"2014","1407281847-f820","18","1","3.5","1","0",NULL,"18",,"2.5"
+"2015","1407281847-f820","31","1","3.5","1","0",NULL,"31",,"2.5"
+"2016","1407281847-f820","19","1","3.5","1","0",NULL,"19",,"2.5"
+"2017","1407281847-f820","26","1","5","5","0",NULL,"26",,"0"
+"2018","1407281847-f820","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2019","1407290954-e650","37","1","20","20","0",NULL,"37",,"0"
+"2020","1407291357-c2b9","38","1","20","20","0",NULL,"38",,"0"
+"2021","1407291508-671e","31","1","3.5","1","0",NULL,"31",,"2.5"
+"2022","1407291508-671e","18","1","3.5","1","0",NULL,"18",,"2.5"
+"2023","1407291508-671e","15","1","3.5","1","0",NULL,"15",,"2.5"
+"2024","1407291508-671e","19","1","3.5","1","0",NULL,"19",,"2.5"
+"2025","1407291508-671e","17","1","3.5","1","0",NULL,"17",,"2.5"
+"2026","1407291508-671e","26","1","5","5","0",NULL,"26",,"0"
+"2027","1407291508-671e","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2028","1407291627-cd9f","26","1","5","5","0",NULL,"26",,"0"
+"2029","1407291627-cd9f","7","1","13.5","13.5","0",NULL,"7-24","Popular","0"
+"2030","1407291642-8a9d","2","1","12","12","0",NULL,"2",,"0"
+"2031","1407291642-8a9d","26","1","5","5","0",NULL,"26",,"0"
+"2032","1407291642-8a9d","38","1","20","20","0",NULL,"38",,"0"
+"2033","1407291703-ebf9","38","1","20","20","0",NULL,"38",,"0"
+"2034","1407300236-72d7","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2035","1407300236-72d7","2","1","12","12","0",NULL,"2",,"0"
+"2036","1407300236-72d7","35","1","0.5","0.5","0",NULL,"35",,"0"
+"2037","1407300909-1304","2","1","12","12","0",NULL,"2",,"0"
+"2038","1407310944-ff0d","38","1","20","20","0",NULL,"38",,"0"
+"2039","1407310944-ff0d","2","1","12","12","0",NULL,"2",,"0"
+"2040","1407310944-ff0d","28","1","60","60","0",NULL,"28",,"0"
+"2041","1407311335-0894","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2042","1407311337-7835","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2043","1407311917-9a27","14","4","25","60","0",NULL,"14",,"10"
+"2044","1408011117-b4ad","32","1","14","14","0",NULL,"32",,"0"
+"2045","1408011222-b613","6","1","0.1","0.1","0",NULL,"6",,"0"
+"2046","1408011222-b613","38","1","20","20","0",NULL,"38",,"0"
+"2047","1408011222-b613","26","1","5","5","0",NULL,"26",,"0"
+"2048","1408012251-4949","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2049","1408022107-07aa","38","2","20","40","0",NULL,"38",,"0"
+"2050","1408022138-07aa","38","2","20","40","0",NULL,"38",,"0"
+"2051","1408032141-d879","28","1","60","60","0",NULL,"28",,"0"
+"2052","1408032141-d879","20","1","90","90","0",NULL,"20",,"0"
+"2053","1408040946-d879","20","1","90","90","0",NULL,"20",,"0"
+"2054","1408040946-d879","28","1","60","60","0",NULL,"28",,"0"
+"2055","1408042149-b2f1","28","1","60","60","0",NULL,"28",,"0"
+"2056","1408042149-b2f1","2","1","12","12","0",NULL,"2",,"0"
+"2057","1408042241-4761","6","500","0.1","50","0",NULL,"6",,"0"
+"2058","1408042241-4761","7","5","13.5","62.5","0",NULL,"7","Popular","1"
+"2059","1408042241-4761","14","5","25","75","0",NULL,"14",,"10"
+"2060","1408042241-4761","1","5","13.5","62.5","0",NULL,"1",,"1"
+"2061","1408050121-6f15","38","3","20","60","0",NULL,"38",,"0"
+"2062","1408051012-c7e0","32","1","14","14","0",NULL,"32",,"0"
+"2063","1408051012-c7e0","6","50","0.1","5","0",NULL,"6",,"0"
+"2064","1408051341-031b","2","1","12","12","0",NULL,"2",,"0"
+"2065","1408051551-fb72","2","1","12","12","0",NULL,"2",,"0"
+"2066","1408052028-ded3","20","1","90","90","0",NULL,"20",,"0"
+"2067","1408052028-ded3","28","1","60","60","0",NULL,"28",,"0"
+"2071","1408071555-918b","7","2","13.5","25","0",NULL,"7","Popular","1"
+"2070","1408071555-918b","24","1","9","9","0",NULL,"24",,"0"
+"2072","1408092116-7d06","2","1","12","12","0",NULL,"2",,"0"
+"2073","1408101145-3c02","24","1","9","9","0",NULL,"24",,"0"
+"2074","1408101145-3c02","17","1","3.5","1","0",NULL,"17",,"2.5"
+"2075","1408101145-3c02","15","1","3.5","1","0",NULL,"15",,"2.5"
+"2076","1408101145-3c02","31","1","3.5","1","0",NULL,"31",,"2.5"
+"2077","1408101145-3c02","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2078","1408101145-3c02","2","1","12","12","0",NULL,"2",,"0"
+"2079","1408101145-3c02","26","1","5","5","0",NULL,"26",,"0"
+"2080","1408101430-1aab","2","1","12","12","0",NULL,"2",,"0"
+"2081","1408111146-c8d6","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2082","1408111206-3979","2","1","12","12","0",NULL,"2",,"0"
+"2083","1408111716-1eab","27","1","115","115","0",NULL,"27",,"0"
+"2084","1408121056-b9b8","38","1","20","20","0",NULL,"38",,"0"
+"2085","1408121056-b9b8","24","1","9","9","0",NULL,"24",,"0"
+"2086","1408121056-b9b8","34","2","5.5","11","0",NULL,"34",,"0"
+"2087","1408121056-b9b8","6","100","0.1","10","0",NULL,"6",,"0"
+"2088","1408121248-2bed","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2089","1408121248-2bed","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2090","1408121248-2bed","38","1","20","20","0",NULL,"38",,"0"
+"2091","1408122155-79ef","26","1","5","5","0",NULL,"26",,"0"
+"2092","1408122155-79ef","38","3","20","60","0",NULL,"38",,"0"
+"2093","1408122155-79ef","15","1","3.5","1","0",NULL,"15",,"2.5"
+"2094","1408122155-79ef","17","1","3.5","1","0",NULL,"17",,"2.5"
+"2095","1408122155-79ef","19","1","3.5","1","0",NULL,"19",,"2.5"
+"2096","1408122155-79ef","31","1","3.5","1","0",NULL,"31",,"2.5"
+"2097","1408130238-c0bb","2","1","12","12","0",NULL,"2",,"0"
+"2098","1408130707-81d3","26","50","5","250","0",NULL,"26",,"0"
+"2099","1408130707-7ca5","38","2","20","40","0",NULL,"38",,"0"
+"2100","1408131527-04c9","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2101","1408131527-04c9","7","2","13.5","25","0",NULL,"7","Popular","1"
+"2102","1408131527-04c9","8","50","0.1","5","0",NULL,"8",,"0"
+"2103","1408131527-04c9","14","2","25","30","0",NULL,"14",,"10"
+"2104","1408131530-bcc9","24","1","9","9","0",NULL,"24",,"0"
+"2105","1408131530-bcc9","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2106","1408141418-866c","26","1","5","5","0",NULL,"26",,"0"
+"2107","1408141418-866c","38","1","20","20","0",NULL,"38",,"0"
+"2108","1408142120-f31b","7","2","13.5","25","0",NULL,"7","Popular","1"
+"2109","1408142129-51c3","7","2","13.5","25","0",NULL,"7","Popular","1"
+"2110","1408150035-d16a","28","1","60","60","0",NULL,"28",,"0"
+"2111","1408151041-9b84","2","2","12","24","0",NULL,"2",,"0"
+"2112","1408151115-6cd6","26","10","5","50","0",NULL,"26",,"0"
+"2113","1408151115-6cd6","27","1","115","115","0",NULL,"27",,"0"
+"2114","1408151538-32c8","38","1","20","20","0",NULL,"38",,"0"
+"2115","1408151538-32c8","2","1","12","12","0",NULL,"2",,"0"
+"2116","1408151540-550d","38","1","20","20","0",NULL,"38",,"0"
+"2117","1408151812-0a8d","38","1","20","20","0",NULL,"38",,"0"
+"2118","1408152306-e39d","38","1","20","20","0",NULL,"38",,"0"
+"2119","1408161045-f7f4","38","1","20","20","0",NULL,"38",,"0"
+"2120","1408161052-e25e","26","1","5","5","0",NULL,"26",,"0"
+"2121","1408161052-e25e","38","1","20","20","0",NULL,"38",,"0"
+"2122","1408161052-e25e","28","1","60","60","0",NULL,"28",,"0"
+"2123","1408161052-e25e","20","1","90","90","0",NULL,"20",,"0"
+"2124","1408161121-824a","38","1","20","20","0",NULL,"38",,"0"
+"2125","1408161756-605e","38","1","20","20","0",NULL,"38",,"0"
+"2126","1408171252-3103","38","1","20","20","0",NULL,"38",,"0"
+"2127","1408171609-0a4c","28","1","60","60","0",NULL,"28",,"0"
+"2128","1408171620-d054","38","1","20","20","0",NULL,"38",,"0"
+"2129","1408171835-22b8","20","1","90","90","0",NULL,"20",,"0"
+"2130","1408171835-22b8","28","1","60","60","0",NULL,"28",,"0"
+"2131","1408171939-f7a3","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2132","1408171939-f7a3","26","1","5","5","0",NULL,"26",,"0"
+"2133","1408171939-f7a3","38","1","20","20","0",NULL,"38",,"0"
+"2134","1408171939-f7a3","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2135","1408171939-f7a3","35","1","0.5","0.5","0",NULL,"35",,"0"
+"2136","1408172129-5659","2","1","12","12","0",NULL,"2",,"0"
+"2137","1408172137-7efb","38","1","20","20","0",NULL,"38",,"0"
+"2138","1408181010-86e0","38","1","20","20","0",NULL,"38",,"0"
+"2139","1408181128-0653","38","1","20","20","0",NULL,"38",,"0"
+"2140","1408181227-b1d3","38","1","20","20","0",NULL,"38",,"0"
+"2141","1408181545-ee93","38","1","20","20","0",NULL,"38",,"0"
+"2142","1408181715-f124","2","1","12","12","0",NULL,"2",,"0"
+"2143","1408182115-90c2","38","1","20","20","0",NULL,"38",,"0"
+"2144","1408182242-15c8","38","1","20","20","0",NULL,"38",,"0"
+"2145","1408190801-dd9c","38","1","20","20","0",NULL,"38",,"0"
+"2146","1408190801-dd9c","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2147","1408190801-dd9c","36","1","15","15","0",NULL,"36",,"0"
+"2148","1408190954-1e6a","38","2","20","40","0",NULL,"38",,"0"
+"2149","1408191302-1aad","38","1","20","20","0",NULL,"38",,"0"
+"2150","1408191302-1aad","26","1","5","5","0",NULL,"26",,"0"
+"2151","1408191426-fe7e","38","1","20","20","0",NULL,"38",,"0"
+"2152","1408191433-9a7b","38","1","20","20","0",NULL,"38",,"0"
+"2153","1408191453-f6b2","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2154","1408191551-b178","38","3","20","60","0",NULL,"38",,"0"
+"2155","1408191604-bda5","29","1","3.5","3.5","0",NULL,"29",,"0"
+"2156","1408191604-bda5","6","1","0.1","0.1","0",NULL,"6",,"0"
+"2157","1408191604-bda5","10","1","0.5","0.5","0",NULL,"10",,"0"
+"2158","1408191604-bda5","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2159","1408191604-bda5","38","1","20","20","0",NULL,"38",,"0"
+"2160","1408191604-bda5","2","1","12","12","0",NULL,"2",,"0"
+"2161","1408191611-bda5","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2162","1408191611-bda5","6","1","0.1","0.1","0",NULL,"6",,"0"
+"2163","1408191611-bda5","38","1","20","20","0",NULL,"38",,"0"
+"2164","1408191611-bda5","2","1","12","12","0",NULL,"2",,"0"
+"2165","1408191643-3080","38","1","20","20","0",NULL,"38",,"0"
+"2166","1408191707-c169","38","1","20","20","0",NULL,"38",,"0"
+"2167","1408191745-b338","38","1","20","20","0",NULL,"38",,"0"
+"2168","1408191748-4e61","38","1","20","20","0",NULL,"38",,"0"
+"2169","1408191807-9784","38","1","20","20","0",NULL,"38",,"0"
+"2170","1408191937-41ed","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2171","1408191937-41ed","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2172","1408191937-41ed","32","1","14","14","0",NULL,"32",,"0"
+"2173","1408192045-0a4e","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2174","1408192045-0a4e","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"2175","1408192045-0a4e","38","1","20","20","0",NULL,"38",,"0"
+"2176","1408192145-7e95","15","1","3.5","1","0",NULL,"15",,"2.5"
+"2177","1408192145-7e95","6","1","0.1","0.1","0",NULL,"6",,"0"
+"2178","1408192145-7e95","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2179","1408192145-7e95","38","2","20","40","0",NULL,"38",,"0"
+"2180","1408192223-addd","38","1","20","20","0",NULL,"38",,"0"
+"2181","1408200931-bebb","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"2182","1408200931-bebb","2","1","12","12","0",NULL,"2",,"0"
+"2183","1408200931-bebb","26","1","5","5","0",NULL,"26",,"0"
+"2184","1408201014-c332","38","1","20","20","0",NULL,"38",,"0"
+"2185","1408201014-c332","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2186","1408201036-2012","34","2","5.5","11","0",NULL,"34",,"0"
+"2187","1408201036-2012","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2188","1408201036-2012","38","2","20","40","0",NULL,"38",,"0"
+"2189","1408201040-05ec","38","1","20","20","0",NULL,"38",,"0"
+"2190","1408201041-0595","34","2","5.5","11","0",NULL,"34",,"0"
+"2191","1408201041-0595","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2192","1408201041-0595","38","2","20","40","0",NULL,"38",,"0"
+"2193","1408201319-185b","26","1","5","5","0",NULL,"26",,"0"
+"2194","1408201335-53af","38","1","20","20","0",NULL,"38",,"0"
+"2195","1408201411-ca1f","26","1","5","5","0",NULL,"26",,"0"
+"2196","1408201411-ca1f","38","1","20","20","0",NULL,"38",,"0"
+"2197","1408201516-26ba","34","10","5.5","55","0",NULL,"34",,"0"
+"2198","1408201559-51ae","38","2","20","40","0",NULL,"38",,"0"
+"2199","1408201606-af23","38","2","20","40","0",NULL,"38",,"0"
+"2200","1408201726-ebf9","2","1","12","12","0",NULL,"2",,"0"
+"2201","1408201840-2900","38","1","20","20","0",NULL,"38",,"0"
+"2202","1408202202-6e27","38","1","20","20","0",NULL,"38",,"0"
+"2203","1408211055-c894","38","2","20","40","0",NULL,"38",,"0"
+"2204","1408211118-d8ca","38","1","20","20","0",NULL,"38",,"0"
+"2205","1408211121-6b17","38","2","20","40","0",NULL,"38",,"0"
+"2206","1408211600-a34f","28","1","60","60","0",NULL,"28",,"0"
+"2207","1408211944-8b03","38","1","20","20","0",NULL,"38",,"0"
+"2208","1408212222-1b23","14","2","25","30","0",NULL,"14",,"10"
+"2209","1408212222-1b23","1","2","13.5","25","0",NULL,"1",,"1"
+"2210","1408212222-1b23","7","2","13.5","25","0",NULL,"7-25","Popular","1"
+"2211","1408212355-b6f7","38","1","20","20","0",NULL,"38",,"0"
+"2212","1408221132-7574","38","1","20","20","0",NULL,"38",,"0"
+"2213","1408221157-f075","38","1","20","20","0",NULL,"38",,"0"
+"2214","1408221157-f075","34","4","5.5","22","0",NULL,"34",,"0"
+"2215","1408221929-2695","38","1","20","20","0",NULL,"38",,"0"
+"2216","1408222029-9865","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"2217","1408222029-9865","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"2218","1408222029-9865","18","1","3.5","1.25","0",NULL,"18",,"2.25"
+"2219","1408222029-9865","38","1","20","20","0",NULL,"38",,"0"
+"2220","1408222210-5e85","38","1","20","20","0",NULL,"38",,"0"
+"2221","1408231610-919c","38","1","20","20","0",NULL,"38",,"0"
+"2222","1408232302-a42f","28","1","60","60","0",NULL,"28",,"0"
+"2223","1408232302-a42f","38","1","20","20","0",NULL,"38",,"0"
+"2224","1408232302-a42f","20","1","90","90","0",NULL,"20",,"0"
+"2225","1408240034-97e0","28","1","60","60","0",NULL,"28",,"0"
+"2226","1408240034-97e0","20","1","90","90","0",NULL,"20",,"0"
+"2227","1408251112-fe7e","27","1","115","115","0",NULL,"27",,"0"
+"2228","1408251121-fe7e","27","1","115","115","0",NULL,"27",,"0"
+"2229","1408251139-4cf0","18","1","3.5","1","0",NULL,"18",,"2.5"
+"2230","1408251139-4cf0","35","4","0.5","2","0",NULL,"35",,"0"
+"2231","1408251139-4cf0","31","1","3.5","1","0",NULL,"31",,"2.5"
+"2232","1408251139-4cf0","38","1","20","20","0",NULL,"38",,"0"
+"2233","1408251139-4cf0","2","1","12","12","0",NULL,"2",,"0"
+"2234","1408252101-3323","38","1","20","20","0",NULL,"38",,"0"
+"2235","1408260531-36ae","2","1","12","12","0",NULL,"2",,"0"
+"2236","1408260945-de93","38","1","20","20","0",NULL,"38",,"0"
+"2237","1408260945-de93","32","1","14","14","0",NULL,"32",,"0"
+"2238","1408261032-0d13","38","1","20","20","0",NULL,"38",,"0"
+"2239","1408261349-2992","38","1","20","20","0",NULL,"38",,"0"
+"2240","1408261349-2992","2","1","12","12","0",NULL,"2",,"0"
+"2241","1408261659-66b2","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2242","1408262110-6209","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2243","1408262110-6209","26","1","5","5","0",NULL,"26",,"0"
+"2244","1408262217-0eba","26","1","5","5","0",NULL,"26",,"0"
+"2245","1408262339-312d","38","1","20","20","0",NULL,"38",,"0"
+"2246","1408270846-237a","31","1","3.5","1","0",NULL,"31",,"2.5"
+"2247","1408270846-237a","17","1","3.5","1","0",NULL,"17",,"2.5"
+"2248","1408270846-237a","15","1","3.5","1","0",NULL,"15",,"2.5"
+"2249","1408270846-237a","18","2","3.5","2","0",NULL,"18",,"2.5"
+"2250","1408270846-237a","8","25","0.1","2.5","0",NULL,"8",,"0"
+"2251","1408270846-237a","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2252","1408270846-237a","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2253","1408270852-03c4","38","1","20","20","0",NULL,"38",,"0"
+"2254","1408270928-b1aa","6","10","0.1","1","0",NULL,"6",,"0"
+"2255","1408270928-b1aa","38","1","20","20","0",NULL,"38",,"0"
+"2256","1408271113-a754","38","1","20","20","0",NULL,"38",,"0"
+"2257","1408271651-0bc9","38","2","20","40","0",NULL,"38",,"0"
+"2258","1408272147-4e2b","19","1","3.5","1","0",NULL,"19",,"2.5"
+"2259","1408272147-4e2b","26","1","5","5","0",NULL,"26",,"0"
+"2260","1408272147-4e2b","38","1","20","20","0",NULL,"38",,"0"
+"2261","1408272147-4e2b","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2262","1408272147-4e2b","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2263","1408272147-4e2b","8","1","0.1","0.1","0",NULL,"8",,"0"
+"2264","1408272147-4e2b","6","1","0.1","0.1","0",NULL,"6",,"0"
+"2265","1408272147-4e2b","35","1","0.5","0.5","0",NULL,"35",,"0"
+"2266","1408272147-4e2b","10","1","0.5","0.5","0",NULL,"10",,"0"
+"2267","1408281108-4b70","38","2","20","40","0",NULL,"38",,"0"
+"2268","1408281156-b00a","20","1","90","90","0",NULL,"20",,"0"
+"2269","1408281156-b00a","28","1","60","60","0",NULL,"28",,"0"
+"2270","1408281209-cd86","20","1","90","90","0",NULL,"20",,"0"
+"2271","1408281209-cd86","28","1","60","60","0",NULL,"28",,"0"
+"2272","1408281223-84b2","38","1","20","20","0",NULL,"38",,"0"
+"2273","1408281302-c8bf","28","1","60","60","0",NULL,"28",,"0"
+"2274","1408281317-f7a4","38","1","20","20","0",NULL,"38",,"0"
+"2275","1408281539-aa49","20","1","90","90","0",NULL,"20",,"0"
+"2276","1408281539-aa49","28","1","60","60","0",NULL,"28",,"0"
+"2277","1408281628-f618","38","2","20","40","0",NULL,"38",,"0"
+"2278","1408281646-a350","28","1","60","60","0",NULL,"28",,"0"
+"2279","1408281646-a350","20","1","90","90","0",NULL,"20",,"0"
+"2280","1408281646-a350","2","1","12","12","0",NULL,"2",,"0"
+"2281","1408281646-a350","38","1","20","20","0",NULL,"38",,"0"
+"2282","1408281646-f618","38","2","20","40","0",NULL,"38",,"0"
+"2283","1408290223-add0","2","1","12","12","0",NULL,"2",,"0"
+"2284","1408290223-add0","27","1","115","115","0",NULL,"27",,"0"
+"2285","1408291128-5e85","38","1","20","20","0",NULL,"38",,"0"
+"2286","1408291200-2655","38","2","20","40","0",NULL,"38",,"0"
+"2287","1408291219-239a","38","2","20","40","0",NULL,"38",,"0"
+"2288","1408291453-ea15","2","1","12","12","0",NULL,"2",,"0"
+"2289","1408292126-6567","38","1","20","20","0",NULL,"38",,"0"
+"2290","1408301143-23ce","20","1","90","90","0",NULL,"20",,"0"
+"2291","1408301143-23ce","28","1","60","60","0",NULL,"28",,"0"
+"2292","1408301143-23ce","27","1","115","115","0",NULL,"27",,"0"
+"2293","1408302239-2554","38","1","20","20","0",NULL,"38",,"0"
+"2294","1408311134-c321","35","1","0.5","0.5","0",NULL,"35",,"0"
+"2295","1408311134-c321","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2296","1408311508-1b1a","38","1","20","20","0",NULL,"38",,"0"
+"2297","1408311646-2eac","38","1","20","20","0",NULL,"38",,"0"
+"2298","1408311646-2eac","20","1","90","90","0",NULL,"20",,"0"
+"2299","1408311646-2eac","28","1","60","60","0",NULL,"28",,"0"
+"2300","1408312028-2d4b","38","1","20","20","0",NULL,"38",,"0"
+"2301","1408312028-2d4b","20","1","90","90","0",NULL,"20",,"0"
+"2302","1408312028-2d4b","28","1","60","60","0",NULL,"28",,"0"
+"2303","1409011416-f3b2","2","1","12","12","0",NULL,"2",,"0"
+"2304","1409011554-fd30","28","1","60","60","0",NULL,"28",,"0"
+"2305","1409011728-f9b8","38","1","20","20","0",NULL,"38",,"0"
+"2306","1409012015-22e0","38","2","20","40","0",NULL,"38",,"0"
+"2307","1409020008-2b23","28","1","60","60","0",NULL,"28",,"0"
+"2308","1409020727-9a17","28","1","60","60","0",NULL,"28",,"0"
+"2309","1409022230-da77","38","1","20","20","0",NULL,"38",,"0"
+"2310","1409022235-73e9","2","1","12","12","0",NULL,"2",,"0"
+"2311","1409022235-73e9","31","1","3.5","1.25","0",NULL,"31",,"2.25"
+"2312","1409022235-73e9","38","1","20","20","0",NULL,"38",,"0"
+"2313","1409040016-29bb","32","1","14","14","0",NULL,"32",,"0"
+"2314","1409040016-29bb","38","4","20","80","0",NULL,"38",,"0"
+"2315","1409040048-2154","8","1","0.1","0.1","0",NULL,"8",,"0"
+"2316","1409040048-2154","6","1","0.1","0.1","0",NULL,"6",,"0"
+"2317","1409040048-2154","14","1","25","15","0",NULL,"14",,"10"
+"2318","1409040847-1b13","24","1","9","9","0",NULL,"24",,"0"
+"2319","1409041304-c53f","38","1","20","20","0",NULL,"38",,"0"
+"2320","1409041649-4dff","38","1","20","20","0",NULL,"38",,"0"
+"2321","1409042200-a06f","33","1","27","27","0",NULL,"33",,"0"
+"2322","1409051032-6395","7","2","13.5","25","0",NULL,"7-28","Popular","1"
+"2323","1409051301-eb94","38","1","20","20","0",NULL,"38",,"0"
+"2324","1409051320-0a4d","38","1","20","20","0",NULL,"38",,"0"
+"2325","1409051649-6b66","38","1","20","20","0",NULL,"38",,"0"
+"2326","1409051818-44e2","2","1","12","12","0",NULL,"2",,"0"
+"2327","1409052225-8196","27","1","115","115","0",NULL,"27",,"0"
+"2328","1409061314-4644","38","2","20","40","0",NULL,"38",,"0"
+"2329","1409061324-76c0","38","1","20","20","0",NULL,"38",,"0"
+"2330","1409061425-ecae","38","1","20","20","0",NULL,"38",,"0"
+"2331","1409061553-69ad","38","1","20","20","0",NULL,"38",,"0"
+"2332","1409061636-9951","38","1","20","20","0",NULL,"38",,"0"
+"2333","1409081025-b9c9","2","1","12","12","0",NULL,"2",,"0"
+"2334","1409081323-daf0","38","2","20","40","0",NULL,"38",,"0"
+"2335","1409081521-d183","38","2","20","40","0",NULL,"38",,"0"
+"2336","1409082132-9bae","38","1","20","20","0",NULL,"38",,"0"
+"2337","1409092109-a1b5","26","1","5","5","0",NULL,"26",,"0"
+"2338","1409092109-a1b5","20","1","90","90","0",NULL,"20",,"0"
+"2339","1409092109-a1b5","28","1","60","60","0",NULL,"28",,"0"
+"2340","1409100243-fb42","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2341","1409100243-fb42","38","1","20","20","0",NULL,"38",,"0"
+"2342","1409100945-144d","38","2","20","40","0",NULL,"38",,"0"
+"2343","1409101027-418c","38","1","20","20","0",NULL,"38",,"0"
+"2344","1409101125-1dac","38","1","20","20","0",NULL,"38",,"0"
+"2345","1409101315-677a","1","4","13.5","50","0",NULL,"1",,"1"
+"2346","1409101315-677a","8","250","0.1","25","0",NULL,"8",,"0"
+"2347","1409101315-677a","6","100","0.1","10","0",NULL,"6",,"0"
+"2348","1409101331-8c50","38","1","20","20","0",NULL,"38",,"0"
+"2349","1409101411-5536","38","1","20","20","0",NULL,"38",,"0"
+"2350","1409102128-2504","28","1","60","60","0",NULL,"28",,"0"
+"2351","1409102128-2504","26","1","5","5","0",NULL,"26",,"0"
+"2352","1409102310-3235","2","1","12","12","0",NULL,"2",,"0"
+"2353","1409102310-3235","24","1","9","9","0",NULL,"24",,"0"
+"2354","1409102310-3235","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2355","1409102310-3235","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2356","1409102310-3235","38","1","20","20","0",NULL,"38",,"0"
+"2357","1409111224-2ddc","26","1","5","5","0",NULL,"26",,"0"
+"2358","1409111224-2ddc","38","3","20","60","0",NULL,"38",,"0"
+"2359","1409111507-acb2","28","1","60","60","0",NULL,"28",,"0"
+"2360","1409121107-a493","2","1","12","12","0",NULL,"2",,"0"
+"2361","1409121107-a493","38","1","20","20","0",NULL,"38",,"0"
+"2362","1409121217-68cf","20","1","90","90","0",NULL,"20",,"0"
+"2363","1409121217-68cf","28","1","60","60","0",NULL,"28",,"0"
+"2364","1409130948-a4a5","38","1","20","20","0",NULL,"38",,"0"
+"2365","1409140056-e29b","2","1","12","12","0",NULL,"2",,"0"
+"2366","1409140056-e29b","20","1","90","90","0",NULL,"20",,"0"
+"2367","1409140056-e29b","28","1","60","60","0",NULL,"28",,"0"
+"2368","1409141210-bee5","28","1","60","60","0",NULL,"28",,"0"
+"2369","1409141257-8196","38","1","20","20","0",NULL,"38",,"0"
+"2370","1409141718-a624","38","1","20","20","0",NULL,"38",,"0"
+"2371","1409142058-77f4","14","1","25","15","0",NULL,"14",,"10"
+"2372","1409142058-77f4","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2373","1409142058-77f4","8","10","0.1","1","0",NULL,"8",,"0"
+"2374","1409142058-77f4","6","10","0.1","1","0",NULL,"6",,"0"
+"2375","1409142058-77f4","7","4","13.5","50","0",NULL,"7-30","Popular","1"
+"2376","1409142058-77f4","38","1","20","20","0",NULL,"38",,"0"
+"2377","1409150839-3850","38","1","20","20","0",NULL,"38",,"0"
+"2378","1409151859-07ca","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"2379","1409151859-07ca","38","1","20","20","0",NULL,"38",,"0"
+"2380","1409151859-07ca","26","1","5","5","0",NULL,"26",,"0"
+"2381","1409151859-07ca","2","1","12","12","0",NULL,"2",,"0"
+"2382","1409152200-3255","38","1","20","20","0",NULL,"38",,"0"
+"2383","1409160033-2d84","27","1","115","115","0",NULL,"27",,"0"
+"2384","1409161221-1cdc","38","1","20","20","0",NULL,"38",,"0"
+"2385","1409161904-d420","32","1","14","14","0",NULL,"32",,"0"
+"2386","1409161904-d420","38","1","20","20","0",NULL,"38",,"0"
+"2387","1409161904-d420","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2388","1409161904-d420","24","1","9","9","0",NULL,"24",,"0"
+"2389","1409161904-d420","26","1","5","5","0",NULL,"26",,"0"
+"2390","1409161904-d420","35","50","0.5","25","0",NULL,"35",,"0"
+"2391","1409161904-d420","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2392","1409171218-ae52","38","1","20","20","0",NULL,"38",,"0"
+"2393","1409171218-ae52","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2394","1409171218-ae52","26","1","5","5","0",NULL,"26",,"0"
+"2395","1409181045-1afd","38","1","20","20","0",NULL,"38",,"0"
+"2396","1409181315-1b53","38","1","20","20","0",NULL,"38",,"0"
+"2397","1409181315-1b53","28","1","60","60","0",NULL,"28",,"0"
+"2398","1409181322-92f3","38","1","20","20","0",NULL,"38",,"0"
+"2399","1409181322-92f3","28","1","60","60","0",NULL,"28",,"0"
+"2400","1409190839-643d","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2401","1409190839-643d","26","1","5","5","0",NULL,"26",,"0"
+"2402","1409190839-643d","38","1","20","20","0",NULL,"38",,"0"
+"2403","1409190853-cdde","15","1","3.5","2","0",NULL,"15",,"1.5"
+"2404","1409190853-cdde","38","1","20","20","0",NULL,"38",,"0"
+"2405","1409191643-6ab3","8","100","0.1","10","0",NULL,"8",,"0"
+"2406","1409191643-6ab3","1","2","13.5","25","0",NULL,"1",,"1"
+"2407","1409191643-6ab3","7","2","13.5","25","0",NULL,"7-31","Popular","1"
+"2408","1409201401-0468","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2409","1409201401-0468","38","1","20","20","0",NULL,"38",,"0"
+"2410","1409201448-683f","38","1","20","20","0",NULL,"38",,"0"
+"2411","1409201448-683f","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2412","1409201753-7a99","2","1","12","12","0",NULL,"2",,"0"
+"2413","1409211252-84b2","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2414","1409212327-0c2f","19","1","3.5","1","0",NULL,"19",,"2.5"
+"2415","1409212327-0c2f","24","1","9","9","0",NULL,"24",,"0"
+"2416","1409212327-0c2f","35","1","0.5","0.5","0",NULL,"35",,"0"
+"2417","1409212327-0c2f","6","1","0.1","0.1","0",NULL,"6",,"0"
+"2418","1409212327-0c2f","17","1","3.5","1","0",NULL,"17",,"2.5"
+"2419","1409212327-0c2f","31","1","3.5","1","0",NULL,"31",,"2.5"
+"2420","1409212327-0c2f","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2421","1409212327-0c2f","15","1","3.5","1","0",NULL,"15",,"2.5"
+"2422","1409212327-0c2f","26","1","5","5","0",NULL,"26",,"0"
+"2423","1409212327-0c2f","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2424","1409220932-65d2","8","1","0.1","0.1","0",NULL,"8",,"0"
+"2425","1409220932-65d2","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2426","1409220932-65d2","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2427","1409220932-65d2","14","1","25","15","0",NULL,"14",,"10"
+"2428","1409230506-83cf","2","1","12","12","0",NULL,"2",,"0"
+"2429","1409230506-83cf","38","1","20","20","0",NULL,"38",,"0"
+"2430","1409230506-83cf","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2433","1409251548-045a","38","5","20","100","0",NULL,"38",,"0"
+"2432","1409241320-a51c","38","1","20","20","0",NULL,"38",,"0"
+"2434","1409260723-864c","38","1","20","20","0",NULL,"38",,"0"
+"2435","1409261544-767c","38","1","20","20","0",NULL,"38",,"0"
+"2436","1409271908-2e25","19","1","3.5","2","0",NULL,"19",,"1.5"
+"2437","1409271908-2e25","2","1","12","12","0",NULL,"2",,"0"
+"2438","1409281322-84b2","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2439","1409281322-84b2","22","3","3.5","10.5","0",NULL,"22",,"0"
+"2440","1409291050-bbfd","38","1","20","20","0",NULL,"38",,"0"
+"2496","1410102131-3f2c","14","1","25","15","0",NULL,"14",,"10"
+"2442","1409291146-184f","7","2","13.5","25","0",NULL,"7-32","Popular","1"
+"2443","1409291618-2bc0","2","1","12","12","0",NULL,"2",,"0"
+"2444","1409291639-da77","2","1","12","12","0",NULL,"2",,"0"
+"2445","1409291720-ea3a","28","1","60","60","0",NULL,"28",,"0"
+"2446","1409291720-ea3a","20","1","90","90","0",NULL,"20",,"0"
+"2447","1409292135-1cbb","2","1","12","12","0",NULL,"2",,"0"
+"2448","1409292156-7705","38","1","20","20","0",NULL,"38",,"0"
+"2449","1409300037-5681","2","1","12","12","0",NULL,"2",,"0"
+"2450","1409300037-5681","38","1","20","20","0",NULL,"38",,"0"
+"2451","1409302243-f67d","38","1","20","20","0",NULL,"38",,"0"
+"2452","1410011158-a677","2","1","12","12","0",NULL,"2",,"0"
+"2453","1410011208-a677","2","1","12","12","0",NULL,"2",,"0"
+"2454","1410011945-cdd3","38","1","20","20","0",NULL,"38",,"0"
+"2455","1410020027-4591","2","1","12","12","0",NULL,"2",,"0"
+"2456","1410021320-4cc1","7","10","13.5","115","0",NULL,"7-33","Popular","2"
+"2457","1410021511-fe90","38","1","20","20","0",NULL,"38",,"0"
+"2458","1410030935-c433","2","1","12","12","0",NULL,"2",,"0"
+"2459","1410030942-4d28","2","1","12","12","0",NULL,"2",,"0"
+"2460","1410031448-fa7e","38","1","20","20","0",NULL,"38",,"0"
+"2461","1410031448-fa7e","28","1","60","60","0",NULL,"28",,"0"
+"2462","1410031448-fa7e","20","1","90","90","0",NULL,"20",,"0"
+"2463","1410031656-f8cd","2","1","12","12","0",NULL,"2",,"0"
+"2464","1410051014-0bdf","30","1","3.5","3.5","0",NULL,"30",,"0"
+"2465","1410051014-0bdf","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"2466","1410051014-0bdf","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2467","1410051014-0bdf","38","1","20","20","0",NULL,"38",,"0"
+"2468","1410051955-8178","38","1","20","20","0",NULL,"38",,"0"
+"2469","1410052117-b58d","38","1","20","20","0",NULL,"38",,"0"
+"2470","1410052129-ff17","38","1","20","20","0",NULL,"38",,"0"
+"2471","1410052139-0625","2","1","12","12","0",NULL,"2",,"0"
+"2472","1410061102-dc82","2","1","12","12","0",NULL,"2",,"0"
+"2473","1410061628-b8c1","38","1","20","20","0",NULL,"38",,"0"
+"2474","1410061709-8e96","15","1","3.5","2","0",NULL,"15",,"1.5"
+"2475","1410061709-8e96","14","1","25","15","0",NULL,"14",,"10"
+"2476","1410061709-8e96","36","1","15","15","0",NULL,"36",,"0"
+"2477","1410061709-8e96","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2478","1410061709-8e96","24","1","9","9","0",NULL,"24",,"0"
+"2479","1410061709-8e96","6","50","0.1","5","0",NULL,"6",,"0"
+"2480","1410061709-8e96","8","50","0.1","5","0",NULL,"8",,"0"
+"2481","1410061709-8e96","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2482","1410061709-8e96","38","2","20","40","0",NULL,"38",,"0"
+"2483","1410062206-beba","28","1","60","60","0",NULL,"28",,"0"
+"2484","1410062217-fdc8","28","1","60","60","0",NULL,"28",,"0"
+"2485","1410070204-24ff","38","1","20","20","0",NULL,"38",,"0"
+"2486","1410070213-9cea","27","1","115","115","0",NULL,"27",,"0"
+"2487","1410071759-409a","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2488","1410071759-409a","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2489","1410071759-409a","8","50","0.1","5","0",NULL,"8",,"0"
+"2490","1410081023-1bd0","32","1","14","14","0",NULL,"32",,"0"
+"2491","1410081155-c5fa","34","5","5.5","27.5","0",NULL,"34",,"0"
+"2492","1410081254-310c","38","2","20","40","0",NULL,"38",,"0"
+"2493","1410092214-002f","38","1","20","20","0",NULL,"38",,"0"
+"2494","1410101056-5927","2","1","12","12","0",NULL,"2",,"0"
+"2495","1410101056-5927","38","1","20","20","0",NULL,"38",,"0"
+"2497","1410102131-3f2c","8","25","0.1","2.5","0",NULL,"8",,"0"
+"2498","1410102131-3f2c","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2499","1410102131-3f2c","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2500","1410102131-3f2c","38","1","20","20","0",NULL,"38",,"0"
+"2501","1410111109-9505","2","1","12","12","0",NULL,"2",,"0"
+"2502","1410111151-85d6","38","1","20","20","0",NULL,"38",,"0"
+"2503","1410112155-5a93","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2504","1410122229-b163","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2505","1410122229-b163","38","1","20","20","0",NULL,"38",,"0"
+"2506","1410141721-04f0","26","1","5","5","0",NULL,"26",,"0"
+"2507","1410141721-04f0","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2508","1410141721-04f0","2","1","12","12","0",NULL,"2",,"0"
+"2509","1410142337-1682","26","1","5","5","0",NULL,"26",,"0"
+"2510","1410150129-71ba","38","1","20","20","0",NULL,"38",,"0"
+"2511","1410150201-71ba","38","1","20","20","0",NULL,"38",,"0"
+"2512","1410151538-a7e8","22","5","3.5","17.5","0",NULL,"22",,"0"
+"2513","1410160843-3d8e","38","1","20","20","0",NULL,"38",,"0"
+"2514","1410160843-3d8e","2","1","12","12","0",NULL,"2",,"0"
+"2515","1410160843-3d8e","26","1","5","5","0",NULL,"26",,"0"
+"2516","1410161037-6472","38","1","20","20","0",NULL,"38",,"0"
+"2517","1410161037-6472","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2518","1410171047-27fb","8","1","0.1","0.1","0",NULL,"8",,"0"
+"2519","1410171047-27fb","6","1","0.1","0.1","0",NULL,"6",,"0"
+"2520","1410171047-27fb","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2521","1410171047-27fb","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2522","1410180817-5ca9","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2523","1410180817-5ca9","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2524","1410180817-5ca9","18","1","3.5","1","0",NULL,"18",,"2.5"
+"2525","1410180817-5ca9","2","1","12","12","0",NULL,"2",,"0"
+"2526","1410180817-5ca9","38","1","20","20","0",NULL,"38",,"0"
+"2527","1410181131-2182","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2528","1410181131-2182","26","1","5","5","0",NULL,"26",,"0"
+"2529","1410181131-2182","38","1","20","20","0",NULL,"38",,"0"
+"2530","1410181326-c755","38","1","20","20","0",NULL,"38",,"0"
+"2531","1410182046-3e02","8","10","0.1","1","0",NULL,"8",,"0"
+"2532","1410182046-3e02","38","1","20","20","0",NULL,"38",,"0"
+"2533","1410190023-8762","38","1","20","20","0",NULL,"38",,"0"
+"2534","1410190047-f47d","20","1","90","90","0",NULL,"20",,"0"
+"2535","1410191024-36be","2","1","12","12","0",NULL,"2",,"0"
+"2536","1410191202-3e99","2","1","12","12","0",NULL,"2",,"0"
+"2537","1410191554-b421","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2538","1410191554-b421","10","1","0.5","0.5","0",NULL,"10",,"0"
+"2539","1410191554-b421","38","2","20","40","0",NULL,"38",,"0"
+"2540","1410200833-2e25","38","1","20","20","0",NULL,"38",,"0"
+"2541","1410201616-01f3","19","1","3.5","1","0",NULL,"19",,"2.5"
+"2542","1410201616-01f3","17","1","3.5","1","0",NULL,"17",,"2.5"
+"2543","1410201616-01f3","18","1","3.5","1","0",NULL,"18",,"2.5"
+"2544","1410201616-01f3","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2545","1410201616-01f3","38","1","20","20","0",NULL,"38",,"0"
+"2546","1410201616-01f3","26","1","5","5","0",NULL,"26",,"0"
+"2547","1410201653-4f10","18","1","3.5","1","0",NULL,"18",,"2.5"
+"2548","1410201653-4f10","38","1","20","20","0",NULL,"38",,"0"
+"2549","1410201653-4f10","19","1","3.5","1","0",NULL,"19",,"2.5"
+"2550","1410201653-4f10","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2551","1410201653-4f10","26","2","5","10","0",NULL,"26",,"0"
+"2552","1410211158-8ecf","7","2","13.5","25","0",NULL,"7","Popular","1"
+"2553","1410211158-8ecf","8","100","0.1","10","0",NULL,"8",,"0"
+"2554","1410211538-b207","18","5","3.5","5","0",NULL,"18",,"2.5"
+"2555","1410211538-b207","24","1","9","9","0",NULL,"24",,"0"
+"2556","1410211538-b207","34","6","5.5","33","0",NULL,"34",,"0"
+"2557","1410211538-b207","38","1","20","20","0",NULL,"38",,"0"
+"2558","1410211538-b207","19","5","3.5","5","0",NULL,"19",,"2.5"
+"2559","1410211538-b207","17","5","3.5","5","0",NULL,"17",,"2.5"
+"2560","1410211538-b207","36","1","15","15","0",NULL,"36",,"0"
+"2561","1410211538-b207","14","1","25","15","0",NULL,"14",,"10"
+"2562","1410211538-b207","32","1","14","14","0",NULL,"32",,"0"
+"2563","1410221002-4178","2","1","12","12","0",NULL,"2",,"0"
+"2564","1410221006-4178","2","1","12","12","0",NULL,"2",,"0"
+"2565","1410221717-74d2","38","2","20","40","0",NULL,"38",,"0"
+"2566","1410221832-a94b","28","2","60","120","0",NULL,"28",,"0"
+"2567","1410231101-1356","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2568","1410231101-1356","8","50","0.1","5","0",NULL,"8",,"0"
+"2569","1410231101-1356","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2570","1410231145-45e4","38","1","20","20","0",NULL,"38",,"0"
+"2571","1410231321-117a","2","1","12","12","0",NULL,"2",,"0"
+"2572","1410231321-117a","4","1","432","432","0",NULL,"4",,"0"
+"2573","1410232147-c29c","38","1","20","20","0",NULL,"38",,"0"
+"2574","1410240836-a623","36","1","15","15","0",NULL,"36",,"0"
+"2575","1410240836-a623","38","1","20","20","0",NULL,"38",,"0"
+"2576","1410242340-5ea6","38","2","20","40","0",NULL,"38",,"0"
+"2577","1410251259-0c6a","2","1","12","12","0",NULL,"2",,"0"
+"2578","1410251259-0c6a","38","1","20","20","0",NULL,"38",,"0"
+"2579","1410251612-ae52","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"2580","1410251612-ae52","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"2581","1410251612-ae52","31","1","3.5","1.25","0",NULL,"31",,"2.25"
+"2582","1410261312-b927","2","1","12","12","0",NULL,"2",,"0"
+"2583","1410261649-45bc","14","2","25","30","0",NULL,"14",,"10"
+"2584","1410261649-45bc","8","100","0.1","10","0",NULL,"8",,"0"
+"2585","1410261649-45bc","6","100","0.1","10","0",NULL,"6",,"0"
+"2586","1410261649-45bc","7","2","13.5","25","0",NULL,"7","Popular","1"
+"2587","1410261649-45bc","1","2","13.5","25","0",NULL,"1",,"1"
+"2588","1410262004-1570","38","1","20","20","0",NULL,"38",,"0"
+"2589","1410271908-d179","38","1","20","20","0",NULL,"38",,"0"
+"2590","1410281733-99ba","2","1","12","12","0",NULL,"2",,"0"
+"2591","1410291328-1250","22","6","3.5","21","0",NULL,"22",,"0"
+"2592","1410291328-1250","34","4","5.5","22","0",NULL,"34",,"0"
+"2593","1410291328-1250","32","1","14","14","0",NULL,"32",,"0"
+"2594","1410291541-6c75","17","1","3.5","1.25","0",NULL,"17",,"2.25"
+"2595","1410291541-6c75","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"2596","1410291541-6c75","38","1","20","20","0",NULL,"38",,"0"
+"2597","1410291727-4a53","38","1","20","20","0",NULL,"38",,"0"
+"2598","1410310718-0112","38","1","20","20","0",NULL,"38",,"0"
+"2599","1410311547-fd15","2","1","12","12","0",NULL,"2",,"0"
+"2600","1410311555-fd15","2","1","12","12","0",NULL,"2",,"0"
+"2601","1411012333-a40a","38","1","20","20","0",NULL,"38",,"0"
+"2602","1411021917-a31d","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2603","1411021917-a31d","31","1","3.5","1","0",NULL,"31",,"2.5"
+"2604","1411021917-a31d","32","1","14","14","0",NULL,"32",,"0"
+"2605","1411021917-a31d","7","2","13.5","25","0",NULL,"7","Popular","1"
+"2606","1411021917-a31d","1","2","13.5","25","0",NULL,"1",,"1"
+"2607","1411031016-1609","26","1","5","5","0",NULL,"26",,"0"
+"2608","1411031016-1609","34","5","5.5","27.5","0",NULL,"34",,"0"
+"2609","1411031333-b95b","2","1","12","12","0",NULL,"2",,"0"
+"2610","1411031333-b95b","1","5","13.5","62.5","0",NULL,"1",,"1"
+"2611","1411031352-946e","2","1","12","12","0",NULL,"2",,"0"
+"2612","1411031402-946e","2","1","12","12","0",NULL,"2",,"0"
+"2613","1411051319-c5db","2","1","12","12","0",NULL,"2",,"0"
+"2614","1411051407-1a48","28","1","90","90","0",NULL,"28",,"0"
+"2615","1411052118-86b6","38","1","20","20","0",NULL,"38",,"0"
+"2616","1411062043-d879","38","1","20","20","0",NULL,"38",,"0"
+"2617","1411062109-9797","2","1","12","12","0",NULL,"2",,"0"
+"2618","1411062109-9797","38","1","20","20","0",NULL,"38",,"0"
+"2619","1411070824-344e","2","1","12","12","0",NULL,"2",,"0"
+"2620","1411070836-344e","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2621","1411070836-344e","18","1","3.5","1","0",NULL,"18",,"2.5"
+"2622","1411070836-344e","15","1","3.5","1","0",NULL,"15",,"2.5"
+"2623","1411070836-344e","26","1","5","5","0",NULL,"26",,"0"
+"2624","1411070836-344e","38","1","20","20","0",NULL,"38",,"0"
+"2625","1411091815-4a6d","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2626","1411091815-4a6d","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2627","1411101007-1af0","38","4","20","80","0",NULL,"38",,"0"
+"2628","1411101249-437c","38","2","20","40","0",NULL,"38",,"0"
+"2629","1411111038-8d85","6","25","0.1","2.5","0",NULL,"6",,"0"
+"2630","1411111038-8d85","22","2","3.5","7","0",NULL,"22",,"0"
+"2631","1411111038-8d85","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2632","1411111038-8d85","17","2","3.5","2","0",NULL,"17",,"2.5"
+"2633","1411111038-8d85","14","1","25","15","0",NULL,"14",,"10"
+"2634","1411111038-8d85","8","50","0.1","5","0",NULL,"8",,"0"
+"2635","1411111038-8d85","1","2","13.5","25","0",NULL,"1",,"1"
+"2636","1411111243-42b5","2","1","12","12","0",NULL,"2",,"0"
+"2637","1411111309-bed2","2","1","12","12","0",NULL,"2",,"0"
+"2638","1411120733-29f2","4","1","432","432","0",NULL,"4",,"0"
+"2639","1411130258-670d","27","1","150","150","0",NULL,"27",,"0"
+"2640","1411130904-fb4d","7","3","13.5","37.5","0",NULL,"7-37","Popular","1"
+"2641","1411130933-a152","2","1","12","12","0",NULL,"2",,"0"
+"2642","1411131256-adc3","7","2","13.5","25","0",NULL,"7","Popular","1"
+"2643","1411131616-fb67","38","1","20","20","0",NULL,"38",,"0"
+"2644","1411140949-ee1a","38","1","20","20","0",NULL,"38",,"0"
+"2645","1411140949-ee1a","2","1","12","12","0",NULL,"2",,"0"
+"2646","1411141420-9b27","38","1","20","20","0",NULL,"38",,"0"
+"2647","1411141734-68d7","2","1","12","12","0",NULL,"2",,"0"
+"2648","1411160005-5a0a","35","1","0.5","0.5","0",NULL,"35",,"0"
+"2649","1411160005-5a0a","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2650","1411160946-4159","38","1","20","20","0",NULL,"38",,"0"
+"2651","1411161426-de1f","10","10","0.5","5","0",NULL,"10",,"0"
+"2652","1411161426-de1f","8","50","0.1","5","0",NULL,"8",,"0"
+"2653","1411161426-de1f","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2654","1411161559-4159","38","1","20","20","0",NULL,"38",,"0"
+"2655","1411162026-4e5d","38","1","20","20","0",NULL,"38",,"0"
+"2656","1411181200-a187","38","1","20","20","0",NULL,"38",,"0"
+"2657","1411191003-02d9","2","1","12","12","0",NULL,"2",,"0"
+"2658","1411191003-02d9","28","1","90","90","0",NULL,"28",,"0"
+"2659","1411191003-02d9","20","1","90","90","0",NULL,"20",,"0"
+"2660","1411201130-a0c6","38","2","20","40","0",NULL,"38",,"0"
+"2661","1411201138-0d82","38","2","20","40","0",NULL,"38",,"0"
+"2662","1411201345-d299","34","6","5.5","33","0",NULL,"34",,"0"
+"2663","1411210150-8a89","24","1","9","9","0",NULL,"24",,"0"
+"2664","1411210150-8a89","38","1","20","20","0",NULL,"38",,"0"
+"2665","1411210150-8a89","15","1","3.5","1","0",NULL,"15",,"2.5"
+"2666","1411210150-8a89","17","1","3.5","1","0",NULL,"17",,"2.5"
+"2667","1411210150-8a89","35","1","0.5","0.5","0",NULL,"35",,"0"
+"2668","1411210150-8a89","31","1","3.5","1","0",NULL,"31",,"2.5"
+"2669","1411210150-8a89","19","1","3.5","1","0",NULL,"19",,"2.5"
+"2670","1411210150-8a89","8","50","0.1","5","0",NULL,"8",,"0"
+"2671","1411210150-8a89","6","1","0.1","0.1","0",NULL,"6",,"0"
+"2672","1411210150-8a89","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2673","1411210150-8a89","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2674","1411210150-8a89","26","1","5","5","0",NULL,"26",,"0"
+"2675","1411210150-8a89","10","1","0.5","0.5","0",NULL,"10",,"0"
+"2676","1411210150-8a89","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2677","1411210150-8a89","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2678","1411211257-7bf9","2","1","12","12","0",NULL,"2",,"0"
+"2679","1411221156-f954","17","1","3.5","1","0",NULL,"17",,"2.5"
+"2680","1411221156-f954","18","1","3.5","1","0",NULL,"18",,"2.5"
+"2681","1411221156-f954","15","1","3.5","1","0",NULL,"15",,"2.5"
+"2682","1411221156-f954","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2683","1411221156-f954","38","1","20","20","0",NULL,"38",,"0"
+"2684","1411231203-bf0b","18","1","3.5","1.25","0",NULL,"18",,"2.25"
+"2685","1411231203-bf0b","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"2686","1411231203-bf0b","15","1","3.5","1.25","0",NULL,"15",,"2.25"
+"2687","1411231203-bf0b","38","1","20","20","0",NULL,"38",,"0"
+"2688","1411231855-98f0","38","1","20","20","0",NULL,"38",,"0"
+"2689","1411231855-98f0","15","1","3.5","1","0",NULL,"15",,"2.5"
+"2690","1411231855-98f0","26","1","5","5","0",NULL,"26",,"0"
+"2691","1411231855-98f0","22","3","3.5","10.5","0",NULL,"22",,"0"
+"2692","1411231855-98f0","31","3","3.5","3","0",NULL,"31",,"2.5"
+"2693","1411231855-98f0","19","3","3.5","3","0",NULL,"19",,"2.5"
+"2694","1411231855-98f0","17","3","3.5","3","0",NULL,"17",,"2.5"
+"2695","1411231855-98f0","24","1","9","9","0",NULL,"24",,"0"
+"2696","1411240918-ccc4","38","1","20","20","0",NULL,"38",,"0"
+"2697","1411241126-2aa2","32","1","14","14","0",NULL,"32",,"0"
+"2698","1411241945-1a70","26","1","5","5","0",NULL,"26",,"0"
+"2699","1411251606-4671","38","1","20","20","0",NULL,"38",,"0"
+"2700","1411251631-4671","38","1","20","20","0",NULL,"38",,"0"
+"2701","1411260956-ed94","19","1","3.5","1","0",NULL,"19",,"2.5"
+"2702","1411260956-ed94","17","1","3.5","1","0",NULL,"17",,"2.5"
+"2703","1411260956-ed94","26","1","5","5","0",NULL,"26",,"0"
+"2704","1411260956-ed94","18","3","3.5","3","0",NULL,"18",,"2.5"
+"2705","1411260956-ed94","15","1","3.5","1","0",NULL,"15",,"2.5"
+"2706","1411260956-ed94","38","2","20","40","0",NULL,"38",,"0"
+"2707","1411260956-ed94","28","1","90","90","0",NULL,"28",,"0"
+"2708","1411261701-73a0","38","1","20","20","0",NULL,"38",,"0"
+"2709","1411261706-73a0","38","1","20","20","0",NULL,"38",,"0"
+"2710","1411280747-6976","38","1","20","20","0",NULL,"38",,"0"
+"2711","1411302049-d5fc","2","1","12","12","0",NULL,"2",,"0"
+"2712","1412011117-8677","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2713","1412011117-8677","6","1","0.1","0.1","0",NULL,"6",,"0"
+"2714","1412011117-8677","15","1","3.5","1","0",NULL,"15",,"2.5"
+"2715","1412011117-8677","8","1","0.1","0.1","0",NULL,"8",,"0"
+"2716","1412011117-8677","38","1","20","20","0",NULL,"38",,"0"
+"2717","1412011500-2794","38","2","20","40","0",NULL,"38",,"0"
+"2718","1412011500-2794","2","1","12","12","0",NULL,"2",,"0"
+"2719","1412012239-8231","38","1","20","20","0",NULL,"38",,"0"
+"2720","1412021025-423e","1","2","13.5","25","0",NULL,"1",,"1"
+"2721","1412021204-1abc","34","15","5.5","82.5","0",NULL,"34",,"0"
+"2722","1412021304-9b88","22","6","3.5","21","0",NULL,"22",,"0"
+"2723","1412022010-5d95","17","1","3.5","1","0",NULL,"17",,"2.5"
+"2724","1412022010-5d95","38","1","20","20","0",NULL,"38",,"0"
+"2725","1412022010-5d95","26","1","5","5","0",NULL,"26",,"0"
+"2726","1412022010-5d95","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2727","1412022010-5d95","2","1","12","12","0",NULL,"2",,"0"
+"2728","1412022239-da77","2","1","12","12","0",NULL,"2",,"0"
+"2729","1412022257-da77","2","1","12","12","0",NULL,"2",,"0"
+"2730","1412022303-da77","2","1","12","12","0",NULL,"2",,"0"
+"2731","1412031351-2e25","2","1","12","12","0",NULL,"2",,"0"
+"2732","1412031428-417d","2","3","12","36","0",NULL,"2",,"0"
+"2733","1412032203-f715","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2734","1412032203-f715","14","1","25","15","0",NULL,"14",,"10"
+"2735","1412032203-f715","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2736","1412041028-0bb1","38","1","20","20","0",NULL,"38",,"0"
+"2737","1412041748-0d35","38","1","20","20","0",NULL,"38",,"0"
+"2738","1412041748-0d35","31","1","3.5","1.25","0",NULL,"31",,"2.25"
+"2739","1412041748-0d35","19","1","3.5","1.25","0",NULL,"19",,"2.25"
+"2740","1412041748-0d35","2","1","12","12","0",NULL,"2",,"0"
+"2741","1412042246-484a","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2742","1412042246-484a","38","1","20","20","0",NULL,"38",,"0"
+"2743","1412042250-74e8","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2744","1412042250-74e8","38","1","20","20","0",NULL,"38",,"0"
+"2745","1412051523-d47c","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2746","1412060911-377e","2","1","12","12","0",NULL,"2",,"0"
+"2747","1412061308-18cd","2","1","12","12","0",NULL,"2",,"0"
+"2748","1412071625-97e2","2","1","12","12","0",NULL,"2",,"0"
+"2749","1412071625-97e2","38","1","20","20","0",NULL,"38",,"0"
+"2750","1412080909-facd","38","1","20","20","0",NULL,"38",,"0"
+"2751","1412080909-facd","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2752","1412081232-7593","38","1","20","20","0",NULL,"38",,"0"
+"2753","1412081706-05b3","2","1","12","12","0",NULL,"2",,"0"
+"2754","1412081706-05b3","28","1","90","90","0",NULL,"28",,"0"
+"2755","1412081740-6307","2","1","12","12","0",NULL,"2",,"0"
+"2756","1412081809-329c","38","1","20","20","0",NULL,"38",,"0"
+"2757","1412090923-c0ec","22","1","3.5","3.5","0",NULL,"22",,"0"
+"2758","1412090933-ab22","2","1","12","12","0",NULL,"2",,"0"
+"2759","1412091131-40b6","2","1","12","12","0",NULL,"2",,"0"
+"2760","1412091400-286c","2","1","12","12","0",NULL,"2",,"0"
+"2761","1412091547-3221","2","1","12","12","0",NULL,"2",,"0"
+"2762","1412091548-c20b","2","2","12","24","0",NULL,"2",,"0"
+"2763","1412091552-bd71","2","1","12","12","0",NULL,"2",,"0"
+"2764","1412091556-4cae","2","1","12","12","0",NULL,"2",,"0"
+"2765","1412091614-e9d9","2","1","12","12","0",NULL,"2",,"0"
+"2766","1412091628-32aa","2","1","12","12","0",NULL,"2",,"0"
+"2767","1412091633-10f0","2","1","12","12","0",NULL,"2",,"0"
+"2768","1412091646-b33d","2","1","12","12","0",NULL,"2",,"0"
+"2769","1412100707-c0ed","2","1","12","12","0",NULL,"2",,"0"
+"2770","1412101246-aaab","2","1","12","12","0",NULL,"2",,"0"
+"2771","1412101414-ca20","2","1","12","12","0",NULL,"2",,"0"
+"2772","1412111114-fb4d","7","3","13.5","37.5","0",NULL,"7-40","Popular","1"
+"2773","1412120024-78fd","38","1","20","20","0",NULL,"38",,"0"
+"2774","1412121623-d13b","2","1","12","12","0",NULL,"2",,"0"
+"2775","1412141543-991d","27","1","150","150","0",NULL,"27",,"0"
+"2776","1412150719-5675","38","1","20","20","0",NULL,"38",,"0"
+"2777","1412150815-dad9","2","4","12","48","0",NULL,"2",,"0"
+"2778","1412151230-8dd5","2","2","12","24","0",NULL,"2",,"0"
+"2779","1412171045-315c","38","1","20","20","0",NULL,"38",,"0"
+"2780","1412171155-872f","22","3","3.5","10.5","0",NULL,"22",,"0"
+"2781","1412171531-a5b5","34","1","5.5","5.5","0",NULL,"34",,"0"
+"2782","1412171531-a5b5","38","1","20","20","0",NULL,"38",,"0"
+"2783","1412171531-a5b5","8","50","0.1","5","0",NULL,"8",,"0"
+"2784","1412171531-a5b5","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2785","1412171531-a5b5","7","1","13.5","13.5","0",NULL,"7","Popular","0"
+"2786","1412201841-77c7","60","2","12","24","0",NULL,"60",,"0"
+"2787","1412201846-758a","60","1","12","12","0",NULL,"60",,"0"
+"2788","1412201856-1435","60","1","12","12","0",NULL,"60",,"0"
+"2789","1412210928-ae6f","28","1","90","90","0",NULL,"28",,"0"
+"2790","1412210936-777e","60","1","12","12","0",NULL,"60",,"0"
+"2791","1412211853-9343","27","1","150","150","0",NULL,"27",,"0"
+"2792","1412211902-9343","27","1","150","150","0",NULL,"27",,"0"
+"2793","1412221452-d6fa","60","1","12","12","0",NULL,"60",,"0"
+"2794","1412221452-d6fa","28","1","90","90","0",NULL,"28",,"0"
+"2795","1412221452-d6fa","20","1","90","90","0",NULL,"20",,"0"
+"2796","1412221543-8131","60","1","12","12","0",NULL,"60",,"0"
+"2797","1412230852-fb1e","60","1","12","12","0",NULL,"60",,"0"
+"2798","1412241510-907f","8","100","0.1","10","0",NULL,"8",,"0"
+"2799","1412241510-907f","6","100","0.1","10","0",NULL,"6",,"0"
+"2800","1412271253-c7ab","60","1","12","12","0",NULL,"60",,"0"
+"2801","1412281211-1cba","60","1","12","12","0",NULL,"60",,"0"
+"2802","1412281403-b4ea","60","1","12","12","0",NULL,"60",,"0"
+"2803","1412282043-cb5c","60","1","12","12","0",NULL,"60",,"0"
+"2804","1412291130-700e","60","1","12","12","0",NULL,"60",,"0"
+"2805","1412291419-91e6","24","1","9","9","0",NULL,"24",,"0"
+"2806","1412291620-e1c8","2","1","12","12","0",NULL,"2",,"0"
+"2807","1412291752-a06e","1","1","13.5","13.5","0",NULL,"1",,"0"
+"2808","1412292305-8885","38","1","20","20","0",NULL,"38",,"0"
+"2809","1412292305-8885","29","1","3.5","3.5","0",NULL,"29",,"0"
+"2810","1412292305-8885","26","1","5","5","0",NULL,"26",,"0"
+"2811","1412300720-5ef5","38","1","20","20","0",NULL,"38",,"0"
+"2812","1412300720-5ef5","2","1","12","12","0",NULL,"2",,"0"
+"2813","1412301254-dde4","2","1","12","12","0",NULL,"2",,"0"
+"2814","1412301257-70dc","2","1","12","12","0",NULL,"2",,"0"
+"2815","1412301456-6de3","2","1","12","12","0",NULL,"2",,"0"
+"2816","1412301457-1b92","34","4","5.5","22","0",NULL,"34",,"0"
+"2817","1412301501-6de3","2","1","12","12","0",NULL,"2",,"0"
+"2818","1412311048-c529","38","1","20","20","0",NULL,"38",,"0"
+"2819","1412311546-6de3","60","1","12","12","0",NULL,"60",,"0"
+"2820","1412311640-e07e","69","10","4","40","0",NULL,"69",,"0"
+"2821","1412311640-e07e","61","20","0.5","10","0",NULL,"61",,"0"
+"2822","1412311640-e07e","67","15","6","90","0",NULL,"67",,"0"
+"2823","1501011225-82b9","38","1","20","20","0",NULL,"38",,"0"
+"2824","1501021750-55db","60","1","12","12","0",NULL,"60",,"0"
+"2825","1501031146-7e51","60","1","12","12","0",NULL,"60",,"0"
+"2826","1501031602-fb5f","60","1","12","12","0",NULL,"60",,"0"
+"2827","1501041121-0e6a","60","1","12","12","0",NULL,"60",,"0"
+"2828","1501041555-2190","60","1","12","12","0",NULL,"60",,"0"
+"2829","1501041555-2190","38","1","20","20","0",NULL,"38",,"0"
+"2830","1501041555-2190","26","1","5","5","0",NULL,"26",,"0"
+"2831","1501042028-aeda","69","1","4","4","0",NULL,"69",,"0"
+"2832","1501042028-aeda","75","1","4","4","0",NULL,"75",,"0"
+"2833","1501042028-aeda","67","1","6","6","0",NULL,"67",,"0"
+"2834","1501042028-aeda","26","1","5","5","0",NULL,"26",,"0"
+"2835","1501042028-aeda","60","1","12","12","0",NULL,"60",,"0"
+"2836","1501042028-aeda","77","1","4","4","0",NULL,"77",,"0"
+"2837","1501042059-665b","58","100","0.1","10","0",NULL,"58",,"0"
+"2838","1501042059-665b","63","1","27","27","0",NULL,"63",,"0"
+"2839","1501042059-665b","46","1","27","27","0",NULL,"46","Popular","0"
+"2840","1501042205-06b7","60","1","12","12","0",NULL,"60",,"0"
+"2841","1501051030-5910","60","1","12","12","0",NULL,"60",,"0"
+"2842","1501051816-cbce","60","1","12","12","0",NULL,"60",,"0"
+"2843","1501051823-cea6","68","1","9","9","0",NULL,"68",,"0"
+"2844","1501051823-cea6","60","1","12","12","0",NULL,"60",,"0"
+"2845","1501052247-7f25","38","1","20","20","0",NULL,"38",,"0"
+"2846","1501052247-7f25","40","1","98","98","0",NULL,"40",,"0"
+"2847","1501061001-455e","60","1","12","12","0",NULL,"60",,"0"
+"2848","1501061332-a48e","70","10","1","10","0",NULL,"70",,"0"
+"2849","1501061332-a48e","58","50","0.1","5","0",NULL,"58",,"0"
+"2850","1501061332-a48e","49","1","14","14","0",NULL,"49",,"0"
+"2851","1501061332-a48e","26","1","5","5","0",NULL,"26",,"0"
+"2852","1501061332-a48e","68","1","9","9","0",NULL,"68",,"0"
+"2853","1501061332-a48e","66","1","4","4","0",NULL,"66",,"0"
+"2854","1501061332-a48e","77","1","4","4","0",NULL,"77",,"0"
+"2855","1501061332-a48e","73","1","4","4","0",NULL,"73",,"0"
+"2856","1501061332-a48e","69","1","4","4","0",NULL,"69",,"0"
+"2857","1501061332-a48e","38","1","20","20","0",NULL,"38",,"0"
+"2858","1501061332-a48e","62","1","14","14","0",NULL,"62",,"0"
+"2859","1501061332-a48e","67","1","6","6","0",NULL,"67",,"0"
+"2860","1501061332-a48e","59","50","0.1","5","0",NULL,"59",,"0"
+"2861","1501061332-a48e","45","1","14","14","0",NULL,"45","Popular","0"
+"2862","1501101548-61c3","38","1","20","20","0",NULL,"38",,"0"
+"2863","1501101548-61c3","70","2","1","2","0",NULL,"70",,"0"
+"2864","1501101948-962a","60","1","12","12","0",NULL,"60",,"0"
+"2865","1501101956-a24d","49","1","14","14","0",NULL,"49",,"0"
+"2866","1501121210-5ee7","50","1","27","27","0",NULL,"50",,"0"
+"2867","1501121210-5ee7","60","1","12","12","0",NULL,"60",,"0"
+"2868","1501131614-1041","60","1","12","12","0",NULL,"60",,"0"
+"2869","1501141629-53e8","47","1","125","125","0",NULL,"47","Popular","0"
+"2870","1501150823-2c71","82","1","4","4","0",NULL,"82",,"0"
+"2871","1501150823-2c71","60","1","12","12","0",NULL,"60",,"0"
+"2872","1501151400-9a89","40","1","98","98","0",NULL,"40",,"0"
+"2873","1501151736-51bd","38","1","20","20","0",NULL,"38",,"0"
+"2874","1501161219-9059","63","1","27","27","0",NULL,"63",,"0"
+"2875","1501161219-9059","45","1","14","14","0",NULL,"45","Popular","0"
+"2876","1501161219-9059","50","1","27","27","0",NULL,"50",,"0"
+"2877","1501171243-d849","38","1","20","20","0",NULL,"38",,"0"
+"2878","1501171332-eef8","60","3","12","36","0",NULL,"60",,"0"
+"2879","1501171620-824d","26","1","5","5","0",NULL,"26",,"0"
+"2880","1501171620-824d","66","1","4","4","0",NULL,"66",,"0"
+"2881","1501171620-824d","38","1","20","20","0",NULL,"38",,"0"
+"2882","1501171620-824d","69","1","4","4","0",NULL,"69",,"0"
+"2883","1501171620-824d","67","1","6","6","0",NULL,"67",,"0"
+"2884","1501171620-824d","75","1","4","4","0",NULL,"75",,"0"
+"2885","1501190047-a677","67","1","6","6","0",NULL,"67",,"0"
+"2886","1501190047-a677","38","1","20","20","0",NULL,"38",,"0"
+"2887","1501191258-7c1b","60","1","12","12","0",NULL,"60",,"0"
+"2888","1501191258-7c1b","69","1","4","4","0",NULL,"69",,"0"
+"2889","1501191258-7c1b","26","1","5","5","0",NULL,"26",,"0"
+"2890","1501201049-9aab","60","1","12","12","0",NULL,"60",,"0"
+"2891","1501201430-2c83","60","1","12","12","0",NULL,"60",,"0"
+"2892","1501201657-dd5d","79","1","4","4","0",NULL,"79",,"0"
+"2893","1501201657-dd5d","26","1","5","5","0",NULL,"26",,"0"
+"2894","1501201657-dd5d","67","1","6","6","0",NULL,"67",,"0"
+"2895","1501221244-db10","45","1","14","14","0",NULL,"45","Popular","0"
+"2896","1501221244-db10","49","1","14","14","0",NULL,"49",,"0"
+"2897","1501221513-42b5","40","1","98","98","0",NULL,"40",,"0"
+"2898","1501221747-3ceb","69","1","4","4","0",NULL,"69",,"0"
+"2899","1501221747-3ceb","67","1","6","6","0",NULL,"67",,"0"
+"2900","1501221747-3ceb","58","1","0.1","0.1","0",NULL,"58",,"0"
+"2901","1501221747-3ceb","60","1","12","12","0",NULL,"60",,"0"
+"2902","1501222200-3836","67","3","6","18","0",NULL,"67",,"0"
+"2903","1501222200-3836","60","1","12","12","0",NULL,"60",,"0"
+"2904","1501222200-3836","26","1","5","5","0",NULL,"26",,"0"
+"2905","1501261306-7243","38","1","20","20","0",NULL,"38",,"0"
+"2906","1501261858-3550","69","1","4","4","0",NULL,"69",,"0"
+"2907","1501261858-3550","60","1","12","12","0",NULL,"60",,"0"
+"2908","1501262127-ee0e","60","2","12","24","0",NULL,"60",,"0"
+"2909","1501270932-cab8","60","1","12","12","0",NULL,"60",,"0"
+"2910","1501271340-6554","77","1","4","4","0",NULL,"77",,"0"
+"2911","1501271340-6554","45","1","14","14","0",NULL,"45","Popular","0"
+"2912","1501271340-6554","68","1","9","9","0",NULL,"68",,"0"
+"2913","1501271340-6554","49","2","14","28","0",NULL,"49",,"0"
+"2914","1501271340-6554","58","30","0.1","3","0",NULL,"58",,"0"
+"2915","1501271340-6554","62","1","14","14","0",NULL,"62",,"0"
+"2916","1501271340-6554","67","1","6","6","0",NULL,"67",,"0"
+"2917","1501271340-6554","71","1","14","14","0",NULL,"71",,"0"
+"2918","1501281148-c5fa","45","1","14","14","0",NULL,"45","Popular","0"
+"2919","1501281148-c5fa","58","50","0.1","5","0",NULL,"58",,"0"
+"2920","1501281148-c5fa","62","1","14","14","0",NULL,"62",,"0"
+"2921","1501281559-8978","60","1","12","12","0",NULL,"60",,"0"
+"2922","1501301222-8f1e","38","1","20","20","0",NULL,"38",,"0"
+"2923","1501301628-527d","46","1","27","27","0",NULL,"46","Popular","0"
+"2924","1501310628-e930","60","1","12","12","0",NULL,"60",,"0"
+"2925","1501311017-dele","60","1","12","12","0",NULL,"60",,"0"
+"2926","1501311021-dele","60","1","12","12","0",NULL,"60",,"0"
+"2927","1501311035-7e4b","45","1","14","14","0",NULL,"45","Popular","0"
+"2928","1501311035-7e4b","49","1","14","14","0",NULL,"49",,"0"
+"2929","1501311703-9142","38","1","20","20","0",NULL,"38",,"0"
+"2930","1502012145-8ab0","60","1","12","12","0",NULL,"60",,"0"
+"2931","1502020102-e8fd","38","1","20","20","0",NULL,"38",,"0"
+"2932","1502031102-a249","26","1","5","5","0",NULL,"26",,"0"
+"2933","1502031110-a249","38","1","20","20","0",NULL,"38",,"0"
+"2934","1502031715-5923","58","50","0.1","5","0",NULL,"58",,"0"
+"2935","1502031715-5923","49","1","14","14","0",NULL,"49",,"0"
+"2936","1502041430-8672","38","1","20","20","0",NULL,"38",,"0"
+"2937","1502041430-8672","60","1","12","12","0",NULL,"60",,"0"
+"2938","1502050943-001c","60","1","12","12","0",NULL,"60",,"0"
+"2939","1502051925-399b","70","1","1","1","0",NULL,"70",,"0"
+"2940","1502051925-399b","66","1","4","4","0",NULL,"66",,"0"
+"2941","1502051925-399b","61","1","0.5","0.5","0",NULL,"61",,"0"
+"2942","1502051925-399b","69","1","4","4","0",NULL,"69",,"0"
+"2943","1502051925-399b","60","1","12","12","0",NULL,"60",,"0"
+"2944","1502051925-399b","67","1","6","6","0",NULL,"67",,"0"
+"2945","1502051925-399b","38","1","20","20","0",NULL,"38",,"0"
+"2946","1502060656-5b9e","60","1","12","12","0",NULL,"60",,"0"
+"2947","1502061341-4bc4","47","1","125","125","0",NULL,"47","Popular","0"
+"2948","1502061341-4bc4","51","1","125","125","0",NULL,"51",,"0"
+"2949","1502061628-0c34","58","50","0.1","5","0",NULL,"58",,"0"
+"2950","1502071034-dele","60","1","12","12","0",NULL,"60",,"0"
+"2951","1502071043-eb55","60","1","12","12","0",NULL,"60",,"0"
+"2952","1502071149-e18e","67","10","6","60","0",NULL,"67",,"0"
+"2953","1502071149-e18e","38","1","20","20","0",NULL,"38",,"0"
+"2954","1502081435-f4bf","58","50","0.1","5","0",NULL,"58",,"0"
+"2955","1502081443-54e0","58","50","0.1","5","0",NULL,"58",,"0"
+"2956","1502081929-d5e0","60","1","12","12","0",NULL,"60",,"0"
+"2957","1502082152-622d","60","1","12","12","0",NULL,"60",,"0"
+"2958","1502112053-d2d2","70","3","1","3","0",NULL,"70",,"0"
+"2959","1502112120-d2d2","70","3","1","3","0",NULL,"70",,"0"
+"2960","1502121641-28fd","60","1","12","12","0",NULL,"60",,"0"
+"2961","1502122139-1792","85","1","68","68","0",NULL,"85",,"0"
+"2962","1502130906-f09f","66","1","4","4","0",NULL,"66",,"0"
+"2963","1502130906-f09f","38","1","20","20","0",NULL,"38",,"0"
+"2964","1502131115-4b2d","50","1","27","27","0",NULL,"50",,"0"
+"2965","1502131115-4b2d","63","1","27","27","0",NULL,"63",,"0"
+"2966","1502131115-4b2d","46","1","27","27","0",NULL,"46","Popular","0"
+"2967","1502142013-f0a3","84","1","123","123","0",NULL,"84",,"0"
+"2968","1502142347-0515","84","1","123","123","0",NULL,"84",,"0"
+"2969","1502151135-73a1","60","1","12","12","0",NULL,"60",,"0"
+"2970","1502161344-11a6","38","1","20","20","0",NULL,"38",,"0"
+"2971","1502161414-7581","38","1","20","20","0",NULL,"38",,"0"
+"2972","1502161424-11a6","38","1","20","20","0",NULL,"38",,"0"
+"2973","1502161456-7581","38","1","20","20","0",NULL,"38",,"0"
+"2974","1502161850-cb36","85","1","68","68","0",NULL,"85",,"0"
+"2975","1502171636-0abe","66","1","4","4","0",NULL,"66",,"0"
+"2976","1502171636-0abe","84","1","123","123","0",NULL,"84",,"0"
+"2977","1502171636-0abe","43","1","158","158","0",NULL,"43",,"0"
+"2978","1502171825-3649","60","1","12","12","0",NULL,"60",,"0"
+"2979","1502171825-3649","85","1","68","68","0",NULL,"85",,"0"
+"2980","1502172218-1ea0","84","1","123","123","0",NULL,"84",,"0"
+"2981","1502180941-58ca","59","10","0.1","1","0",NULL,"59",,"0"
+"2982","1502180941-58ca","58","50","0.1","5","0",NULL,"58",,"0"
+"2983","1502180941-58ca","38","1","20","20","0",NULL,"38",,"0"
+"2984","1502180941-58ca","49","1","14","14","0",NULL,"49",,"0"
+"2985","1502181427-b968","60","1","12","12","0",NULL,"60",,"0"
+"2986","1502190836-739f","26","1","5","5","0",NULL,"26",,"0"
+"2987","1502191535-4528","60","1","12","12","0",NULL,"60",,"0"
+"2988","1502191724-0500","58","100","0.1","10","0",NULL,"58",,"0"
+"2989","1502191724-0500","50","1","27","27","0",NULL,"50",,"0"
+"2990","1502191724-0500","59","100","0.1","10","0",NULL,"59",,"0"
+"2991","1502191724-0500","46","1","27","27","0",NULL,"46","Popular","0"
+"2992","1502221424-eb2a","60","1","12","12","0",NULL,"60",,"0"
+"2993","1502241711-b110","60","1","12","12","0",NULL,"60",,"0"
+"2994","1502241711-b110","26","1","5","5","0",NULL,"26",,"0"
+"2995","1502261315-c744","60","1","12","12","0",NULL,"60",,"0"
+"2996","1502261434-d944","85","1","68","68","0",NULL,"85",,"0"
+"2997","1502270827-05f6","49","1","14","14","0",NULL,"49",,"0"
+"2998","1502281022-5472","66","1","4","4","0",NULL,"66",,"0"
+"2999","1502281022-5472","26","1","5","5","0",NULL,"26",,"0"
+"3000","1502281218-d5d6","38","1","20","20","0",NULL,"38",,"0"
+"3001","1502282327-ca65","38","1","20","20","0",NULL,"38",,"0"
+"3002","1503010300-8463","60","1","12","12","0",NULL,"60",,"0"
+"3003","1503010828-44dd","60","1","12","12","0",NULL,"60",,"0"
+"3004","1503012320-306b","85","1","68","68","0",NULL,"85",,"0"
+"3005","1503021132-cc30","60","1","12","12","0",NULL,"60",,"0"
+"3006","1503021145-e450","60","1","12","12","0",NULL,"60",,"0"
+"3007","1503021621-087f","85","1","68","68","0",NULL,"85",,"0"
+"3008","1503021621-087f","44","1","98","98","0",NULL,"44",,"0"
+"3009","1503041534-05b3","85","1","68","68","0",NULL,"85",,"0"
+"3010","1503042026-7ee9","26","1","5","5","0",NULL,"26",,"0"
+"3011","1503042026-7ee9","38","1","20","20","0",NULL,"38",,"0"
+"3012","1503042026-7ee9","60","1","12","12","0",NULL,"60",,"0"
+"3013","1503051028-7810","53","1","0.5","0.5","0",NULL,"53",,"0"
+"3014","1503051028-7810","67","1","6","6","0",NULL,"67",,"0"
+"3015","1503051028-7810","38","1","20","20","0",NULL,"38",,"0"
+"3016","1503051028-7810","26","1","5","5","0",NULL,"26",,"0"
+"3017","1503051055-f41b","44","1","98","98","0",NULL,"44",,"0"
+"3018","1503051055-f41b","85","1","68","68","0",NULL,"85",,"0"
+"3019","1503051631-85ff","60","1","12","12","0",NULL,"60",,"0"
+"3020","1503061338-c26d","84","1","123","123","0",NULL,"84",,"0"
+"3021","1503070713-7e4b","50","1","27","27","0",NULL,"50",,"0"
+"3022","1503070713-7e4b","46","1","27","27","0",NULL,"46","Popular","0"
+"3023","1503081414-4498","60","1","12","12","0",NULL,"60",,"0"
+"3024","1503081418-357e","60","1","12","12","0",NULL,"60",,"0"
+"3025","1503082234-2e97","85","1","68","68","0",NULL,"85",,"0"
+"3026","1503082234-2e97","60","1","12","12","0",NULL,"60",,"0"
+"3027","1503091320-2829","60","1","12","12","0",NULL,"60",,"0"
+"3028","1503110933-d16e","60","1","12","12","0",NULL,"60",,"0"
+"3029","1503111317-419f","73","1","4","4","0",NULL,"73",,"0"
+"3030","1503111317-419f","60","1","12","12","0",NULL,"60",,"0"
+"3031","1503111417-a28d","75","1","4","4","0",NULL,"75",,"0"
+"3032","1503111417-a28d","82","1","4","4","0",NULL,"82",,"0"
+"3033","1503111417-a28d","66","1","4","4","0",NULL,"66",,"0"
+"3034","1503111417-a28d","62","1","14","14","0",NULL,"62",,"0"
+"3035","1503111417-a28d","39","1","441.6","441.6","0",NULL,"39",,"0"
+"3036","1503111545-aeae","60","1","12","12","0",NULL,"60",,"0"
+"3037","1503121130-18b3","46","1","27","27","0",NULL,"46","Popular","0"
+"3038","1503121239-1add","26","1","5","5","0",NULL,"26",,"0"
+"3039","1503121239-1add","60","1","12","12","0",NULL,"60",,"0"
+"3040","1503121422-4126","62","1","14","14","0",NULL,"62",,"0"
+"3041","1503121422-4126","77","2","4","8","0",NULL,"77",,"0"
+"3042","1503121422-4126","73","2","4","8","0",NULL,"73",,"0"
+"3043","1503121422-4126","54","1","14","14","0",NULL,"54",,"0"
+"3044","1503121422-4126","68","1","9","9","0",NULL,"68",,"0"
+"3045","1503131825-4379","60","1","12","12","0",NULL,"60",,"0"
+"3046","1503181232-0d67","84","1","123","123","0",NULL,"84",,"0"
+"3047","1503181232-0d67","43","1","158","158","0",NULL,"43",,"0"
+"3048","1503201811-80f4","82","1","4","4","0",NULL,"82",,"0"
+"3049","1503201811-80f4","67","1","6","6","0",NULL,"67",,"0"
+"3050","1503201811-80f4","61","1","0.5","0.5","0",NULL,"61",,"0"
+"3051","1503201811-80f4","69","1","4","4","0",NULL,"69",,"0"
+"3052","1503201811-80f4","38","1","20","20","0",NULL,"38",,"0"
+"3053","1503201811-80f4","44","2","98","196","0",NULL,"44",,"0"
+"3054","1503201811-80f4","85","2","68","136","0",NULL,"85",,"0"
+"3055","1503210839-4b0b","60","1","12","12","0",NULL,"60",,"0"
+"3056","1503211046-4911","85","1","68","68","0",NULL,"85",,"0"
+"3057","1503212335-905a","84","1","123","123","0",NULL,"84",,"0"
+"3058","1503212335-905a","43","1","158","158","0",NULL,"43",,"0"
+"3059","1503230959-1cc8","77","1","4","4","0",NULL,"77",,"0"
+"3060","1503231010-2a9f","73","1","4","4","0",NULL,"73",,"0"
+"3061","1503231017-1482","68","1","9","9","0",NULL,"68",,"0"
+"3062","1503231029-18f1","77","1","4","4","0",NULL,"77",,"0"
+"3063","1503231029-18f1","68","1","9","9","0",NULL,"68",,"0"
+"3064","1503231029-18f1","73","1","4","4","0",NULL,"73",,"0"
+"3065","1503231434-6664","85","1","68","68","0",NULL,"85",,"0"
+"3066","1503241548-55aa","85","1","68","68","0",NULL,"85",,"0"
+"3067","1503241601-ad08","85","1","68","68","0",NULL,"85",,"0"
+"3068","1503241626-bce0","62","1","14","14","0",NULL,"62",,"0"
+"3069","1503241626-bce0","59","50","0.1","5","0",NULL,"59",,"0"
+"3070","1503241626-bce0","49","1","14","14","0",NULL,"49",,"0"
+"3071","1503241626-bce0","45","1","14","14","0",NULL,"45","Popular","0"
+"3072","1503241626-bce0","58","50","0.1","5","0",NULL,"58",,"0"
+"3073","1503250928-917d","85","1","68","68","0",NULL,"85",,"0"
+"3074","1503250928-917d","44","1","98","98","0",NULL,"44",,"0"
+"3075","1503251010-ebed","44","1","98","98","0",NULL,"44",,"0"
+"3076","1503251010-ebed","85","1","68","68","0",NULL,"85",,"0"
+"3077","1503251343-895c","84","1","123","123","0",NULL,"84",,"0"
+"3078","1503251449-acb2","85","1","68","68","0",NULL,"85",,"0"
+"3079","1503260542-7709","67","1","6","6","0",NULL,"67",,"0"
+"3080","1503261358-4533","60","5","12","60","0",NULL,"60",,"0"
+"3081","1503261502-6963","68","1","9","9","0",NULL,"68",,"0"
+"3082","1503261502-6963","67","1","6","6","0",NULL,"67",,"0"
+"3083","1503261502-6963","60","1","12","12","0",NULL,"60",,"0"
+"3084","1503270829-758d","55","2","27","54","0",NULL,"55",,"0"
+"3085","1503271114-7a5f","60","1","12","12","0",NULL,"60",,"0"
+"3086","1503271423-acb5","84","1","123","123","0",NULL,"84",,"0"
+"3087","1503271431-3c49","84","1","123","123","0",NULL,"84",,"0"
+"3088","1503271701-92b4","60","1","12","12","0",NULL,"60",,"0"
+"3089","1503272024-eeca","85","1","68","68","0",NULL,"85",,"0"
+"3090","1503272024-eeca","26","1","5","5","0",NULL,"26",,"0"
+"3091","1503281343-ad08","50","1","27","27","0",NULL,"50",,"0"
+"3092","1503281343-ad08","46","1","27","27","0",NULL,"46","Popular","0"
+"3093","1503281703-b0fb","85","1","68","68","0",NULL,"85",,"0"
+"3094","1503281908-ef11","60","1","12","12","0",NULL,"60",,"0"
+"3095","1503281911-ef11","60","1","12","12","0",NULL,"60",,"0"
+"3096","1503290916-b80e","58","1","0.1","0.1","0",NULL,"58",,"0"
+"3097","1503290916-b80e","69","1","4","4","0",NULL,"69",,"0"
+"3098","1503290916-b80e","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3099","1503290916-b80e","85","1","68","68","0",NULL,"85",,"0"
+"3100","1503291349-b9ee","60","1","12","12","0",NULL,"60",,"0"
+"3101","1503291352-b9ee","60","1","12","12","0",NULL,"60",,"0"
+"3102","1503301419-6d6b","60","1","12","12","0",NULL,"60",,"0"
+"3103","1503302000-a9ab","60","1","12","12","0",NULL,"60",,"0"
+"3104","1503311358-6750","45","1","14","14","0",NULL,"45","Popular","0"
+"3105","1503311358-6750","62","1","14","14","0",NULL,"62",,"0"
+"3106","1503311439-12d2","85","1","68","68","0",NULL,"85",,"0"
+"3107","1503311611-f9fb","84","1","123","123","0",NULL,"84",,"0"
+"3108","1503311838-c2f5","60","1","12","12","0",NULL,"60",,"0"
+"3109","1503311842-c2f5","60","1","12","12","0",NULL,"60",,"0"
+"3110","1503312116-d0f7","62","2","14","28","0",NULL,"62",,"0"
+"3111","1504011337-5e61","85","1","68","68","0",NULL,"85",,"0"
+"3112","1504011715-e2e1","69","8","4","32","0",NULL,"69",,"0"
+"3113","1504021105-6d6b","84","1","123","123","0",NULL,"84",,"0"
+"3114","1504021653-fbd3","85","1","68","68","0",NULL,"85",,"0"
+"3115","1504030949-94bd","85","1","68","68","0",NULL,"85",,"0"
+"3116","1504031247-4dff","84","1","123","123","0",NULL,"84",,"0"
+"3117","1504031714-e686","85","1","68","68","0",NULL,"85",,"0"
+"3118","1504041117-4a53","43","1","158","158","0",NULL,"43",,"0"
+"3119","1504041123-e25e","85","1","68","68","0",NULL,"85",,"0"
+"3120","1504042027-1c4e","60","1","12","12","0",NULL,"60",,"0"
+"3121","1504042031-1c4e","60","1","12","12","0",NULL,"60",,"0"
+"3122","1504042329-95af","26","20","5","100","0",NULL,"26",,"0"
+"3123","1504051600-a4c3","85","1","68","68","0",NULL,"85",,"0"
+"3124","1504052254-9949","84","1","123","123","0",NULL,"84",,"0"
+"3125","1504052254-9949","85","1","68","68","0",NULL,"85",,"0"
+"3126","1504061411-1d54","60","1","12","12","0",NULL,"60",,"0"
+"3127","1504071641-05b3","85","1","68","68","0",NULL,"85",,"0"
+"3128","1504081029-9e66","63","1","27","27","0",NULL,"63",,"0"
+"3129","1504081415-e6e2","60","1","12","12","0",NULL,"60",,"0"
+"3130","1504081439-de8c","50","2","27","54","0",NULL,"50",,"0"
+"3131","1504081522-12ca","38","1","20","20","0",NULL,"38",,"0"
+"3132","1504081701-9953","60","1","12","12","0",NULL,"60",,"0"
+"3133","1504081905-e935","68","1","9","9","0",NULL,"68",,"0"
+"3134","1504081905-e935","67","1","6","6","0",NULL,"67",,"0"
+"3135","1504081905-e935","69","1","4","4","0",NULL,"69",,"0"
+"3136","1504081905-e935","26","1","5","5","0",NULL,"26",,"0"
+"3137","1504081905-e935","38","1","20","20","0",NULL,"38",,"0"
+"3138","1504081905-e935","60","1","12","12","0",NULL,"60",,"0"
+"3139","1504082041-4c86","79","1","4","4","0",NULL,"79",,"0"
+"3141","1504091000-42a4","47","1","125","125","0",NULL,"47","Popular","0"
+"3142","1504091013-82f7","58","100","0.1","10","0",NULL,"58",,"0"
+"3143","1504091013-82f7","50","1","27","27","0",NULL,"50",,"0"
+"3144","1504091411-19aa","58","500","0.1","50","0",NULL,"58",,"0"
+"3145","1504092207-9412","60","1","12","12","0",NULL,"60",,"0"
+"3146","1504111949-de70","60","1","12","12","0",NULL,"60",,"0"
+"3147","1504121256-c454","60","1","12","12","0",NULL,"60",,"0"
+"3148","1504121535-eecb","60","1","12","12","0",NULL,"60",,"0"
+"3149","1504121855-2c6a","60","2","12","24","0",NULL,"60",,"0"
+"3150","1504122205-562c","85","1","68","68","0",NULL,"85",,"0"
+"3151","1504152122-d072","46","1","27","27","0",NULL,"46","Popular","0"
+"3152","1504152122-d072","77","1","4","4","0",NULL,"77",,"0"
+"3153","1504152122-d072","58","100","0.1","10","0",NULL,"58",,"0"
+"3154","1504152122-d072","67","1","6","6","0",NULL,"67",,"0"
+"3155","1504152122-d072","79","1","4","4","0",NULL,"79",,"0"
+"3156","1504152122-d072","50","1","27","27","0",NULL,"50",,"0"
+"3157","1504152122-d072","60","1","12","12","0",NULL,"60",,"0"
+"3158","1504160755-95af","26","10","5","50","0",NULL,"26",,"0"
+"3159","1504161456-9a17","85","1","68","68","0",NULL,"85",,"0"
+"3160","1504171357-8196","84","1","123","123","0",NULL,"84",,"0"
+"3161","1504171357-8196","60","1","12","12","0",NULL,"60",,"0"
+"3162","1504171506-cdb7","60","1","12","12","0",NULL,"60",,"0"
+"3163","1504171601-c08b","26","1","5","5","0",NULL,"26",,"0"
+"3164","1504171601-c08b","67","1","6","6","0",NULL,"67",,"0"
+"3165","1504171601-c08b","38","1","20","20","0",NULL,"38",,"0"
+"3166","1504171607-1aab","38","1","20","20","0",NULL,"38",,"0"
+"3167","1504171607-1aab","60","1","12","12","0",NULL,"60",,"0"
+"3168","1504171607-1aab","85","1","68","68","0",NULL,"85",,"0"
+"3169","1504172012-9384","38","1","20","20","0",NULL,"38",,"0"
+"3170","1504172134-ea54","85","1","68","68","0",NULL,"85",,"0"
+"3171","1504181703-5eed","67","1","6","6","0",NULL,"67",,"0"
+"3172","1504181703-5eed","58","6","0.1","0.6","0",NULL,"58",,"0"
+"3173","1504181703-5eed","69","6","4","24","0",NULL,"69",,"0"
+"3174","1504200026-301d","60","1","12","12","0",NULL,"60",,"0"
+"3175","1504200849-6db9","60","1","12","12","0",NULL,"60",,"0"
+"3176","1504201056-b0a5","60","1","12","12","0",NULL,"60",,"0"
+"3177","1504210902-8885","58","100","0.1","10","0",NULL,"58",,"0"
+"3178","1504210902-8885","46","1","27","27","0",NULL,"46","Popular","0"
+"3179","1504210902-8885","59","100","0.1","10","0",NULL,"59",,"0"
+"3180","1504210902-8885","50","1","27","27","0",NULL,"50",,"0"
+"3181","1504210939-2637","85","1","68","68","0",NULL,"85",,"0"
+"3182","1504211023-3352","60","1","12","12","0",NULL,"60",,"0"
+"3183","1504221526-379d","46","2","27","54","0",NULL,"46","Popular","0"
+"3184","1504221526-379d","50","2","27","54","0",NULL,"50",,"0"
+"3185","1504221704-e8aa","46","1","27","27","0",NULL,"46","Popular","0"
+"3186","1504241108-02ad","46","2","27","54","0",NULL,"46","Popular","0"
+"3187","1504241152-ca1f","60","1","12","12","0",NULL,"60",,"0"
+"3188","1504261108-b7e5","60","1","12","12","0",NULL,"60",,"0"
+"3189","1504261715-892c","60","1","12","12","0",NULL,"60",,"0"
+"3190","1504262100-ac99","60","1","12","12","0",NULL,"60",,"0"
+"3191","1504271803-562c","60","1","12","12","0",NULL,"60",,"0"
+"3192","1504272114-56a8","60","1","12","12","0",NULL,"60",,"0"
+"3193","1504280539-6c19","58","30","0.1","3","0",NULL,"58",,"0"
+"3194","1504280539-6c19","62","1","14","14","0",NULL,"62",,"0"
+"3195","1504280539-6c19","54","1","14","14","0",NULL,"54",,"0"
+"3196","1504280539-6c19","67","5","6","30","0",NULL,"67",,"0"
+"3197","1504280539-6c19","84","1","123","123","0",NULL,"84",,"0"
+"3198","1504280806-c660","60","1","12","12","0",NULL,"60",,"0"
+"3199","1504282248-3809","62","1","14","14","0",NULL,"62",,"0"
+"3200","1504291832-44b6","60","1","12","12","0",NULL,"60",,"0"
+"3201","1504300841-3051","38","1","20","20","0",NULL,"38",,"0"
+"3202","1504300841-3051","60","1","12","12","0",NULL,"60",,"0"
+"3203","1504301033-b9ca","38","1","20","20","0",NULL,"38",,"0"
+"3204","1504301106-20f0","84","1","123","123","0",NULL,"84",,"0"
+"3205","1504301106-20f0","43","1","158","158","0",NULL,"43",,"0"
+"3206","1505011456-8576","60","1","12","12","0",NULL,"60",,"0"
+"3207","1505011632-9e1f","60","1","12","12","0",NULL,"60",,"0"
+"3208","1505021344-0dc8","85","1","68","68","0",NULL,"85",,"0"
+"3209","1505031707-7581","38","1","20","20","0",NULL,"38",,"0"
+"3210","1505050011-3c92","26","1","5","5","0",NULL,"26",,"0"
+"3211","1505050011-3c92","38","1","20","20","0",NULL,"38",,"0"
+"3212","1505051242-3616","63","1","27","27","0",NULL,"63",,"0"
+"3213","1505051242-3616","46","1","27","27","0",NULL,"46","Popular","0"
+"3214","1505051903-6919","60","1","12","12","0",NULL,"60",,"0"
+"3215","1505061138-ee2a","63","1","27","27","0",NULL,"63",,"0"
+"3216","1505061138-ee2a","62","1","14","14","0",NULL,"62",,"0"
+"3221","1505071257-d12d","73","1","4","4","0",NULL,"73",,"0"
+"3219","1505061610-a53a","38","1","20","20","0",NULL,"38",,"0"
+"3222","1505071257-d12d","67","1","6","6","0",NULL,"67",,"0"
+"3223","1505071257-d12d","85","1","68","68","0",NULL,"85",,"0"
+"3224","1505071639-6c2c","46","1","27","27","0",NULL,"46","Popular","0"
+"3225","1505071639-6c2c","54","1","14","14","0",NULL,"54",,"0"
+"3226","1505071639-6c2c","63","1","27","27","0",NULL,"63",,"0"
+"3227","1505071639-6c2c","58","200","0.1","20","0",NULL,"58",,"0"
+"3228","1505071639-6c2c","50","1","27","27","0",NULL,"50",,"0"
+"3229","1505072035-e35c","60","1","12","12","0",NULL,"60",,"0"
+"3230","1505072213-242b","60","1","12","12","0",NULL,"60",,"0"
+"3231","1505080748-2c4e","60","1","12","12","0",NULL,"60",,"0"
+"3232","1505081058-1637","49","1","14","14","0",NULL,"49",,"0"
+"3233","1505081058-1637","58","50","0.1","5","0",NULL,"58",,"0"
+"3234","1505102011-df36","38","1","20","20","0",NULL,"38",,"0"
+"3235","1505102011-df36","44","1","98","98","0",NULL,"44",,"0"
+"3236","1505102011-df36","85","1","68","68","0",NULL,"85",,"0"
+"3237","1505120902-1d8e","58","100","0.1","10","0",NULL,"58",,"0"
+"3238","1505120902-1d8e","59","30","0.1","3","0",NULL,"59",,"0"
+"3239","1505120902-1d8e","46","1","27","27","0",NULL,"46","Popular","0"
+"3240","1505121525-82d7","85","1","68","68","0",NULL,"85",,"0"
+"3241","1505121609-03a4","50","2","27","54","0",NULL,"50",,"0"
+"3242","1505121609-03a4","63","2","27","54","0",NULL,"63",,"0"
+"3243","1505121609-03a4","46","2","27","54","0",NULL,"46","Popular","0"
+"3244","1505121804-65c9","60","1","12","12","0",NULL,"60",,"0"
+"3245","1505131540-82f7","58","100","0.1","10","0",NULL,"58",,"0"
+"3246","1505131540-82f7","46","1","27","27","0",NULL,"46","Popular","0"
+"3247","1505131540-82f7","50","1","27","27","0",NULL,"50",,"0"
+"3248","1505141303-3bbd","38","2","20","40","0",NULL,"38",,"0"
+"3249","1505141818-e18e","38","2","20","40","0",NULL,"38",,"0"
+"3250","1505141818-e18e","62","1","14","14","0",NULL,"62",,"0"
+"3251","1505141818-e18e","46","1","27","27","0",NULL,"46","Popular","0"
+"3252","1505141818-e18e","50","1","27","27","0",NULL,"50",,"0"
+"3253","1505151308-b2ea","45","1","14","14","0",NULL,"45","Popular","0"
+"3254","1505151826-25a3","58","100","0.1","10","0",NULL,"58",,"0"
+"3255","1505151826-25a3","46","1","27","27","0",NULL,"46","Popular","0"
+"3256","1505161349-942d","60","1","12","12","0",NULL,"60",,"0"
+"3257","1505180935-1aed","38","1","20","20","0",NULL,"38",,"0"
+"3258","1505191403-21e9","60","1","12","12","0",NULL,"60",,"0"
+"3259","1505200500-d7dc","60","1","12","12","0",NULL,"60",,"0"
+"3260","1505200719-9d7d","60","1","12","12","0",NULL,"60",,"0"
+"3261","1505201213-66c7","67","25","6","150","0",NULL,"67",,"0"
+"3262","1505201633-beb2","60","1","12","12","0",NULL,"60",,"0"
+"3263","1505201633-beb2","26","1","5","5","0",NULL,"26",,"0"
+"3264","1505201633-beb2","38","1","20","20","0",NULL,"38",,"0"
+"3265","1505210941-b04d","38","1","20","20","0",NULL,"38",,"0"
+"3266","1505212145-3b74","60","1","12","12","0",NULL,"60",,"0"
+"3267","1505221643-a330","60","1","12","12","0",NULL,"60",,"0"
+"3268","1505241646-088e","60","1","12","12","0",NULL,"60",,"0"
+"3269","1505251933-1ea0","44","1","98","98","0",NULL,"44",,"0"
+"3270","1505261223-4533","84","1","123","123","0",NULL,"84",,"0"
+"3271","1505261300-e080","45","2","14","28","0",NULL,"45","Popular","0"
+"3272","1505270849-cb5c","85","2","68","136","0",NULL,"85",,"0"
+"3273","1505271726-b039","67","12","6","72","0",NULL,"67",,"0"
+"3274","1505280932-5e57","62","1","14","14","0",NULL,"62",,"0"
+"3275","1505291542-24e4","87","2","4","8","0",NULL,"87",,"0"
+"3276","1505301516-7d7e","60","1","12","12","0",NULL,"60",,"0"
+"3277","1505310916-36ca","60","1","12","12","0",NULL,"60",,"0"
+"3278","1506012214-f7b3","60","1","12","12","0",NULL,"60",,"0"
+"3279","1506021240-4afa","87","1","4","4","0",NULL,"87",,"0"
+"3280","1506021240-4afa","53","1","0.5","0.5","0",NULL,"53",,"0"
+"3281","1506021240-4afa","60","1","12","12","0",NULL,"60",,"0"
+"3282","1506022226-d302","43","1","158","158","0",NULL,"43",,"0"
+"3283","1506022226-d302","84","1","123","123","0",NULL,"84",,"0"
+"3284","1506022226-d302","87","1","4","4","0",NULL,"87",,"0"
+"3285","1506032018-9a17","85","1","68","68","0",NULL,"85",,"0"
+"3286","1506041858-d85d","38","1","20","20","0",NULL,"38",,"0"
+"3287","1506051201-d725","38","1","20","20","0",NULL,"38",,"0"
+"3288","1506051201-d725","67","3","6","18","0",NULL,"67",,"0"
+"3289","1506051201-d725","69","1","4","4","0",NULL,"69",,"0"
+"3290","1506051715-4d3c","60","1","12","12","0",NULL,"60",,"0"
+"3291","1506061046-3648","67","1","6","6","0",NULL,"67",,"0"
+"3292","1506061046-3648","63","2","27","54","0",NULL,"63",,"0"
+"3293","1506061046-3648","38","1","20","20","0",NULL,"38",,"0"
+"3294","1506070946-3c02","38","1","20","20","0",NULL,"38",,"0"
+"3295","1506081039-b207","38","1","20","20","0",NULL,"38",,"0"
+"3296","1506081617-6178","60","1","12","12","0",NULL,"60",,"0"
+"3297","1506082348-d412","46","1","27","27","0",NULL,"46","Popular","0"
+"3298","1506082350-23ec","46","1","27","27","0",NULL,"46","Popular","0"
+"3299","1506091804-90c2","85","1","68","68","0",NULL,"85",,"0"
+"3300","1506101303-512d","47","1","125","125","0",NULL,"47","Popular","0"
+"3301","1506110548-ed95","85","1","68","68","0",NULL,"85",,"0"
+"3302","1506111148-5cb2","60","1","12","12","0",NULL,"60",,"0"
+"3303","1506111318-a10f","60","1","12","12","0",NULL,"60",,"0"
+"3304","1506111612-b43a","60","1","12","12","0",NULL,"60",,"0"
+"3305","1506112113-44a3","85","1","68","68","0",NULL,"85",,"0"
+"3306","1506131229-4310","60","1","12","12","0",NULL,"60",,"0"
+"3307","1506141659-55db","60","1","12","12","0",NULL,"60",,"0"
+"3308","1506141938-18b4","67","1","6","6","0",NULL,"67",,"0"
+"3309","1506141938-18b4","38","1","20","20","0",NULL,"38",,"0"
+"3310","1506141938-18b4","87","1","4","4","0",NULL,"87",,"0"
+"3311","1506141938-18b4","26","1","5","5","0",NULL,"26",,"0"
+"3312","1506141938-18b4","60","1","12","12","0",NULL,"60",,"0"
+"3313","1506150944-455e","85","1","68","68","0",NULL,"85",,"0"
+"3314","1506151310-f6e9","84","1","123","123","0",NULL,"84",,"0"
+"3315","1506151558-a10b","85","1","68","68","0",NULL,"85",,"0"
+"3316","1506161336-0a3e","50","1","27","27","0",NULL,"50",,"0"
+"3317","1506161652-3dfa","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3318","1506161652-3dfa","38","1","20","20","0",NULL,"38",,"0"
+"3319","1506161652-3dfa","60","2","12","24","0",NULL,"60",,"0"
+"3320","1506171004-f932","59","20","0.1","2","0",NULL,"59",,"0"
+"3321","1506171004-f932","58","21","0.1","2.1","0",NULL,"58",,"0"
+"3322","1506171004-f932","67","5","6","30","0",NULL,"67",,"0"
+"3323","1506171004-f932","38","1","20","20","0",NULL,"38",,"0"
+"3324","1506172124-af1c","38","1","20","20","0",NULL,"38",,"0"
+"3325","1506172327-5230","60","1","12","12","0",NULL,"60",,"0"
+"3326","1506182029-8eff","46","1","27","27","0",NULL,"46","Popular","0"
+"3327","1506190949-2f09","38","1","20","20","0",NULL,"38",,"0"
+"3328","1506220920-f8f9","84","1","123","123","0",NULL,"84",,"0"
+"3329","1506221417-fe7e","84","1","123","123","0",NULL,"84",,"0"
+"3330","1506221425-3935","84","1","123","123","0",NULL,"84",,"0"
+"3331","1506222052-36eb","67","20","6","120","0",NULL,"67",,"0"
+"3332","1506231047-d725","67","50","6","300","0",NULL,"67",,"0"
+"3333","1506231333-f4b8","85","1","68","68","0",NULL,"85",,"0"
+"3334","1506231333-f4b8","44","1","98","98","0",NULL,"44",,"0"
+"3335","1506231716-ac8f","48","1","225","225","0",NULL,"48","Popular","0"
+"3336","1506231718-ac8f","48","1","225","225","0",NULL,"48","Popular","0"
+"3337","1506240750-3c49","84","1","123","123","0",NULL,"84",,"0"
+"3338","1506241511-50bb","46","1","27","27","0",NULL,"46","Popular","0"
+"3339","1506242300-19d7","84","1","123","123","0",NULL,"84",,"0"
+"3340","1506242300-19d7","85","2","68","136","0",NULL,"85",,"0"
+"3341","1506242310-19d7","84","1","123","123","0",NULL,"84",,"0"
+"3342","1506242310-19d7","85","2","68","136","0",NULL,"85",,"0"
+"3343","1506250750-d4b7","46","1","27","27","0",NULL,"46","Popular","0"
+"3344","1506250750-d4b7","50","1","27","27","0",NULL,"50",,"0"
+"3345","1506250750-d4b7","63","1","27","27","0",NULL,"63",,"0"
+"3346","1506250750-d4b7","59","100","0.1","10","0",NULL,"59",,"0"
+"3347","1506250750-d4b7","58","100","0.1","10","0",NULL,"58",,"0"
+"3348","1506251104-5ef0","60","1","12","12","0",NULL,"60",,"0"
+"3349","1506251315-e24e","85","1","68","68","0",NULL,"85",,"0"
+"3350","1506251315-e24e","75","1","4","4","0",NULL,"75",,"0"
+"3351","1506251315-e24e","87","1","4","4","0",NULL,"87",,"0"
+"3352","1506251315-e24e","67","1","6","6","0",NULL,"67",,"0"
+"3353","1506251801-73e2","60","2","12","24","0",NULL,"60",,"0"
+"3354","1506261232-e935","39","1","441.6","441.6","0",NULL,"39",,"0"
+"3355","1506261232-e935","70","2","1","2","0",NULL,"70",,"0"
+"3356","1506261305-3d63","38","1","20","20","0",NULL,"38",,"0"
+"3357","1506261305-3d63","26","1","5","5","0",NULL,"26",,"0"
+"3358","1506261305-3d63","87","1","4","4","0",NULL,"87",,"0"
+"3359","1506261859-e040","60","1","12","12","0",NULL,"60",,"0"
+"3360","1506261859-e040","85","1","68","68","0",NULL,"85",,"0"
+"3361","1506271050-fc6d","84","1","123","123","0",NULL,"84",,"0"
+"3362","1506271050-fc6d","43","1","158","158","0",NULL,"43",,"0"
+"3363","1506271050-fc6d","60","1","12","12","0",NULL,"60",,"0"
+"3364","1506271050-fc6d","67","1","6","6","0",NULL,"67",,"0"
+"3365","1506271050-fc6d","38","1","20","20","0",NULL,"38",,"0"
+"3366","1506281552-662b","85","1","68","68","0",NULL,"85",,"0"
+"3367","1506281759-4484","60","1","12","12","0",NULL,"60",,"0"
+"3368","1506282033-ad1b","85","1","68","68","0",NULL,"85",,"0"
+"3369","1506291236-c96c","60","1","12","12","0",NULL,"60",,"0"
+"3370","1506291236-c96c","85","1","68","68","0",NULL,"85",,"0"
+"3371","1506292020-45da","85","1","68","68","0",NULL,"85",,"0"
+"3372","1507011510-797e","50","2","27","54","0",NULL,"50",,"0"
+"3373","1507021124-31ba","38","1","20","20","0",NULL,"38",,"0"
+"3374","1507021644-5c32","85","1","68","68","0",NULL,"85",,"0"
+"3375","1507031043-0b06","69","1","4","4","0",NULL,"69",,"0"
+"3376","1507031043-0b06","59","10","0.1","1","0",NULL,"59",,"0"
+"3377","1507031043-0b06","71","1","14","14","0",NULL,"71",,"0"
+"3378","1507031043-0b06","77","1","4","4","0",NULL,"77",,"0"
+"3379","1507031043-0b06","60","1","12","12","0",NULL,"60",,"0"
+"3380","1507031043-0b06","38","1","20","20","0",NULL,"38",,"0"
+"3381","1507031059-91b5","59","10","0.1","1","0",NULL,"59",,"0"
+"3382","1507031059-91b5","77","1","4","4","0",NULL,"77",,"0"
+"3383","1507031059-91b5","69","1","4","4","0",NULL,"69",,"0"
+"3384","1507031059-91b5","87","1","4","4","0",NULL,"87",,"0"
+"3385","1507031059-91b5","60","1","12","12","0",NULL,"60",,"0"
+"3386","1507031059-91b5","70","5","1","5","0",NULL,"70",,"0"
+"3387","1507031631-6969","38","1","20","20","0",NULL,"38",,"0"
+"3388","1507031631-6969","26","1","5","5","0",NULL,"26",,"0"
+"3389","1507031631-6969","61","1","0.5","0.5","0",NULL,"61",,"0"
+"3390","1507031631-6969","58","1","0.1","0.1","0",NULL,"58",,"0"
+"3391","1507031631-6969","67","1","6","6","0",NULL,"67",,"0"
+"3392","1507031631-6969","69","1","4","4","0",NULL,"69",,"0"
+"3393","1507031631-6969","70","1","1","1","0",NULL,"70",,"0"
+"3394","1507031631-6969","68","1","9","9","0",NULL,"68",,"0"
+"3395","1507031723-5683","60","3","12","36","0",NULL,"60",,"0"
+"3396","1507051819-fb04","38","1","20","20","0",NULL,"38",,"0"
+"3397","1507051819-fb04","87","1","4","4","0",NULL,"87",,"0"
+"3398","1507061110-a9e1","60","2","12","24","0",NULL,"60",,"0"
+"3399","1507072314-b2f1","53","1","0.5","0.5","0",NULL,"53",,"0"
+"3400","1507072314-b2f1","87","1","4","4","0",NULL,"87",,"0"
+"3401","1507072314-b2f1","26","1","5","5","0",NULL,"26",,"0"
+"3402","1507072314-b2f1","85","1","68","68","0",NULL,"85",,"0"
+"3403","1507072314-b2f1","60","1","12","12","0",NULL,"60",,"0"
+"3404","1507080309-53c9","50","5","27","135","0",NULL,"50",,"0"
+"3405","1507090836-87df","50","5","27","135","0",NULL,"50",,"0"
+"3406","1507091356-f4b2","45","1","14","14","0",NULL,"45","Popular","0"
+"3407","1507091356-f4b2","62","1","14","14","0",NULL,"62",,"0"
+"3408","1507091356-f4b2","49","1","14","14","0",NULL,"49",,"0"
+"3409","1507091530-5edd","87","1","4","4","0",NULL,"87",,"0"
+"3410","1507091900-ad6a","60","1","12","12","0",NULL,"60",,"0"
+"3411","1507130924-5329","49","1","14","14","0",NULL,"49",,"0"
+"3412","1507130924-5329","89","1","20","20","0",NULL,"89",,"0"
+"3413","1507130930-eb28","89","1","20","20","0",NULL,"89",,"0"
+"3414","1507130930-eb28","49","1","14","14","0",NULL,"49",,"0"
+"3415","1507131027-fefc","89","1","20","20","0",NULL,"89",,"0"
+"3416","1507131036-de09","60","1","12","12","0",NULL,"60",,"0"
+"3417","1507131418-405a","89","1","20","20","0",NULL,"89",,"0"
+"3418","1507131749-450b","85","1","68","68","0",NULL,"85",,"0"
+"3419","1507131801-5ee1","58","100","0.1","10","0",NULL,"58",,"0"
+"3420","1507131801-5ee1","46","2","27","54","0",NULL,"46","Popular","0"
+"3421","1507131801-5ee1","50","2","27","54","0",NULL,"50",,"0"
+"3422","1507131815-1a84","89","1","20","20","0",NULL,"89",,"0"
+"3423","1507132116-f6bd","89","1","20","20","0",NULL,"89",,"0"
+"3424","1507132313-ea99","89","1","20","20","0",NULL,"89",,"0"
+"3425","1507140738-88cb","89","1","20","20","0",NULL,"89",,"0"
+"3426","1507141058-ea2c","87","1","4","4","0",NULL,"87",,"0"
+"3427","1507141058-ea2c","89","1","20","20","0",NULL,"89",,"0"
+"3428","1507141058-ea2c","59","10","0.1","1","0",NULL,"59",,"0"
+"3429","1507141431-1dbf","89","1","20","20","0",NULL,"89",,"0"
+"3430","1507141526-0d30","89","1","20","20","0",NULL,"89",,"0"
+"3431","1507141544-ebf9","89","1","20","20","0",NULL,"89",,"0"
+"3432","1507141544-ebf9","85","1","68","68","0",NULL,"85",,"0"
+"3433","1507141621-a18e","52","1","225","225","0",NULL,"52",,"0"
+"3434","1507141824-36eb","67","20","6","120","0",NULL,"67",,"0"
+"3435","1507150840-3d1b","89","2","20","40","0",NULL,"89",,"0"
+"3436","1507151739-463f","79","1","4","4","0",NULL,"79",,"0"
+"3437","1507151739-463f","75","1","4","4","0",NULL,"75",,"0"
+"3438","1507151739-463f","26","1","5","5","0",NULL,"26",,"0"
+"3439","1507151739-463f","60","1","12","12","0",NULL,"60",,"0"
+"3440","1507162049-da77","60","1","12","12","0",NULL,"60",,"0"
+"3441","1507170903-47d1","60","1","12","12","0",NULL,"60",,"0"
+"3442","1507171845-4028","60","1","12","12","0",NULL,"60",,"0"
+"3443","1507181025-6e31","60","1","12","12","0",NULL,"60",,"0"
+"3444","1507181039-c6a2","89","1","20","20","0",NULL,"89",,"0"
+"3445","1507181916-a0c2","26","1","5","5","0",NULL,"26",,"0"
+"3446","1507181916-a0c2","89","1","20","20","0",NULL,"89",,"0"
+"3447","1507190139-6c19","84","1","123","123","0",NULL,"84",,"0"
+"3448","1507190139-6c19","60","1","12","12","0",NULL,"60",,"0"
+"3449","1507191033-c388","60","1","12","12","0",NULL,"60",,"0"
+"3450","1507191908-0217","60","1","12","12","0",NULL,"60",,"0"
+"3451","1507191908-0217","85","1","68","68","0",NULL,"85",,"0"
+"3452","1507201341-2c4b","89","1","20","20","0",NULL,"89",,"0"
+"3453","1507210036-8e44","60","1","12","12","0",NULL,"60",,"0"
+"3454","1507211159-1472","26","1","5","5","0",NULL,"26",,"0"
+"3455","1507211159-1472","60","1","12","12","0",NULL,"60",,"0"
+"3456","1507211159-1472","89","1","20","20","0",NULL,"89",,"0"
+"3457","1507211239-96f6","60","1","12","12","0",NULL,"60",,"0"
+"3458","1507211258-96f6","60","1","12","12","0",NULL,"60",,"0"
+"3459","1507212303-b5b8","63","1","27","27","0",NULL,"63",,"0"
+"3460","1507221526-9c20","64","1","125","125","0",NULL,"64",,"0"
+"3461","1507221745-4f1c","49","1","14","14","0",NULL,"49",,"0"
+"3462","1507222335-7d86","84","1","123","123","0",NULL,"84",,"0"
+"3463","1507241252-1b43","60","1","12","12","0",NULL,"60",,"0"
+"3464","1507241252-1b43","85","1","68","68","0",NULL,"85",,"0"
+"3465","1507241648-44d7","60","1","12","12","0",NULL,"60",,"0"
+"3466","1507261542-dbdc","85","1","68","68","0",NULL,"85",,"0"
+"3467","1507262024-d879","85","1","68","68","0",NULL,"85",,"0"
+"3468","1507262024-d879","60","1","12","12","0",NULL,"60",,"0"
+"3469","1507281134-8d7a","87","1","4","4","0",NULL,"87",,"0"
+"3470","1507281134-8d7a","67","1","6","6","0",NULL,"67",,"0"
+"3471","1507281357-65c8","48","1","225","225","0",NULL,"48","Popular","0"
+"3472","1507281750-5659","60","1","12","12","0",NULL,"60",,"0"
+"3473","1507281937-26a3","85","1","68","68","0",NULL,"85",,"0"
+"3474","1507282255-b002","26","1","5","5","0",NULL,"26",,"0"
+"3475","1507282255-b002","89","1","20","20","0",NULL,"89",,"0"
+"3476","1507291144-439a","45","1","14","14","0",NULL,"45","Popular","0"
+"3477","1507291332-6d8d","60","1","12","12","0",NULL,"60",,"0"
+"3478","1507291501-163a","60","1","12","12","0",NULL,"60",,"0"
+"3479","1507301238-163a","60","1","12","12","0",NULL,"60",,"0"
+"3480","1507301634-b643","60","1","12","12","0",NULL,"60",,"0"
+"3481","1507301634-b643","87","1","4","4","0",NULL,"87",,"0"
+"3482","1507301936-1437","85","1","68","68","0",NULL,"85",,"0"
+"3483","1507302026-2501","89","1","20","20","0",NULL,"89",,"0"
+"3484","1507302026-2501","69","1","4","4","0",NULL,"69",,"0"
+"3485","1507302026-2501","67","1","6","6","0",NULL,"67",,"0"
+"3486","1507310119-07b3","85","1","68","68","0",NULL,"85",,"0"
+"3487","1507310948-49a7","85","1","68","68","0",NULL,"85",,"0"
+"3488","1507310948-49a7","44","1","98","98","0",NULL,"44",,"0"
+"3489","1507311257-a554","68","1","9","9","0",NULL,"68",,"0"
+"3490","1507311257-a554","60","1","12","12","0",NULL,"60",,"0"
+"3491","1507311257-a554","85","1","68","68","0",NULL,"85",,"0"
+"3492","1508021131-b83f","60","1","12","12","0",NULL,"60",,"0"
+"3493","1508031725-f9a4","60","1","12","12","0",NULL,"60",,"0"
+"3494","1508041224-35ce","46","4","27","108","0",NULL,"46","Popular","0"
+"3495","1508041244-7c88","84","1","123","123","0",NULL,"84",,"0"
+"3496","1508041244-7c88","43","1","158","158","0",NULL,"43",,"0"
+"3497","1508041249-bda5","60","1","12","12","0",NULL,"60",,"0"
+"3498","1508041425-82f7","46","1","27","27","0",NULL,"46","Popular","0"
+"3499","1508041425-82f7","50","1","27","27","0",NULL,"50",,"0"
+"3500","1508041534-9d26","60","1","12","12","0",NULL,"60",,"0"
+"3501","1508041847-ab46","84","1","123","123","0",NULL,"84",,"0"
+"3502","1508050015-964b","85","1","68","68","0",NULL,"85",,"0"
+"3503","1508050015-964b","44","1","98","98","0",NULL,"44",,"0"
+"3504","1508050528-52ab","60","1","12","12","0",NULL,"60",,"0"
+"3505","1508051240-89a6","85","1","68","68","0",NULL,"85",,"0"
+"3506","1508051240-89a6","87","1","4","4","0",NULL,"87",,"0"
+"3507","1508051240-89a6","60","1","12","12","0",NULL,"60",,"0"
+"3508","1508051240-89a6","26","1","5","5","0",NULL,"26",,"0"
+"3509","1508051936-da45","85","2","68","136","0",NULL,"85",,"0"
+"3510","1508071207-6cd6","84","1","123","123","0",NULL,"84",,"0"
+"3511","1508071240-7adc","58","50","0.1","5","0",NULL,"58",,"0"
+"3512","1508071240-7adc","49","1","14","14","0",NULL,"49",,"0"
+"3513","1508071240-7adc","62","1","14","14","0",NULL,"62",,"0"
+"3514","1508071240-7adc","59","50","0.1","5","0",NULL,"59",,"0"
+"3515","1508071240-7adc","54","1","14","14","0",NULL,"54",,"0"
+"3516","1508071240-7adc","45","1","14","14","0",NULL,"45","Popular","0"
+"3517","1508072347-4484","60","1","12","12","0",NULL,"60",,"0"
+"3518","1508081207-82f5","60","1","12","12","0",NULL,"60",,"0"
+"3519","1508081207-82f5","43","1","158","158","0",NULL,"43",,"0"
+"3520","1508081207-82f5","84","1","123","123","0",NULL,"84",,"0"
+"3521","1508091725-e906","85","1","68","68","0",NULL,"85",,"0"
+"3522","1508091725-e906","44","1","98","98","0",NULL,"44",,"0"
+"3523","1508102145-eb1e","84","1","123","123","0",NULL,"84",,"0"
+"3524","1508102333-f789","44","1","98","98","0",NULL,"44",,"0"
+"3525","1508102333-f789","85","1","68","68","0",NULL,"85",,"0"
+"3526","1508112057-4410","84","1","123","123","0",NULL,"84",,"0"
+"3527","1508141057-80c6","89","1","20","20","0",NULL,"89",,"0"
+"3528","1508141057-80c6","69","1","4","4","0",NULL,"69",,"0"
+"3529","1508141057-80c6","60","1","12","12","0",NULL,"60",,"0"
+"3530","1508141739-8848","85","1","68","68","0",NULL,"85",,"0"
+"3531","1508160112-67f9","26","2","5","10","0",NULL,"26",,"0"
+"3532","1508160112-67f9","66","2","4","8","0",NULL,"66",,"0"
+"3533","1508160112-67f9","87","2","4","8","0",NULL,"87",,"0"
+"3534","1508160112-67f9","67","2","6","12","0",NULL,"67",,"0"
+"3535","1508160112-67f9","62","1","14","14","0",NULL,"62",,"0"
+"3536","1508160112-67f9","69","2","4","8","0",NULL,"69",,"0"
+"3537","1508160112-67f9","58","50","0.1","5","0",NULL,"58",,"0"
+"3538","1508160112-67f9","45","1","14","14","0",NULL,"45","Popular","0"
+"3539","1508160112-67f9","59","50","0.1","5","0",NULL,"59",,"0"
+"3540","1508160112-67f9","89","1","20","20","0",NULL,"89",,"0"
+"3541","1508160944-f7a3","84","1","123","123","0",NULL,"84",,"0"
+"3542","1508172043-498b","26","1","5","5","0",NULL,"26",,"0"
+"3543","1508172043-498b","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3544","1508172043-498b","60","1","12","12","0",NULL,"60",,"0"
+"3545","1508181421-4104","60","1","12","12","0",NULL,"60",,"0"
+"3546","1508191345-8ecc","46","1","27","27","0",NULL,"46","Popular","0"
+"3547","1508191345-8ecc","58","100","0.1","10","0",NULL,"58",,"0"
+"3548","1508191359-d1bf","46","1","27","27","0",NULL,"46","Popular","0"
+"3549","1508191359-d1bf","58","1","0.1","0.1","0",NULL,"58",,"0"
+"3550","1508200843-e2d2","62","1","14","14","0",NULL,"62",,"0"
+"3551","1508200843-e2d2","45","1","14","14","0",NULL,"45","Popular","0"
+"3552","1508200843-e2d2","49","1","14","14","0",NULL,"49",,"0"
+"3553","1508211506-a856","63","1","27","27","0",NULL,"63",,"0"
+"3554","1508211506-a856","58","100","0.1","10","0",NULL,"58",,"0"
+"3555","1508211506-a856","50","1","27","27","0",NULL,"50",,"0"
+"3556","1508211538-0016","50","1","27","27","0",NULL,"50",,"0"
+"3557","1508211538-0016","58","100","0.1","10","0",NULL,"58",,"0"
+"3558","1508211538-0016","63","1","27","27","0",NULL,"63",,"0"
+"3559","1508231906-3d10","89","1","20","20","0",NULL,"89",,"0"
+"3560","1508231906-3d10","67","1","6","6","0",NULL,"67",,"0"
+"3561","1508231906-3d10","62","1","14","14","0",NULL,"62",,"0"
+"3562","1508241247-0bc9","84","1","123","123","0",NULL,"84",,"0"
+"3573","1508242002-4d0d","46","1","27","27","0",NULL,"46","Popular","0"
+"3572","1508242002-4d0d","50","1","27","27","0",NULL,"50",,"0"
+"3571","1508242002-4d0d","63","1","27","27","0",NULL,"63",,"0"
+"3570","1508242002-4d0d","58","100","0.1","10","0",NULL,"58",,"0"
+"3569","1508241735-ab34","89","1","20","20","0",NULL,"89",,"0"
+"3568","1508241517-02d9","85","1","68","68","0",NULL,"85",,"0"
+"3574","1508242008-b3f3","89","1","20","20","0",NULL,"89",,"0"
+"3575","1508250839-5aca","85","1","68","68","0",NULL,"85",,"0"
+"3576","1508251025-d089","58","50","0.1","5","0",NULL,"58",,"0"
+"3577","1508251402-d55a","89","1","20","20","0",NULL,"89",,"0"
+"3578","1508251409-d405","89","1","20","20","0",NULL,"89",,"0"
+"3579","1508251557-b870","84","1","123","123","0",NULL,"84",,"0"
+"3580","1508260050-23be","85","2","68","136","0",NULL,"85",,"0"
+"3581","1508260050-23be","60","1","12","12","0",NULL,"60",,"0"
+"3582","1508262128-61e3","44","1","98","98","0",NULL,"44",,"0"
+"3583","1508262128-61e3","85","1","68","68","0",NULL,"85",,"0"
+"3584","1508262310-02e7","68","1","9","9","0",NULL,"68",,"0"
+"3585","1508262323-cb36","89","1","20","20","0",NULL,"89",,"0"
+"3586","1508270834-918a","89","1","20","20","0",NULL,"89",,"0"
+"3587","1508270950-18f5","89","1","20","20","0",NULL,"89",,"0"
+"3588","1508270950-18f5","44","1","98","98","0",NULL,"44",,"0"
+"3589","1508270950-18f5","85","1","68","68","0",NULL,"85",,"0"
+"3590","1508271008-1cbf","89","2","20","40","0",NULL,"89",,"0"
+"3591","1508271010-1cbf","89","2","20","40","0",NULL,"89",,"0"
+"3592","1508281143-2740","89","1","20","20","0",NULL,"89",,"0"
+"3593","1508281610-33d0","60","1","12","12","0",NULL,"60",,"0"
+"3594","1508281800-ed58","89","1","20","20","0",NULL,"89",,"0"
+"3595","1508281814-609b","67","1","6","6","0",NULL,"67",,"0"
+"3596","1508281814-609b","89","1","20","20","0",NULL,"89",,"0"
+"3597","1508291200-a554","60","1","12","12","0",NULL,"60",,"0"
+"3598","1508291919-4126","60","1","12","12","0",NULL,"60",,"0"
+"3599","1508291919-4126","89","1","20","20","0",NULL,"89",,"0"
+"3600","1508300103-bee5","85","1","68","68","0",NULL,"85",,"0"
+"3601","1508301759-1530","69","1","4","4","0",NULL,"69",,"0"
+"3602","1508301759-1530","67","1","6","6","0",NULL,"67",,"0"
+"3603","1508301759-1530","87","1","4","4","0",NULL,"87",,"0"
+"3604","1508301759-1530","85","1","68","68","0",NULL,"85",,"0"
+"3605","1508301759-1530","75","1","4","4","0",NULL,"75",,"0"
+"3606","1508301759-1530","89","1","20","20","0",NULL,"89",,"0"
+"3607","1508301759-1530","26","1","5","5","0",NULL,"26",,"0"
+"3608","1508301907-3e65","89","1","20","20","0",NULL,"89",,"0"
+"3609","1508302025-a1b5","85","1","68","68","0",NULL,"85",,"0"
+"3610","1508310830-c26d","84","1","123","123","0",NULL,"84",,"0"
+"3622","1508311430-a6b4","26","1","5","5","0",NULL,"26",,"0"
+"3621","1508311427-f703","89","1","20","20","0",NULL,"89",,"0"
+"3620","1508311427-f703","87","1","4","4","0",NULL,"87",,"0"
+"3619","1508311326-c329","89","1","20","20","0",NULL,"89",,"0"
+"3615","1508311220-4111","49","1","14","14","0",NULL,"49",,"0"
+"3616","1508311220-4111","62","1","14","14","0",NULL,"62",,"0"
+"3617","1508311220-4111","87","3","4","12","0",NULL,"87",,"0"
+"3618","1508311220-4111","46","2","27","54","0",NULL,"46","Popular","0"
+"3623","1508311430-a6b4","85","1","68","68","0",NULL,"85",,"0"
+"3624","1508311455-597c","89","1","20","20","0",NULL,"89",,"0"
+"3625","1508312227-1ebf","85","1","68","68","0",NULL,"85",,"0"
+"3626","1509010757-c0c4","89","1","20","20","0",NULL,"89",,"0"
+"3627","1509010855-fbcf","69","12","4","48","0",NULL,"69",,"0"
+"3628","1509011057-dc61","85","1","68","68","0",NULL,"85",,"0"
+"3630","1509011249-bb7a","89","1","20","20","0",NULL,"89",,"0"
+"3631","1509011649-4087","89","1","20","20","0",NULL,"89",,"0"
+"3632","1509021847-0a8a","89","1","20","20","0",NULL,"89",,"0"
+"3633","1509022224-44df","89","1","20","20","0",NULL,"89",,"0"
+"3634","1509022227-44df","89","1","20","20","0",NULL,"89",,"0"
+"3635","1509031442-5f35","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3636","1509031442-5f35","53","1","0.5","0.5","0",NULL,"53",,"0"
+"3637","1509031442-5f35","69","1","4","4","0",NULL,"69",,"0"
+"3638","1509031442-5f35","67","1","6","6","0",NULL,"67",,"0"
+"3639","1509031442-5f35","60","1","12","12","0",NULL,"60",,"0"
+"3640","1509031459-d538","85","1","98","98","0",NULL,"85",,"0"
+"3641","1509031610-ddbe","89","1","20","20","0",NULL,"89",,"0"
+"3642","1509031657-77da","60","1","12","12","0",NULL,"60",,"0"
+"3643","1509031910-50ce","89","1","20","20","0",NULL,"89",,"0"
+"3644","1509031917-940c","89","1","20","20","0",NULL,"89",,"0"
+"3645","1509040128-b33d","89","1","20","20","0",NULL,"89",,"0"
+"3646","1509041217-8b21","89","1","20","20","0",NULL,"89",,"0"
+"3647","1509041610-8a8b","89","1","20","20","0",NULL,"89",,"0"
+"3648","1509041615-8a8b","89","1","20","20","0",NULL,"89",,"0"
+"3649","1509041754-906a","89","1","20","20","0",NULL,"89",,"0"
+"3650","1509041949-d420","89","1","20","20","0",NULL,"89",,"0"
+"3651","1509042044-8d73","89","1","20","20","0",NULL,"89",,"0"
+"3652","1509042142-de1b","89","2","20","40","0",NULL,"89",,"0"
+"3653","1509050933-bd80","89","1","20","20","0",NULL,"89",,"0"
+"3654","1509050935-bd80","89","1","20","20","0",NULL,"89",,"0"
+"3655","1509051156-adad","58","100","0.1","10","0",NULL,"58",,"0"
+"3656","1509051156-adad","45","2","14","28","0",NULL,"45","Popular","0"
+"3657","1509051244-add0","87","1","4","4","0",NULL,"87",,"0"
+"3658","1509061640-9eb7","89","1","20","20","0",NULL,"89",,"0"
+"3659","1509071237-7091","89","1","20","20","0",NULL,"89",,"0"
+"3660","1509071507-363b","26","1","5","5","0",NULL,"26",,"0"
+"3661","1509071507-363b","89","1","20","20","0",NULL,"89",,"0"
+"3662","1509071507-363b","62","1","14","14","0",NULL,"62",,"0"
+"3663","1509071507-363b","58","1","0.1","0.1","0",NULL,"58",,"0"
+"3664","1509071507-363b","45","1","14","14","0",NULL,"45","Popular","0"
+"3665","1509071507-363b","49","1","14","14","0",NULL,"49",,"0"
+"3666","1509072338-c18f","89","1","20","20","0",NULL,"89",,"0"
+"3667","1509072338-c18f","60","1","12","12","0",NULL,"60",,"0"
+"3668","1509081107-7635","60","1","12","12","0",NULL,"60",,"0"
+"3669","1509081315-5148","69","1","4","4","0",NULL,"69",,"0"
+"3670","1509081315-5148","89","1","20","20","0",NULL,"89",,"0"
+"3671","1509081315-5148","60","1","12","12","0",NULL,"60",,"0"
+"3672","1509081344-42b5","89","1","20","20","0",NULL,"89",,"0"
+"3673","1509081347-42b5","89","1","20","20","0",NULL,"89",,"0"
+"3674","1509092101-ce1a","89","1","20","20","0",NULL,"89",,"0"
+"3675","1509092122-90b7","89","1","20","20","0",NULL,"89",,"0"
+"3676","1509100930-e20a","58","100","0.1","10","0",NULL,"58",,"0"
+"3677","1509100930-e20a","63","2","27","54","0",NULL,"63",,"0"
+"3678","1509101452-691d","50","1","27","27","0",NULL,"50",,"0"
+"3679","1509101452-691d","46","1","27","27","0",NULL,"46","Popular","0"
+"3680","1509101619-3b47","89","1","20","20","0",NULL,"89",,"0"
+"3681","1509102338-f8de","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3682","1509102338-f8de","26","1","5","5","0",NULL,"26",,"0"
+"3683","1509102338-f8de","89","1","20","20","0",NULL,"89",,"0"
+"3684","1509121127-65a3","89","1","20","20","0",NULL,"89",,"0"
+"3685","1509121714-23d6","26","1","5","5","0",NULL,"26",,"0"
+"3686","1509131233-1daf","58","20","0.1","2","0",NULL,"58",,"0"
+"3687","1509131233-1daf","62","1","14","14","0",NULL,"62",,"0"
+"3688","1509131233-1daf","59","20","0.1","2","0",NULL,"59",,"0"
+"3689","1509131233-1daf","60","1","12","12","0",NULL,"60",,"0"
+"3690","1509131533-8dc1","26","1","5","5","0",NULL,"26",,"0"
+"3691","1509131533-8dc1","89","1","20","20","0",NULL,"89",,"0"
+"3692","1509131604-2893","89","1","20","20","0",NULL,"89",,"0"
+"3693","1509132054-be78","85","1","98","98","0",NULL,"85",,"0"
+"3694","1509141049-3d27","26","1","5","5","0",NULL,"26",,"0"
+"3695","1509141049-3d27","89","1","20","20","0",NULL,"89",,"0"
+"3696","1509141318-dca7","87","1","4","4","0",NULL,"87",,"0"
+"3697","1509141733-b584","60","1","12","12","0",NULL,"60",,"0"
+"3698","1509151240-b148","89","1","20","20","0",NULL,"89",,"0"
+"3699","1509151244-d248","89","1","20","20","0",NULL,"89",,"0"
+"3700","1509161103-2a44","58","150","0.1","15","0",NULL,"58",,"0"
+"3701","1509161103-2a44","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3702","1509161103-2a44","46","1","27","27","0",NULL,"46","Popular","0"
+"3703","1509161103-2a44","45","1","14","14","0",NULL,"45","Popular","0"
+"3704","1509161454-3bea","70","1","1","1","0",NULL,"70",,"0"
+"3705","1509161454-3bea","60","1","12","12","0",NULL,"60",,"0"
+"3706","1509161806-429e","67","6","6","36","0",NULL,"67",,"0"
+"3707","1509161931-6d7d","89","1","20","20","0",NULL,"89",,"0"
+"3708","1509170401-0284","67","1","6","6","0",NULL,"67",,"0"
+"3709","1509170401-0284","89","1","20","20","0",NULL,"89",,"0"
+"3710","1509170928-03a5","89","1","20","20","0",NULL,"89",,"0"
+"3711","1509171021-c47c","89","1","20","20","0",NULL,"89",,"0"
+"3712","1509172241-7547","89","1","20","20","0",NULL,"89",,"0"
+"3713","1509181220-47d1","26","1","5","5","0",NULL,"26",,"0"
+"3714","1509181220-47d1","89","1","20","20","0",NULL,"89",,"0"
+"3715","1509181847-306c","46","1","27","27","0",NULL,"46","Popular","0"
+"3716","1509181847-306c","89","1","20","20","0",NULL,"89",,"0"
+"3717","1509191229-576d","89","1","20","20","0",NULL,"89",,"0"
+"3718","1509201403-a5ad","59","20","0.1","2","0",NULL,"59",,"0"
+"3719","1509201403-a5ad","58","200","0.1","20","0",NULL,"58",,"0"
+"3720","1509211107-12b6","89","1","20","20","0",NULL,"89",,"0"
+"3721","1509211430-4cf0","59","10","0.1","1","0",NULL,"59",,"0"
+"3722","1509211430-4cf0","58","50","0.1","5","0",NULL,"58",,"0"
+"3723","1509211430-4cf0","60","1","12","12","0",NULL,"60",,"0"
+"3724","1509211430-4cf0","26","1","5","5","0",NULL,"26",,"0"
+"3725","1509211456-4cf0","75","1","4","4","0",NULL,"75",,"0"
+"3726","1509211623-c397","50","3","27","81","0",NULL,"50",,"0"
+"3727","1509211623-c397","47","1","125","125","0",NULL,"47","Popular","0"
+"3728","1509221640-1929","89","1","20","20","0",NULL,"89",,"0"
+"3729","1509230900-8ca4","60","1","12","12","0",NULL,"60",,"0"
+"3730","1509230906-8ca4","89","1","20","20","0",NULL,"89",,"0"
+"3731","1509231150-574f","60","1","12","12","0",NULL,"60",,"0"
+"3732","1509231217-9cc8","59","10","0.1","1","0",NULL,"59",,"0"
+"3733","1509231217-9cc8","50","1","27","27","0",NULL,"50",,"0"
+"3734","1509240053-2894","89","1","20","20","0",NULL,"89",,"0"
+"3735","1509241000-d5b5","47","1","125","125","0",NULL,"47","Popular","0"
+"3736","1509241000-d5b5","52","1","225","225","0",NULL,"52",,"0"
+"3737","1509241008-9719","47","1","125","125","0",NULL,"47","Popular","0"
+"3738","1509241008-9719","52","1","225","225","0",NULL,"52",,"0"
+"3739","1509241946-36ed","89","1","20","20","0",NULL,"89",,"0"
+"3740","1509271629-56c7","89","1","20","20","0",NULL,"89",,"0"
+"3741","1509281237-98bc","89","3","20","60","0",NULL,"89",,"0"
+"3742","1509281241-c635","89","3","20","60","0",NULL,"89",,"0"
+"3743","1509282040-6100","69","1","4","4","0",NULL,"69",,"0"
+"3744","1509282040-6100","75","1","4","4","0",NULL,"75",,"0"
+"3745","1509282040-6100","59","2","0.1","0.2","0",NULL,"59",,"0"
+"3746","1509282040-6100","89","1","20","20","0",NULL,"89",,"0"
+"3747","1509282051-8755","89","1","20","20","0",NULL,"89",,"0"
+"3748","1509290826-a677","60","1","12","12","0",NULL,"60",,"0"
+"3749","1509291237-aa57","58","500","0.1","50","0",NULL,"58",,"0"
+"3750","1509291237-aa57","47","1","125","125","0",NULL,"47","Popular","0"
+"3751","1509300042-866a","69","1","4","4","0",NULL,"69",,"0"
+"3752","1509300042-866a","89","1","20","20","0",NULL,"89",,"0"
+"3753","1509300042-866a","67","2","6","12","0",NULL,"67",,"0"
+"3754","1509301040-d466","89","1","20","20","0",NULL,"89",,"0"
+"3755","1509301113-09e1","89","1","20","20","0",NULL,"89",,"0"
+"3756","1509301236-aebd","77","1","4","4","0",NULL,"77",,"0"
+"3757","1509301236-aebd","73","1","4","4","0",NULL,"73",,"0"
+"3758","1509301236-aebd","26","1","5","5","0",NULL,"26",,"0"
+"3759","1509301236-aebd","89","1","20","20","0",NULL,"89",,"0"
+"3760","1509301408-dd30","26","1","5","5","0",NULL,"26",,"0"
+"3761","1509301408-dd30","49","1","14","14","0",NULL,"49",,"0"
+"3762","1509301408-dd30","67","1","6","6","0",NULL,"67",,"0"
+"3763","1509301408-dd30","61","5","0.5","2.5","0",NULL,"61",,"0"
+"3764","1509301408-dd30","60","1","12","12","0",NULL,"60",,"0"
+"3765","1510010609-95ba","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3766","1510010609-95ba","26","1","5","5","0",NULL,"26",,"0"
+"3767","1510010609-95ba","89","1","20","20","0",NULL,"89",,"0"
+"3768","1510021252-584b","85","1","98","98","0",NULL,"85",,"0"
+"3769","1510021252-584b","89","1","20","20","0",NULL,"89",,"0"
+"3770","1510031932-ad12","26","2","5","10","0",NULL,"26",,"0"
+"3771","1510031932-ad12","89","2","20","40","0",NULL,"89",,"0"
+"3772","1510032114-c580","89","1","20","20","0",NULL,"89",,"0"
+"3773","1510051246-2900","48","1","225","225","0",NULL,"48","Popular","0"
+"3774","1510081124-c584","89","1","20","20","0",NULL,"89",,"0"
+"3775","1510101604-b269","26","2","5","10","0",NULL,"26",,"0"
+"3776","1510101614-c724","60","1","12","12","0",NULL,"60",,"0"
+"3777","1510101708-f8bf","60","1","12","12","0",NULL,"60",,"0"
+"3778","1510101708-f8bf","69","1","4","4","0",NULL,"69",,"0"
+"3779","1510102228-337c","26","1","5","5","0",NULL,"26",,"0"
+"3780","1510112014-2893","67","1","6","6","0",NULL,"67",,"0"
+"3781","1510112014-2893","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3782","1510112014-2893","61","1","0.5","0.5","0",NULL,"61",,"0"
+"3783","1510112014-2893","49","1","14","14","0",NULL,"49",,"0"
+"3784","1510112014-2893","58","1","0.1","0.1","0",NULL,"58",,"0"
+"3785","1510112014-2893","53","1","0.5","0.5","0",NULL,"53",,"0"
+"3786","1510112014-2893","77","1","4","4","0",NULL,"77",,"0"
+"3787","1510161639-0660","67","1","6","6","0",NULL,"67",,"0"
+"3788","1510161639-0660","60","1","12","12","0",NULL,"60",,"0"
+"3789","1510161904-08d9","60","1","12","12","0",NULL,"60",,"0"
+"3790","1510171601-f60c","89","1","20","20","0",NULL,"89",,"0"
+"3791","1510181721-6f1c","60","1","12","12","0",NULL,"60",,"0"
+"3792","1510191209-84b2","60","1","12","12","0",NULL,"60",,"0"
+"3793","1510191411-dc67","60","1","12","12","0",NULL,"60",,"0"
+"3794","1510191411-dc67","90","1","170","170","0",NULL,"90",,"0"
+"3795","1510191411-dc67","49","1","14","14","0",NULL,"49",,"0"
+"3796","1510191553-2bc0","60","1","12","12","0",NULL,"60",,"0"
+"3797","1510201130-f8cd","60","1","12","12","0",NULL,"60",,"0"
+"3798","1510201134-f8cd","60","1","12","12","0",NULL,"60",,"0"
+"3799","1510210501-2d37","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3800","1510210501-2d37","67","1","6","6","0",NULL,"67",,"0"
+"3801","1510210501-2d37","60","1","12","12","0",NULL,"60",,"0"
+"3802","1510210501-2d37","89","1","20","20","0",NULL,"89",,"0"
+"3803","1510211129-118e","89","1","20","20","0",NULL,"89",,"0"
+"3804","1510211129-118e","26","1","5","5","0",NULL,"26",,"0"
+"3805","1510211129-118e","69","1","4","4","0",NULL,"69",,"0"
+"3806","1510211129-118e","49","1","14","14","0",NULL,"49",,"0"
+"3807","1510211129-118e","67","1","6","6","0",NULL,"67",,"0"
+"3808","1510211129-118e","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3809","1510211129-118e","45","1","14","14","0",NULL,"45","Popular","0"
+"3810","1510211129-118e","70","1","1","1","0",NULL,"70",,"0"
+"3811","1510211129-118e","53","1","0.5","0.5","0",NULL,"53",,"0"
+"3812","1510211129-118e","68","1","9","9","0",NULL,"68",,"0"
+"3813","1510211129-118e","61","1","0.5","0.5","0",NULL,"61",,"0"
+"3814","1510211129-118e","58","1","0.1","0.1","0",NULL,"58",,"0"
+"3815","1510211129-118e","87","1","4","4","0",NULL,"87",,"0"
+"3816","1510211129-118e","60","1","12","12","0",NULL,"60",,"0"
+"3817","1510212047-317e","85","1","98","98","0",NULL,"85",,"0"
+"3818","1510212334-2740","60","1","12","12","0",NULL,"60",,"0"
+"3819","1510221412-d7c6","89","1","20","20","0",NULL,"89",,"0"
+"3820","1510230915-77fe","26","1","5","5","0",NULL,"26",,"0"
+"3821","1510230915-77fe","89","1","20","20","0",NULL,"89",,"0"
+"3822","1510231740-e435","89","1","20","20","0",NULL,"89",,"0"
+"3823","1510241045-a116","60","1","12","12","0",NULL,"60",,"0"
+"3824","1510241458-859c","66","1","4","4","0",NULL,"66",,"0"
+"3825","1510241458-859c","87","1","4","4","0",NULL,"87",,"0"
+"3826","1510241458-859c","73","1","4","4","0",NULL,"73",,"0"
+"3827","1510241458-859c","89","1","20","20","0",NULL,"89",,"0"
+"3828","1510241458-859c","60","1","12","12","0",NULL,"60",,"0"
+"3829","1510241458-859c","26","1","5","5","0",NULL,"26",,"0"
+"3830","1510261119-faf5","61","2","0.5","1","0",NULL,"61",,"0"
+"3831","1510261119-faf5","26","1","5","5","0",NULL,"26",,"0"
+"3832","1510261119-faf5","53","2","0.5","1","0",NULL,"53",,"0"
+"3833","1510261119-faf5","87","1","4","4","0",NULL,"87",,"0"
+"3834","1510261150-21fc","89","1","20","20","0",NULL,"89",,"0"
+"3835","1510270819-07ca","60","1","12","12","0",NULL,"60",,"0"
+"3836","1510270819-07ca","87","1","4","4","0",NULL,"87",,"0"
+"3837","1510270819-07ca","69","1","4","4","0",NULL,"69",,"0"
+"3838","1510270819-07ca","67","1","6","6","0",NULL,"67",,"0"
+"3839","1510291933-79b7","89","1","20","20","0",NULL,"89",,"0"
+"3840","1510301039-44f9","89","1","20","20","0",NULL,"89",,"0"
+"3841","1510310856-fae9","72","1","27","27","0",NULL,"72",,"0"
+"3842","1510310856-fae9","67","1","6","6","0",NULL,"67",,"0"
+"3843","1510310856-fae9","26","1","5","5","0",NULL,"26",,"0"
+"3844","1510310856-fae9","68","1","9","9","0",NULL,"68",,"0"
+"3845","1510310856-fae9","59","50","0.1","5","0",NULL,"59",,"0"
+"3846","1510310856-fae9","54","1","14","14","0",NULL,"54",,"0"
+"3847","1510310856-fae9","73","10","4","40","0",NULL,"73",,"0"
+"3848","1510310856-fae9","69","10","4","40","0",NULL,"69",,"0"
+"3849","1510311418-4509","61","1","0.5","0.5","0",NULL,"61",,"0"
+"3850","1510311418-4509","70","1","1","1","0",NULL,"70",,"0"
+"3851","1510311418-4509","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3852","1510311418-4509","89","1","20","20","0",NULL,"89",,"0"
+"3853","1510311605-4509","70","1","1","1","0",NULL,"70",,"0"
+"3854","1510311605-4509","53","1","0.5","0.5","0",NULL,"53",,"0"
+"3855","1510311605-4509","61","1","0.5","0.5","0",NULL,"61",,"0"
+"3856","1510311605-4509","89","1","20","20","0",NULL,"89",,"0"
+"3857","1510311612-4509","70","1","1","1","0",NULL,"70",,"0"
+"3858","1510311612-4509","61","1","0.5","0.5","0",NULL,"61",,"0"
+"3859","1510311612-4509","89","1","20","20","0",NULL,"89",,"0"
+"3860","1510311616-4509","70","1","1","1","0",NULL,"70",,"0"
+"3861","1510311616-4509","53","1","0.5","0.5","0",NULL,"53",,"0"
+"3862","1510311616-4509","58","1","0.1","0.1","0",NULL,"58",,"0"
+"3863","1510311616-4509","89","1","20","20","0",NULL,"89",,"0"
+"3864","1510311856-4509","89","1","20","20","0",NULL,"89",,"0"
+"3865","1510311856-4509","70","1","1","1","0",NULL,"70",,"0"
+"3866","1510311856-4509","61","1","0.5","0.5","0",NULL,"61",,"0"
+"3867","1511010934-f7d9","89","1","20","20","0",NULL,"89",,"0"
+"3868","1511011251-00b5","69","1","4","4","0",NULL,"69",,"0"
+"3869","1511011251-00b5","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3870","1511011658-6c2e","89","1","20","20","0",NULL,"89",,"0"
+"3871","1511011720-a677","87","1","4","4","0",NULL,"87",,"0"
+"3872","1511021316-89cc","71","1","14","14","0",NULL,"71",,"0"
+"3873","1511021331-dbcc","89","1","20","20","0",NULL,"89",,"0"
+"3874","1511021538-8e55","45","2","14","28","0",NULL,"45","Popular","0"
+"3875","1511021538-8e55","58","250","0.1","25","0",NULL,"58",,"0"
+"3876","1511021540-8e55","45","2","14","28","0",NULL,"45","Popular","0"
+"3877","1511021540-8e55","58","250","0.1","25","0",NULL,"58",,"0"
+"3878","1511021738-21eb","45","1","14","14","0",NULL,"45","Popular","0"
+"3879","1511030906-5842","60","1","12","12","0",NULL,"60",,"0"
+"3880","1511031444-a38b","85","1","98","98","0",NULL,"85",,"0"
+"3881","1511031758-7311","89","1","20","20","0",NULL,"89",,"0"
+"3882","1511040541-fc0a","60","1","12","12","0",NULL,"60",,"0"
+"3883","1511040931-c7e0","60","1","12","12","0",NULL,"60",,"0"
+"3884","1511041904-8590","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3885","1511041904-8590","67","1","6","6","0",NULL,"67",,"0"
+"3886","1511041904-8590","82","1","4","4","0",NULL,"82",,"0"
+"3887","1511041904-8590","60","1","12","12","0",NULL,"60",,"0"
+"3888","1511051444-8e96","67","5","6","30","0",NULL,"67",,"0"
+"3889","1511051444-8e96","89","2","20","40","0",NULL,"89",,"0"
+"3890","1511051614-bbd9","60","1","12","12","0",NULL,"60",,"0"
+"3891","1511051751-4d28","60","1","12","12","0",NULL,"60",,"0"
+"3892","1511061043-a241","61","1","0.5","0.5","0",NULL,"61",,"0"
+"3893","1511061043-a241","59","1","0.1","0.1","0",NULL,"59",,"0"
+"3894","1511061043-a241","68","1","9","9","0",NULL,"68",,"0"
+"3895","1511061043-a241","60","1","12","12","0",NULL,"60",,"0"
+"3896","1511061043-a241","89","1","20","20","0",NULL,"89",,"0"
+"3897","1511081356-7a99","60","1","12","12","0",NULL,"60",,"0"
+"3898","1511091008-d91c","60","1","12","12","0",NULL,"60",,"0"
+"3899","1511091436-ff15","73","1","4","4","0",NULL,"73",,"0"
+"3900","1511091436-ff15","66","1","4","4","0",NULL,"66",,"0"
+"3901","1511091436-ff15","26","1","5","5","0",NULL,"26",,"0"
+"3902","1511091436-ff15","89","1","20","20","0",NULL,"89",,"0"
+"3903","1511091656-7d83","60","1","12","12","0",NULL,"60",,"0"
+"3904","1511091656-7d83","67","1","6","6","0",NULL,"67",,"0"
+"3905","1511101336-9258","89","4","20","80","0",NULL,"89",,"0"
+"3906","1511111336-47d1","89","1","20","20","0",NULL,"89",,"0"
+"3907","1511111338-47d1","89","1","20","20","0",NULL,"89",,"0"
+"3908","1511111403-1433","60","1","12","12","0",NULL,"60",,"0"
+"3909","1511112107-4509","26","1","5","5","0",NULL,"26",,"0"
+"3910","1511112107-4509","70","1","1","1","0",NULL,"70",,"0"
+"3911","1511112107-4509","53","1","0.5","0.5","0",NULL,"53",,"0"
+"3912","1511112107-4509","58","1","0.1","0.1","0",NULL,"58",,"0"
+"3913","1511112107-4509","61","1","0.5","0.5","0",NULL,"61",,"0"
+"3914","1511112107-4509","89","1","20","20","0",NULL,"89",,"0"
+"3915","1511120756-ee53","49","1","14","14","0",NULL,"49",,"0"
+"3916","1511121402-a9b7","66","1","4","4","0",NULL,"66",,"0"
+"3917","1511121402-a9b7","89","1","20","20","0",NULL,"89",,"0"
+"3918","1511121832-8188","60","5","12","60","0",NULL,"60",,"0"
+"3919","1511121835-8188","60","5","12","60","0",NULL,"60",,"0"
+"3920","1511122356-4509","53","1","0.5","0.5","0",NULL,"53",,"0"
+"3921","1511122356-4509","58","1","0.1","0.1","0",NULL,"58",,"0"
+"3922","1511122356-4509","89","1","20","20","0",NULL,"89",,"0"
+"3923","1511122356-4509","26","1","5","5","0",NULL,"26",,"0"
+"3924","1511122356-4509","70","1","1","1","0",NULL,"70",,"0"
+"3925","1511130901-2b6b","89","1","20","20","0",NULL,"89",,"0"
+"3926","1511131219-3278","67","5","6","30","0",NULL,"67",,"0"
+"3927","1511141627-fbd5","60","1","12","12","0",NULL,"60",,"0"
+"3928","1511141636-c79d","60","1","12","12","0",NULL,"60",,"0"
+"3929","1511152152-7046","60","1","12","12","0",NULL,"60",,"0"
+"3930","1511171648-09b6","87","1","4","4","0",NULL,"87",,"0"
+"3931","1511171648-09b6","60","1","12","12","0",NULL,"60",,"0"
+"3932","1511181010-eebd","60","1","12","12","0",NULL,"60",,"0"
+"3933","1511181429-5e40","67","1","6","6","0",NULL,"67",,"0"
+"3934","1511181429-5e40","87","2","4","8","0",NULL,"87",,"0"
+"3935","1511181429-5e40","60","1","12","12","0",NULL,"60",,"0"
+"3936","1511182303-47d7","85","1","98","98","0",NULL,"85",,"0"
+"3937","1511191426-b12b","89","1","20","20","0",NULL,"89",,"0"
+"3938","1511191549-b20d","45","1","14","14","0",NULL,"45","Popular","0"
+"3939","1511191603-b20d","45","1","14","14","0",NULL,"45","Popular","0"
+"3940","1511202242-bf09","67","1","6","6","0",NULL,"67",,"0"
+"3941","1511202242-bf09","90","1","170","170","0",NULL,"90",,"0"
+"3942","1511210814-f2f0","59","100","0.1","10","0",NULL,"59",,"0"
+"3943","1511210937-a51a","89","1","20","20","0",NULL,"89",,"0"
+"3944","1511211423-54e6","90","1","170","170","0",NULL,"90",,"0"
+"3945","1511221136-9246","60","1","12","12","0",NULL,"60",,"0"
+"3946","1511221210-b3a0","63","1","27","27","0",NULL,"63",,"0"
+"3947","1511221236-7046","89","2","20","40","0",NULL,"89",,"0"
+"3948","1511221954-13ba","60","2","12","24","0",NULL,"60",,"0"
+"3949","1511222218-8569","60","1","12","12","0",NULL,"60",,"0"
+"3950","1511230317-548c","89","1","20","20","0",NULL,"89",,"0"
+"3951","1511240753-6c19","43","1","158","158","0",NULL,"43",,"0"
+"3952","1511240920-6c19","43","1","158","158","0",NULL,"43",,"0"
+"3953","1511241327-a984","60","1","12","12","0",NULL,"60",,"0"
+"3954","1511251343-074e","90","1","170","170","0",NULL,"90",,"0"
+"3955","1511251415-2696","89","1","20","20","0",NULL,"89",,"0"
+"3956","1511260847-177b","60","1","12","12","0",NULL,"60",,"0"
+"3957","1511261344-a677","89","1","20","20","0",NULL,"89",,"0"
+"3958","1511271308-d3f7","87","1","4","4","0",NULL,"87",,"0"
+"3959","1511271308-d3f7","69","1","4","4","0",NULL,"69",,"0"
+"3960","1511271308-d3f7","60","1","12","12","0",NULL,"60",,"0"
+"3961","1511271308-d3f7","89","1","20","20","0",NULL,"89",,"0"
+"3962","1511271318-bba4","89","1","20","20","0",NULL,"89",,"0"
+"3963","1511281519-cb1c","87","1","4","4","0",NULL,"87",,"0"
+"3964","1511282012-a677","90","1","170","170","0",NULL,"90",,"0"
+"3965","1511301404-14fd","90","1","170","170","0",NULL,"90",,"0"
+"3966","1511301509-a328","90","1","170","170","0",NULL,"90",,"0"
+"3967","1512011037-8ca4","60","1","12","12","0",NULL,"60",,"0"
+"3968","1512011037-8ca4","89","1","20","20","0",NULL,"89",,"0"
+"3969","1512020003-b7e3","60","1","12","12","0",NULL,"60",,"0"
+"3970","1512020849-2cc0","60","1","12","12","0",NULL,"60",,"0"
+"3971","1512021435-2cc0","70","1","1","1","0",NULL,"70",,"0"
+"3972","1512021435-2cc0","89","1","20","20","0",NULL,"89",,"0"
+"3973","1512021555-2e0c","68","1","9","9","0",NULL,"68",,"0"
+"3974","1512021555-2e0c","67","1","6","6","0",NULL,"67",,"0"
+"3975","1512021555-2e0c","89","1","20","20","0",NULL,"89",,"0"
+"3976","1512032248-9a6e","90","1","170","170","0",NULL,"90",,"0"
+"3977","1512041320-eb9d","89","1","20","20","0",NULL,"89",,"0"
+"3978","1512041607-355c","79","1","4","4","0",NULL,"79",,"0"
+"3979","1512041607-355c","87","1","4","4","0",NULL,"87",,"0"
+"3980","1512041607-355c","68","1","9","9","0",NULL,"68",,"0"
+"3981","1512041607-355c","60","1","12","12","0",NULL,"60",,"0"
+"3982","1512050813-4b0b","60","1","12","12","0",NULL,"60",,"0"
+"3983","1512051203-1531","60","1","12","12","0",NULL,"60",,"0"
+"3984","1512051210-1531","87","2","4","8","0",NULL,"87",,"0"
+"3985","1512052010-7635","90","1","170","170","0",NULL,"90",,"0"
+"3986","1512061145-1cba","60","1","12","12","0",NULL,"60",,"0"
+"3987","1512061818-a41c","89","1","20","20","0",NULL,"89",,"0"
+"3988","1512071600-051a","60","1","12","12","0",NULL,"60",,"0"
+"3989","1512081637-81c7","90","1","170","170","0",NULL,"90",,"0"
+"3990","1512091408-0d35","60","1","12","12","0",NULL,"60",,"0"
+"3991","1512091622-3452","90","1","170","170","0",NULL,"90",,"0"
+"3992","1512091825-858a","90","1","170","170","0",NULL,"90",,"0"
+"3993","1512091855-d2a0","60","1","12","12","0",NULL,"60",,"0"
+"3994","1512091907-9797","60","1","12","12","0",NULL,"60",,"0"
+"3995","1512101044-8cfb","60","1","12","12","0",NULL,"60",,"0"
+"3996","1512101045-9520","60","1","12","12","0",NULL,"60",,"0"
+"3997","1512101202-0802","60","1","12","12","0",NULL,"60",,"0"
+"3998","1512101222-c91c","60","1","12","12","0",NULL,"60",,"0"
+"3999","1512101422-e635","46","1","27","27","0",NULL,"46","Popular","0"
+"4000","1512101422-e635","63","1","27","27","0",NULL,"63",,"0"
+"4001","1512101422-e635","60","1","12","12","0",NULL,"60",,"0"
+"4002","1512101423-6423","89","1","20","20","0",NULL,"89",,"0"
+"4003","1512101423-6423","26","1","5","5","0",NULL,"26",,"0"
+"4004","1512101436-e635","60","1","12","12","0",NULL,"60",,"0"
+"4005","1512101436-e635","63","1","27","27","0",NULL,"63",,"0"
+"4006","1512101436-e635","46","1","27","27","0",NULL,"46","Popular","0"
+"4007","1512101818-2d1a","60","1","12","12","0",NULL,"60",,"0"
+"4008","1512101920-aa9d","60","3","12","36","0",NULL,"60",,"0"
+"4009","1512111640-56f5","60","1","12","12","0",NULL,"60",,"0"
+"4010","1512111809-491a","62","1","14","14","0",NULL,"62",,"0"
+"4011","1512111809-491a","58","100","0.1","10","0",NULL,"58",,"0"
+"4012","1512111809-491a","45","2","14","28","0",NULL,"45","Popular","0"
+"4013","1512121548-cddf","60","1","12","12","0",NULL,"60",,"0"
+"4014","1512140019-1362","90","1","170","170","0",NULL,"90",,"0"
+"4015","1512140033-5553","60","1","12","12","0",NULL,"60",,"0"
+"4016","1512140054-0f0a","60","1","12","12","0",NULL,"60",,"0"
+"4017","1512141037-2cc0","69","1","4","4","0",NULL,"69",,"0"
+"4018","1512141037-2cc0","75","1","4","4","0",NULL,"75",,"0"
+"4019","1512141037-2cc0","77","1","4","4","0",NULL,"77",,"0"
+"4020","1512141111-6de3","60","1","12","12","0",NULL,"60",,"0"
+"4021","1512141115-6de3","60","1","12","12","0",NULL,"60",,"0"
+"4022","1512141117-6de3","60","1","12","12","0",NULL,"60",,"0"
+"4023","1512141136-6de3","89","1","20","20","0",NULL,"89",,"0"
+"4024","1512141249-f703","60","1","12","12","0",NULL,"60",,"0"
+"4025","1512141249-4178","60","1","12","12","0",NULL,"60",,"0"
+"4026","1512141249-4178","89","2","20","40","0",NULL,"89",,"0"
+"4027","1512141927-5d95","60","1","12","12","0",NULL,"60",,"0"
+"4028","1512151119-8c12","87","4","4","16","0",NULL,"87",,"0"
+"4029","1512151119-8c12","82","4","4","16","0",NULL,"82",,"0"
+"4030","1512151119-8c12","66","4","4","16","0",NULL,"66",,"0"
+"4031","1512151119-8c12","55","1","27","27","0",NULL,"55",,"0"
+"4032","1512151119-8c12","46","1","27","27","0",NULL,"46","Popular","0"
+"4033","1512151119-8c12","71","1","14","14","0",NULL,"71",,"0"
+"4034","1512152002-6602","60","1","12","12","0",NULL,"60",,"0"
+"4035","1512161504-b772","60","1","12","12","0",NULL,"60",,"0"
+"4036","1512161636-18bc","60","1","12","12","0",NULL,"60",,"0"
+"4037","1512161939-7bbc","87","1","4","4","0",NULL,"87",,"0"
+"4038","1512161939-7bbc","60","1","12","12","0",NULL,"60",,"0"
+"4039","1512171037-f4a1","60","3","12","36","0",NULL,"60",,"0"
+"4040","1512171046-2efc","60","1","12","12","0",NULL,"60",,"0"
+"4041","1512171046-2efc","90","1","170","170","0",NULL,"90",,"0"
+"4042","1512171053-2efc","60","1","12","12","0",NULL,"60",,"0"
+"4043","1512180011-0ccc","60","1","12","12","0",NULL,"60",,"0"
+"4044","1512181041-d057","90","1","170","170","0",NULL,"90",,"0"
+"4045","1512181205-a331","26","50","5","250","0",NULL,"26",,"0"
+"4046","1512191625-946e","60","1","12","12","0",NULL,"60",,"0"
+"4047","1512191625-946e","89","1","20","20","0",NULL,"89",,"0"
+"4048","1512191708-c0ed","60","1","12","12","0",NULL,"60",,"0"
+"4049","1512201143-503b","89","1","20","20","0",NULL,"89",,"0"
+"4050","1512201143-503b","67","1","6","6","0",NULL,"67",,"0"
+"4051","1512211028-cb6b","60","1","12","12","0",NULL,"60",,"0"
+"4052","1512211327-e03c","60","1","12","12","0",NULL,"60",,"0"
+"4053","1512211733-ed01","85","1","98","98","0",NULL,"85",,"0"
+"4054","1512212207-8d79","69","1","4","4","0",NULL,"69",,"0"
+"4055","1512212207-8d79","67","1","6","6","0",NULL,"67",,"0"
+"4056","1512212207-8d79","60","1","12","12","0",NULL,"60",,"0"
+"4057","1512221441-0a3a","60","1","12","12","0",NULL,"60",,"0"
+"4058","1512221441-0a3a","59","50","0.1","5","0",NULL,"59",,"0"
+"4059","1512221441-0a3a","62","1","14","14","0",NULL,"62",,"0"
+"4060","1512221441-0a3a","49","1","14","14","0",NULL,"49",,"0"
+"4061","1512221441-0a3a","45","1","14","14","0",NULL,"45","Popular","0"
+"4062","1512221441-0a3a","58","50","0.1","5","0",NULL,"58",,"0"
+"4063","1512221452-52a5","60","2","12","24","0",NULL,"60",,"0"
+"4064","1512222138-64c9","90","1","170","170","0",NULL,"90",,"0"
+"4065","1512231148-7b7c","60","1","12","12","0",NULL,"60",,"0"
+"4066","1512231511-b605","60","1","12","12","0",NULL,"60",,"0"
+"4067","1512241409-aceb","89","1","20","20","0",NULL,"89",,"0"
+"4068","1512241625-d13b","60","1","12","12","0",NULL,"60",,"0"
+"4069","1512241916-c89e","60","1","12","12","0",NULL,"60",,"0"
+"4070","1512241922-c89e","60","1","12","12","0",NULL,"60",,"0"
+"4071","1512241927-c89e","60","1","12","12","0",NULL,"60",,"0"
+"4072","1512241929-c89e","60","1","12","12","0",NULL,"60",,"0"
+"4073","1512251746-47f4","89","1","20","20","0",NULL,"89",,"0"
+"4074","1512251746-47f4","60","1","12","12","0",NULL,"60",,"0"
+"4075","1512261124-18c7","60","1","12","12","0",NULL,"60",,"0"
+"4076","1512271343-95f3","60","1","12","12","0",NULL,"60",,"0"
+"4077","1512271418-5996","67","1","6","6","0",NULL,"67",,"0"
+"4078","1512271418-5996","87","1","4","4","0",NULL,"87",,"0"
+"4079","1512271418-5996","60","1","12","12","0",NULL,"60",,"0"
+"4080","1512271418-5996","69","1","4","4","0",NULL,"69",,"0"
+"4081","1512280909-fd00","60","1","12","12","0",NULL,"60",,"0"
+"4082","1512281513-8ca4","82","1","4","4","0",NULL,"82",,"0"
+"4083","1512281513-8ca4","79","1","4","4","0",NULL,"79",,"0"
+"4084","1512281513-8ca4","67","1","6","6","0",NULL,"67",,"0"
+"4085","1512281513-8ca4","60","1","12","12","0",NULL,"60",,"0"
+"4086","1512301039-8e41","90","1","170","170","0",NULL,"90",,"0"
+"4087","1512301139-40b3","89","1","20","20","0",NULL,"89",,"0"
+"4088","1512301642-51e1","60","1","12","12","0",NULL,"60",,"0"
+"4089","1512301716-e47a","60","1","12","12","0",NULL,"60",,"0"
+"4090","1512302225-7d0c","85","1","98","98","0",NULL,"85",,"0"
+"4091","1512310939-7981","90","1","170","170","0",NULL,"90",,"0"
+"4092","1512310951-7981","90","1","170","170","0",NULL,"90",,"0"
+"4093","1601021506-ed21","84","1","158","158","0",NULL,"84",,"0"
+"4094","1601030935-08f4","89","1","20","20","0",NULL,"89",,"0"
+"4095","1601031613-b868","89","1","20","20","0",NULL,"89",,"0"
+"4096","1601040946-2169","60","1","12","12","0",NULL,"60",,"0"
+"4097","1601040946-2169","89","1","20","20","0",NULL,"89",,"0"
+"4098","1601041230-777e","60","1","12","12","0",NULL,"60",,"0"
+"4099","1601041512-e690","67","1","6","6","0",NULL,"67",,"0"
+"4100","1601041512-e690","89","1","20","20","0",NULL,"89",,"0"
+"4101","1601041541-fe2b","60","1","12","12","0",NULL,"60",,"0"
+"4102","1601051010-2e2f","60","1","12","12","0",NULL,"60",,"0"
+"4103","1601051010-2e2f","58","1","0.1","0.1","0",NULL,"58",,"0"
+"4104","1601051010-2e2f","67","1","6","6","0",NULL,"67",,"0"
+"4105","1601051010-2e2f","49","1","14","14","0",NULL,"49",,"0"
+"4106","1601051010-2e2f","62","1","14","14","0",NULL,"62",,"0"
+"4107","1601051010-2e2f","59","10","0.1","1","0",NULL,"59",,"0"
+"4108","1601051010-2e2f","87","1","4","4","0",NULL,"87",,"0"
+"4109","1601051010-2e2f","45","1","14","14","0",NULL,"45","Popular","0"
+"4110","1601051812-67b3","58","50","0.1","5","0",NULL,"58",,"0"
+"4111","1601051812-67b3","62","1","14","14","0",NULL,"62",,"0"
+"4112","1601051812-67b3","49","1","14","14","0",NULL,"49",,"0"
+"4113","1601051852-e3db","60","1","12","12","0",NULL,"60",,"0"
+"4114","1601051920-ab1c","60","1","12","12","0",NULL,"60",,"0"
+"4115","1601061144-4e22","62","1","14","14","0",NULL,"62",,"0"
+"4116","1601061144-4e22","49","1","14","14","0",NULL,"49",,"0"
+"4117","1601061144-4e22","58","50","0.1","5","0",NULL,"58",,"0"
+"4118","1601061144-4e22","45","1","14","14","0",NULL,"45","Popular","0"
+"4119","1601061237-fa9e","60","1","12","12","0",NULL,"60",,"0"
+"4120","1601061241-c5a0","60","1","12","12","0",NULL,"60",,"0"
+"4121","1601061951-706f","45","1","14","14","0",NULL,"45","Popular","0"
+"4122","1601061951-706f","49","1","14","14","0",NULL,"49",,"0"
+"4123","1601070722-19d9","89","1","20","20","0",NULL,"89",,"0"
+"4124","1601070732-19d9","89","1","20","20","0",NULL,"89",,"0"
+"4125","1601071644-e8e3","79","1","4","4","0",NULL,"79",,"0"
+"4126","1601071644-e8e3","26","1","5","5","0",NULL,"26",,"0"
+"4127","1601071644-e8e3","60","1","12","12","0",NULL,"60",,"0"
+"4128","1601071644-e8e3","89","1","20","20","0",NULL,"89",,"0"
+"4129","1601072219-b73f","60","1","12","12","0",NULL,"60",,"0"
+"4130","1601080410-0863","26","1","5","5","0",NULL,"26",,"0"
+"4131","1601080410-0863","89","1","20","20","0",NULL,"89",,"0"
+"4132","1601081113-b95b","60","1","12","12","0",NULL,"60",,"0"
+"4133","1601081155-1803","60","1","12","12","0",NULL,"60",,"0"
+"4134","1601081452-1c40","63","1","27","27","0",NULL,"63",,"0"
+"4135","1601081645-ded6","89","1","20","20","0",NULL,"89",,"0"
+"4136","1601082250-498b","60","1","12","12","0",NULL,"60",,"0"
+"4167","1601190938-2052","50","2","27","54","0",NULL,"50",,"0"
+"4166","1601190938-2052","63","2","27","54","0",NULL,"63",,"0"
+"4165","1601181808-1002","60","1","12","12","0",NULL,"60",,"0"
+"4164","1601181005-9378","60","1","12","12","0",NULL,"60",,"0"
+"4163","1601181005-9378","26","1","5","5","0",NULL,"26",,"0"
+"4162","1601180017-949e","45","1","14","14","0",NULL,"45","Popular","0"
+"4161","1601151244-7bc5","87","1","4","4","0",NULL,"87",,"0"
+"4160","1601151244-7bc5","79","1","4","4","0",NULL,"79",,"0"
+"4159","1601151244-7bc5","58","10","0.1","1","0",NULL,"58",,"0"
+"4158","1601151034-3e3a","60","3","12","36","0",NULL,"60",,"0"
+"4157","1601141323-e436","60","1","12","12","0",NULL,"60",,"0"
+"4156","1601140927-c0ed","89","1","20","20","0",NULL,"89",,"0"
+"4155","1601140716-ca52","60","1","12","12","0",NULL,"60",,"0"
+"4153","1601112133-e2ee","60","1","12","12","0",NULL,"60",,"0"
+"4154","1601131020-2efc","89","1","20","20","0",NULL,"89",,"0"
+"4168","1601200942-9ae1","46","1","27","27","0",NULL,"46","Popular","0"
+"4169","1601200942-9ae1","45","1","14","14","0",NULL,"45","Popular","0"
+"4170","1601201358-46d6","60","1","12","12","0",NULL,"60",,"0"
+"4171","1601201631-e673","60","1","12","12","0",NULL,"60",,"0"
+"4172","1601201632-ed49","53","1","0.5","0.5","0",NULL,"53",,"0"
+"4173","1601201632-ed49","61","1","0.5","0.5","0",NULL,"61",,"0"
+"4174","1601201632-ed49","60","1","12","12","0",NULL,"60",,"0"
+"4175","1601210845-28ad","60","1","12","12","0",NULL,"60",,"0"
+"4176","1601211443-29af","26","1","5","5","0",NULL,"26",,"0"
+"4177","1601211443-29af","58","50","0.1","5","0",NULL,"58",,"0"
+"4178","1601211443-29af","45","1","14","14","0",NULL,"45","Popular","0"
+"4179","1601211443-29af","62","1","14","14","0",NULL,"62",,"0"
+"4180","1601221512-ca65","60","1","12","12","0",NULL,"60",,"0"
+"4181","1601231114-48b5","60","1","12","12","0",NULL,"60",,"0"
+"4182","1601231639-3051","89","1","20","20","0",NULL,"89",,"0"
+"4183","1601231639-3051","60","1","12","12","0",NULL,"60",,"0"
+"4184","1601251332-2c95","89","1","20","20","0",NULL,"89",,"0"
+"4185","1601261000-bda5","26","1","5","5","0",NULL,"26",,"0"
+"4186","1601261000-bda5","59","1","0.1","0.1","0",NULL,"59",,"0"
+"4187","1601261000-bda5","60","1","12","12","0",NULL,"60",,"0"
+"4188","1601262043-6310","85","1","98","98","0",NULL,"85",,"0"
+"4189","1601290851-a962","60","2","12","24","0",NULL,"60",,"0"
+"4190","1601311217-e279","60","1","12","12","0",NULL,"60",,"0"
+"4191","1601311322-2c71","66","1","4","4","0",NULL,"66",,"0"
+"4192","1601311322-2c71","60","1","12","12","0",NULL,"60",,"0"
+"4193","1601311322-2c71","26","1","5","5","0",NULL,"26",,"0"
+"4194","1601311322-2c71","89","1","20","20","0",NULL,"89",,"0"
+"4195","1601311851-f4ad","26","1","5","5","0",NULL,"26",,"0"
+"4196","1601311851-f4ad","75","1","4","4","0",NULL,"75",,"0"
+"4197","1601311851-f4ad","60","1","12","12","0",NULL,"60",,"0"
+"4198","1601311851-f4ad","67","1","6","6","0",NULL,"67",,"0"
+"4199","1601311851-f4ad","69","1","4","4","0",NULL,"69",,"0"
+"4200","1602010615-f2a7","44","1","98","98","0",NULL,"44",,"0"
+"4201","1602010615-f2a7","85","1","98","98","0",NULL,"85",,"0"
+"4202","1602010615-f2a7","89","1","20","20","0",NULL,"89",,"0"
+"4203","1602010615-f2a7","26","1","5","5","0",NULL,"26",,"0"
+"4204","1602010615-f2a7","60","2","12","24","0",NULL,"60",,"0"
+"4205","1602011520-f63e","67","20","6","120","0",NULL,"67",,"0"
+"4206","1602021428-957d","60","1","12","12","0",NULL,"60",,"0"
+"4207","1602022207-3649","60","1","12","12","0",NULL,"60",,"0"
+"4208","1602031035-455e","60","1","12","12","0",NULL,"60",,"0"
+"4209","1602031618-7c3b","69","1","4","4","0",NULL,"69",,"0"
+"4210","1602031618-7c3b","89","1","20","20","0",NULL,"89",,"0"
+"4211","1602031633-a6a2","69","30","4","120","0",NULL,"69",,"0"
+"4212","1602031954-c250","60","1","12","12","0",NULL,"60",,"0"
+"4213","1602031954-c250","26","1","5","5","0",NULL,"26",,"0"
+"4214","1602040433-4535","89","1","20","20","0",NULL,"89",,"0"
+"4215","1602040433-4535","60","1","12","12","0",NULL,"60",,"0"
+"4216","1602041656-9485","89","1","20","20","0",NULL,"89",,"0"
+"4217","1602051302-2ecb","67","1","6","6","0",NULL,"67",,"0"
+"4218","1602052128-ef11","60","1","12","12","0",NULL,"60",,"0"
+"4219","1602061733-19c7","89","1","20","20","0",NULL,"89",,"0"
+"4220","1602061733-19c7","85","1","98","98","0",NULL,"85",,"0"
+"4221","1602071137-a560","60","1","12","12","0",NULL,"60",,"0"
+"4222","1602071313-7532","58","50","0.1","5","0",NULL,"58",,"0"
+"4223","1602071313-7532","49","1","14","14","0",NULL,"49",,"0"
+"4224","1602071313-7532","85","1","98","98","0",NULL,"85",,"0"
+"4225","1602071313-7532","44","1","98","98","0",NULL,"44",,"0"
+"4226","1602071313-7532","67","4","6","24","0",NULL,"67",,"0"
+"4227","1602071313-7532","26","1","5","5","0",NULL,"26",,"0"
+"4228","1602071313-7532","59","50","0.1","5","0",NULL,"59",,"0"
+"4229","1602071313-7532","66","1","4","4","0",NULL,"66",,"0"
+"4230","1602071313-7532","60","1","12","12","0",NULL,"60",,"0"
+"4231","1602071313-7532","45","1","14","14","0",NULL,"45","Popular","0"
+"4232","1602071813-945d","46","1","27","27","0",NULL,"46","Popular","0"
+"4233","1602081319-8810","60","1","12","12","0",NULL,"60",,"0"
+"4234","1602091242-59b9","69","1","4","4","0",NULL,"69",,"0"
+"4235","1602091242-59b9","67","1","6","6","0",NULL,"67",,"0"
+"4236","1602091242-59b9","89","1","20","20","0",NULL,"89",,"0"
+"4237","1602091408-3398","60","1","12","12","0",NULL,"60",,"0"
+"4238","1602091532-d33d","89","1","20","20","0",NULL,"89",,"0"
+"4239","1602092255-818d","60","1","12","12","0",NULL,"60",,"0"
+"4240","1602101008-eef8","60","2","12","24","0",NULL,"60",,"0"
+"4241","1602101442-a3cd","60","1","12","12","0",NULL,"60",,"0"
+"4242","1602101616-b33d","60","1","12","12","0",NULL,"60",,"0"
+"4243","1602101624-b33d","60","1","12","12","0",NULL,"60",,"0"
+"4244","1602101754-e494","60","1","12","12","0",NULL,"60",,"0"
+"4245","1602102115-08e9","60","1","12","12","0",NULL,"60",,"0"
+"4246","1602112144-081b","49","1","14","14","0",NULL,"49",,"0"
+"4247","1602121107-1bb5","60","1","12","12","0",NULL,"60",,"0"
+"4248","1602121428-ebf9","60","1","12","12","0",NULL,"60",,"0"
+"4249","1602121632-e1a6","60","1","12","12","0",NULL,"60",,"0"
+"4250","1602130936-a3ee","60","1","12","12","0",NULL,"60",,"0"
+"4251","1602131122-e5ca","60","1","12","12","0",NULL,"60",,"0"
+"4252","1602131220-d9ac","77","1","4","4","0",NULL,"77",,"0"
+"4253","1602131220-d9ac","58","20","0.1","2","0",NULL,"58",,"0"
+"4254","1602131220-d9ac","59","20","0.1","2","0",NULL,"59",,"0"
+"4255","1602131220-d9ac","60","2","12","24","0",NULL,"60",,"0"
+"4256","1602140957-629a","60","1","12","12","0",NULL,"60",,"0"
+"4257","1602141732-945d","46","1","27","27","0",NULL,"46","Popular","0"
+"4258","1602151810-6211","60","1","12","12","0",NULL,"60",,"0"
+"4259","1602151948-23ea","46","1","27","27","0",NULL,"46","Popular","0"
+"4260","1602151948-23ea","58","200","0.1","20","0",NULL,"58",,"0"
+"4261","1602152028-310c","60","1","12","12","0",NULL,"60",,"0"
+"4262","1602152028-310c","58","25","0.1","2.5","0",NULL,"58",,"0"
+"4263","1602152028-310c","62","1","14","14","0",NULL,"62",,"0"
+"4264","1602152028-310c","70","1","1","1","0",NULL,"70",,"0"
+"4265","1602152028-310c","68","1","9","9","0",NULL,"68",,"0"
+"4266","1602152358-ba7d","26","1","5","5","0",NULL,"26",,"0"
+"4267","1602152358-ba7d","77","1","4","4","0",NULL,"77",,"0"
+"4268","1602152358-ba7d","99","1","68","68","0",NULL,"99",,"0"
+"4269","1602162052-3649","99","1","68","68","0",NULL,"99",,"0"
+"4270","1602170942-73a1","60","1","12","12","0",NULL,"60",,"0"
+"4271","1602171118-042c","60","1","12","12","0",NULL,"60",,"0"
+"4272","1602180851-3b7a","60","1","12","12","0",NULL,"60",,"0"
+"4273","1602181111-dad9","60","1","12","12","0",NULL,"60",,"0"
+"4274","1602191032-c8a0","100","1","123","123","0",NULL,"100",,"0"
+"4275","1602191557-9a28","70","1","1","1","0",NULL,"70",,"0"
+"4276","1602191557-9a28","69","1","4","4","0",NULL,"69",,"0"
+"4277","1602191557-9a28","61","1","0.5","0.5","0",NULL,"61",,"0"
+"4278","1602191557-9a28","45","2","14","28","0",NULL,"45","Popular","0"
+"4279","1602191613-b262","60","1","12","12","0",NULL,"60",,"0"
+"4280","1602201059-ac9e","60","2","12","24","0",NULL,"60",,"0"
+"4281","1602201701-571d","26","1","5","5","0",NULL,"26",,"0"
+"4282","1602201701-571d","60","1","12","12","0",NULL,"60",,"0"
+"4283","1602201701-571d","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4284","1602202300-95ea","84","1","158","158","0",NULL,"84",,"0"
+"4285","1602211830-19f1","53","1","0.5","0.5","0",NULL,"53",,"0"
+"4286","1602211830-19f1","68","1","9","9","0",NULL,"68",,"0"
+"4287","1602211830-19f1","61","1","0.5","0.5","0",NULL,"61",,"0"
+"4288","1602211830-19f1","58","1","0.1","0.1","0",NULL,"58",,"0"
+"4289","1602211837-cb9d","53","1","0.5","0.5","0",NULL,"53",,"0"
+"4290","1602211837-cb9d","68","1","9","9","0",NULL,"68",,"0"
+"4291","1602211837-cb9d","61","1","0.5","0.5","0",NULL,"61",,"0"
+"4292","1602211837-cb9d","58","1","0.1","0.1","0",NULL,"58",,"0"
+"4293","1602221116-c9bc","60","1","12","12","0",NULL,"60",,"0"
+"4294","1602221756-11a6","60","1","12","12","0",NULL,"60",,"0"
+"4295","1602240748-f813","58","51","0.1","5.1","0",NULL,"58",,"0"
+"4296","1602240748-f813","45","1","14","14","0",NULL,"45","Popular","0"
+"4297","1602241213-1299","46","1","27","27","0",NULL,"46","Popular","0"
+"4298","1602241213-1299","63","1","27","27","0",NULL,"63",,"0"
+"4299","1602241213-1299","58","100","0.1","10","0",NULL,"58",,"0"
+"4300","1602241213-1299","50","1","27","27","0",NULL,"50",,"0"
+"4301","1602241625-7c26","85","1","98","98","0",NULL,"85",,"0"
+"4302","1602261055-1260","98","1","225","225","0",NULL,"98",,"0"
+"4303","1602261113-1b20","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4304","1602261607-c3dd","99","1","68","68","0",NULL,"99",,"0"
+"4305","1602280626-226c","60","1","12","12","0",NULL,"60",,"0"
+"4306","1603011507-fc2d","53","1","0.5","0.5","0",NULL,"53",,"0"
+"4307","1603011507-fc2d","48","1","225","225","0",NULL,"48","Popular","0"
+"4308","1603011810-aaf0","60","1","12","12","0",NULL,"60",,"0"
+"4309","1603021618-4379","60","1","12","12","0",NULL,"60",,"0"
+"4310","1603021709-a440","69","1","4","4","0",NULL,"69",,"0"
+"4311","1603021709-a440","59","10","0.1","1","0",NULL,"59",,"0"
+"4312","1603021709-a440","70","1","1","1","0",NULL,"70",,"0"
+"4313","1603021709-a440","87","1","4","4","0",NULL,"87",,"0"
+"4314","1603021709-a440","53","1","0.5","0.5","0",NULL,"53",,"0"
+"4315","1603021709-a440","91","2","0.75","1.5","0",NULL,"91",,"0"
+"4316","1603031533-530d","89","1","20","20","0",NULL,"89",,"0"
+"4317","1603041133-563a","26","1","5","5","0",NULL,"26",,"0"
+"4318","1603041133-563a","60","1","12","12","0",NULL,"60",,"0"
+"4319","1603051212-0515","100","1","123","123","0",NULL,"100",,"0"
+"4320","1603051636-8035","99","2","68","136","0",NULL,"99",,"0"
+"4321","1603070925-f8f9","77","1","4","4","0",NULL,"77",,"0"
+"4322","1603070925-f8f9","59","1","0.1","0.1","0",NULL,"59",,"0"
+"4323","1603070925-f8f9","100","1","123","123","0",NULL,"100",,"0"
+"4324","1603070925-f8f9","53","1","0.5","0.5","0",NULL,"53",,"0"
+"4325","1603070925-f8f9","67","1","6","6","0",NULL,"67",,"0"
+"4326","1603070925-f8f9","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4327","1603080711-82d7","99","1","68","68","0",NULL,"99",,"0"
+"4328","1603091112-9db6","62","1","14","14","0",NULL,"62",,"0"
+"4329","1603091258-7275","46","1","27","27","0",NULL,"46","Popular","0"
+"4330","1603091805-8db8","60","1","12","12","0",NULL,"60",,"0"
+"4331","1603092152-6cb4","68","1","9","9","0",NULL,"68",,"0"
+"4332","1603101835-0045","60","1","12","12","0",NULL,"60",,"0"
+"4333","1603101835-0045","26","1","5","5","0",NULL,"26",,"0"
+"4334","1603101835-0045","67","1","6","6","0",NULL,"67",,"0"
+"4335","1603101835-0045","89","1","20","20","0",NULL,"89",,"0"
+"4336","1603111352-bf18","46","1","27","27","0",NULL,"46","Popular","0"
+"4337","1603111404-5e28","60","1","12","12","0",NULL,"60",,"0"
+"4338","1603131705-d420","49","1","14","14","0",NULL,"49",,"0"
+"4339","1603131705-d420","100","1","123","123","0",NULL,"100",,"0"
+"4340","1603132234-9f00","60","1","12","12","0",NULL,"60",,"0"
+"4341","1603132234-9f00","44","1","98","98","0",NULL,"44",,"0"
+"4342","1603140824-84c1","67","5","6","30","0",NULL,"67",,"0"
+"4343","1603141218-4533","100","1","123","123","0",NULL,"100",,"0"
+"4344","1603151235-fb86","45","1","14","14","0",NULL,"45","Popular","0"
+"4345","1603151330-d5b9","26","10","5","50","0",NULL,"26",,"0"
+"4346","1603151544-9102","99","1","68","68","0",NULL,"99",,"0"
+"4347","1603160050-70f8","60","1","12","12","0",NULL,"60",,"0"
+"4348","1603161549-e842","60","1","12","12","0",NULL,"60",,"0"
+"4349","1603162127-b1b6","99","1","68","68","0",NULL,"99",,"0"
+"4350","1603171055-2387","99","1","68","68","0",NULL,"99",,"0"
+"4351","1603171126-aaec","59","100","0.1","10","0",NULL,"59",,"0"
+"4352","1603171126-aaec","99","1","68","68","0",NULL,"99",,"0"
+"4353","1603171232-6c19","100","1","123","123","0",NULL,"100",,"0"
+"4354","1603180149-bee5","99","1","68","68","0",NULL,"99",,"0"
+"4355","1603181104-4d81","60","1","12","12","0",NULL,"60",,"0"
+"4356","1603181142-29e3","99","1","68","68","0",NULL,"99",,"0"
+"4357","1603181503-fe7e","100","1","123","123","0",NULL,"100",,"0"
+"4358","1603181549-a677","89","1","20","20","0",NULL,"89",,"0"
+"4359","1603181549-a677","99","1","68","68","0",NULL,"99",,"0"
+"4360","1603181549-a677","100","1","123","123","0",NULL,"100",,"0"
+"4361","1603182250-8013","87","2","4","8","0",NULL,"87",,"0"
+"4362","1603182250-8013","99","1","68","68","0",NULL,"99",,"0"
+"4363","1603190245-0bc9","100","1","123","123","0",NULL,"100",,"0"
+"4364","1603191905-ed95","99","1","68","68","0",NULL,"99",,"0"
+"4365","1603201134-e90e","100","1","123","123","0",NULL,"100",,"0"
+"4366","1603201426-08cd","99","1","68","68","0",NULL,"99",,"0"
+"4367","1603201727-05b3","100","1","123","123","0",NULL,"100",,"0"
+"4368","1603201857-f9fb","100","1","123","123","0",NULL,"100",,"0"
+"4369","1603210933-a870","99","1","68","68","0",NULL,"99",,"0"
+"4370","1603211248-029f","99","1","68","68","0",NULL,"99",,"0"
+"4371","1603211516-f8eb","45","1","14","14","0",NULL,"45","Popular","0"
+"4372","1603211516-f8eb","58","150","0.1","15","0",NULL,"58",,"0"
+"4373","1603211625-d712","100","1","123","123","0",NULL,"100",,"0"
+"4374","1603211953-d7e6","69","1","4","4","0",NULL,"69",,"0"
+"4375","1603211953-d7e6","26","1","5","5","0",NULL,"26",,"0"
+"4376","1603211953-d7e6","89","1","20","20","0",NULL,"89",,"0"
+"4377","1603220943-ff22","60","1","12","12","0",NULL,"60",,"0"
+"4378","1603221113-7ef8","99","1","68","68","0",NULL,"99",,"0"
+"4379","1603221135-fc2d","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4380","1603221135-fc2d","52","1","225","225","0",NULL,"52",,"0"
+"4381","1603221144-dae1","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4382","1603221144-dae1","52","1","225","225","0",NULL,"52",,"0"
+"4383","1603221149-6bdd","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4384","1603221149-6bdd","52","1","225","225","0",NULL,"52",,"0"
+"4385","1603240953-f350","99","1","68","68","0",NULL,"99",,"0"
+"4386","1603240953-f350","85","1","98","98","0",NULL,"85",,"0"
+"4387","1603241039-c4b1","60","1","12","12","0",NULL,"60",,"0"
+"4388","1603241044-1079","58","50","0.1","5","0",NULL,"58",,"0"
+"4389","1603241044-1079","67","35","6","210","0",NULL,"67",,"0"
+"4390","1603241054-fb4d","58","100","0.1","10","0",NULL,"58",,"0"
+"4391","1603241054-fb4d","67","35","6","210","0",NULL,"67",,"0"
+"4392","1603241920-8573","85","1","98","98","0",NULL,"85",,"0"
+"4393","1603241920-8573","99","1","68","68","0",NULL,"99",,"0"
+"4394","1603250122-eb23","89","1","20","20","0",NULL,"89",,"0"
+"4395","1603250805-ad1f","70","1","1","1","0",NULL,"70",,"0"
+"4396","1603250805-ad1f","58","1","0.1","0.1","0",NULL,"58",,"0"
+"4397","1603250805-ad1f","59","2","0.1","0.2","0",NULL,"59",,"0"
+"4398","1603250805-ad1f","61","1","0.5","0.5","0",NULL,"61",,"0"
+"4399","1603250805-ad1f","91","2","0.75","1.5","0",NULL,"91",,"0"
+"4400","1603251136-b4e6","59","50","0.1","5","0",NULL,"59",,"0"
+"4401","1603251136-b4e6","58","100","0.1","10","0",NULL,"58",,"0"
+"4402","1603251136-b4e6","46","1","27","27","0",NULL,"46","Popular","0"
+"4403","1603251137-b92f","49","1","14","14","0",NULL,"49",,"0"
+"4404","1603251201-2efc","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4405","1603251249-e686","99","1","68","68","0",NULL,"99",,"0"
+"4406","1603251345-c62f","100","1","123","123","0",NULL,"100",,"0"
+"4407","1603251455-55a3","100","1","123","123","0",NULL,"100",,"0"
+"4408","1603251512-cb36","99","1","68","68","0",NULL,"99",,"0"
+"4409","1603252137-1467","99","1","68","68","0",NULL,"99",,"0"
+"4410","1603252245-3b3a","46","1","27","27","0",NULL,"46","Popular","0"
+"4411","1603260646-3051","26","1","5","5","0",NULL,"26",,"0"
+"4412","1603260646-3051","91","5","0.75","3.75","0",NULL,"91",,"0"
+"4495","1604111133-fc2d","48","1","225","225","0",NULL,"48","Popular","0"
+"4414","1603260848-455e","99","1","68","68","0",NULL,"99",,"0"
+"4415","1603261000-15ad","99","2","68","136","0",NULL,"99",,"0"
+"4416","1603261000-15ad","100","1","123","123","0",NULL,"100",,"0"
+"4417","1603261039-562c","99","1","68","68","0",NULL,"99",,"0"
+"4418","1603261804-4260","99","1","68","68","0",NULL,"99",,"0"
+"4419","1603270848-284c","93","1","16","16","0",NULL,"93",,"0"
+"4420","1603270900-a822","93","1","16","16","0",NULL,"93",,"0"
+"4421","1603271734-1a64","100","1","123","123","0",NULL,"100",,"0"
+"4422","1603281019-c85f","58","100","0.1","10","0",NULL,"58",,"0"
+"4423","1603281019-c85f","63","1","27","27","0",NULL,"63",,"0"
+"4424","1603281019-c85f","46","1","27","27","0",NULL,"46","Popular","0"
+"4425","1603281019-c85f","50","1","27","27","0",NULL,"50",,"0"
+"4426","1603290748-e935","96","1","30","30","0",NULL,"96",,"0"
+"4427","1603291006-1922","58","11","0.1","1.1","0",NULL,"58",,"0"
+"4428","1603291006-1922","91","5","0.75","3.75","0",NULL,"91",,"0"
+"4429","1603291006-1922","61","5","0.5","2.5","0",NULL,"61",,"0"
+"4430","1603291058-562c","99","1","68","68","0",NULL,"99",,"0"
+"4431","1603291101-2b74","91","2","0.75","1.5","0",NULL,"91",,"0"
+"4432","1603291340-53e7","99","1","68","68","0",NULL,"99",,"0"
+"4433","1603291614-a552","99","1","68","68","0",NULL,"99",,"0"
+"4434","1603292029-9cfb","93","1","16","16","0",NULL,"93",,"0"
+"4435","1603300941-9846","99","1","68","68","0",NULL,"99",,"0"
+"4436","1603300946-34b1","99","1","68","68","0",NULL,"99",,"0"
+"4437","1603300949-34b1","99","1","68","68","0",NULL,"99",,"0"
+"4438","1603301055-1922","58","15","0.1","1.5","0",NULL,"58",,"0"
+"4439","1603301055-1922","61","5","0.5","2.5","0",NULL,"61",,"0"
+"4440","1603301055-1922","91","5","0.75","3.75","0",NULL,"91",,"0"
+"4441","1603301115-e25e","99","1","68","68","0",NULL,"99",,"0"
+"4442","1603301119-1922","61","10","0.5","5","0",NULL,"61",,"0"
+"4443","1603301119-1922","91","10","0.75","7.5","0",NULL,"91",,"0"
+"4444","1603301119-1922","58","10","0.1","1","0",NULL,"58",,"0"
+"4445","1603301131-34b1","99","1","68","68","0",NULL,"99",,"0"
+"4446","1603301145-34b1","99","1","68","68","0",NULL,"99",,"0"
+"4447","1603301437-34b1","99","1","68","68","0",NULL,"99",,"0"
+"4448","1603301440-34b1","99","1","68","68","0",NULL,"99",,"0"
+"4449","1603301453-fbd3","99","1","68","68","0",NULL,"99",,"0"
+"4450","1603301816-4beb","85","1","98","98","0",NULL,"85",,"0"
+"4451","1603301822-7c2d","99","1","68","68","0",NULL,"99",,"0"
+"4452","1603302315-3db3","85","1","98","98","0",NULL,"85",,"0"
+"4453","1603302315-3db3","99","1","68","68","0",NULL,"99",,"0"
+"4454","1603310943-e935","63","1","27","27","0",NULL,"63",,"0"
+"4455","1603310943-e935","59","25","0.1","2.5","0",NULL,"59",,"0"
+"4456","1603310943-e935","96","1","30","30","0",NULL,"96",,"0"
+"4457","1603311139-9018","44","1","98","98","0",NULL,"44",,"0"
+"4458","1604011935-0386","99","1","68","68","0",NULL,"99",,"0"
+"4459","1604012150-e040","99","1","68","68","0",NULL,"99",,"0"
+"4460","1604021720-9e58","60","1","12","12","0",NULL,"60",,"0"
+"4461","1604031211-c818","99","1","68","68","0",NULL,"99",,"0"
+"4462","1604031211-c818","60","1","12","12","0",NULL,"60",,"0"
+"4463","1604031439-02ff","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4464","1604031439-02ff","61","1","0.5","0.5","0",NULL,"61",,"0"
+"4465","1604031558-7c82","93","1","16","16","0",NULL,"93",,"0"
+"4466","1604032215-7835","69","1","4","4","0",NULL,"69",,"0"
+"4467","1604032215-7835","60","1","12","12","0",NULL,"60",,"0"
+"4468","1604032325-2e97","99","1","68","68","0",NULL,"99",,"0"
+"4469","1604041155-255e","93","1","16","16","0",NULL,"93",,"0"
+"4470","1604041456-f4b9","70","10","1","10","0",NULL,"70",,"0"
+"4471","1604041456-f4b9","91","10","0.75","7.5","0",NULL,"91",,"0"
+"4472","1604051030-8e96","63","1","27","27","0",NULL,"63",,"0"
+"4473","1604051030-8e96","97","1","55","55","0",NULL,"97",,"0"
+"4474","1604051030-8e96","26","2","5","10","0",NULL,"26",,"0"
+"4475","1604051714-7a5f","99","1","68","68","0",NULL,"99",,"0"
+"4476","1604052109-0c91","45","1","14","14","0",NULL,"45","Popular","0"
+"4477","1604052109-0c91","49","1","14","14","0",NULL,"49",,"0"
+"4478","1604052305-abae","99","1","68","68","0",NULL,"99",,"0"
+"4479","1604060750-9a17","99","1","68","68","0",NULL,"99",,"0"
+"4480","1604061017-40a8","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4481","1604061639-20d4","85","1","98","98","0",NULL,"85",,"0"
+"4482","1604061639-20d4","99","1","68","68","0",NULL,"99",,"0"
+"4483","1604071619-8a4b","99","1","68","68","0",NULL,"99",,"0"
+"4484","1604071708-7d0c","99","1","68","68","0",NULL,"99",,"0"
+"4485","1604071822-69c6","26","1","5","5","0",NULL,"26",,"0"
+"4486","1604071822-69c6","53","1","0.5","0.5","0",NULL,"53",,"0"
+"4487","1604071822-69c6","62","1","14","14","0",NULL,"62",,"0"
+"4488","1604081310-840d","60","1","12","12","0",NULL,"60",,"0"
+"4489","1604081316-1026","96","1","30","30","0",NULL,"96",,"0"
+"4490","1604081546-ab9d","93","1","16","16","0",NULL,"93",,"0"
+"4491","1604091423-12d2","99","1","68","68","0",NULL,"99",,"0"
+"4492","1604091441-5681","60","1","12","12","0",NULL,"60",,"0"
+"4496","1604121307-c74c","79","10","4","40","0",NULL,"79",,"0"
+"4497","1604121557-a4c3","99","1","68","68","0",NULL,"99",,"0"
+"4498","1604121557-a4c3","69","1","4","4","0",NULL,"69",,"0"
+"4499","1604121557-a4c3","66","1","4","4","0",NULL,"66",,"0"
+"4500","1604121557-a4c3","60","1","12","12","0",NULL,"60",,"0"
+"4501","1604122047-5392","60","1","12","12","0",NULL,"60",,"0"
+"4502","1604131453-4ea1","67","1","6","6","0",NULL,"67",,"0"
+"4503","1604131453-4ea1","68","1","9","9","0",NULL,"68",,"0"
+"4504","1604131453-4ea1","60","1","12","12","0",NULL,"60",,"0"
+"4505","1604141422-3aa1","49","2","14","28","0",NULL,"49",,"0"
+"4506","1604141430-a1b5","99","1","68","68","0",NULL,"99",,"0"
+"4507","1604141437-a1b5","99","1","68","68","0",NULL,"99",,"0"
+"4508","1604141443-a1b5","99","1","68","68","0",NULL,"99",,"0"
+"4509","1604150927-3352","60","1","12","12","0",NULL,"60",,"0"
+"4510","1604151032-0dd3","62","1","14","14","0",NULL,"62",,"0"
+"4511","1604151434-b063","45","1","14","14","0",NULL,"45","Popular","0"
+"4512","1604151456-e935","62","1","14","14","0",NULL,"62",,"0"
+"4513","1604151456-e935","45","1","14","14","0",NULL,"45","Popular","0"
+"4514","1604151456-e935","49","1","14","14","0",NULL,"49",,"0"
+"4515","1604161219-2307","60","1","12","12","0",NULL,"60",,"0"
+"4516","1604161426-b3d4","60","1","12","12","0",NULL,"60",,"0"
+"4517","1604161756-774a","60","1","12","12","0",NULL,"60",,"0"
+"4518","1604162053-969f","60","1","12","12","0",NULL,"60",,"0"
+"4519","1604162130-a28d","63","1","27","27","0",NULL,"63",,"0"
+"4520","1604162130-a28d","96","1","30","30","0",NULL,"96",,"0"
+"4521","1604170105-e985","45","1","14","14","0",NULL,"45","Popular","0"
+"4522","1604170105-e985","58","50","0.1","5","0",NULL,"58",,"0"
+"4523","1604170105-e985","49","1","14","14","0",NULL,"49",,"0"
+"4524","1604171132-b9ee","60","1","12","12","0",NULL,"60",,"0"
+"4525","1604171157-8ae6","101","1","15","15","0",NULL,"101",,"0"
+"4526","1604171157-8ae6","68","1","9","9","0",NULL,"68",,"0"
+"4527","1604171157-8ae6","87","1","4","4","0",NULL,"87",,"0"
+"4528","1604171157-8ae6","60","1","12","12","0",NULL,"60",,"0"
+"4529","1604171643-13b0","60","1","12","12","0",NULL,"60",,"0"
+"4530","1604181133-75c6","93","1","16","16","0",NULL,"93",,"0"
+"4531","1604181133-75c6","49","1","14","14","0",NULL,"49",,"0"
+"4532","1604181314-498b","75","1","4","4","0",NULL,"75",,"0"
+"4533","1604181314-498b","101","1","15","15","0",NULL,"101",,"0"
+"4534","1604181314-498b","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4535","1604181314-498b","60","1","12","12","0",NULL,"60",,"0"
+"4536","1604181437-c6eb","99","1","68","68","0",NULL,"99",,"0"
+"4537","1604191111-d2d2","101","1","15","15","0",NULL,"101",,"0"
+"4538","1604191918-87a1","60","1","12","12","0",NULL,"60",,"0"
+"4539","1604191932-f9ba","60","1","12","12","0",NULL,"60",,"0"
+"4540","1604201434-8d79","85","1","98","98","0",NULL,"85",,"0"
+"4541","1604201434-8d79","44","1","98","98","0",NULL,"44",,"0"
+"4542","1604201434-8d79","99","1","68","68","0",NULL,"99",,"0"
+"4543","1604210227-4ebf","26","1","5","5","0",NULL,"26",,"0"
+"4544","1604210227-4ebf","60","1","12","12","0",NULL,"60",,"0"
+"4545","1604210227-4ebf","91","4","0.75","3","0",NULL,"91",,"0"
+"4546","1604210227-4ebf","101","1","15","15","0",NULL,"101",,"0"
+"4547","1604211144-83a2","100","1","123","123","0",NULL,"100",,"0"
+"4548","1604212203-90c2","99","1","68","68","0",NULL,"99",,"0"
+"4549","1604221012-14d7","59","1","0.1","0.1","0",NULL,"59",,"0"
+"4550","1604221012-14d7","70","1","1","1","0",NULL,"70",,"0"
+"4551","1604221041-ad08","99","1","68","68","0",NULL,"99",,"0"
+"4552","1604221137-224a","87","1","4","4","0",NULL,"87",,"0"
+"4553","1604221137-224a","96","1","30","30","0",NULL,"96",,"0"
+"4554","1604221137-224a","101","1","15","15","0",NULL,"101",,"0"
+"4555","1604221444-a5b3","60","1","12","12","0",NULL,"60",,"0"
+"4556","1604231609-8e31","85","1","98","98","0",NULL,"85",,"0"
+"4557","1604231609-8e31","99","1","68","68","0",NULL,"99",,"0"
+"4558","1604232332-1164","60","2","12","24","0",NULL,"60",,"0"
+"4559","1604241908-ccc2","60","1","12","12","0",NULL,"60",,"0"
+"4560","1604251143-1382","91","10","0.75","7.5","0",NULL,"91",,"0"
+"4561","1604252221-ec62","46","1","27","27","0",NULL,"46","Popular","0"
+"4562","1604261321-2678","100","1","123","123","0",NULL,"100",,"0"
+"4563","1604261323-89b5","100","1","123","123","0",NULL,"100",,"0"
+"4564","1604262153-d59e","70","1","1","1","0",NULL,"70",,"0"
+"4565","1604262153-d59e","77","1","4","4","0",NULL,"77",,"0"
+"4566","1604262153-d59e","73","1","4","4","0",NULL,"73",,"0"
+"4567","1604262153-d59e","101","1","15","15","0",NULL,"101",,"0"
+"4568","1604270627-af1b","67","1","6","6","0",NULL,"67",,"0"
+"4569","1604270627-af1b","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4570","1604270629-af1b","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4571","1604270629-af1b","67","1","6","6","0",NULL,"67",,"0"
+"4572","1604271306-1a85","59","100","0.1","10","0",NULL,"59",,"0"
+"4573","1604271306-1a85","50","1","27","27","0",NULL,"50",,"0"
+"4574","1604271306-1a85","58","100","0.1","10","0",NULL,"58",,"0"
+"4575","1604271306-1a85","46","1","27","27","0",NULL,"46","Popular","0"
+"4576","1604271312-8c94","59","100","0.1","10","0",NULL,"59",,"0"
+"4577","1604271312-8c94","50","1","27","27","0",NULL,"50",,"0"
+"4578","1604271312-8c94","58","100","0.1","10","0",NULL,"58",,"0"
+"4579","1604271312-8c94","46","1","27","27","0",NULL,"46","Popular","0"
+"4580","1604291314-fcd3","60","1","12","12","0",NULL,"60",,"0"
+"4581","1604291355-da83","45","1","14","14","0",NULL,"45","Popular","0"
+"4582","1604291355-da83","49","1","14","14","0",NULL,"49",,"0"
+"4583","1604300913-9bc0","60","1","12","12","0",NULL,"60",,"0"
+"4584","1604301421-8b72","44","1","98","98","0",NULL,"44",,"0"
+"4585","1604301421-8b72","69","1","4","4","0",NULL,"69",,"0"
+"4586","1604301421-8b72","67","1","6","6","0",NULL,"67",,"0"
+"4587","1604301421-8b72","82","1","4","4","0",NULL,"82",,"0"
+"4588","1604301421-8b72","91","2","0.75","1.5","0",NULL,"91",,"0"
+"4589","1604301648-1da4","99","1","68","68","0",NULL,"99",,"0"
+"4590","1604301716-ccc8","99","1","68","68","0",NULL,"99",,"0"
+"4591","1605011220-2b7a","93","1","16","16","0",NULL,"93",,"0"
+"4592","1605021607-a04f","60","1","12","12","0",NULL,"60",,"0"
+"4593","1605021611-b5f4","45","1","14","14","0",NULL,"45","Popular","0"
+"4594","1605021716-2efc","91","4","0.75","3","0",NULL,"91",,"0"
+"4595","1605021716-2efc","101","1","15","15","0",NULL,"101",,"0"
+"4596","1605021752-f0b5","60","1","12","12","0",NULL,"60",,"0"
+"4597","1605021752-f0b5","101","1","15","15","0",NULL,"101",,"0"
+"4598","1605021816-8582","68","1","9","9","0",NULL,"68",,"0"
+"4599","1605021816-8582","59","30","0.1","3","0",NULL,"59",,"0"
+"4600","1605021816-8582","66","1","4","4","0",NULL,"66",,"0"
+"4601","1605021816-8582","45","1","14","14","0",NULL,"45","Popular","0"
+"4602","1605021816-8582","49","1","14","14","0",NULL,"49",,"0"
+"4603","1605022236-a8ee","101","1","15","15","0",NULL,"101",,"0"
+"4604","1605022236-a8ee","26","1","5","5","0",NULL,"26",,"0"
+"4605","1605030028-539b","93","1","16","16","0",NULL,"93",,"0"
+"4606","1605030028-539b","67","1","6","6","0",NULL,"67",,"0"
+"4607","1605030028-539b","45","1","14","14","0",NULL,"45","Popular","0"
+"4608","1605030028-539b","69","1","4","4","0",NULL,"69",,"0"
+"4609","1605030028-539b","49","1","14","14","0",NULL,"49",,"0"
+"4610","1605030028-539b","77","1","4","4","0",NULL,"77",,"0"
+"4611","1605030028-539b","73","1","4","4","0",NULL,"73",,"0"
+"4612","1605030028-539b","26","1","5","5","0",NULL,"26",,"0"
+"4613","1605030028-539b","101","1","15","15","0",NULL,"101",,"0"
+"4614","1605030953-9b9b","101","1","15","15","0",NULL,"101",,"0"
+"4615","1605030953-9b9b","59","1","0.1","0.1","0",NULL,"59",,"0"
+"4616","1605030953-9b9b","45","1","14","14","0",NULL,"45","Popular","0"
+"4617","1605030953-9b9b","61","1","0.5","0.5","0",NULL,"61",,"0"
+"4618","1605030956-8476","101","1","15","15","0",NULL,"101",,"0"
+"4619","1605031248-813e","101","1","15","15","0",NULL,"101",,"0"
+"4620","1605041420-a358","99","1","68","68","0",NULL,"99",,"0"
+"4621","1605041533-5a8a","99","1","68","68","0",NULL,"99",,"0"
+"4622","1605041650-83ac","60","1","12","12","0",NULL,"60",,"0"
+"4623","1605051812-5354","84","1","158","158","0",NULL,"84",,"0"
+"4624","1605051812-5354","100","1","123","123","0",NULL,"100",,"0"
+"4625","1605051918-f31c","85","1","98","98","0",NULL,"85",,"0"
+"4626","1605051918-f31c","44","1","98","98","0",NULL,"44",,"0"
+"4627","1605081148-301d","60","1","12","12","0",NULL,"60",,"0"
+"4628","1605081458-406f","58","100","0.1","10","0",NULL,"58",,"0"
+"4629","1605081458-406f","63","1","27","27","0",NULL,"63",,"0"
+"4630","1605081829-800a","99","1","68","68","0",NULL,"99",,"0"
+"4631","1605081829-800a","85","1","98","98","0",NULL,"85",,"0"
+"4632","1605090854-d2d2","60","1","12","12","0",NULL,"60",,"0"
+"4633","1605091052-186b","91","2","0.75","1.5","0",NULL,"91",,"0"
+"4634","1605101417-36ed","60","1","12","12","0",NULL,"60",,"0"
+"4635","1605101541-48af","85","2","98","196","0",NULL,"85",,"0"
+"4636","1605101541-48af","99","2","68","136","0",NULL,"99",,"0"
+"4637","1605101600-fd8b","101","2","15","30","0",NULL,"101",,"0"
+"4638","1605110813-707a","63","2","27","54","0",NULL,"63",,"0"
+"4639","1605110813-707a","46","2","27","54","0",NULL,"46","Popular","0"
+"4640","1605110813-707a","58","500","0.1","50","0",NULL,"58",,"0"
+"4641","1605110813-707a","50","2","27","54","0",NULL,"50",,"0"
+"4642","1605121820-9d3d","101","1","15","15","0",NULL,"101",,"0"
+"4643","1605130853-4b9a","100","1","123","123","0",NULL,"100",,"0"
+"4644","1605131200-3480","49","1","14","14","0",NULL,"49",,"0"
+"4645","1605131200-3480","69","1","4","4","0",NULL,"69",,"0"
+"4646","1605131200-3480","60","1","12","12","0",NULL,"60",,"0"
+"4647","1605131242-24bd","87","1","4","4","0",NULL,"87",,"0"
+"4648","1605131242-24bd","85","1","98","98","0",NULL,"85",,"0"
+"4649","1605131242-24bd","99","1","68","68","0",NULL,"99",,"0"
+"4650","1605131300-cb7f","60","1","12","12","0",NULL,"60",,"0"
+"4651","1605131300-cb7f","91","6","0.75","4.5","0",NULL,"91",,"0"
+"4652","1605131300-cb7f","101","1","15","15","0",NULL,"101",,"0"
+"4653","1605131345-ebf9","99","1","68","68","0",NULL,"99",,"0"
+"4654","1605131403-24bd","85","1","98","98","0",NULL,"85",,"0"
+"4655","1605131403-24bd","87","1","4","4","0",NULL,"87",,"0"
+"4656","1605131403-24bd","99","1","68","68","0",NULL,"99",,"0"
+"4657","1605131405-a314","99","1","68","68","0",NULL,"99",,"0"
+"4658","1605140835-8e96","58","100","0.1","10","0",NULL,"58",,"0"
+"4659","1605140835-8e96","50","1","27","27","0",NULL,"50",,"0"
+"4660","1605140835-8e96","55","1","27","27","0",NULL,"55",,"0"
+"4661","1605140835-8e96","101","4","15","60","0",NULL,"101",,"0"
+"4662","1605141757-455a","101","1","15","15","0",NULL,"101",,"0"
+"4663","1605161107-8196","100","1","123","123","0",NULL,"100",,"0"
+"4664","1605161322-17d9","60","1","12","12","0",NULL,"60",,"0"
+"4665","1605161322-17d9","85","1","98","98","0",NULL,"85",,"0"
+"4666","1605161532-4041","67","1","6","6","0",NULL,"67",,"0"
+"4667","1605161532-4041","87","1","4","4","0",NULL,"87",,"0"
+"4668","1605161532-4041","101","1","15","15","0",NULL,"101",,"0"
+"4669","1605161532-4041","99","1","68","68","0",NULL,"99",,"0"
+"4670","1605161601-c98f","58","50","0.1","5","0",NULL,"58",,"0"
+"4671","1605161601-c98f","49","1","14","14","0",NULL,"49",,"0"
+"4672","1605170049-aa2e","101","1","15","15","0",NULL,"101",,"0"
+"4673","1605171657-64db","54","1","14","14","0",NULL,"54",,"0"
+"4674","1605171740-388b","99","1","68","68","0",NULL,"99",,"0"
+"4675","1605171947-eb6d","67","1","6","6","0",NULL,"67",,"0"
+"4676","1605171947-eb6d","59","1","0.1","0.1","0",NULL,"59",,"0"
+"4677","1605171947-eb6d","82","1","4","4","0",NULL,"82",,"0"
+"4678","1605171947-eb6d","60","1","12","12","0",NULL,"60",,"0"
+"4679","1605181318-4a56","101","1","15","15","0",NULL,"101",,"0"
+"4680","1605182305-6bd6","101","1","15","15","0",NULL,"101",,"0"
+"4681","1605191540-b8b2","101","1","15","15","0",NULL,"101",,"0"
+"4682","1605191710-e18e","101","1","15","15","0",NULL,"101",,"0"
+"4683","1605192006-63ff","46","1","27","27","0",NULL,"46","Popular","0"
+"4684","1605192044-d43d","101","1","15","15","0",NULL,"101",,"0"
+"4685","1605192215-34f6","101","1","15","15","0",NULL,"101",,"0"
+"4686","1605200844-29aa","101","1","15","15","0",NULL,"101",,"0"
+"4687","1605200923-f448","101","1","15","15","0",NULL,"101",,"0"
+"4688","1605200941-f570","26","1","5","5","0",NULL,"26",,"0"
+"4689","1605200941-f570","101","1","15","15","0",NULL,"101",,"0"
+"4690","1605201125-6637","79","1","4","4","0",NULL,"79",,"0"
+"4691","1605201125-6637","67","1","6","6","0",NULL,"67",,"0"
+"4692","1605201125-6637","82","1","4","4","0",NULL,"82",,"0"
+"4693","1605201125-6637","68","1","9","9","0",NULL,"68",,"0"
+"4694","1605201125-6637","87","1","4","4","0",NULL,"87",,"0"
+"4695","1605201125-6637","49","1","14","14","0",NULL,"49",,"0"
+"4696","1605201125-6637","45","1","14","14","0",NULL,"45","Popular","0"
+"4697","1605201139-64db","62","1","14","14","0",NULL,"62",,"0"
+"4698","1605201142-7532","99","1","68","68","0",NULL,"99",,"0"
+"4699","1605201142-7532","71","1","14","14","0",NULL,"71",,"0"
+"4700","1605201142-7532","101","1","15","15","0",NULL,"101",,"0"
+"4701","1605201646-3c49","101","1","15","15","0",NULL,"101",,"0"
+"4702","1605201753-3108","101","1","15","15","0",NULL,"101",,"0"
+"4703","1605211043-38a0","101","1","15","15","0",NULL,"101",,"0"
+"4704","1605211047-38a0","101","1","15","15","0",NULL,"101",,"0"
+"4705","1605212312-176e","87","1","4","4","0",NULL,"87",,"0"
+"4706","1605212312-176e","60","1","12","12","0",NULL,"60",,"0"
+"4707","1605221126-daa9","26","1","5","5","0",NULL,"26",,"0"
+"4708","1605221126-daa9","101","1","15","15","0",NULL,"101",,"0"
+"4709","1605221259-23be","99","1","68","68","0",NULL,"99",,"0"
+"4710","1605240119-62d7","69","1","4","4","0",NULL,"69",,"0"
+"4711","1605240119-62d7","101","1","15","15","0",NULL,"101",,"0"
+"4712","1605240410-17d9","99","1","68","68","0",NULL,"99",,"0"
+"4713","1605241107-f37c","101","2","15","30","0",NULL,"101",,"0"
+"4714","1605241218-d385","101","1","15","15","0",NULL,"101",,"0"
+"4715","1605250943-e43c","60","1","12","12","0",NULL,"60",,"0"
+"4716","1605251333-c72e","101","4","15","60","0",NULL,"101",,"0"
+"4717","1605252131-daa9","101","1","15","15","0",NULL,"101",,"0"
+"4718","1605252131-daa9","26","1","5","5","0",NULL,"26",,"0"
+"4719","1605261110-3407","62","1","14","14","0",NULL,"62",,"0"
+"4720","1605261110-3407","59","50","0.1","5","0",NULL,"59",,"0"
+"4721","1605261110-3407","91","2","0.75","1.5","0",NULL,"91",,"0"
+"4722","1605261110-3407","49","1","14","14","0",NULL,"49",,"0"
+"4723","1605261110-3407","45","2","14","28","0",NULL,"45","Popular","0"
+"4724","1605261110-3407","58","100","0.1","10","0",NULL,"58",,"0"
+"4725","1605271345-5401","45","1","14","14","0",NULL,"45","Popular","0"
+"4726","1605271405-f330","45","1","14","14","0",NULL,"45","Popular","0"
+"4727","1605271802-a422","99","1","68","68","0",NULL,"99",,"0"
+"4728","1605271802-a422","44","1","98","98","0",NULL,"44",,"0"
+"4729","1605271802-a422","85","1","98","98","0",NULL,"85",,"0"
+"4730","1605281432-4cdc","73","1","4","4","0",NULL,"73",,"0"
+"4731","1605281432-4cdc","101","1","15","15","0",NULL,"101",,"0"
+"4732","1605281507-ac2a","101","1","15","15","0",NULL,"101",,"0"
+"4733","1605302240-b262","67","1","6","6","0",NULL,"67",,"0"
+"4734","1605311318-5d4a","60","1","12","12","0",NULL,"60",,"0"
+"4735","1605312304-4462","101","1","15","15","0",NULL,"101",,"0"
+"4736","1606011014-0a15","101","1","15","15","0",NULL,"101",,"0"
+"4737","1606011440-9ddc","101","1","15","15","0",NULL,"101",,"0"
+"4738","1606011833-7e49","60","1","12","12","0",NULL,"60",,"0"
+"4739","1606031249-1056","50","5","27","135","0",NULL,"50",,"0"
+"4740","1606032147-daa9","26","1","5","5","0",NULL,"26",,"0"
+"4741","1606032147-daa9","101","1","15","15","0",NULL,"101",,"0"
+"4742","1606042059-0dc8","101","1","15","15","0",NULL,"101",,"0"
+"4743","1606042059-0dc8","99","1","68","68","0",NULL,"99",,"0"
+"4744","1606050132-d965","44","1","98","98","0",NULL,"44",,"0"
+"4745","1606051126-96f6","60","5","12","60","0",NULL,"60",,"0"
+"4746","1606061058-8505","58","50","0.1","5","0",NULL,"58",,"0"
+"4747","1606061058-8505","49","1","14","14","0",NULL,"49",,"0"
+"4748","1606061058-8505","59","100","0.1","10","0",NULL,"59",,"0"
+"4749","1606061239-5143","26","1","5","5","0",NULL,"26",,"0"
+"4750","1606061239-5143","60","1","12","12","0",NULL,"60",,"0"
+"4751","1606062017-97db","47","1","125","125","0",NULL,"47","Popular","0"
+"4752","1606070645-d924","47","1","125","125","0",NULL,"47","Popular","0"
+"4753","1606070905-ab41","101","1","15","15","0",NULL,"101",,"0"
+"4754","1606070959-24c6","45","1","14","14","0",NULL,"45","Popular","0"
+"4755","1606070959-24c6","62","1","14","14","0",NULL,"62",,"0"
+"4756","1606070959-24c6","58","50","0.1","5","0",NULL,"58",,"0"
+"4757","1606070959-24c6","26","1","5","5","0",NULL,"26",,"0"
+"4758","1606070959-24c6","101","1","15","15","0",NULL,"101",,"0"
+"4759","1606071421-188f","45","1","14","14","0",NULL,"45","Popular","0"
+"4760","1606071421-188f","59","1","0.1","0.1","0",NULL,"59",,"0"
+"4761","1606071421-188f","62","1","14","14","0",NULL,"62",,"0"
+"4762","1606071421-188f","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4763","1606071421-188f","69","2","4","8","0",NULL,"69",,"0"
+"4764","1606071421-188f","75","1","4","4","0",NULL,"75",,"0"
+"4765","1606071421-188f","101","1","15","15","0",NULL,"101",,"0"
+"4766","1606080942-c50b","101","1","15","15","0",NULL,"101",,"0"
+"4767","1606081046-c2f0","49","1","14","14","0",NULL,"49",,"0"
+"4768","1606081046-c2f0","67","1","6","6","0",NULL,"67",,"0"
+"4769","1606081046-c2f0","63","1","27","27","0",NULL,"63",,"0"
+"4770","1606081046-c2f0","59","1","0.1","0.1","0",NULL,"59",,"0"
+"4771","1606081046-c2f0","58","1","0.1","0.1","0",NULL,"58",,"0"
+"4772","1606081046-c2f0","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4773","1606081046-c2f0","46","1","27","27","0",NULL,"46","Popular","0"
+"4774","1606081717-62c8","60","1","12","12","0",NULL,"60",,"0"
+"4775","1606091150-40b2","60","1","12","12","0",NULL,"60",,"0"
+"4776","1606091424-737f","85","1","98","98","0",NULL,"85",,"0"
+"4777","1606091451-907a","101","1","15","15","0",NULL,"101",,"0"
+"4778","1606101358-56a8","60","1","12","12","0",NULL,"60",,"0"
+"4779","1606101414-7e64","26","1","5","5","0",NULL,"26",,"0"
+"4780","1606111213-ed05","59","50","0.1","5","0",NULL,"59",,"0"
+"4781","1606111213-ed05","58","50","0.1","5","0",NULL,"58",,"0"
+"4782","1606111628-214c","60","1","12","12","0",NULL,"60",,"0"
+"4783","1606111739-1373","101","1","15","15","0",NULL,"101",,"0"
+"4784","1606111825-5199","101","1","15","15","0",NULL,"101",,"0"
+"4785","1606121444-9c24","60","1","12","12","0",NULL,"60",,"0"
+"4786","1606121809-1841","100","1","123","123","0",NULL,"100",,"0"
+"4787","1606131710-2900","47","1","125","125","0",NULL,"47","Popular","0"
+"4788","1606141401-b262","60","1","12","12","0",NULL,"60",,"0"
+"4789","1606141433-e4c9","101","1","15","15","0",NULL,"101",,"0"
+"4790","1606141733-2e4a","60","1","12","12","0",NULL,"60",,"0"
+"4791","1606141844-65c9","60","1","12","12","0",NULL,"60",,"0"
+"4792","1606160159-1d97","101","1","15","15","0",NULL,"101",,"0"
+"4793","1606162205-a736","26","1","5","5","0",NULL,"26",,"0"
+"4794","1606170936-47d1","60","1","12","12","0",NULL,"60",,"0"
+"4795","1606181227-4254","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4796","1606181234-25a3","63","1","27","27","0",NULL,"63",,"0"
+"4797","1606181234-25a3","59","100","0.1","10","0",NULL,"59",,"0"
+"4798","1606181234-25a3","46","1","27","27","0",NULL,"46","Popular","0"
+"4799","1606181234-25a3","58","100","0.1","10","0",NULL,"58",,"0"
+"4800","1606201154-81c3","60","1","12","12","0",NULL,"60",,"0"
+"4801","1606211437-7b64","60","1","12","12","0",NULL,"60",,"0"
+"4802","1606211613-50bc","60","1","12","12","0",NULL,"60",,"0"
+"4803","1606221622-8e96","60","2","12","24","0",NULL,"60",,"0"
+"4804","1606222227-100d","60","1","12","12","0",NULL,"60",,"0"
+"4805","1606230844-51c7","101","1","15","15","0",NULL,"101",,"0"
+"4806","1606231333-12d2","101","1","15","15","0",NULL,"101",,"0"
+"4807","1606232125-cd7e","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4808","1606241240-5f35","70","1","1","1","0",NULL,"70",,"0"
+"4809","1606241240-5f35","67","1","6","6","0",NULL,"67",,"0"
+"4810","1606241240-5f35","53","1","0.5","0.5","0",NULL,"53",,"0"
+"4811","1606241240-5f35","101","1","15","15","0",NULL,"101",,"0"
+"4812","1606241240-5f35","43","1","158","158","0",NULL,"43",,"0"
+"4813","1606241253-5f35","100","1","123","123","0",NULL,"100",,"0"
+"4814","1606241847-3334","39","1","441.6","441.6","0",NULL,"39",,"0"
+"4815","1606242234-5929","85","1","98","98","0",NULL,"85",,"0"
+"4816","1606242234-5929","44","1","98","98","0",NULL,"44",,"0"
+"4817","1606250924-ba0f","93","1","16","16","0",NULL,"93",,"0"
+"4818","1606251109-fc6d","60","1","12","12","0",NULL,"60",,"0"
+"4819","1606251109-fc6d","100","1","123","123","0",NULL,"100",,"0"
+"4820","1606251550-3df6","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4821","1606251813-1026","69","10","4","40","0",NULL,"69",,"0"
+"4822","1606251813-1026","63","1","27","27","0",NULL,"63",,"0"
+"4823","1606252304-abfd","26","1","5","5","0",NULL,"26",,"0"
+"4824","1606252304-abfd","101","1","15","15","0",NULL,"101",,"0"
+"4825","1606260932-66ed","91","4","0.75","3","0",NULL,"91",,"0"
+"4826","1606261216-2129","85","1","98","98","0",NULL,"85",,"0"
+"4827","1606261216-2129","99","1","68","68","0",NULL,"99",,"0"
+"4828","1606261525-824a","45","1","14","14","0",NULL,"45","Popular","0"
+"4829","1606261525-824a","49","1","14","14","0",NULL,"49",,"0"
+"4830","1606262156-08ba","60","1","12","12","0",NULL,"60",,"0"
+"4831","1606271430-fae4","91","4","0.75","3","0",NULL,"91",,"0"
+"4832","1606271606-994a","47","1","125","125","0",NULL,"47","Popular","0"
+"4833","1606281755-5704","60","1","12","12","0",NULL,"60",,"0"
+"4834","1606290706-d7dc","60","1","12","12","0",NULL,"60",,"0"
+"4835","1606291950-584b","99","1","68","68","0",NULL,"99",,"0"
+"4836","1606300848-f66a","60","1","12","12","0",NULL,"60",,"0"
+"4837","1606301504-6e21","60","1","12","12","0",NULL,"60",,"0"
+"4838","1607011029-3777","60","1","12","12","0",NULL,"60",,"0"
+"4839","1607011029-3777","99","1","68","68","0",NULL,"99",,"0"
+"4840","1607011549-60a5","101","1","15","15","0",NULL,"101",,"0"
+"4841","1607020058-2893","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4842","1607020058-2893","60","1","12","12","0",NULL,"60",,"0"
+"4843","1607051006-53d3","93","1","16","16","0",NULL,"93",,"0"
+"4844","1607051006-53d3","67","2","6","12","0",NULL,"67",,"0"
+"4845","1607051006-53d3","62","1","14","14","0",NULL,"62",,"0"
+"4846","1607051006-53d3","60","1","12","12","0",NULL,"60",,"0"
+"4847","1607051006-53d3","87","1","4","4","0",NULL,"87",,"0"
+"4848","1607051006-53d3","59","50","0.1","5","0",NULL,"59",,"0"
+"4849","1607051006-53d3","75","2","4","8","0",NULL,"75",,"0"
+"4850","1607051006-53d3","69","1","4","4","0",NULL,"69",,"0"
+"4851","1607051006-53d3","26","3","5","15","0",NULL,"26",,"0"
+"4852","1607051006-53d3","101","1","15","15","0",NULL,"101",,"0"
+"4853","1607052004-393a","60","1","12","12","0",NULL,"60",,"0"
+"4854","1607061309-abe0","99","1","68","68","0",NULL,"99",,"0"
+"4855","1607071218-b5ae","73","1","4","4","0",NULL,"73",,"0"
+"4856","1607071218-b5ae","58","11","0.1","1.1","0",NULL,"58",,"0"
+"4857","1607071218-b5ae","59","11","0.1","1.1","0",NULL,"59",,"0"
+"4858","1607071218-b5ae","61","4","0.5","2","0",NULL,"61",,"0"
+"4859","1607090911-eb55","60","1","12","12","0",NULL,"60",,"0"
+"4860","1607090943-907a","101","1","15","15","0",NULL,"101",,"0"
+"4861","1607091517-ef0f","26","1","5","5","0",NULL,"26",,"0"
+"4862","1607091517-ef0f","101","1","15","15","0",NULL,"101",,"0"
+"4863","1607091517-ef0f","87","1","4","4","0",NULL,"87",,"0"
+"4864","1607091517-ef0f","60","1","12","12","0",NULL,"60",,"0"
+"4865","1607101501-d0e1","82","1","4","4","0",NULL,"82",,"0"
+"4866","1607101501-d0e1","93","1","16","16","0",NULL,"93",,"0"
+"4867","1607101501-d0e1","60","1","12","12","0",NULL,"60",,"0"
+"4868","1607101544-b2d4","75","1","4","4","0",NULL,"75",,"0"
+"4869","1607101544-b2d4","61","1","0.5","0.5","0",NULL,"61",,"0"
+"4870","1607101544-b2d4","53","1","0.5","0.5","0",NULL,"53",,"0"
+"4871","1607101544-b2d4","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4872","1607101800-0196","96","1","30","30","0",NULL,"96",,"0"
+"4873","1607102023-8745","60","1","12","12","0",NULL,"60",,"0"
+"4874","1607110950-e6ab","60","1","12","12","0",NULL,"60",,"0"
+"4875","1607111606-a440","87","1","4","4","0",NULL,"87",,"0"
+"4876","1607111606-a440","67","1","6","6","0",NULL,"67",,"0"
+"4877","1607111606-a440","60","1","12","12","0",NULL,"60",,"0"
+"4878","1607131837-8472","60","1","12","12","0",NULL,"60",,"0"
+"4879","1607141140-4a40","67","1","6","6","0",NULL,"67",,"0"
+"4880","1607141140-4a40","60","1","12","12","0",NULL,"60",,"0"
+"4881","1607141340-c0a3","60","1","12","12","0",NULL,"60",,"0"
+"4882","1607151037-116a","101","1","15","15","0",NULL,"101",,"0"
+"4883","1607151037-116a","26","1","5","5","0",NULL,"26",,"0"
+"4884","1607171729-892c","60","1","12","12","0",NULL,"60",,"0"
+"4885","1607172343-089e","60","1","12","12","0",NULL,"60",,"0"
+"4886","1607181418-0278","50","1","27","27","0",NULL,"50",,"0"
+"4887","1607181418-0278","46","1","27","27","0",NULL,"46","Popular","0"
+"4888","1607181418-0278","58","100","0.1","10","0",NULL,"58",,"0"
+"4889","1607181525-393a","60","1","12","12","0",NULL,"60",,"0"
+"4890","1607191030-f9a1","85","1","98","98","0",NULL,"85",,"0"
+"4891","1607191030-f9a1","99","1","68","68","0",NULL,"99",,"0"
+"4892","1607191645-dbdd","60","1","12","12","0",NULL,"60",,"0"
+"4893","1607210726-8472","99","1","68","68","0",NULL,"99",,"0"
+"4894","1607210726-8472","101","1","15","15","0",NULL,"101",,"0"
+"4895","1607211013-47f9","58","50","0.1","5","0",NULL,"58",,"0"
+"4896","1607211013-47f9","62","1","14","14","0",NULL,"62",,"0"
+"4897","1607211013-47f9","91","5","0.75","3.75","0",NULL,"91",,"0"
+"4898","1607211013-47f9","45","1","14","14","0",NULL,"45","Popular","0"
+"4899","1607211021-ab02","58","1","0.1","0.1","0",NULL,"58",,"0"
+"4900","1607211021-ab02","62","1","14","14","0",NULL,"62",,"0"
+"4901","1607211021-ab02","45","1","14","14","0",NULL,"45","Popular","0"
+"4902","1607211021-ab02","91","10","0.75","7.5","0",NULL,"91",,"0"
+"4903","1607211508-d3a4","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4904","1607211523-4de5","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4905","1607220840-c62f","100","1","123","123","0",NULL,"100",,"0"
+"4906","1607221005-21b5","91","12","0.75","9","0",NULL,"91",,"0"
+"4907","1607221312-4a53","100","1","123","123","0",NULL,"100",,"0"
+"4908","1607221332-4a53","100","1","123","123","0",NULL,"100",,"0"
+"4909","1607221346-4a53","100","1","123","123","0",NULL,"100",,"0"
+"4910","1607221534-4111","58","100","0.1","10","0",NULL,"58",,"0"
+"4911","1607221534-4111","63","2","27","54","0",NULL,"63",,"0"
+"4912","1607221534-4111","46","2","27","54","0",NULL,"46","Popular","0"
+"4913","1607221534-4111","50","1","27","27","0",NULL,"50",,"0"
+"4914","1607221657-7bc0","93","1","16","16","0",NULL,"93",,"0"
+"4915","1607222146-cb5c","99","1","68","68","0",NULL,"99",,"0"
+"4916","1607222146-cb5c","100","1","123","123","0",NULL,"100",,"0"
+"4917","1607222209-eecb","60","1","12","12","0",NULL,"60",,"0"
+"4918","1607230918-0887","26","1","5","5","0",NULL,"26",,"0"
+"4919","1607230918-0887","96","1","30","30","0",NULL,"96",,"0"
+"4920","1607230926-0887","101","1","15","15","0",NULL,"101",,"0"
+"4921","1607230926-0887","96","1","30","30","0",NULL,"96",,"0"
+"4922","1607230946-30cf","99","1","68","68","0",NULL,"99",,"0"
+"4923","1607240847-44a3","99","1","68","68","0",NULL,"99",,"0"
+"4924","1607240948-29b7","60","1","12","12","0",NULL,"60",,"0"
+"4925","1607250909-2832","100","1","123","123","0",NULL,"100",,"0"
+"4926","1607251231-2b50","99","1","68","68","0",NULL,"99",,"0"
+"4927","1607251231-2b50","93","1","16","16","0",NULL,"93",,"0"
+"4928","1607251233-35dc","39","1","441.6","441.6","0",NULL,"39",,"0"
+"4929","1607251238-2cab","100","1","123","123","0",NULL,"100",,"0"
+"4930","1607251400-f9fb","100","1","123","123","0",NULL,"100",,"0"
+"4931","1607260852-567a","46","1","27","27","0",NULL,"46","Popular","0"
+"4932","1607261544-c887","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4933","1607261544-c887","45","1","14","14","0",NULL,"45","Popular","0"
+"4934","1607261644-3200","101","1","15","15","0",NULL,"101",,"0"
+"4935","1607261644-3200","75","1","4","4","0",NULL,"75",,"0"
+"4936","1607261644-3200","66","1","4","4","0",NULL,"66",,"0"
+"4937","1607262202-3eae","101","1","15","15","0",NULL,"101",,"0"
+"4938","1607271118-be44","60","1","12","12","0",NULL,"60",,"0"
+"4939","1607271548-b384","85","1","98","98","0",NULL,"85",,"0"
+"4940","1607280736-b2f1","60","1","12","12","0",NULL,"60",,"0"
+"4941","1607280736-b2f1","99","1","68","68","0",NULL,"99",,"0"
+"4942","1607311009-e040","99","1","68","68","0",NULL,"99",,"0"
+"4943","1607311100-565f","99","1","68","68","0",NULL,"99",,"0"
+"4944","1607312029-fe57","91","1","0.75","0.75","0",NULL,"91",,"0"
+"4945","1607312029-fe57","71","1","14","14","0",NULL,"71",,"0"
+"4946","1608010347-e0c5","69","3","4","12","0",NULL,"69",,"0"
+"4947","1608011303-aa57","58","500","0.1","50","0",NULL,"58",,"0"
+"4948","1608011303-aa57","47","1","125","125","0",NULL,"47","Popular","0"
+"4949","1608011810-62f8","93","1","16","16","0",NULL,"93",,"0"
+"4950","1608031024-5ee6","69","1","4","4","0",NULL,"69",,"0"
+"4951","1608031024-5ee6","60","1","12","12","0",NULL,"60",,"0"
+"4952","1608031027-6a29","45","1","14","14","0",NULL,"45","Popular","0"
+"4953","1608031216-66e5","101","1","15","15","0",NULL,"101",,"0"
+"4954","1608031216-66e5","26","1","5","5","0",NULL,"26",,"0"
+"4955","1608031216-66e5","85","1","98","98","0",NULL,"85",,"0"
+"4956","1608031216-66e5","99","1","68","68","0",NULL,"99",,"0"
+"4957","1608032131-a677","68","1","9","9","0",NULL,"68",,"0"
+"4958","1608051011-0887","82","1","4","4","0",NULL,"82",,"0"
+"4959","1608051011-0887","96","1","30","30","0",NULL,"96",,"0"
+"4960","1608051235-f095","47","1","125","125","0",NULL,"47","Popular","0"
+"4961","1608051406-f7a3","60","1","12","12","0",NULL,"60",,"0"
+"4962","1608051406-f7a3","100","1","123","123","0",NULL,"100",,"0"
+"4963","1608051407-a6ab","99","2","68","136","0",NULL,"99",,"0"
+"4964","1608051811-f6db","26","1","5","5","0",NULL,"26",,"0"
+"4965","1608051811-f6db","101","1","15","15","0",NULL,"101",,"0"
+"4966","1608051811-f6db","79","2","4","8","0",NULL,"79",,"0"
+"4967","1608051811-f6db","82","2","4","8","0",NULL,"82",,"0"
+"4968","1608051811-f6db","59","1","0.1","0.1","0",NULL,"59",,"0"
+"4969","1608051811-f6db","67","4","6","24","0",NULL,"67",,"0"
+"4970","1608051811-f6db","58","4","0.1","0.4","0",NULL,"58",,"0"
+"4971","1608051811-f6db","53","4","0.5","2","0",NULL,"53",,"0"
+"4972","1608051811-f6db","61","4","0.5","2","0",NULL,"61",,"0"
+"4973","1608051811-f6db","87","1","4","4","0",NULL,"87",,"0"
+"4974","1608051811-f6db","71","1","14","14","0",NULL,"71",,"0"
+"4975","1608051811-f6db","97","1","55","55","0",NULL,"97",,"0"
+"4976","1608051811-f6db","46","2","27","54","0",NULL,"46","Popular","0"
+"4977","1608071251-2178","45","1","14","14","0",NULL,"45","Popular","0"
+"4978","1608071251-2178","62","1","14","14","0",NULL,"62",,"0"
+"4979","1608071251-2178","58","50","0.1","5","0",NULL,"58",,"0"
+"4980","1608071839-da77","99","1","68","68","0",NULL,"99",,"0"
+"4981","1608071839-da77","85","1","98","98","0",NULL,"85",,"0"
+"4982","1608071853-d402","101","1","15","15","0",NULL,"101",,"0"
+"4983","1608082001-7a5f","60","1","12","12","0",NULL,"60",,"0"
+"4984","1608090830-a995","58","100","0.1","10","0",NULL,"58",,"0"
+"4985","1608090830-a995","46","1","27","27","0",NULL,"46","Popular","0"
+"4986","1608100958-a5ed","49","1","14","14","0",NULL,"49",,"0"
+"4987","1608100958-a5ed","59","50","0.1","5","0",NULL,"59",,"0"
+"4988","1608100958-a5ed","54","1","14","14","0",NULL,"54",,"0"
+"4989","1608100958-a5ed","46","1","27","27","0",NULL,"46","Popular","0"
+"4990","1608100958-a5ed","93","1","16","16","0",NULL,"93",,"0"
+"4991","1608100958-a5ed","69","1","4","4","0",NULL,"69",,"0"
+"4992","1608100958-a5ed","58","100","0.1","10","0",NULL,"58",,"0"
+"4993","1608100958-a5ed","50","1","27","27","0",NULL,"50",,"0"
+"4994","1608101446-92bf","69","1","4","4","0",NULL,"69",,"0"
+"4995","1608101450-6340","69","29","4","116","0",NULL,"69",,"0"
+"4996","1608101642-b870","100","1","123","123","0",NULL,"100",,"0"
+"4997","1608101652-d690","100","1","123","123","0",NULL,"100",,"0"
+"4998","1608101700-86ad","100","1","123","123","0",NULL,"100",,"0"
+"4999","1608101935-d909","67","10","6","60","0",NULL,"67",,"0"
+"5000","1608111052-c2f4","99","1","68","68","0",NULL,"99",,"0"
+"5001","1608111217-44a3","60","1","12","12","0",NULL,"60",,"0"
+"5002","1608112037-015f","87","1","4","4","0",NULL,"87",,"0"
+"5003","1608131505-b285","60","1","12","12","0",NULL,"60",,"0"
+"5004","1608151313-a6a5","26","2","5","10","0",NULL,"26",,"0"
+"5005","1608161020-8b57","49","1","14","14","0",NULL,"49",,"0"
+"5006","1608161020-8b57","45","1","14","14","0",NULL,"45","Popular","0"
+"5007","1608161351-8159","58","100","0.1","10","0",NULL,"58",,"0"
+"5008","1608161351-8159","62","1","14","14","0",NULL,"62",,"0"
+"5009","1608161351-8159","49","2","14","28","0",NULL,"49",,"0"
+"5010","1608161351-8159","97","1","55","55","0",NULL,"97",,"0"
+"5011","1608191133-5d9c","85","1","98","98","0",NULL,"85",,"0"
+"5012","1608191133-5d9c","99","1","68","68","0",NULL,"99",,"0"
+"5013","1608211101-1aab","99","1","68","68","0",NULL,"99",,"0"
+"5014","1608211748-ad21","99","1","68","68","0",NULL,"99",,"0"
+"5015","1608220710-e935","69","3","4","12","0",NULL,"69",,"0"
+"5016","1608220710-e935","67","5","6","30","0",NULL,"67",,"0"
+"5017","1608220710-e935","26","1","5","5","0",NULL,"26",,"0"
+"5018","1608220710-e935","102","1","12","12","0",NULL,"102",,"0"
+"5019","1608220710-e935","93","1","16","16","0",NULL,"93",,"0"
+"5020","1608220710-e935","84","1","158","158","0",NULL,"84",,"0"
+"5021","1608220710-e935","43","1","158","158","0",NULL,"43",,"0"
+"5022","1608220710-e935","100","1","123","123","0",NULL,"100",,"0"
+"5023","1608221819-819e","102","1","12","12","0",NULL,"102",,"0"
+"5024","1608231033-40a3","87","1","4","4","0",NULL,"87",,"0"
+"5025","1608231033-40a3","101","1","15","15","0",NULL,"101",,"0"
+"5026","1608231033-40a3","60","1","12","12","0",NULL,"60",,"0"
+"5027","1608251030-19ae","59","1","0.1","0.1","0",NULL,"59",,"0"
+"5028","1608251030-19ae","101","1","15","15","0",NULL,"101",,"0"
+"5029","1608260842-6d6b","100","1","123","123","0",NULL,"100",,"0"
+"5030","1608261020-c26d","100","1","123","123","0",NULL,"100",,"0"
+"5031","1608261103-a254","45","1","14","14","0",NULL,"45","Popular","0"
+"5032","1608271017-b777","99","1","68","68","0",NULL,"99",,"0"
+"5033","1608271306-e1d3","100","1","123","123","0",NULL,"100",,"0"
+"5034","1608290108-668c","99","1","68","68","0",NULL,"99",,"0"
+"5035","1608291032-09b6","102","1","12","12","0",NULL,"102",,"0"
+"5036","1608291032-09b6","26","2","5","10","0",NULL,"26",,"0"
+"5037","1608291032-09b6","60","1","12","12","0",NULL,"60",,"0"
+"5038","1608291127-f91a","99","1","68","68","0",NULL,"99",,"0"
+"5039","1608292106-db37","60","1","12","12","0",NULL,"60",,"0"
+"5040","1609021328-9343","100","1","123","123","0",NULL,"100",,"0"
+"5041","1609032312-2ed4","60","1","12","12","0",NULL,"60",,"0"
+"5042","1609032312-2ed4","58","1","0.1","0.1","0",NULL,"58",,"0"
+"5043","1609032312-2ed4","87","1","4","4","0",NULL,"87",,"0"
+"5044","1609032339-d3e0","85","1","98","98","0",NULL,"85",,"0"
+"5045","1609032339-d3e0","99","1","68","68","0",NULL,"99",,"0"
+"5046","1609041215-d391","60","1","12","12","0",NULL,"60",,"0"
+"5047","1609041227-1313","26","1","5","5","0",NULL,"26",,"0"
+"5048","1609051123-a26e","46","2","27","54","0",NULL,"46","Popular","0"
+"5049","1609051123-a26e","50","2","27","54","0",NULL,"50",,"0"
+"5050","1609061027-f6db","99","2","68","136","0",NULL,"99",,"0"
+"5051","1609061334-93be","49","1","14","14","0",NULL,"49",,"0"
+"5052","1609061334-93be","46","1","27","27","0",NULL,"46","Popular","0"
+"5053","1609081028-6dc4","102","1","12","12","0",NULL,"102",,"0"
+"5054","1609081350-557e","99","1","68","68","0",NULL,"99",,"0"
+"5055","1609081635-2893","91","5","0.75","3.75","0",NULL,"91",,"0"
+"5056","1609081635-2893","60","1","12","12","0",NULL,"60",,"0"
+"5057","1609081635-2893","59","50","0.1","5","0",NULL,"59",,"0"
+"5058","1609081635-2893","45","1","14","14","0",NULL,"45","Popular","0"
+"5059","1609081635-2893","58","50","0.1","5","0",NULL,"58",,"0"
+"5060","1609081635-2893","67","2","6","12","0",NULL,"67",,"0"
+"5061","1609102325-65b4","61","7","0.5","3.5","0",NULL,"61",,"0"
+"5062","1609102328-85fc","69","1","4","4","0",NULL,"69",,"0"
+"5063","1609130114-f021","85","1","98","98","0",NULL,"85",,"0"
+"5064","1609130114-f021","44","1","98","98","0",NULL,"44",,"0"
+"5065","1609130114-f021","99","1","68","68","0",NULL,"99",,"0"
+"5066","1609130909-e76b","67","1","6","6","0",NULL,"67",,"0"
+"5067","1609130909-e76b","61","3","0.5","1.5","0",NULL,"61",,"0"
+"5068","1609130909-e76b","59","4","0.1","0.4","0",NULL,"59",,"0"
+"5069","1609130909-e76b","70","2","1","2","0",NULL,"70",,"0"
+"5070","1609130909-e76b","58","2","0.1","0.2","0",NULL,"58",,"0"
+"5071","1609130909-e76b","69","1","4","4","0",NULL,"69",,"0"
+"5072","1609131237-3a37","62","1","14","14","0",NULL,"62",,"0"
+"5073","1609131237-3a37","45","1","14","14","0",NULL,"45","Popular","0"
+"5074","1609131237-3a37","58","50","0.1","5","0",NULL,"58",,"0"
+"5075","1609131237-3a37","49","1","14","14","0",NULL,"49",,"0"
+"5076","1609131646-42f8","46","1","27","27","0",NULL,"46","Popular","0"
+"5077","1609140123-e269","26","1","5","5","0",NULL,"26",,"0"
+"5078","1609140123-e269","87","1","4","4","0",NULL,"87",,"0"
+"5079","1609140123-e269","102","1","12","12","0",NULL,"102",,"0"
+"5080","1609140123-e269","60","1","12","12","0",NULL,"60",,"0"
+"5081","1609140823-e20a","58","50","0.1","5","0",NULL,"58",,"0"
+"5082","1609140823-e20a","50","1","27","27","0",NULL,"50",,"0"
+"5083","1609140823-e20a","63","1","27","27","0",NULL,"63",,"0"
+"5084","1609140823-e20a","46","1","27","27","0",NULL,"46","Popular","0"
+"5085","1609140826-e20a","58","50","0.1","5","0",NULL,"58",,"0"
+"5086","1609140826-e20a","50","1","27","27","0",NULL,"50",,"0"
+"5087","1609140826-e20a","63","1","27","27","0",NULL,"63",,"0"
+"5088","1609140826-e20a","46","1","27","27","0",NULL,"46","Popular","0"
+"5089","1609141830-e935","26","1","5","5","0",NULL,"26",,"0"
+"5090","1609141830-e935","73","1","4","4","0",NULL,"73",,"0"
+"5091","1609141830-e935","77","1","4","4","0",NULL,"77",,"0"
+"5092","1609141830-e935","101","1","15","15","0",NULL,"101",,"0"
+"5093","1609141830-e935","84","1","158","158","0",NULL,"84",,"0"
+"5094","1609141830-e935","43","1","158","158","0",NULL,"43",,"0"
+"5095","1609141830-e935","100","1","123","123","0",NULL,"100",,"0"
+"5096","1609142249-8b10","58","100","0.1","10","0",NULL,"58",,"0"
+"5097","1609142249-8b10","50","1","27","27","0",NULL,"50",,"0"
+"5098","1609142249-8b10","71","1","14","14","0",NULL,"71",,"0"
+"5099","1609150857-8521","63","1","27","27","0",NULL,"63",,"0"
+"5100","1609150857-8521","46","2","27","54","0",NULL,"46","Popular","0"
+"5101","1609150857-8521","58","100","0.1","10","0",NULL,"58",,"0"
+"5102","1609151227-91c2","99","1","68","68","0",NULL,"99",,"0"
+"5103","1609151336-65e5","96","1","30","30","0",NULL,"96",,"0"
+"5104","1609181710-3752","60","1","12","12","0",NULL,"60",,"0"
+"5105","1609191222-dd22","60","1","12","12","0",NULL,"60",,"0"
+"5106","1609191954-296d","102","1","12","12","0",NULL,"102",,"0"
+"5107","1609192325-f7d8","102","1","12","12","0",NULL,"102",,"0"
+"5108","1609192327-cf03","102","1","12","12","0",NULL,"102",,"0"
+"5109","1609201418-1e3c","102","1","12","12","0",NULL,"102",,"0"
+"5110","1609201434-8d16","85","1","98","98","0",NULL,"85",,"0"
+"5111","1609201708-bccb","91","4","0.75","3","0",NULL,"91",,"0"
+"5112","1609201708-bccb","67","1","6","6","0",NULL,"67",,"0"
+"5113","1609201708-bccb","60","1","12","12","0",NULL,"60",,"0"
+"5114","1609201954-12d2","60","1","12","12","0",NULL,"60",,"0"
+"5115","1609211003-799a","46","1","27","27","0",NULL,"46","Popular","0"
+"5116","1609211021-03cc","102","1","12","12","0",NULL,"102",,"0"
+"5117","1609211327-3494","102","1","12","12","0",NULL,"102",,"0"
+"5118","1609211421-df07","45","1","14","14","0",NULL,"45","Popular","0"
+"5119","1609211421-df07","49","1","14","14","0",NULL,"49",,"0"
+"5120","1609211421-df07","70","4","1","4","0",NULL,"70",,"0"
+"5121","1609211421-df07","59","20","0.1","2","0",NULL,"59",,"0"
+"5122","1609211421-df07","61","10","0.5","5","0",NULL,"61",,"0"
+"5123","1609211421-df07","91","5","0.75","3.75","0",NULL,"91",,"0"
+"5124","1609211421-df07","58","20","0.1","2","0",NULL,"58",,"0"
+"5125","1609211421-df07","102","1","12","12","0",NULL,"102",,"0"
+"5126","1609211633-f36a","61","1","0.5","0.5","0",NULL,"61",,"0"
+"5127","1609211633-f36a","59","1","0.1","0.1","0",NULL,"59",,"0"
+"5128","1609211633-f36a","66","1","4","4","0",NULL,"66",,"0"
+"5129","1609211633-f36a","69","1","4","4","0",NULL,"69",,"0"
+"5130","1609211633-f36a","58","20","0.1","2","0",NULL,"58",,"0"
+"5131","1609212004-c1db","102","1","12","12","0",NULL,"102",,"0"
+"5132","1609212109-42f3","102","1","12","12","0",NULL,"102",,"0"
+"5133","1609230108-c213","102","1","12","12","0",NULL,"102",,"0"
+"5134","1609230154-55a3","102","1","12","12","0",NULL,"102",,"0"
+"5135","1609230939-651c","99","1","68","68","0",NULL,"99",,"0"
+"5136","1609230939-651c","102","1","12","12","0",NULL,"102",,"0"
+"5137","1609230939-651c","101","1","15","15","0",NULL,"101",,"0"
+"5138","1609231331-4ab0","44","1","98","98","0",NULL,"44",,"0"
+"5139","1609231331-4ab0","85","1","98","98","0",NULL,"85",,"0"
+"5140","1609231901-986d","85","1","98","98","0",NULL,"85",,"0"
+"5141","1609241600-35b2","50","1","27","27","0",NULL,"50",,"0"
+"5142","1609241600-35b2","58","10","0.1","1","0",NULL,"58",,"0"
+"5143","1609241600-35b2","63","1","27","27","0",NULL,"63",,"0"
+"5144","1609241600-35b2","93","1","16","16","0",NULL,"93",,"0"
+"5145","1609241600-35b2","59","10","0.1","1","0",NULL,"59",,"0"
+"5146","1609241826-64b9","102","1","12","12","0",NULL,"102",,"0"
+"5147","1609241827-11a6","102","1","12","12","0",NULL,"102",,"0"
+"5148","1609242311-91f1","102","1","12","12","0",NULL,"102",,"0"
+"5149","1609251220-c1f9","102","1","12","12","0",NULL,"102",,"0"
+"5150","1609251231-4e50","102","1","12","12","0",NULL,"102",,"0"
+"5151","1609261321-fed6","102","1","12","12","0",NULL,"102",,"0"
+"5152","1609271232-ed2d","91","1","0.75","0.75","0",NULL,"91",,"0"
+"5153","1609271232-ed2d","101","1","15","15","0",NULL,"101",,"0"
+"5154","1609271232-ed2d","102","1","12","12","0",NULL,"102",,"0"
+"5155","1609271747-5022","101","1","15","15","0",NULL,"101",,"0"
+"5156","1609271757-d9d2","67","1","6","6","0",NULL,"67",,"0"
+"5157","1609271757-d9d2","69","1","4","4","0",NULL,"69",,"0"
+"5158","1609271757-d9d2","59","1","0.1","0.1","0",NULL,"59",,"0"
+"5159","1609271757-d9d2","61","1","0.5","0.5","0",NULL,"61",,"0"
+"5160","1609271757-d9d2","91","1","0.75","0.75","0",NULL,"91",,"0"
+"5161","1609281537-ad08","77","1","4","4","0",NULL,"77",,"0"
+"5162","1609281537-ad08","102","1","12","12","0",NULL,"102",,"0"
+"5163","1609282306-79ae","102","1","12","12","0",NULL,"102",,"0"
+"5164","1609292305-1656","60","1","12","12","0",NULL,"60",,"0"
+"5165","1609292305-1656","67","1","6","6","0",NULL,"67",,"0"
+"5166","1609300935-82f4","102","1","12","12","0",NULL,"102",,"0"
+"5167","1609301347-40c5","102","1","12","12","0",NULL,"102",,"0"
+"5168","1609301946-f2df","60","1","12","12","0",NULL,"60",,"0"
+"5262","1610141155-f29c","50","1","27","27","0",NULL,"50",,"0"
+"5170","1609302106-6932","75","1","4","4","0",NULL,"75",,"0"
+"5171","1609302106-6932","26","1","5","5","0",NULL,"26",,"0"
+"5172","1609302106-6932","61","1","0.5","0.5","0",NULL,"61",,"0"
+"5173","1609302106-6932","79","1","4","4","0",NULL,"79",,"0"
+"5174","1609302106-6932","69","1","4","4","0",NULL,"69",,"0"
+"5175","1609302106-6932","102","1","12","12","0",NULL,"102",,"0"
+"5176","1609302106-6932","101","1","15","15","0",NULL,"101",,"0"
+"5177","1610011429-2bc0","60","2","12","24","0",NULL,"60",,"0"
+"5178","1610011505-063d","70","1","1","1","0",NULL,"70",,"0"
+"5179","1610011505-063d","75","1","4","4","0",NULL,"75",,"0"
+"5180","1610011505-063d","93","1","16","16","0",NULL,"93",,"0"
+"5181","1610011521-063d","75","1","4","4","0",NULL,"75",,"0"
+"5182","1610011521-063d","93","1","16","16","0",NULL,"93",,"0"
+"5183","1610011521-063d","70","1","1","1","0",NULL,"70",,"0"
+"5184","1610012032-ebf0","99","1","98","98","0",NULL,"99",,"0"
+"5185","1610012032-ebf0","93","1","16","16","0",NULL,"93",,"0"
+"5186","1610012032-ebf0","60","1","12","12","0",NULL,"60",,"0"
+"5187","1610031016-84b2","60","1","12","12","0",NULL,"60",,"0"
+"5188","1610031107-9b84","60","1","12","12","0",NULL,"60",,"0"
+"5189","1610031147-1570","60","5","12","60","0",NULL,"60",,"0"
+"5190","1610031359-84af","60","2","12","24","0",NULL,"60",,"0"
+"5191","1610031359-84af","70","1","1","1","0",NULL,"70",,"0"
+"5192","1610031432-56dc","60","1","12","12","0",NULL,"60",,"0"
+"5193","1610031658-1b43","101","1","15","15","0",NULL,"101",,"0"
+"5194","1610031658-1b43","60","1","12","12","0",NULL,"60",,"0"
+"5195","1610031658-1b43","99","1","98","98","0",NULL,"99",,"0"
+"5196","1610031701-1b43","101","1","15","15","0",NULL,"101",,"0"
+"5197","1610031701-1b43","60","1","12","12","0",NULL,"60",,"0"
+"5198","1610031701-1b43","99","1","98","98","0",NULL,"99",,"0"
+"5199","1610031850-f50d","102","1","12","12","0",NULL,"102",,"0"
+"5200","1610031946-33d0","60","1","12","12","0",NULL,"60",,"0"
+"5201","1610041957-a10b","60","2","12","24","0",NULL,"60",,"0"
+"5202","1610042043-0060","60","1","12","12","0",NULL,"60",,"0"
+"5203","1610051031-3f07","73","1","4","4","0",NULL,"73",,"0"
+"5204","1610051031-3f07","101","1","15","15","0",NULL,"101",,"0"
+"5205","1610051031-3f07","102","1","12","12","0",NULL,"102",,"0"
+"5206","1610051559-d6b8","102","1","12","12","0",NULL,"102",,"0"
+"5207","1610061052-0ed9","60","1","12","12","0",NULL,"60",,"0"
+"5208","1610061152-13c2","45","1","14","14","0",NULL,"45","Popular","0"
+"5209","1610061152-13c2","58","10","0.1","1","0",NULL,"58",,"0"
+"5210","1610061152-13c2","69","6","4","24","0",NULL,"69",,"0"
+"5211","1610061152-13c2","49","1","14","14","0",NULL,"49",,"0"
+"5212","1610061416-6474","62","1","14","14","0",NULL,"62",,"0"
+"5213","1610061416-6474","58","50","0.1","5","0",NULL,"58",,"0"
+"5214","1610061416-6474","59","50","0.1","5","0",NULL,"59",,"0"
+"5215","1610061416-6474","45","1","14","14","0",NULL,"45","Popular","0"
+"5216","1610061416-6474","49","1","14","14","0",NULL,"49",,"0"
+"5217","1610061551-08f4","85","1","98","98","0",NULL,"85",,"0"
+"5218","1610061609-d5c7","60","2","12","24","0",NULL,"60",,"0"
+"5219","1610070923-a2d4","45","1","14","14","0",NULL,"45","Popular","0"
+"5220","1610071626-2c19","60","1","12","12","0",NULL,"60",,"0"
+"5221","1610080911-5774","45","1","14","14","0",NULL,"45","Popular","0"
+"5222","1610080911-5774","87","1","4","4","0",NULL,"87",,"0"
+"5223","1610080911-5774","53","1","0.5","0.5","0",NULL,"53",,"0"
+"5224","1610080911-5774","49","1","14","14","0",NULL,"49",,"0"
+"5225","1610082309-8692","60","1","12","12","0",NULL,"60",,"0"
+"5226","1610100935-d91c","60","1","12","12","0",NULL,"60",,"0"
+"5227","1610101423-f8cd","60","1","12","12","0",NULL,"60",,"0"
+"5228","1610111419-79eb","102","1","12","12","0",NULL,"102",,"0"
+"5229","1610111544-0e9e","60","1","12","12","0",NULL,"60",,"0"
+"5230","1610111752-4e6e","60","1","12","12","0",NULL,"60",,"0"
+"5231","1610121506-9797","102","1","12","12","0",NULL,"102",,"0"
+"5232","1610121941-e82c","102","1","12","12","0",NULL,"102",,"0"
+"5233","1610122150-4bcb","101","1","15","15","0",NULL,"101",,"0"
+"5234","1610122150-4bcb","69","1","4","4","0",NULL,"69",,"0"
+"5235","1610122150-4bcb","102","1","12","12","0",NULL,"102",,"0"
+"5236","1610122150-4bcb","60","1","12","12","0",NULL,"60",,"0"
+"5237","1610131000-eb88","59","20","0.1","2","0",NULL,"59",,"0"
+"5238","1610131000-eb88","70","3","1","3","0",NULL,"70",,"0"
+"5239","1610131000-eb88","101","1","15","15","0",NULL,"101",,"0"
+"5240","1610131000-eb88","60","1","12","12","0",NULL,"60",,"0"
+"5241","1610131228-93f9","102","1","12","12","0",NULL,"102",,"0"
+"5242","1610131238-f274","102","4","12","48","0",NULL,"102",,"0"
+"5243","1610131520-1b02","58","50","0.1","5","0",NULL,"58",,"0"
+"5244","1610131520-1b02","49","1","14","14","0",NULL,"49",,"0"
+"5245","1610131712-fa2d","102","1","12","12","0",NULL,"102",,"0"
+"5246","1610132048-fbf6","102","1","12","12","0",NULL,"102",,"0"
+"5247","1610132105-199b","101","1","15","15","0",NULL,"101",,"0"
+"5248","1610132105-199b","69","1","4","4","0",NULL,"69",,"0"
+"5249","1610132105-199b","79","1","4","4","0",NULL,"79",,"0"
+"5250","1610132105-199b","75","1","4","4","0",NULL,"75",,"0"
+"5251","1610132105-199b","53","1","0.5","0.5","0",NULL,"53",,"0"
+"5252","1610132105-199b","87","1","4","4","0",NULL,"87",,"0"
+"5253","1610132105-199b","68","1","9","9","0",NULL,"68",,"0"
+"5254","1610132105-199b","82","1","4","4","0",NULL,"82",,"0"
+"5255","1610132105-199b","66","1","4","4","0",NULL,"66",,"0"
+"5256","1610140928-9b26","77","1","4","4","0",NULL,"77",,"0"
+"5257","1610140928-9b26","69","1","4","4","0",NULL,"69",,"0"
+"5258","1610140928-9b26","61","1","0.5","0.5","0",NULL,"61",,"0"
+"5259","1610140928-9b26","75","1","4","4","0",NULL,"75",,"0"
+"5260","1610140928-9b26","68","1","9","9","0",NULL,"68",,"0"
+"5261","1610141118-e10e","101","1","15","15","0",NULL,"101",,"0"
+"5263","1610141745-089e","102","1","12","12","0",NULL,"102",,"0"
+"5264","1610141847-d30e","102","1","12","12","0",NULL,"102",,"0"
+"5265","1610151328-a717","102","2","12","24","0",NULL,"102",,"0"
+"5266","1610171015-907a","102","1","12","12","0",NULL,"102",,"0"
+"5267","1610171300-2f01","102","3","12","36","0",NULL,"102",,"0"
+"5268","1610171335-c2f0","59","1","0.1","0.1","0",NULL,"59",,"0"
+"5269","1610171335-c2f0","61","1","0.5","0.5","0",NULL,"61",,"0"
+"5270","1610171335-c2f0","102","3","12","36","0",NULL,"102",,"0"
+"5271","1610171529-24f5","102","1","12","12","0",NULL,"102",,"0"
+"5272","1610171554-d99e","102","1","12","12","0",NULL,"102",,"0"
+"5273","1610171701-f377","60","3","12","36","0",NULL,"60",,"0"
+"5274","1610171701-f377","102","1","12","12","0",NULL,"102",,"0"
+"5275","1610171711-242b","93","1","16","16","0",NULL,"93",,"0"
+"5276","1610171715-ed07","102","1","12","12","0",NULL,"102",,"0"
+"5277","1610171715-ed07","60","3","12","36","0",NULL,"60",,"0"
+"5278","1610171834-521f","62","1","14","14","0",NULL,"62",,"0"
+"5279","1610171834-521f","45","1","14","14","0",NULL,"45","Popular","0"
+"5280","1610171932-ad6a","60","1","12","12","0",NULL,"60",,"0"
+"5281","1610191424-5623","60","1","12","12","0",NULL,"60",,"0"
+"5282","1610191424-5623","91","1","0.75","0.75","0",NULL,"91",,"0"
+"5283","1610201242-bead","107","1","250","250","0",NULL,"107",,"0"
+"5284","1610202149-21ce","60","1","12","12","0",NULL,"60",,"0"
+"5285","1610211436-ee97","107","1","250","250","0",NULL,"107",,"0"
+"5286","1610211606-c9f1","60","1","12","12","0",NULL,"60",,"0"
+"5287","1610222305-d9af","60","1","12","12","0",NULL,"60",,"0"
+"5288","1610241325-89fc","101","1","15","15","0",NULL,"101",,"0"
+"5289","1610241325-89fc","107","1","250","250","0",NULL,"107",,"0"
+"5290","1610241901-530c","101","1","15","15","0",NULL,"101",,"0"
+"5291","1610241901-530c","58","50","0.1","5","0",NULL,"58",,"0"
+"5292","1610241901-530c","49","1","14","14","0",NULL,"49",,"0"
+"5293","1610250025-9297","60","1","12","12","0",NULL,"60",,"0"
+"5294","1610250739-7c2f","99","1","98","98","0",NULL,"99",,"0"
+"5295","1610251824-5ac7","58","25","0.1","2.5","0",NULL,"58",,"0"
+"5296","1610251824-5ac7","46","1","27","27","0",NULL,"46","Popular","0"
+"5297","1610251824-5ac7","59","25","0.1","2.5","0",NULL,"59",,"0"
+"5298","1610251824-5ac7","50","1","27","27","0",NULL,"50",,"0"
+"5299","1610252030-7457","60","1","12","12","0",NULL,"60",,"0"
+"5300","1610260908-3b40","62","1","14","14","0",NULL,"62",,"0"
+"5301","1610260908-3b40","45","1","14","14","0",NULL,"45","Popular","0"
+"5302","1610261734-bd73","50","1","27","27","0",NULL,"50",,"0"
+"5303","1610261734-bd73","59","100","0.1","10","0",NULL,"59",,"0"
+"5304","1610261734-bd73","46","1","27","27","0",NULL,"46","Popular","0"
+"5305","1610261734-bd73","58","100","0.1","10","0",NULL,"58",,"0"
+"5306","1610262331-2906","60","1","12","12","0",NULL,"60",,"0"
+"5307","1610280932-7ac8","107","1","250","250","0",NULL,"107",,"0"
+"5308","1610281110-eb69","60","1","12","12","0",NULL,"60",,"0"
+"5309","1610281536-da77","45","1","14","14","0",NULL,"45","Popular","0"
+"5310","1610291615-8c02","60","1","12","12","0",NULL,"60",,"0"
+"5311","1610291855-7046","60","1","12","12","0",NULL,"60",,"0"
+"5312","1611011534-fecd","67","5","6","30","0",NULL,"67",,"0"
+"5313","1611011534-fecd","60","1","12","12","0",NULL,"60",,"0"
+"5314","1611021442-62bd","60","1","12","12","0",NULL,"60",,"0"
+"5315","1611031254-3407","67","1","6","6","0",NULL,"67",,"0"
+"5316","1611051145-1a50","60","3","12","36","0",NULL,"60",,"0"
+"5317","1611071807-dd30","60","1","12","12","0",NULL,"60",,"0"
+"5318","1611072120-ada8","60","1","12","12","0",NULL,"60",,"0"
+"5319","1611081751-4b75","60","1","12","12","0",NULL,"60",,"0"
+"5320","1611092326-0840","106","1","170","170","0",NULL,"106",,"0"
+"5321","1611101017-ce36","60","1","12","12","0",NULL,"60",,"0"
+"5322","1611111239-1d6b","58","1","0.1","0.1","0",NULL,"58",,"0"
+"5323","1611111239-1d6b","52","1","225","225","0",NULL,"52",,"0"
+"5324","1611111239-1d6b","53","1","0.5","0.5","0",NULL,"53",,"0"
+"5325","1611111239-1d6b","91","1","0.75","0.75","0",NULL,"91",,"0"
+"5326","1611112310-3c34","49","1","14","14","0",NULL,"49",,"0"
+"5327","1611112310-3c34","59","50","0.1","5","0",NULL,"59",,"0"
+"5328","1611112310-3c34","45","1","14","14","0",NULL,"45","Popular","0"
+"5329","1611112310-3c34","58","50","0.1","5","0",NULL,"58",,"0"
+"5330","1611120909-4bc1","60","1","12","12","0",NULL,"60",,"0"
+"5331","1611131240-1c4e","60","1","12","12","0",NULL,"60",,"0"
+"5332","1611172210-e102","60","1","12","12","0",NULL,"60",,"0"
+"5333","1611180953-8573","99","1","98","98","0",NULL,"99",,"0"
+"5334","1611181013-02fa","62","1","14","14","0",NULL,"62",,"0"
+"5335","1611191005-a677","67","3","6","18","0",NULL,"67",,"0"
+"5336","1611191005-a677","26","3","5","15","0",NULL,"26",,"0"
+"5337","1611191005-a677","71","1","14","14","0",NULL,"71",,"0"
+"5338","1611191005-a677","87","3","4","12","0",NULL,"87",,"0"
+"5339","1611191005-a677","101","1","15","15","0",NULL,"101",,"0"
+"5340","1611211340-8590","60","1","12","12","0",NULL,"60",,"0"
+"5341","1611211536-b2d4","106","1","170","170","0",NULL,"106",,"0"
+"5342","1611211536-b2d4","60","1","12","12","0",NULL,"60",,"0"
+"5343","1611211619-5659","60","1","12","12","0",NULL,"60",,"0"
+"5344","1611211705-f347","60","1","12","12","0",NULL,"60",,"0"
+"5345","1611221332-f34c","60","1","12","12","0",NULL,"60",,"0"
+"5346","1611221403-09b6","60","1","12","12","0",NULL,"60",,"0"
+"5347","1611221821-fe26","91","1","0.75","0.75","0",NULL,"91",,"0"
+"5348","1611230804-f703","60","1","12","12","0",NULL,"60",,"0"
+"5349","1611230853-e71e","60","1","12","12","0",NULL,"60",,"0"
+"5350","1611230855-663c","60","1","12","12","0",NULL,"60",,"0"
+"5351","1611230921-f5dc","60","1","12","12","0",NULL,"60",,"0"
+"5352","1611231058-f166","60","1","12","12","0",NULL,"60",,"0"
+"5353","1611231232-c0ed","60","1","12","12","0",NULL,"60",,"0"
diff --git a/perl/cw_order_status.csv b/perl/cw_order_status.csv new file mode 100644 index 0000000..bd95014 --- /dev/null +++ b/perl/cw_order_status.csv @@ -0,0 +1,6 @@ +"1","Pending","1.000"
+"2","Balance Due","2.000"
+"3","Paid in Full","3.000"
+"4","Shipped","4.000"
+"5","Cancelled","5.000"
+"6","Returned","6.000"
diff --git a/perl/cw_orders.csv b/perl/cw_orders.csv new file mode 100644 index 0000000..ba8382e --- /dev/null +++ b/perl/cw_orders.csv @@ -0,0 +1,2759 @@ +"1302152001-2c8d","2013-02-15 20:01:25","3","2c8d1e13-15-02","guest","0","11.5","0","66.5","106",NULL,NULL,"James Rogerson",,"PO Box 121637",,"Arlington","Texas","76012","United States",NULL,"0",,"0","0",NULL,NULL
+"1302151144-fef1","2013-02-15 11:44:57","5","fef1e213-15-02","guest","0","11.5","0","66.5","106",NULL,NULL,"james amos",,"4719 Fredonia Place",,"Bensalem","Pennsylvania","19020-3815","United States",NULL,"0",,"0","0",NULL,NULL
+"1302021036-38bd","2013-02-02 10:36:47","6","38bd5913-02-02","guest","0","3","0","3.5","106","2013-02-02 00:00:00",,"Brandy PayPal",,"PO Box 816",,"Bangor","Maine","04402","United States",,"0",,"0","0","2013-02-05","0"
+"1302021731-1b20","2013-02-02 17:31:19","6","1b208113-02-02","account","0","3","0","5","106","2013-02-02 00:00:00",,"Brandy Webmaster","King & Associates","PO Box 816",,"Bangor","Maine","04402","United States",,"0",,"1.5","0","2013-02-05","0"
+"1302021054-1b20","2013-02-02 10:54:35","6","1b208113-02-02","account","0","3","0","3.1","106","2013-02-02 00:00:00",,"Brandy Webmaster","King & Associates","PO Box 816",,"Bangor","Maine","04402","United States",,"0",,"0","0","2013-02-05","0"
+"1302141517-75b0","2013-02-14 15:17:13","4","75b07413-14-02","guest","0","8.5","0","33.5","106","2013-02-15 00:00:00",,"Michael Porter","Porter Realty","503 Main Street",,"Alamosa","Colorado","81101","United States",,"5.05",,"2","0",NULL,"0"
+"1302141822-6a06","2013-02-14 18:22:41","4","6a06af13-14-02","account","0","3","0","8","106","2013-02-15 00:00:00",,"Jason Himsey",,"9189 Sheffield Hunt Ct",,"Lorton","Virginia","22079","United States",,"5.05",,"9","0",NULL,"0"
+"1302142127-c614","2013-02-14 21:27:38","4","c614b413-14-02","guest","0","7.5","0","21","106","2013-02-15 00:00:00",,"Paul Rea",,"23684 TR167",,"Fresno","Ohio","43824","United States",,"5.05",,"0","0",NULL,"0"
+"1302142206-e760","2013-02-14 22:06:10","4","e760b313-14-02","account","0","7.5","0","27.5","106","2013-02-15 00:00:00",,"Larry Landals","Summit Lodge #213","3631 E. Aurora Rd.",,"Twinsburg","Ohio","44087","United States",,"5.05",,"0","0",NULL,"0"
+"1302121438-a62d","2013-02-12 14:38:33","4","a62dc113-05-02","account","0","25","0","196","106","2013-02-12 00:00:00",,"George F Roach",,"11417 E. 25th PL",,"YUMA","Arizona","85367-3649","United States",,"24.25",,"50","0",NULL,"0"
+"1302151509-77a4","2013-02-15 15:09:06","3","77a43513-15-02","guest","0","15","0","125","106",NULL,NULL,"Steven Aberblatt",,"6820 Horrocks Street",,"Philadelphia","Pennsylvania","19149","United States",NULL,"0",,"0","0",NULL,NULL
+"1302161358-ad08","2013-02-16 13:58:53","4","ad089a13-16-02","account","0","11.5","0","71.5","106","2013-02-19 00:00:00",,"John LeRoy",,"16161 Point Lookout Rd.",,"Lexington Park","Maryland","20653","United States",,"5.32",,"12.5","0",NULL,"0"
+"1302171506-c945","2013-02-17 15:06:48","4","c9452913-17-02","guest","0","7.5","0","21","106","2013-02-19 00:00:00",,"Kermit Huttar",,"417 Dunham Pt. Rd.",,"Deer Isle","Maine","04627","United States",,"5.05",,"0","0",NULL,"0"
+"1302162226-4106","2013-02-16 22:26:22","4","41063313-16-02","account","0","0","0","12","0","2013-02-19 00:00:00",,"john Doherty",,"93 whitney st",,"Northboro","Massachusetts","01532","United States",,"0",,"0","0",NULL,"0"
+"1302180731-8d6c","2013-02-18 07:31:55","4","8d6c3a13-18-02","account","0","3","0","8","106","2013-02-19 00:00:00",,"Larry Rubenacker Sr",,"483 Gregory Drive",,"Batavia","Ohio","45103","United States",,"5.32",,"12.5","0",NULL,"0"
+"1302201359-7a97","2013-02-20 13:59:46","4","7a97eb13-20-02","account","0","7.5","0","21","106","2013-02-21 00:00:00",,"Steve Zacharzuk",,"92 Cambridge Dr",,"Red Hook","New York","12571","United States",,"5.05",,"0","0",NULL,"0"
+"1302211528-1ba8","2013-02-21 15:28:25","4","1ba88613-21-02","account","0","10.5","0","60.5","106","2013-02-22 00:00:00",,"Steve Almager",,"PO Box 251",,"Eunice","New Mexico","88231","United States",,"12.35",,"4","0",NULL,"0"
+"1302210835-a436","2013-02-21 08:35:47","4","a436ed13-21-02","guest","0","7.5","0","22.5","106","2013-02-21 00:00:00",,"Leeds Lodge # 446",,"1453 Montevallo Road",,"Leeds","Alabama","35094","United States",,"5.05",,"10","0",NULL,"0"
+"1302200058-f1e7","2013-02-20 00:58:19","3","f1e78d13-20-02","guest","0","15","0","125","106",NULL,NULL,"Christopher Hodapp",,"9310 Seascape Drive",,"Indianapolis","Indiana","46256","United States",NULL,"0",,"0","0",NULL,NULL
+"1302200109-36eb","2013-02-20 01:09:46","4","36ebb813-20-02","account","0","15","0","141","106","2013-02-20 00:00:00",,"Wilson S. Moses","Sacramento Masonic Service Bureau","4440 Bijan Court",,"Fair oaks","California","95628","United States",,"19.67",,"48","0",NULL,"0"
+"1302200904-327c","2013-02-20 09:04:25","3","327ca113-20-02","guest","0","11.5","0","66.5","106",NULL,NULL,"Wes Tapp",,"9724 Southwind Circle",,"Tecumseh","Michigan","49286","United States",NULL,"0",,"0","0",NULL,NULL
+"1302200952-8bb5","2013-02-20 09:52:02","3","8bb5cf13-20-02","account","0","15","0","125","106",NULL,NULL,"Adam Lang",,"4812 W 5th St",,"Duluth","Minnesota","55807","United States",NULL,"0",,"0","0",NULL,NULL
+"1302201216-8b1a","2013-02-20 12:16:54","3","8b1a4413-20-02","guest","0","15","0","125","106",NULL,NULL,"Chuck Brust",,"421 11th Ave SE",,"Rochester","Minnesota","55904","United States",NULL,"0",,"0","0",NULL,NULL
+"1302201809-46c0","2013-02-20 18:09:03","3","46c0ed13-20-02","guest","0","11.5","0","78.5","106",NULL,NULL,"Matthew Appel",,"18229 60th Ave. W",,"Lynnwood","Washington","98037-7337","United States",NULL,"0",,"0","0",NULL,NULL
+"1302211910-a455","2013-02-21 19:10:07","3","a455a513-21-02","guest","0","11.5","0","66.5","106",NULL,NULL,"Adam Kendall","Henry W. Coil Library & Museum of Freemasonry","1111 California Street",,"San Francisco","California","94108","United States",NULL,"0",,"0","0",NULL,NULL
+"1302220946-ea58","2013-02-22 09:46:18","4","ea581113-22-02","guest","0","8.5","0","33.5","106","2013-02-22 00:00:00",,"ROGER POAGE","FLOYDADA LODGE # 712","P. O. BOX 372",,"FLOYDADA","Texas","79235","United States",,"10.62",,"2","0",NULL,"0"
+"1302221009-7de2","2013-02-22 10:09:09","4","7de26b13-22-02","account","0","8.5","0","35.5","106","2013-02-22 00:00:00",,"William Roach","William Roach","401 W 2nd",,"DeWitt","Arkansas","72042","United States",,"7.48",,"0","0",NULL,"0"
+"1302221112-919c","2013-02-22 11:12:09","4","919caa13-22-02","account","0","3","0","8","106","2013-02-22 00:00:00",,"William Short",,"4615 Stone Mill Dr",,"Indianapolis","Indiana","46237","United States",,"5.84",,"12.5","0",NULL,"0"
+"1302221126-6cd6","2013-02-22 11:26:52","3","6cd60413-22-02","account","0","15","0","125","106",NULL,NULL,"Philip Buchholz",,"PO Box 597","1105 W Rochester Ave","Saratoga","Wyoming","82331","United States",NULL,"0",,"0","0",NULL,NULL
+"1302231822-1cba","2013-02-23 18:22:37","3","1cba2e13-23-02","account","0","15","0","125","106",NULL,NULL,"Philip A. Cole",,"1305 Apollo Dr.",,"Arnold","Missouri","63010","United States",NULL,"0",,"0","0",NULL,NULL
+"1302251040-fcfa","2013-02-25 10:40:36","3","fcfa1713-25-02","guest","0","0","0","12","0",NULL,NULL,"Brian Page",,"4068 Sandalwood Drive",,"Erie","Pennsylvania","16506","United States",NULL,"0",,"0","0",NULL,NULL
+"1302251201-4030","2013-02-25 12:01:12","3","4030db13-25-02","guest","0","11.5","0","66.5","106",NULL,NULL,"Richard Braley","Braley Pipe Tool LLC","202 South Byrd St",,"Tishomingo","Oklahoma","73460","United States",NULL,"0",,"0","0",NULL,NULL
+"1302251333-9e32","2013-02-25 13:33:12","3","9e320413-25-02","account","0","11.5","0","66.5","106",NULL,NULL,"Stormy Thorson",,"4937 Briarwood Lane",,"Portsmouth","Virginia","23703","United States",NULL,"0",,"0","0",NULL,NULL
+"1302241949-00c7","2013-02-24 19:49:11","4","00c7c813-24-02","account","0","10.5","0","59","106","2013-02-25 00:00:00",,"Albert Farmer","Ionic Lodge 186, AF & AM","329 W. 3rd St.",,"Duluth","Minnesota","55806-2601","United States",,"12.7",,"25","0",NULL,"0"
+"1302281133-c7e0","2013-02-28 11:33:16","4","c7e0f913-28-02","account","0","13.5","0","113.5","106","2013-02-28 00:00:00",,"Donald Combs","Frank F. Baker Lodge#46 F&AM","709 Harwell Drive",,"Brunswick","Georgia","31523","United States",,"12.75",,"27","0",NULL,"0"
+"1302281822-0c84","2013-02-28 18:22:43","3","0c84fe13-28-02","guest","0","0","0","12","0",NULL,,"Tim Earle",,"1975 Kelsey Drive",,"Cuyahoga Falls","Ohio","44221","United States","A one year sub starting with the March 2013 issue.","0",,"0","0",NULL,"0"
+"1303010946-5c18","2013-03-01 09:46:50","4","5c181b13-01-03","account","0","9.5","0","54","106","2013-03-01 00:00:00",,"Garret Wikoff",,"9494 Pendergast Rd",,"Phoenix","New York","13135","United States",,"7.36",,"20","0",NULL,"0"
+"1303011740-cd04","2013-03-01 17:40:04","3","cd048613-01-03","account","0","11.5","0","66.5","106",NULL,NULL,"Paul Dangreau","Carmel Lodge #680","27 Paradise Park",,"Santa Cruz","California","95060","United States",NULL,"0",,"0","0",NULL,NULL
+"1303012301-c8fd","2013-03-01 23:01:07","4","c8fd9a13-01-03","guest","0","9.5","0","47","106","2013-03-04 00:00:00",,"Virgil Johnston",,"7063 W. Cinnabar Ave.",,"Peoria","Arizona","85345-6895","United States",,"12.35",,"3","0",NULL,"0"
+"1303032246-0c44","2013-03-03 22:46:46","4","0c44a513-03-03","guest","0","15","0","138.25","106","2013-03-04 00:00:00",,"Russ Todd",,"12 Stonewood Drive",,"Old Lyme","Connecticut","06371","United States","Also ordered GM Editon - holding until Fall","1.92","I'm a member of Estuary Lodge #43, Old Saybrook, Connecticut, under the Grand Lodge of Connecticut","2.25","0",NULL,"0"
+"1303061804-9ef1","2013-03-06 18:04:20","4","9ef1fe13-06-03","guest","0","7.5","0","38","106","2013-03-07 00:00:00",,"Roy McConkey",,"529 Saline Pump Rd.",,"Moriarty","New Mexico","87035","United States",,"5.05",,"12.5","0",NULL,"0"
+"1303052101-777b","2013-03-05 21:01:58","3","777bb513-05-03","guest","0","0","0","12","0",NULL,NULL,"Franklin Cole",,"1121 Hillcrest Path",,"Manasquan","New Jersey","08736","United States",NULL,"0",,"0","0",NULL,NULL
+"1303072036-cae2","2013-03-07 20:36:27","4","cae2e413-07-03","account","0","10.5","0","59","106","2013-03-08 00:00:00",,"troy brown","troy brown","7259 407th street",,"northbranch","Minnesota","55056","United States",,"11.35",,"22","0",NULL,"0"
+"1303121428-0167","2013-03-12 14:28:15","4","0167ed13-12-03","guest","0","8.5","0","35.5","106","2013-03-12 00:00:00",,"tim schupfer","Potomac Lodge","14505 bourbon street sw",,"Cumberland","Maryland","21502","United States",,"5.49",,"0","0",NULL,"0"
+"1303122222-b5f6","2013-03-12 22:22:37","4","b5f63413-12-03","guest","0","8.5","0","33.5","106","2013-03-13 00:00:00",,"Calvin Helmick",,"536 Crestpark Drive",,"Glen Burnie","Maryland","21061","United States",,"5.05",,"2","0",NULL,"0"
+"1303171349-4d8d","2013-03-17 13:49:50","4","4d8dc713-17-03","account","0","11.5","0","65","106","2013-03-18 00:00:00",,"Sean C McMonagle",,"1917 Bergdoll Ave.",,"Boothwyn","Pennsylvania","19061","United States",,"11.06",,"25","0",NULL,"0"
+"1303150917-2eca","2013-03-15 09:17:41","3","2ecac613-15-03","guest","0","0","0","12","0",NULL,NULL,"jacky brady","Dorchester Masonic Lodge","8639 Arthur Hills Circle",,"North Charleston","South Carolina","29420","United States",NULL,"0",,"0","0",NULL,NULL
+"1303171955-53cb","2013-03-17 19:55:58","4","53cb9113-17-03","account","0","7.5","0","21","106","2013-03-18 00:00:00",,"Douglas Knowles",,"6588 Montrose Trail",,"Tallahassee","Florida","32309","United States",,"5.05",,"0","0",NULL,"0"
+"1303181043-78fd","2013-03-18 10:43:49","4","78fdfa13-18-03","account","0","11.5","0","71.5","106","2013-03-18 00:00:00",,"Christopher Houser",,"PO Box 601",,"Dallas","North Carolina","28034","United States",,"5.05",,"10","0",NULL,"0"
+"1303191253-26a3","2013-03-19 12:53:02","3","26a3a113-19-03","account","0","11.5","0","66.5","106",NULL,NULL,"Raymond Dotson","Raymond Dotson","174 Quail Drive","Sleepy Creek Club","Dudley","North Carolina","28333","United States",NULL,"0","Your brochure shows shipping at $7.00 ???","0","0",NULL,NULL
+"1303222004-24f7","2013-03-22 20:04:34","3","24f7d213-22-03","account","0","11.5","0","66.5","106",NULL,NULL,"Robert Buecker",,"5 Walnut St",,"Selbyville","Delaware","19975","United States",NULL,"0",,"0","0",NULL,NULL
+"1303202315-8196","2013-03-20 23:15:11","3","81964b13-20-03","account","0","15","0","125","106",NULL,NULL,"Jeffrey Maynor",,"8276 Menlo Dr.",,"Baton Rouge","Louisiana","70808","United States",NULL,"0",,"0","0",NULL,NULL
+"1303220827-53a5","2013-03-22 08:27:46","3","53a51413-22-03","account","0","0","0","12","0",NULL,NULL,"Matthew Winters",,"10505 118th Ave",,"Largo","Florida","33773","United States",NULL,"0",,"0","0",NULL,NULL
+"1303221206-9829","2013-03-22 12:06:57","4","9829b613-22-03","account","0","3","0","8","106","2013-03-22 00:00:00",,"Jim Roach",,"15208 Glossy Ibis Road",,"Weeki Wachee","Florida","34614-1107","United States",,"5.05",,"12.5","0",NULL,"0"
+"1303241057-2c38","2013-03-24 10:57:40","4","2c383313-24-03","account","0","15","0","155.5","106","2013-03-25 00:00:00",,"Mark Teale",,"PO Box 157","6270 Orchard Drive","Marlette","Michigan","48453","United States",,"5.05",,"12.5","0",NULL,"0"
+"1303251059-8e1e","2013-03-25 10:59:09","3","8e1e5513-25-03","guest","0","0","0","12","0",NULL,NULL,"James Rakes",,"410 Viola Ct N",,"Bel Air","Maryland","21015","United States",NULL,"0",,"0","0",NULL,NULL
+"1303250836-a249","2013-03-25 08:36:50","4","a2491513-25-03","account","0","3","0","8","106","2013-03-25 00:00:00",,"Timothy Nicely",,"4221 County Road 15",,"South Point","Ohio","45680","United States",,"5.05",,"12.5","0",NULL,"0"
+"1303251725-05c4","2013-03-25 17:25:42","4","05c42913-25-03","account","0","8.5","0","50.5","106","2013-03-26 00:00:00","9114 9999 9170 3034 7935 15","Frank Rockabrand","Coronado Lodge 1406","6441 Via Aventura Dr",,"El Paso","Texas","79912","United States",,"5.05",,"2","0",NULL,"0"
+"1303251552-d6dc","2013-03-25 15:52:25","4","d6dc1d13-25-03","account","0","8.5","0","33.5","106","2013-03-26 00:00:00","9114 9999 9170 3034 7935 22","Everett Thompson",,"8706 White Road",,"Blaine","Washington","98230","United States",,"5.05",,"2","0",NULL,"0"
+"1303261217-2012","2013-03-26 12:17:24","3","20128013-26-03","account","0","15","0","180","106",NULL,NULL,"Frank Loui","San Francisco Scottish Rite","2850 19th Avenue",,"San Francisco","California","94132","United States",NULL,"0",,"0","0",NULL,NULL
+"1303271108-509c","2013-03-27 11:08:46","3","509c1a13-27-03","guest","0","11.5","0","66.5","106",NULL,NULL,"Max Miller",,"710 N 11th St",,"Geneva, ","Nebraska","68361","United States",NULL,"0",,"0","0",NULL,NULL
+"1303281229-27f7","2013-03-28 12:29:18","4","27f7ab13-28-03","account","0","3","0","20","106","2013-03-28 00:00:00",,"Gilbert I. Mundy",,"754 Mountain Avenue",,"Bound Brook","New Jersey","08805-1402","United States",,"5.44",,"12.5","0",NULL,"0"
+"1303281518-5cfd","2013-03-28 15:18:32","4","5cfd8c13-28-03","guest","0","10.5","0","53.3","106","2013-03-29 00:00:00",,"Abraham Lee",,"144 Bundy Road",,"Ithaca","New York","14850","United States",,"10.84","Please send copies. (20?) of the free
<br>Publication - Masonic Plays #406.
<br>Thanks!","13","0",NULL,"0"
+"1303291929-c8cf","2013-03-29 19:29:23","3","c8cfeb13-29-03","account","0","0","0","12","0",NULL,NULL,"Michael DiGiacomo",,"5517 N 3rd Street",,"Phoenix","Arizona","85012","United States",NULL,"0",,"0","0",NULL,NULL
+"1303311240-0c91","2013-03-31 12:40:57","3","0c912313-31-03","account","0","0","0","12","0",NULL,NULL,"Raymond Feyes",,"10307 Kirkwren Dr",,"Houston","Texas","77089","United States",NULL,"0",,"0","0",NULL,NULL
+"1303311620-0284","2013-03-31 16:20:39","4","02849c13-31-03","account","0","3","0","6.75","106","2013-04-01 00:00:00",,"David Colbeth",,"21816 113th Street East",,"Bonney Lake","Washington","98391","United States",,"3.12",,"6.75","0",NULL,"0"
+"1303311825-1e6a","2013-03-31 18:25:19","3","1e6a2f13-31-03","account","0","0","0","12","0",NULL,NULL,"Mike Butteri",,"252 Unionville Ave",,"Plainville ","Connecticut","06062","United States",NULL,"0",,"0","0",NULL,NULL
+"1303312350-344e","2013-03-31 23:50:26","3","344efb13-10-02","account","0","0","0","12","0",NULL,NULL,"S J Helm",,"1366 Bramblewood Ct",,"Pottstown","Pennsylvania","19464","United States",NULL,"0",,"0","0",NULL,NULL
+"1304022320-36ed","2013-04-02 23:20:31","3","36edea13-02-04","account","0","0","0","12","0",NULL,NULL,"Bob Brockman",,"6004 Velonia Drive",,"West Richland","Washington","99353","United States",NULL,"0","This is a gift order for Bob Brockman","0","0",NULL,NULL
+"1304011236-f868","2013-04-01 12:36:30","4","f8683313-01-04","guest","0","8.5","0","33.5","106","2013-04-01 00:00:00",,"Victor Palla","Houston Scottish Rite","1000 North Post Oak Rd","Suite 210","Houston","Texas","77055","United States",,"5.05",,"2","0",NULL,"0"
+"1304011725-75f0","2013-04-01 17:25:01","3","75f09d13-01-04","account","0","10.5","0","52.6","106",NULL,NULL,"N P Royall Jr",,"133 Atlantic St",,"Corpus Christi","Texas","78404","United States",NULL,"0",,"10","0",NULL,NULL
+"1304012137-fb72","2013-04-01 21:37:28","3","fb72f213-20-03","account","0","0","0","12","0",NULL,NULL,"Kevin Swartz",,"509 W 3rd Ave",,"Ritzville","Washington","99169","United States",NULL,"0",,"0","0",NULL,NULL
+"1304051312-93a6","2013-04-05 13:12:55","3","93a6ed13-05-04","account","0","11.5","0","71.5","106",NULL,,"Peter Jensen",,"4211 Ridge Top Road, #2415",,"Fairfax","Virginia","22030","United States","PAID in FULL at the PayPal Account","0",,"12.5","0",NULL,"0"
+"1304051335-ee97","2013-04-05 13:35:25","3","ee97c213-05-04","account","0","15","0","180","106",NULL,NULL,"Mark Genung","ASBI.com","8247 Indy Court",,"Indianapolis","Indiana","46214","United States",NULL,"0",,"0","0",NULL,NULL
+"1304091329-953c","2013-04-09 13:29:37","3","953cc213-09-04","account","0","0","0","12","0",NULL,NULL,"Marshal Shichtman",,"5 New York Avenue","Apartment I","Long Beach","New York","11561","United States",NULL,"0",,"0","0",NULL,NULL
+"1304071344-fa80","2013-04-07 13:44:08","3","fa80a313-07-04","account","0","11.5","0","66.5","106",NULL,NULL,"Paul R Harrison","Paul R. Harrison CPA PC","PO Box 370404",,"Denver","Colorado","802370404","United States",NULL,"0",,"0","0",NULL,NULL
+"1304091417-7d0c","2013-04-09 14:17:14","3","7d0c0013-09-04","account","0","11.5","0","66.5","106",NULL,NULL,"Edward J Howard",,"2617 Camino Pl W",,"Kettering","Ohio","45420-3932","United States",NULL,"0",,"0","0",NULL,NULL
+"1304102232-0bc9","2013-04-10 22:32:47","3","0bc91213-10-04","account","0","15","0","125","106",NULL,NULL,"Bruce Vesper",,"1557 Desert Springs Ave",,"Richland","Washington","99352","United States",NULL,"0",,"0","0",NULL,NULL
+"1304111432-d01c","2013-04-11 14:32:58","3","d01c9313-11-04","account","0","11.5","0","66.5","106",NULL,NULL,"RICHARD KUTSCHINSKI",,"1156 ANGELS TRACE DR SW",,"WYOMING","Michigan","49509","United States",NULL,"0",,"0","0",NULL,NULL
+"1304132157-cb36","2013-04-13 21:57:16","3","cb36f213-13-04","account","0","11.5","0","66.5","106",NULL,NULL,"Ridge Smith",,"PO Box 851123",,"Yukon","Oklahoma","73085","United States",NULL,"0","Why is the shipping $11.50 when your printed brochure states that the shipping is $7.00?","0","0",NULL,NULL
+"1304141746-e040","2013-04-14 17:46:04","4","e0404c13-14-04","account","0","11.5","0","80","106","2013-04-15 00:00:00",,"Jose Perez","(personal)","16141 SW 42nd. Ter",,"MIami","Florida","33185-3825","United States",,"5.05",,"0","0",NULL,"0"
+"1304151837-0736","2013-04-15 18:37:11","3","0736c213-15-04","guest","0","0","0","12","0",NULL,,"Michael Forte",,"3100 N. Jackson Rd.",,"Pharr","Texas","78577","United States",,"0",,"0","0",NULL,"0"
+"1304161203-b302","2013-04-16 12:03:05","3","b3022913-16-04","account","0","15","0","125","106",NULL,NULL,"Gaylord Ambrose",,"P O Box 305",,"Franklin","Virginia","23851-0305","United States",NULL,"0",,"0","0",NULL,NULL
+"1304171321-de06","2013-04-17 13:21:36","3","de067713-17-04","account","0","11.5","0","66.5","107",NULL,NULL,"Tom Mickey",,"1413 Holly St.",,"Whitehorse","Yukon Territory","Y1A4V2","Canada",NULL,"0",,"0","0",NULL,NULL
+"1304171356-a462","2013-04-17 13:56:52","1","a462f813-17-04","guest","0","10.5","0","59","106",NULL,NULL,"Tom Fisher","Valley of Cambridge","PO Box 1825 935 Wheeling Av",,"Cambridge","Ohio","43725","United States",NULL,"0",,"2","0",NULL,NULL
+"1304181324-53ce","2013-04-18 13:24:00","3","53cea213-18-04","guest","0","11.5","0","78.5","106",NULL,NULL,"August Molitano",,"PO Box 427",,"Riverton","Connecticut","06065","United States",NULL,"0",,"0","0",NULL,NULL
+"1304181551-6d96","2013-04-18 15:51:34","4","6d96dd13-18-04","guest","0","7.5","0","23","106","2013-04-19 00:00:00",,"Jared Decker",,"PO Box 8710",,"Kodiak","Alaska","99615","United States",,"5.05",,"1.5","0",NULL,"0"
+"1304182122-01b2","2013-04-18 21:22:32","3","01b2e213-18-04","account","0","0","0","12","0",NULL,NULL,"Richard Greever","Richard Greever","3409 N Maple St",,"Hutchinson","Kansas","67502","United States",NULL,"0",,"0","0",NULL,NULL
+"1304182139-01b2","2013-04-18 21:39:37","4","01b2e213-18-04","account","0","3","0","8","106","2013-04-19 00:00:00",,"Richard Greever","Richard Greever","3409 N Maple St",,"Hutchinson","Kansas","67502","United States",,"5.05",,"12.5","0",NULL,"0"
+"1304191638-d2d2","2013-04-19 16:38:31","3","d2d29613-19-04","account","0","0","0","12","0",NULL,NULL,"Craig Harm",,"425 Maple St",,"Fontanelle","Iowa","50846","United States",NULL,"0","This is a renewal of my current subscription","0","0",NULL,NULL
+"1304201008-991d","2013-04-20 10:08:34","3","991dbe13-20-04","account","0","15","0","125","107",NULL,NULL,"Wayne Mac Culloch",,"1815 Chopin Place",,"Orleans","Ontario","K1C 5G1","Canada",NULL,"0",,"0","0",NULL,NULL
+"1304201107-b800","2013-04-20 11:07:09","3","b8005213-20-04","guest","0","0","0","12","0",NULL,NULL,"Denis Castelli",,"12 Main Street",,"Brewster","New York","10509","United States",NULL,"0",,"0","0",NULL,NULL
+"1304211020-c9b2","2013-04-21 10:20:27","4","c9b2c613-21-04","account","0","3","0","8","106","2013-04-22 00:00:00",,"Jeffery Marlatt","Jeffery Marlatt","28675 S Raber Rd",,"Goetzville","Michigan","49736","United States",,"5.05",,"12.5","0",NULL,"0"
+"1304211850-936a","2013-04-21 18:50:01","3","936a4d13-21-04","guest","0","0","0","12","0",NULL,NULL,"Stephen Tharaldsen",,"PO Box 75",,"Gouverneur","New York","13642","United States",NULL,"0",,"0","0",NULL,NULL
+"1304212045-eaae","2013-04-21 20:45:02","4","eaaee913-21-04","account","0","3","0","6","106","2013-04-22 00:00:00",,"Secretary","Triangle Lodge 708","PO Box 5542",,"Albany","Georgia","31706-5542","United States",,"5.05",,"0","0",NULL,"0"
+"1304221609-26c4","2013-04-22 16:09:31","3","26c47a13-22-04","account","0","11.5","0","66.5","106",NULL,NULL,"John Bowers",,"408 San Sebastian Prado",,"Altamonte Springs","Florida","32714","United States",NULL,"0",,"0","0",NULL,NULL
+"1304221717-c048","2013-04-22 17:17:33","4","c048a413-22-04","guest","0","7.5","0","33","106","2013-04-23 00:00:00",,"R James Rocha",,"519 Humphries Road",,"Safety Harbor","Florida","34695-4921","United States",,"5.05","STB is renewal of
<br>87627 640 6/13","0","0",NULL,"0"
+"1304230811-aab5","2013-04-23 08:11:47","4","aab58013-23-04","account","0","9.5","0","48","106","2013-04-23 00:00:00",,"Richard Saboda","Fayetteville Lodge 711","5007 Pineview Terrace",,"Fayetteville","Georgia","30214","United States",,"9.63",,"10","0",NULL,"0"
+"1304230818-c4d1","2013-04-23 08:18:18","4","c4d13f13-23-04","account","0","10.5","0","60.5","106","2013-04-23 00:00:00",,"bobby beckum","Vidalia Lodge No.330","P O Box 1142",,"Vidalia","Georgia","30475","United States",,"12.9",,"4","0",NULL,"0"
+"1304241015-c320","2013-04-24 10:15:43","4","c320a313-24-04","account","0","3","0","18.75","106","2013-04-24 00:00:00",,"Scott Stanton",,"1513 Palm Valley Drive",,"Garland","Texas","75043","United States",,"3.12",,"6.75","0",NULL,"0"
+"1304241648-2707","2013-04-24 16:48:40","4","27071f13-24-04","guest","0","6.5","0","12.1","106","2013-04-25 00:00:00",,"Felix Lopez",,"17304 Norwalk Blvd",,"Ceritos","California","90703","United States",,"5.05",,"12.5","0",NULL,"0"
+"1304301418-c872","2013-04-30 14:18:18","4","c8725013-30-04","guest","0","20.5","0","464.5","106","2013-05-01 00:00:00",,"Mikel Stoops",,"15234 W 88th Terrace",,"Lenexa","Kansas","66219","United States",,"17.54",,"0","0",NULL,"0"
+"1305011206-2358","2013-05-01 12:06:54","3","23583313-01-05","account","0","11.5","0","66.5","106",NULL,NULL,"William Loerch","AASR","208 Pine Forest Drive",,"Wetumpka","Alabama","36093","United States",NULL,"0","Advertisement said $7.00 shipping & Handling ... why $11.50?","0","0",NULL,NULL
+"1304280418-2af6","2013-04-28 04:18:37","3","2af68a13-28-04","guest","0","15","0","125","106",NULL,NULL,"Owen Shieh",,"98-418 Kaonohi St.","Apt. 3","Aiea","Hawaii","96701","United States",NULL,"0",,"0","0",NULL,NULL
+"1304290808-ab9d","2013-04-29 08:08:31","4","ab9d4413-29-04","account","0","7.5","0","21","106","2013-04-29 00:00:00",,"Alan France","Alan France","54319 National Rd.",,"Bridgeport","Ohio","43912","United States",,"5.05",,"0","0",NULL,"0"
+"1304291209-4daa","2013-04-29 12:09:19","3","4daa3713-29-04","account","0","0","0","12","0",NULL,NULL,"Charles Lord",,"1232 Mildred Avenue",,"Roslyn","Pennsylvania","19001","United States",NULL,"0",,"0","0",NULL,NULL
+"1305021501-0a08","2013-05-02 15:01:46","4","0a081213-02-05","guest","0","8.5","0","34.75","106","2013-05-03 00:00:00",,"Paul McCullough",,"8519 E Angus Dr",,"Scottsdale","Arizona","85251","United States",,"5.05",,"4.25","0",NULL,"0"
+"1305020718-6c19","2013-05-02 07:18:44","3","6c19ff13-02-05","account","0","15","0","125","106",NULL,NULL,"Col JD Stevens",,"2709 N Edmond",,"Muskogee","Oklahoma","74403","United States",NULL,"0",,"0","0",NULL,NULL
+"1305052125-0515","2013-05-05 21:25:07","4","05152913-05-05","account","0","15","0","129","106","2013-05-06 00:00:00",,"James Drury",,"100 Crossbow Court",,"Elizabeth City","North Carolina","27909","United States",,"5.05",,"10","0",NULL,"0"
+"1305072143-20fa","2013-05-07 21:43:10","4","20fa5f13-07-05","guest","0","6.5","0","12.8","106","2013-05-08 00:00:00",,"George Allen",,"1772 McCleary Bend Rd",,"Sevierville","Tennessee","37876","United States",,"5.84",,"12.5","0",NULL,"0"
+"1305081036-07ca","2013-05-08 10:36:04","3","07cac113-08-05","account","0","11.5","0","66.5","106",NULL,NULL,"Michael Flagg",,"2208 Sunflower St",,"Columbia","Missouri","65202","United States",NULL,"0",,"0","0",NULL,NULL
+"1305081714-0eee","2013-05-08 17:14:53","3","0eeec913-08-05","guest","0","15","0","125","106",NULL,NULL,"Dave Daugherty","kofu","740 Lucky ave",,"Abingdon","Maryland","21009","United States",NULL,"0",,"0","0",NULL,NULL
+"1305081840-9a35","2013-05-08 18:40:00","3","9a355e13-08-05","guest","0","11.5","0","66.5","106",NULL,NULL,"Keith Madden","Tulsa Scottish Rite","9525H East 51st St.",,"Tulsa","Oklahoma","74145","United States",NULL,"0",,"0","0",NULL,NULL
+"1305082103-5c0e","2013-05-08 21:03:58","3","5c0e3413-08-05","account","0","0","0","12","0",NULL,NULL,"Odis Denney",,"378 Governors Lane",,"Greenwood","Indiana","46142","United States",NULL,"0",,"0","0",NULL,NULL
+"1305090523-4757","2013-05-09 05:23:59","4","47576a13-09-05","account","0","13.5","0","100","106","2013-05-09 00:00:00",,"Carl Nelson",,"P.O. Box 902",,"Marsahll ","Arkansas","72650","United States",,"11.35",,"44.5","0",NULL,"0"
+"1305091053-f49c","2013-05-09 10:53:12","3","f49c5d13-09-05","guest","0","15","0","215","106",NULL,NULL,"Joseph Conway","Grand Lodge of Kentucky","300 Masonic Home Dr.",,"Masonic Home","Kentucky","40041","United States",NULL,"0",,"70","0",NULL,NULL
+"1305101247-0172","2013-05-10 12:47:19","3","0172a413-10-05","account","0","0","0","12","0",NULL,NULL,"Jason Hale",,"1809 Beechnut Cove",,"Cedar Park","Texas","78613","United States",NULL,"0",,"0","0",NULL,NULL
+"1305092129-313a","2013-05-09 21:29:52","3","313af413-09-05","guest","0","15","0","125","106",NULL,NULL,"Kerry Kirk",,"3826 Charles Stewart Drive",,"Fairfax","Virginia","22033","United States",NULL,"0",,"0","0",NULL,NULL
+"1305140914-ff41","2013-05-14 09:14:23","3","ff41a313-14-05","account","0","15","0","125","106",NULL,NULL,"Gaylord Thomas",,"1403 West Cleveland Avenue",,"Guthrie","Oklahoma","73044","United States",NULL,"0","Shipping on the flier said it was only $7...this says $15...","0","0",NULL,NULL
+"1305121826-44a3","2013-05-12 18:26:37","3","44a35813-12-05","account","0","11.5","0","66.5","106",NULL,NULL,"James Loudermilk",,"9416 Chatham Street",,"Manassas","Virginia","20110-3604","United States",NULL,"0",,"0","0",NULL,NULL
+"1305122005-15f4","2013-05-12 20:05:00","4","15f4c113-12-05","guest","0","11.5","0","70.7","106","2013-05-13 00:00:00",,"Jeff Bartlett",,"20 Woodland Way",,"Ridgefield","Connecticut","06877","United States",,"1.92",,"0","0",NULL,"0"
+"1305141438-6dc0","2013-05-14 14:38:08","4","6dc01913-14-05","guest","0","3","0","6.5","106","2013-05-15 00:00:00",,"P. van Oosten",,"p.o. box 817",,"wilmette","Illinois","60091","United States",,"1.92",,"0","0",NULL,"0"
+"1305141829-32ed","2013-05-14 18:29:12","3","32ed7e13-14-05","guest","0","15","0","125","106",NULL,NULL,"Karl Grose",,"311 Bell Avenue",,"Scott City","Missouri","63780","United States",NULL,"0",,"0","0",NULL,NULL
+"1305151051-ef1a","2013-05-15 10:51:02","3","ef1a6213-15-05","guest","0","11.5","0","78.5","106",NULL,NULL,"Edward Sisson",,"1966 Elm St. #2",,"Manchester","New Hampshire","03104","United States",NULL,"0",,"0","0",NULL,NULL
+"1305161228-c26d","2013-05-16 12:28:33","4","c26d8913-16-05","account","0","15","0","142","106","2013-05-16 00:00:00",,"Robert Drzewucki","Robert Drzewucki","118 Brockmoore Drive",,"East Amherst","New York","14051","United States",,"5.05",,"12.5","0",NULL,"0"
+"1305181150-60aa","2013-05-18 11:50:42","4","60aaed13-18-05","account","0","3","0","6.5","106","2013-05-22 00:00:00",,"Lowell Fleenor",,"19263 wyndale rd.",,"Abingdon","Virginia","24210","United States",,"1.72",,"0","0",NULL,"0"
+"1305181508-6a06","2013-05-18 15:08:27","3","6a06af13-14-02","account","0","0","0","12","0",NULL,NULL,"Jason Himsey",,"9189 Sheffield Hunt Ct",,"Lorton","Virginia","22079","United States",NULL,"0","This is to renew my current subscription of 157193 640 2/13","0","0",NULL,NULL
+"1305190046-0d17","2013-05-19 00:46:54","3","0d173713-19-05","guest","0","11.5","0","78.5","106",NULL,NULL,"Raymond Hunter",,"13650 North Frontage Road, #152",,"Yuma","Arizona","85367-7423","United States",NULL,"0",,"0","0",NULL,NULL
+"1305190140-7831","2013-05-19 01:40:47","4","7831db13-19-05","guest","0","11.5","0","80","106","2013-05-22 00:00:00",,"Phillip Cheek",,"6339 Dr Thomas Walker Rd",,"Rose Hill","Virginia","24281","United States",,"5.05",,"0","0",NULL,"0"
+"1305192009-0629","2013-05-19 20:09:14","3","0629d813-19-05","guest","0","11.5","0","78.5","106",NULL,NULL,"Eric Gillett",,"15595 E. Twp. Rd. 12",,"Attica","Ohio","44807","United States",NULL,"0",,"0","0",NULL,NULL
+"1305210928-41a9","2013-05-21 09:28:21","4","41a9f613-21-05","account","0","11.5","0","70","106","2013-05-22 00:00:00",,"Daniel Barston",,"15 Clark St",,"Auburn","Massachusetts","01501-1743","United States",,"1.92",,"0","0",NULL,"0"
+"1305211524-05b3","2013-05-21 15:24:38","4","05b3c413-21-05","account","0","9.5","0","41.25","106","2013-05-22 00:00:00",,"Donald MacCormick",,"17000 E. 44th Street",,"Independence","Missouri","64055","United States",,"12.12",,"2.25","0",NULL,"0"
+"1305220925-b119","2013-05-22 09:25:30","4","b1197c13-22-05","account","0","3","0","18.5","106","2013-05-22 00:00:00",,"douglas stanley",,"8156 rt 63 n",,"dansville","New York","14437","United States",,"1.72",,"0","0",NULL,"0"
+"1305221043-05d5","2013-05-22 10:43:39","4","05d55613-22-05","account","0","3","0","6.5","106","2013-05-22 00:00:00",,"Andrew Smith","Retired Military","1506 S. Plaza Ave.",,"Springfield","Missouri","65804","United States",,"1.2",,"0","0",NULL,"0"
+"1305221159-1360","2013-05-22 11:59:45","3","1360af13-22-05","account","0","15","0","125","106",NULL,NULL,"William L. Mills, III","Mills Law, PA","P. O. Box 528","49 Means Avenue SE","Concord","North Carolina","28026-0528","United States",NULL,"0",,"0","0",NULL,NULL
+"1305221340-fada","2013-05-22 13:40:40","3","fada0d13-20-05","account","0","11.5","0","66.5","106",NULL,NULL,"Peter Tucker",,"132 Jerusalem Avenue",,"Massapequa Park","New York","11762-1701","United States",NULL,"0",,"0","0",NULL,NULL
+"1305240744-9678","2013-05-24 07:44:21","3","9678fc13-24-05","guest","0","11.5","0","66.5","106",NULL,NULL,"Ellan Rice","Ellan Rice","3137 Ashford Square",,"Vero Beach","Florida","32966","United States",NULL,"0",,"0","0",NULL,NULL
+"1305240755-6cd1","2013-05-24 07:55:48","4","6cd1c513-24-05","guest","0","3","0","6.75","106","2013-05-24 00:00:00",,"Ellan Rice","Ellan Rice","3137 Ashford Sq",,"Vero Beach","Florida","32966","United States",,"3.32",,"6.75","0",NULL,"0"
+"1305241327-1a1c","2013-05-24 13:27:12","1","1a1c9313-24-05","guest","0","0","0","12","0",NULL,NULL,"Jlander Stevens Jr",,"3816 community",,"npn","Virginia","44115","United States",NULL,"0",,"0","0",NULL,NULL
+"1305241807-b035","2013-05-24 18:07:38","3","b0354b13-24-05","account","0","11.5","0","66.5","107",NULL,NULL,"James Plamondon","James Plamondon","10204 125 street NW","Suite 200","Edmonton","Alberta","T5N1S9","Canada",NULL,"0",,"0","0",NULL,NULL
+"1305252102-1be5","2013-05-25 21:02:15","3","1be5ca13-25-05","account","0","11.5","0","66.5","106",NULL,NULL,"Michael Christie",,"43600 Benson Park Road",,"Shawnee","Oklahoma","74801","United States",NULL,"0",,"0","0",NULL,NULL
+"1305271418-6afd","2013-05-27 14:18:55","3","6afd7713-27-05","account","0","11.5","0","66.5","106",NULL,NULL,"Michael Mudrey",,"106 Ravine Road",,"Mount Horeb","Wisconsin","53572","United States",NULL,"0",,"0","0",NULL,NULL
+"1305281432-5d87","2013-05-28 14:32:42","3","5d87e513-28-05","guest","0","3","0","18.75","106",NULL,NULL,"Ernie Gelwicks","EG Outdoors","312 N Seton Ave",,"Emmitsburg","Maryland","21727","United States",NULL,"0","any add'l catalogs/info may be shipped as well","6.75","0",NULL,NULL
+"1305281506-7f21","2013-05-28 15:06:43","3","7f212113-28-05","account","0","0","0","12","0",NULL,NULL,"Douglas Collins",,"1520 Hillside Drive",,"Kamloops","British Columbia","V2E 1B1","Canada",NULL,"0",,"0","0",NULL,NULL
+"1306111156-354d","2013-06-11 11:56:36","1","354d8413-11-06","account","0","0","0","12","0",NULL,NULL,"Burx Norrod",,"8072 Hilliard Dr",,"Manassas","Virginia","20109","United States",NULL,"0",,"0","0",NULL,NULL
+"1306111342-354d","2013-06-11 13:42:02","3","354d8413-11-06","account","0","0","0","12","0",NULL,NULL,"David Twigg",,"21054 Branchwood Way",,"Sterling","Virginia","20164","United States",NULL,"0",,"0","0",NULL,NULL
+"1306032344-3d8e","2013-06-03 23:44:12","4","3d8e7e13-03-06","account","0","3","0","20","106","2013-06-04 00:00:00",,"Blake Hansen","Brother Blake","58 North 750 East",,"American Fork","Utah","84043","United States",,"5.05",,"12.5","0",NULL,"0"
+"1306011237-bb16","2013-06-01 12:37:52","3","bb16b013-01-06","guest","0","11.5","0","66.5","106",NULL,NULL,"Patricia Hipsher",,"5297 Frisco Drive",,"Hilliard","Ohio","43026","United States",NULL,"0",,"0","0",NULL,NULL
+"1306011454-d3c3","2013-06-01 14:54:20","4","d3c3ba13-01-06","guest","0","15","0","210","106","2013-06-03 00:00:00",,"Blair Healy","Tinta Lodge No 116","PO Box 87","211 Hickory St","Langford","South Dakota","57454","United States",,"12.35",,"22","0",NULL,"0"
+"1306041033-8121","2013-06-04 10:33:31","4","8121af13-04-06","guest","0","3","0","18.5","106","2013-06-04 00:00:00",,"Michael Kolometz",,"1046 Ridge road",,"Lewiston","New York","14092","United States",,"1.92",,"0","0",NULL,"0"
+"1306041546-56a8","2013-06-04 15:46:03","4","56a87913-04-06","account","0","3","0","18.5","106","2013-06-05 00:00:00",,"Bob Reid",,"13600 Princeton Circle",,"Savage","Minnesota","55378","United States",,"1.92",,"0","0",NULL,"0"
+"1306052315-4db4","2013-06-05 23:15:40","3","4db45913-05-06","guest","0","11.5","0","66.5","106",NULL,NULL,"Tracy Chastain",,"1250 Bee Lane",,"Geneva","Florida","32732","United States",NULL,"0",,"0","0",NULL,NULL
+"1306100107-2c46","2013-06-10 01:07:25","3","2c462a13-10-06","guest","0","15","0","125","106",NULL,NULL,"Timothy Kelley",,"P.O. Box 88764",,"Atlanta","Georgia","30356","United States",NULL,"0",,"0","0",NULL,NULL
+"1306111353-354d","2013-06-11 13:53:16","3","354d8413-11-06","account","0","0","0","12","0",NULL,NULL,"Justin Matthews",,"112 Woodgate Ct.",,"Sterling","Virginia","20164","United States",NULL,"0",,"0","0",NULL,NULL
+"1306111515-ab4d","2013-06-11 15:15:00","4","ab4d0113-11-06","guest","0","7.5","0","18","106","2013-06-12 00:00:00",,"Charles Rogers",,"209 Chandra Way",,"Hinesville","Georgia","31313","United States",,"2.52",,"0","0",NULL,"0"
+"1306121043-fe7e","2013-06-12 10:43:19","1","fe7e4a13-01-04","account","0","6.5","0","13.5","106",NULL,NULL,"Charles Hobson","AASR, Valley of Columbus","290 Cramer Creek Ct",,"Dublin","Ohio","43017","United States",NULL,"0",,"0","0",NULL,NULL
+"1306121311-9073","2013-06-12 13:11:28","4","9073f113-12-06","guest","0","3","0","6.5","106","2013-06-13 00:00:00",,"Bill Goldwire",,"97189 Eagle Ln",,"Yulee","Florida","32097","United States",,"1.92",,"0","0",NULL,"0"
+"1306121607-f179","2013-06-12 16:07:19","4","f179fd13-12-06","guest","0","3","0","6.5","106","2013-06-13 00:00:00",,"Gary S Yost",,"610 Sunset Dr",,"Salisbury","North Carolina","28147","United States",,"1.72",,"0","0",NULL,"0"
+"1306121731-3516","2013-06-12 17:31:50","1","3516db13-12-06","guest","0","11.5","0","66.5","106",NULL,NULL,"James Harvey",,"3114 Robinwood Drive",,"Taylorsville","Utah","84129","United States",NULL,"0",,"0","0",NULL,NULL
+"1306131034-9010","2013-06-13 10:34:16","4","9010b313-13-06","guest","0","6.5","0","13.6","106","2013-06-14 00:00:00",,"paul tourville",,"n62w28562 rybeck road",,"hartland","Wisconsin","53029","United States",,"5.05",,"7.5","0",NULL,"0"
+"1306131344-0172","2013-06-13 13:44:51","4","0172a413-10-05","account","0","6.5","0","13.75","106","2013-06-14 00:00:00",,"Jason Hale",,"1809 Beechnut Cove",,"Cedar Park","Texas","78613","United States",,"3.32",,"6.75","0",NULL,"0"
+"1306131746-a5c8","2013-06-13 17:46:57","4","a5c82713-13-06","account","0","3","0","6.5","106","2013-06-14 00:00:00",,"George Ingles","Grand Lodge","3601 N. Vienna Woods Dr.",,"Muncie","Indiana","47304","United States",,"1.72",,"0","0",NULL,"0"
+"1306141207-72d9","2013-06-14 12:07:53","4","72d95413-14-06","account","0","7.5","0","22.5","106","2013-06-14 00:00:00",,"Christopher Key",,"4122 Moody Pkwy",,"Moody","Alabama","35004","United States",,"5.05",,"10","0",NULL,"0"
+"1306141317-00c2","2013-06-14 13:17:20","4","00c2af13-14-06","guest","0","3","0","6.5","106","2013-06-17 00:00:00",,"Steven Tiner","Levy Baptist Church","3501 Pike Avenue",,"North Little Rock","Arkansas","72118","United States",,"1.92",,"0","0",NULL,"0"
+"1306141536-ae00","2013-06-14 15:36:36","4","ae007c13-14-06","guest","0","6.5","0","14","106","2013-06-17 00:00:00",,"Jessica Cruey",,"2548 NC Hwy 45 S",,"Colerain","North Carolina","27924","United States",,"5.44",,"10","0",NULL,"0"
+"1306141739-84fd","2013-06-14 17:39:29","4","84fd1113-14-06","account","0","7.5","0","25","106","2013-06-17 00:00:00",,"Harold Birt","Harold Birt","47 Beech St.",,"East Millinocket","Maine","04430","United States",,"3.32",,"0","0",NULL,"0"
+"1306142209-ba27","2013-06-14 22:09:24","4","ba27b613-14-06","guest","0","6.5","0","13.5","106","2013-06-17 00:00:00",,"arnie appelt",,"1844 county rd 120 ne",,"alexandria","Minnesota","56308","United States",,"2.12",,"0","0",NULL,"0"
+"1306181329-7ebb","2013-06-18 13:29:45","4","7ebbc513-18-06","guest","0","6.5","0","12.5","106","2013-06-19 00:00:00",,"Richard Bradbury",,"5874 Lexington Drive",,"Pipersville","Pennsylvania","18947","United States",,"2.25",,"4.5","0",NULL,"0"
+"1306151324-25a4","2013-06-15 13:24:11","4","25a4de13-15-06","guest","0","10.5","0","60","106","2013-06-17 00:00:00",,"Jeffrey Chan","Jeffrey Chan","220 Oak Ave",,"River Edge","New Jersey","07661-1028","United States",,"11.13",,"9","0",NULL,"0"
+"1306151732-00d4","2013-06-15 17:32:12","4","00d4ae13-15-06","guest","0","3","0","6.5","106","2013-06-17 00:00:00",,"peter guerry",,"183 gray squirrel ln",,"newport","North Carolina","28570","United States",,"1.72",,"0","0",NULL,"0"
+"1306160200-24c9","2013-06-16 02:00:50","3","24c97013-16-06","account","0","0","0","12","0",NULL,NULL,"Ryan E Reid",,"2243 Russell Dr",,"Iowa City","Iowa","52240","United States",NULL,"0",,"0","0",NULL,NULL
+"1306161018-2339","2013-06-16 10:18:57","4","23390413-16-06","account","0","3","0","6.5","106","2013-06-17 00:00:00",,"Robert Judah II","R. E. Judah II","P. O. Box 192",,"Fairland","Indiana","46126","United States",,"1.92","Want to use my debit card -
<br>Acct. No. 0600945265
<br>Route No. 274972883
<br>Thanks for your help
<br>GOD BLESS
<br>Dr. J","0","0",NULL,"0"
+"1306191120-c75e","2013-06-19 11:20:11","4","c75e5513-19-06","guest","0","3","0","6.5","106","2013-06-19 00:00:00",,"Tim","Barthels","538 Forest Blvd",,"Sheboygan Falls","Wisconsin","53085","United States",,"0",,"0","0",NULL,"0"
+"1306161414-ba27","2013-06-16 14:14:36","3","ba27b613-14-06","guest","0","6.5","0","13.5","106",NULL,NULL,"arnie appelt",,"1844 county rd 120 ne",,"alexandria","Minnesota","56308","United States",NULL,"0",,"0","0",NULL,NULL
+"1306170738-3ec6","2013-06-17 07:38:01","3","3ec69813-17-06","guest","0","15","0","125","106",NULL,NULL,"Daniel Enyart",,"479 Kelsall Drive",,"Richmond Hill","Georgia","31324","United States",NULL,"0",,"0","0",NULL,NULL
+"1306191318-2e86","2013-06-19 13:18:34","3","2e86b213-19-06","account","0","15","0","125","106",NULL,NULL,"Walt Wheeler","Michigan Masonic Museum & Library","233 E. Fulton St.",,"Grand Rapids","Michigan","49503","United States",NULL,"0",,"0","0",NULL,NULL
+"1306171327-b777","2013-06-17 13:27:30","4","b7775813-17-06","account","0","11.5","0","62","106","2013-06-18 00:00:00",,"William Sexton","Secretary, Etowah Masonic Lodge #222","Dawsonville","United States","GEORGIA","Georgia","30534","United States",,"12.35",,"11","0",NULL,"0"
+"1306171544-677b","2013-06-17 15:44:26","4","677bb313-17-06","guest","0","3","0","6.5","106","2013-06-18 00:00:00",,"Debbie Murray",,"109 S Smithfield Rd",,"Knightdale","North Carolina","27545","United States",,"1.06",,"0","0",NULL,"0"
+"1306171648-a6d1","2013-06-17 16:48:18","4","a6d18713-17-06","account","0","3","0","6.5","106","2013-06-18 00:00:00",,"Doug Adams",,"30 woodland Dr.",,"Carmel","New York","10512","United States",,"1.06",,"0","0",NULL,"0"
+"1306171854-2bc0","2013-06-17 18:54:54","3","2bc02c13-17-06","account","0","0","0","12","0","2013-06-18 00:00:00",,"Clarence Tucker",,"4 Johnson Road",,"LaGrangeville","New York","12540","United States",,"0",,"0","0",NULL,"0"
+"1306171952-22d6","2013-06-17 19:52:31","4","22d6d613-17-06","guest","0","3","0","6.5","106","2013-06-18 00:00:00",,"Don Robinett","Don Robinett PGM","651 Highway 28",,"Randall","Kansas","66963","United States",,"1.06",,"0","0",NULL,"0"
+"1306180926-d9e4","2013-06-18 09:26:27","4","d9e4b013-18-06","guest","0","3","0","6.5","106","2013-06-18 00:00:00",,"Tom Ostrander",,"118 N. Hoopes Ave.",,"Auburn","New York","13021","United States",,"1.06",,"0","0",NULL,"0"
+"1306191509-a5c8","2013-06-19 15:09:31","5","a5c82713-13-06","account","0","6.5","0","13.5","106",NULL,NULL,"George Ingles","Grand Lodge","3601 N. Vienna Woods Dr.",,"Muncie","Indiana","47304","United States",NULL,"0","I have a copy just that Pay Pal is not going to pay you as my bank has a different account for PayPal. This not a second order just paying for the first one.
<br>George","0","0",NULL,NULL
+"1306191522-a5c8","2013-06-19 15:22:03","3","a5c82713-13-06","account","0","3","0","6.5","106",NULL,NULL,"George Ingles","Grand Lodge","3601 N. Vienna Woods Dr.",,"Muncie","Indiana","47304","United States",NULL,"0","This is not a second order just making sure you are paid as PalPal is not going to cover the cost for the last 101 Questions","0","0",NULL,NULL
+"1306191534-36dd","2013-06-19 15:34:37","4","36dd4a13-19-06","account","0","3","0","6.5","106","2013-06-20 00:00:00",,"Roy F. Weingarten",,"9205 Meade St.",,"Westminster","Colorado","80031","United States",,"1.06",,"0","0",NULL,"0"
+"1306191557-fada","2013-06-19 15:57:25","4","fada0d13-20-05","account","0","0","0","12","0","2013-06-20 00:00:00",,"Peter Tucker",,"132 Jerusalem Avenue",,"Massapequa Park","New York","11762-1701","United States",,"0",,"0","0",NULL,"0"
+"1306202248-3012","2013-06-20 22:48:58","3","30120213-20-06","guest","0","0","0","12","0",NULL,NULL,"Eric Sergeant",,"128 North 13th Street","#504","Lincoln","Nebraska","68508","United States",NULL,"0",,"0","0",NULL,NULL
+"1306211449-15f7","2013-06-21 14:49:36","4","15f77713-21-06","guest","0","6.5","0","13.5","106","2013-06-21 00:00:00",,"Lawrence Inglis",,"42707 N. Crawford Road",,"Antioch","Illinois","60002","United States",,"2.32",,"0","0",NULL,"0"
+"1306192317-2309","2013-06-19 23:17:53","4","23099613-19-06","account","0","3","0","18.5","106","2013-06-20 00:00:00",,"William Turner",,"5264 S Lisbon Way",,"Centennial","Colorado","80017","United States",,"1.06",,"0","0",NULL,"0"
+"1306200737-0b52","2013-06-20 07:37:17","4","0b521c13-20-06","account","0","3","0","8","106","2013-06-20 00:00:00",,"Artemas Coffin",,"P.O.Box 42","251 Masardis Rd.","Ashland","Maine","04732-0042","United States",,"5.05",,"12.5","0",NULL,"0"
+"1306210551-af1b","2013-06-21 05:51:00","4","af1be213-21-06","account","0","3","0","6.5","106","2013-06-21 00:00:00",,"Stephen Inzer",,"445 Shelmire Rd",,"Downingtown","Pennsylvania","19335","United States",,"1.06",,"0","0",NULL,"0"
+"1306212208-f78e","2013-06-21 22:08:39","4","f78eb513-21-06","guest","0","6.5","0","13.5","106","2013-06-24 00:00:00",,"John O'Hara",,"58636 Javelina Ln",,"Kearny","Arizona","85137-4000","United States",,"1.06",,"0","0",NULL,"0"
+"1306201543-5a39","2013-06-20 15:43:53","4","5a398313-20-06","account","0","3","0","6.5","106","2013-06-21 00:00:00",,"robert eckbreth","Lodge 45","4915 lougean ave",,"pittsburgh","Pennsylvania","15207","United States",,"1.06",,"0","0",NULL,"0"
+"1306261617-6b3a","2013-06-26 16:17:02","4","6b3a8c13-26-06","guest","0","6.5","0","13.5","106","2013-06-27 00:00:00",,"Sherrill Baker",,"32 Snuggs Circle",,"Mayflower","Arkansas","72106","United States",,"2.32",,"0","0",NULL,"0"
+"1306221747-a078","2013-06-22 17:47:17","4","a0787913-22-06","guest","0","3","0","6.5","106","2013-06-24 00:00:00",,"Robert Grunin",,"32 Myerson Lane",,"Newton","Massachusetts","02459","United States",,"1.06",,"0","0",NULL,"0"
+"1306222114-8dae","2013-06-22 21:14:16","4","8dae1c13-22-06","guest","0","6.5","0","14.75","106","2013-06-24 00:00:00",,"DONALD H GAGE",,"25583 CROSS STREET",,"SAN BERNARDINO","California","92404-5620","United States",,"2.52",,"2.25","0",NULL,"0"
+"1306250921-37d1","2013-06-25 09:21:35","4","37d19b13-25-06","account","0","7.5","0","21.5","106","2013-06-25 00:00:00",,"Robert Wiley",,"3186 Lander Road NW",,"Malvern","Ohio","44644","United States",,"5.05",,"5","0",NULL,"0"
+"1306232057-7c88","2013-06-23 20:57:30","3","7c88b913-23-06","account","0","15","0","125","106",NULL,,"Jason Crowder",,"10606 NE Skidmore St",,"Portland","Oregon","97220","United States","To be sent in the fall when we get enough orders","0",,"0","0",NULL,"0"
+"1306261342-5824","2013-06-26 13:42:51","4","5824e513-26-06","account","0","7.5","0","18.35","106","2013-06-27 00:00:00",,"Joe Bohner",,"739 Chicago Ave","Ohio","Holgate","Ohio","43527","United States",,"5.35",,"2.25","0",NULL,"0"
+"1306262034-e50b","2013-06-26 20:34:06","4","e50be313-26-06","account","0","6.5","0","12.5","106","2013-06-27 00:00:00",,"John Rose Jr",,"207 Big Road","POBox 91","Zieglerville","Pennsylvania","19492","United States",,"2.92",,"4.5","0",NULL,"0"
+"1306262156-4c8f","2013-06-26 21:56:34","4","4c8ff313-26-06","guest","0","6.5","0","14.3","106","2013-06-27 00:00:00",,"Kent Lyon",,"39 Erie ave",,"Dayton","Ohio","45410","United States",,"5.05",,"7.5","0",NULL,"0"
+"1306262159-c9be","2013-06-26 21:59:45","4","c9be6413-26-06","account","0","3","0","6.5","106","2013-06-27 00:00:00",,"Michael Malloy",,"291 Blackswoods Road",,"Freedom","Pennsylvania","15042","United States",,"1.06",,"0","0",NULL,"0"
+"1306271033-64b0","2013-06-27 10:33:04","4","64b0e913-27-06","guest","0","7.5","0","33","106","2013-06-27 00:00:00",,"Tom Turner",,"340 W. St. Joseph Street #3",,"Green Bay","Wisconsin","54301","United States",,"5.05",,"0","0",NULL,"0"
+"1306270932-4a8e","2013-06-27 09:32:30","4","4a8e0713-27-06","account","0","3","0","6.5","106","2013-06-27 00:00:00",,"Larry Gullett",,"32 Sioux Avenue",,"Nashua","New Hampshire","03063","United States",,"1.05",,"0","0",NULL,"0"
+"1306271235-9a2b","2013-06-27 12:35:30","4","9a2bb513-27-06","guest","0","3","0","7.8","106","2013-06-28 00:00:00",,"alfred shikany",,"N4508 State Highway M35",,"Menominee","Michigan","49858","United States",,"2.12",,"0","0",NULL,"0"
+"1306281219-2560","2013-06-28 12:19:42","4","25607e13-28-06","guest","0","6.5","0","27.5","106","2013-06-28 00:00:00",,"Louis Devillon",,"1573 Smith Mountain Road",,"Rockwood","Tennessee","37854","United States",,"2.92",,"0","0",NULL,"0"
+"1306272043-0840","2013-06-27 20:43:47","3","08401113-28-04","account","0","11.5","0","66.5","106",NULL,NULL,"Donald Poling",,"1210 NW 43 Street",,"Fort Lauderdale","Florida","33309","United States",NULL,"0",,"0","0",NULL,NULL
+"1306280936-8877","2013-06-28 09:36:54","3","88776913-28-06","guest","0","15","0","125","106",NULL,NULL,"Dan Kemble",,"1540 St. Clair Street",,"Covington","Kentucky","41011","United States",NULL,"0",,"0","0",NULL,NULL
+"1306300958-1009","2013-06-30 09:58:20","4","1009c713-30-06","guest","0","6.5","0","14.1","106","2013-07-01 00:00:00",,"Dieter Hees",,"700 Vassar Ave","Suite 3","Lakewood","New Jersey","08701","United States",,"5.05",,"10","0",NULL,"0"
+"1306301101-d50d","2013-06-30 11:01:49","4","d50d0f13-30-06","guest","0","0","0","12","0","2013-07-01 00:00:00",,"CARLO SALAS",,"15924 KATIE RIDGE DR",,"EDMOND","Oklahoma","73013","United States",,"0",,"0","0",NULL,"0"
+"1306301147-9539","2013-06-30 11:47:37","4","95396d13-30-06","guest","0","7.5","0","21.5","106","2013-07-01 00:00:00",,"Blake Northington",,"18 County Road 17",,"Dennis","Mississippi","38838","United States",,"5.05",,"0","0",NULL,"0"
+"1307010726-fc84","2013-07-01 07:26:33","4","fc84d713-01-07","account","0","6.5","0","27.5","106","2013-07-01 00:00:00",,"Mark Spear",,"518 North State Street",,"Concord","New Hampshire","03301","United States",,"3.12",,"0","0",NULL,"0"
+"1306301558-e034","2013-06-30 15:58:29","4","e0346913-30-06","guest","0","6.5","0","16","106","2013-07-01 00:00:00",,"Randy Cassetty",,"PO BOX 46",,"VEGA","Texas","79092","United States",,"2.92",,"4.5","0",NULL,"0"
+"1307011619-53d0","2013-07-01 16:19:15","3","53d0a613-01-07","account","0","11.5","0","78.5","106",NULL,NULL,"Brian Finger",,"27 Cambria Road",,"Syosset","New York","11791","United States",NULL,"0",,"0","0",NULL,NULL
+"1307011619-5236","2013-07-01 16:19:57","4","52364213-01-07","guest","0","6.5","0","13.5","106","2013-07-02 00:00:00",,"Steven Tiner","Levy Baptist Church","3501 Pike Avenue",,"North Little Rock","Arkansas","72118","United States",,"2.12",,"0","0",NULL,"0"
+"1307041229-90d8","2013-07-04 12:29:31","3","90d8aa13-04-07","guest","0","11.5","0","78.5","106",NULL,NULL,"Daniel Ragsdale","n/a","9203 Standing Creek Ln.",,"San Antonio","Texas","78230","United States",NULL,"0",,"0","0",NULL,NULL
+"1307032359-6354","2013-07-03 23:59:31","3","63541813-03-07","account","0","15","0","125","106",NULL,NULL,"Miguel Gomez",,"6714 Branca Way",,"Elk Grove","California","95757","United States",NULL,"0",,"0","0",NULL,NULL
+"1307031235-53cb","2013-07-03 12:35:43","4","53cb9113-17-03","account","0","13.5","0","96.5","106","2013-07-03 00:00:00",,"Douglas Knowles",,"6588 Montrose Trail",,"Tallahassee","Florida","32309","United States",,"5.05",,"12.5","0",NULL,"0"
+"1307020847-544b","2013-07-02 08:47:03","3","544b2a13-02-07","account","0","11.5","0","66.5","106",NULL,NULL,"Stan Bennett",,"2118 SE Hemlock",,"Blue Springs","Missouri","64014","United States",NULL,"0",,"0","0",NULL,NULL
+"1307021015-0ca1","2013-07-02 10:15:59","4","0ca12213-02-07","guest","0","3","0","7.1","106","2013-07-03 00:00:00",,"Ronald Reed",,"180 Van Buskirk Rd",,"Teaneck","New Jersey","07666","United States",,"3.32",,"7.5","0",NULL,"0"
+"1307031633-8723","2013-07-03 16:33:47","4","8723b913-03-07","guest","0","7.5","0","34.5","106","2013-07-05 00:00:00",,"Jim Morehead",,"2788 Morning Star",,"Benton","Arkansas","72015","United States",,"5.54",,"2.5","0",NULL,"0"
+"1307021933-2560","2013-07-02 19:33:27","4","25607e13-28-06","guest","0","3","0","6.5","106","2013-07-03 00:00:00",,"Louis Devillon",,"1573 Smith Mountain Road",,"Rockwood","Tennessee","37854","United States",,"1.06",,"0","0",NULL,"0"
+"1307030041-05b3","2013-07-03 00:41:07","3","05b3c413-21-05","account","0","11.5","0","66.5","106",NULL,NULL,"Donald MacCormick",,"17000 E. 44th Street",,"Independence","Missouri","64055","United States",NULL,"0",,"0","0",NULL,NULL
+"1307041243-548e","2013-07-04 12:43:53","1","548e4d13-04-07","account","0","15","0","127.5","106",NULL,NULL,"James Finnegan",,"940 Fenton Lane","Unit 14","Lakeland","Florida","33809","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1307041540-a1be","2013-07-04 15:40:08","4","a1bedf13-04-07","account","0","7.5","0","20","106","2013-07-05 00:00:00",,"Emmanuel Hires","Emmanuel Hires","17320 N W Angle St",,"Blountstown","Florida","32424","United States",,"2.92",,"0","0",NULL,"0"
+"1307051303-f868","2013-07-05 13:03:32","1","f868cf13-05-07","account","0","11.5","0","66.5","107",NULL,NULL,"Ian McDONELL",,"11 Cobblestone Court",,"Fort Saskatchewan","Alberta","T8L 4E1","Canada",NULL,"0",,"0","0",NULL,NULL
+"1307052058-46e3","2013-07-05 20:58:51","3","46e30013-05-07","guest","0","15","0","125","106",NULL,NULL,"thomas r gillespie jr",,"229 cimarron",,"elkhart","Kansas","67950","United States",NULL,"0",,"0","0",NULL,NULL
+"1307060535-1638","2013-07-06 05:35:47","3","16384213-06-07","account","0","11.5","0","66.5","106",NULL,NULL,"James Reed",,"203 Yale Drive",,"Tullahoma","Tennessee","37388-5638","United States",NULL,"0",,"0","0",NULL,NULL
+"1307061141-2c06","2013-07-06 11:41:11","3","2c067f13-06-07","guest","0","11.5","0","66.5","106",NULL,NULL,"joel rich",,"po box 225884",,"dallas","Texas","75222","United States",NULL,"0",,"0","0",NULL,NULL
+"1307061505-6c15","2013-07-06 15:05:05","1","6c15b013-06-07","account","0","15","0","136.5","106",NULL,NULL,"David Varnicle",,"3688 William Penn Hwy.",,"Mifflintown","Pennsylvania","17059","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1307100039-5797","2013-07-10 00:39:43","4","5797fc13-10-07","account","0","7.5","0","20.1","106","2013-07-10 00:00:00",,"Rey Santaanadent",,"7694 lisbon pl unit#2",,"rancho cucamonga","California","91739","United States",,"5.05",,"0","0",NULL,"0"
+"1307101306-d3cf","2013-07-10 13:06:05","4","d3cf9113-10-07","guest","0","6.5","0","13.5","106","2013-07-11 00:00:00",,"Ernest Webster",,"1270 Wright Dr.",,"Albert Lea","Minnesota","56007","United States",,"2.32",,"0","0",NULL,"0"
+"1307101850-e19a","2013-07-10 18:50:50","4","e19a8713-10-07","guest","0","7.5","0","21","106","2013-07-11 00:00:00",,"walter schlenvogt",,"w6748 cty rd gg",,"crivitz","Wisconsin","54114","United States",,"5.05",,"0","0",NULL,"0"
+"1307102137-6c15","2013-07-10 21:37:06","4","6c15b013-06-07","account","0","15","0","136.5","106","2013-07-11 00:00:00",,"David Varnicle",,"3688 William Penn Hwy.",,"Mifflintown","Pennsylvania","17059","United States",,"5.05",,"4.5","0",NULL,"0"
+"1307102235-19da","2013-07-10 22:35:52","3","19da0713-10-07","account","0","11.5","0","66.5","106",NULL,NULL,"Denny Robinson",,"1130 S Burr St",,"Mitchell","South Dakota","57301","United States",NULL,"0",,"0","0",NULL,NULL
+"1307102302-82d7","2013-07-10 23:02:51","3","82d7dc13-10-07","account","0","11.5","0","66.5","106",NULL,NULL,"James Pilson",,"719-A Summer Lane",,"Prattville","Alabama","36066","United States",NULL,"0",,"0","0",NULL,NULL
+"1307111214-1563","2013-07-11 12:14:29","3","15634913-11-07","guest","0","15","0","125","106",NULL,NULL,"Kevin L. Day",,"612 Marsolan Avenue",,"Solana Beach","California","92075","United States",NULL,"0",,"0","0",NULL,NULL
+"1307111330-5763","2013-07-11 13:30:00","3","5763e513-11-07","guest","0","0","0","12","0",NULL,NULL,"Ken Lary",,"80 NH Rte 118",,"Canaan","New Hampshire","03741","United States",NULL,"0",,"0","0",NULL,NULL
+"1307120243-a85c","2013-07-12 02:43:18","3","a85c2e13-12-07","account","0","0","0","12","0",NULL,NULL,"Casey Lynn",,"6030 Oakhaven Dr",,"Paducah","Kentucky","42003","United States",NULL,"0",,"0","0",NULL,NULL
+"1307120251-a85c","2013-07-12 02:51:23","4","a85c2e13-12-07","account","0","3","0","6.75","106","2013-07-12 00:00:00",,"Casey Lynn",,"6030 Oakhaven Dr",,"Paducah","Kentucky","42003","United States",,"3.32",,"6.75","0",NULL,"0"
+"1307131817-ec97","2013-07-13 18:17:04","3","ec972b13-16-06","account","0","7.5","0","21","106",NULL,NULL,"gary solberg",,"1229 78 st",,"NY","New York","11228","United States",NULL,"0",,"0","0",NULL,NULL
+"1307132228-cb5c","2013-07-13 22:28:23","4","cb5cf613-13-07","account","0","15","0","192","106","2013-07-15 00:00:00",,"Rodger Ellingwood",,"4461 Summerlin Place",,"Rock Hill","South Carolina","29732","United States","Sent STB","0",,"0","0",NULL,"0"
+"1307141147-993a","2013-07-14 11:47:38","4","993aed13-14-07","guest","0","7.5","0","21","106","2013-07-15 00:00:00",,"Andrew Elson",,"146 riverview rd",,"Kerrville ","Texas","78028","United States",,"5.05",,"0","0",NULL,"0"
+"1307151312-5921","2013-07-15 13:12:38","4","59212d13-15-07","account","0","15","0","134","106","2013-07-16 00:00:00",,"Mark Adler",,"6485 Booth Street","Apt. 4B","Rego Park","New York","11374-4020","United States",,"1.06",,"0","0",NULL,"0"
+"1307142002-dab3","2013-07-14 20:02:08","4","dab3d513-14-07","guest","0","7.5","0","20.5","106","2013-07-15 00:00:00",,"Dan Brewer","Dan Brewer","2502 Senator ave",,"District Heights","Maryland","20747","United States",,"5.05",,"10","0",NULL,"0"
+"1307150902-ce62","2013-07-15 09:02:42","4","ce622a13-15-07","guest","0","11.5","0","78.5","106","2013-07-15 00:00:00",,"Eric Milks","Eric P Milks CPA PC","519 Pleasant Home Road, B1",,"Augusta","Georgia","30907-0549","United States","Sent himt he current STB","0",,"0","0",NULL,"0"
+"1307151211-46f8","2013-07-15 12:11:04","4","46f87113-15-07","guest","0","3","0","6.5","107","2013-07-15 00:00:00",,"FRED MAIDES",,"Box 403","(7020-51st St.N.E.)","Canoe","British Columbia","V0E 1K0","Canada",,"3.05",,"0","0",NULL,"0"
+"1307151445-62c6","2013-07-15 14:45:00","4","62c67513-15-07","account","0","3","0","6.5","106","2013-07-16 00:00:00",,"thomas w weber",,"107 verlynn ave.",,"hamilton","Ohio","45013","United States",,"1.06",,"0","0",NULL,"0"
+"1307151535-4dff","2013-07-15 15:35:32","3","4dffe113-15-07","account","0","15","0","125","106",NULL,NULL,"Robert Gooch","Clarksville Lodge No. 89","111 Tobacco Rd",,"Clarksville","Tennessee","37042","United States",NULL,"0",,"0","0",NULL,NULL
+"1307151554-1e29","2013-07-15 15:54:47","4","1e299513-15-07","account","0","8.5","0","34.5","106","2013-07-16 00:00:00",,"William Barker","Menifee Valley Lodge No.. 289","35290 Pashal Pl.",,"Wildomar","California","92595-9516","United States",,"5.05",,"0","0",NULL,"0"
+"1307151902-cc77","2013-07-15 19:02:56","4","cc77dd13-15-07","account","0","11.5","0","75.5","106","2013-07-16 00:00:00",,"Robert Schvey",,"3057 Haley Lane",,"Jacksonville","Florida","32257","United States",,"3.12",,"0","0",NULL,"0"
+"1307161248-90ff","2013-07-16 12:48:18","4","90ff9113-16-07","guest","0","11.5","0","70","106","2013-07-17 00:00:00",,"Teodulo Henriquez",,"225 Broadway","Suite 3604","New York","New York","10007","United States",,"1.06",,"0","0",NULL,"0"
+"1307161443-1382","2013-07-16 14:43:54","3","13823b13-16-07","account","0","11.5","0","66.5","106",NULL,NULL,"Miguel Banagan","Miguel Banagan","318 Locust St",,"Vienna","Virginia","22180","United States",NULL,"0",,"0","0",NULL,NULL
+"1307162014-4242","2013-07-16 20:14:44","3","4242b713-16-07","account","0","11.5","0","66.5","106",NULL,NULL,"Charles Cunningham",,"5301 Fallgatter St",,"Bakersfield","California","93308","United States",NULL,"0",,"0","0",NULL,NULL
+"1307162026-e901","2013-07-16 20:26:39","4","e901f613-16-07","guest","0","11.5","0","92","106","2013-07-17 00:00:00",,"Roscoe Reeves",,"401 county road 422",,"Gorman","Texas","76454","United States",,"5.05",,"0","0",NULL,"0"
+"1307181315-12d3","2013-07-18 13:15:53","4","12d32913-18-07","guest","0","8.5","0","32","106","2013-07-19 00:00:00",,"Guy Chalmers",,"50 Lohrman Lane",,"Petaluma","California","94952-3609","United States",,"13.48",,"20","0",NULL,"0"
+"1307171041-2f10","2013-07-17 10:41:16","4","2f10fa13-17-07","account","0","7.5","0","21.5","106","2013-07-17 00:00:00",,"Joseph Arriola",,"101 Purvis St.","Apt #4A","Waco","Texas","76705","United States",,"5.05",,"0","0",NULL,"0"
+"1307171534-ebf5","2013-07-17 15:34:16","3","ebf5cf13-17-07","guest","0","15","0","180","106",NULL,NULL,"Tom McGuire",,"614 Walsh Hill Trail",,"Cedar Park","Texas","78613","United States",NULL,"0",,"0","0",NULL,NULL
+"1307172002-4a53","2013-07-17 20:02:21","3","4a533f13-16-07","account","0","15","0","125","106",NULL,NULL,"Kurt Gazow",,"734 10th St",,"Washougal","Washington","98671","United States",NULL,"0","This is a REPLACEMENT order due to a PayPal issue please contact Judith Fletcher for more information","0","0",NULL,NULL
+"1307181631-e205","2013-07-18 16:31:57","4","e205a813-18-07","account","0","15","0","144.5","106","2013-07-19 00:00:00",,"Jerry Pinion",,"PO Box 112446",,"Anchorage","Alaska","99511","United States",,"5.05",,"12.5","0",NULL,"0"
+"1307181959-add0","2013-07-18 19:59:48","4","add04d13-17-07","account","0","15","0","149.5","106","2013-07-19 00:00:00",,"Lawrence Jolma",,"7606 Jervis Street",,"Springfield","Virginia","22151","United States",,"5.32",,"2.5","0",NULL,"0"
+"1307191301-2571","2013-07-19 13:01:06","3","25718213-19-07","guest","0","15","0","125","106",NULL,NULL,"john grubb",,"Po Box 642",,"Tioga","North Dakota","58852","United States",NULL,"0",,"0","0",NULL,NULL
+"1307200340-20f8","2013-07-20 03:40:16","3","20f81f13-20-07","account","0","15","0","125","107",NULL,NULL,"Peter DERRICK","individual","1850 Main Street","Apt. 207","Saskatoon","Saskatchewan","S7H 5T2","Canada",NULL,"0",,"0","0",NULL,NULL
+"1307200913-1d1a","2013-07-20 09:13:03","4","1d1ae313-20-07","guest","0","11.5","0","78.5","106","2013-07-22 00:00:00",,"Lawrence Thompson",,"805 Shorewood Dr",,"Coppell","Texas","75019","United States","Sub was added","0",,"0","0",NULL,"0"
+"1307200919-2571","2013-07-20 09:19:07","4","25718213-19-07","guest","0","6.5","0","12","106","2013-07-22 00:00:00",,"john grubb",,"Po Box 642",,"Tioga","North Dakota","58852","United States",,"5.05",,"5","0",NULL,"0"
+"1307201043-3166","2013-07-20 10:43:39","3","31661413-20-07","account","0","11.5","0","66.5","106",NULL,NULL,"Jimmie West","Jimmie West","124 Cross Creek Dr",,"Paris","Kentucky","40361","United States",NULL,"0",,"0","0",NULL,NULL
+"1307210836-c2ea","2013-07-21 08:36:13","4","c2eaa613-21-07","account","0","11.5","0","71.5","106","2013-07-22 00:00:00",,"Anthony Brogna",,"16016 W. Beckett Lane",,"Olathe","Kansas","66062","United States",,"5.05",,"12.5","0",NULL,"0"
+"1307211328-10ba","2013-07-21 13:28:51","1","10ba0b13-21-07","account","0","15","0","125","106",NULL,NULL,"Will P Gray",,"431 Forest Cir",,"Ruston","Louisiana","71270","United States",NULL,"0",,"0","0",NULL,NULL
+"1307212207-50ec","2013-07-21 22:07:55","1","50ec8a13-21-07","guest","0","7.5","0","20.6","106",NULL,NULL,"norris quinn",,"368 lewis circle",,"commerce","Georgia","30529","United States",NULL,"0",,"32.5","0",NULL,NULL
+"1307221701-86cf","2013-07-22 17:01:55","4","86cfbb13-22-07","guest","0","7.5","0","25","106","2013-07-24 00:00:00",,"Bob Van Lorynen",,"4594 Durbin Ln",,"Holt","Florida","32564","United States",,"3.32",,"0","0",NULL,"0"
+"1307221823-50ec","2013-07-22 18:23:33","4","50ec8a13-21-07","guest","0","7.5","0","20.6","106","2013-07-24 00:00:00",,"norris quinn",,"368 lewis circle",,"commerce","Georgia","30529","United States",,"5.05",,"32.5","0",NULL,"0"
+"1307221347-fc44","2013-07-22 13:47:58","3","fc44e313-22-07","guest","0","0","0","12","0",NULL,NULL,"Jorge Filgueira",,"191 Chippewa Street",,"Miami Springs","Florida","33166","United States",NULL,"0",,"0","0",NULL,NULL
+"1307230333-8e04","2013-07-23 03:33:31","4","8e04fc13-23-07","account","0","8.5","0","33.5","106","2013-07-24 00:00:00",,"Todd James",,"10870 redwood ave",,"Davenport","Iowa","52804","United States",,"5.05",,"2","0",NULL,"0"
+"1307230958-d4d9","2013-07-23 09:58:24","4","d4d9d513-23-07","account","0","7.5","0","21","106","2013-07-24 00:00:00",,"Steve Singleton","Steve Singleton","4908 Loper Ave",,"Stillwater","Oklahoma","74074","United States",,"5.05",,"0","0",NULL,"0"
+"1307232357-3b97","2013-07-23 23:57:52","3","3b979b13-23-07","account","0","15","0","125","106",NULL,NULL,"Russ Hobbs",,"4717 Newcastle Dr",,"Tyler","Texas","75703","United States",NULL,"0",,"0","0",NULL,NULL
+"1307240645-8162","2013-07-24 06:45:23","4","81625813-24-07","guest","0","8.5","0","35.5","106","2013-07-24 00:00:00",,"Barrie Miller","Walter lanier Lodge","6057 Bayou Black Dr.",,"Gibson ","Louisiana","70356","United States",,"5.05",,"0","0",NULL,"0"
+"1307251326-564b","2013-07-25 13:26:16","5","564b8713-25-07","guest","0","15","0","125","106",NULL,NULL,"Dana DeWeese",,"1100 Jobe Drive",,"Jefferson City","Missouri","65101","United States",NULL,"0",,"0","0",NULL,NULL
+"1307241432-ce1a","2013-07-24 14:32:07","3","ce1ab913-24-07","account","0","11.5","0","66.5","107",NULL,NULL,"Donald Pardo",,"804-300 Sherk St.",,"Leamington","Ontario","N8H 4N7","Canada",NULL,"0",,"0","0",NULL,NULL
+"1307241521-3612","2013-07-24 15:21:51","3","36128313-24-07","account","0","11.5","0","66.5","106",NULL,NULL,"Lloyd Stahl",,"3827 Mt Hayden Drive",,"Montrose","Colorado","81403","United States",NULL,"0",,"0","0",NULL,NULL
+"1307242157-44ea","2013-07-24 21:57:04","4","44eae713-24-07","guest","0","11.5","0","78.5","106","2013-07-25 00:00:00",,"George Katchue",,"4818 Sandtyn Dr",,"waxhaw","North Carolina","28173","United States","Sent him the current STB","0",,"0","0",NULL,"0"
+"1307261133-0d99","2013-07-26 11:33:19","3","0d999013-26-07","account","0","9.5","0","39.8","106",NULL,NULL,"Tad C. Fithian","Western Star Lodge #21","8387 Tod Ave",,"Boardman","Ohio","44512-6367","United States",NULL,"0","offices in basement","5","0",NULL,NULL
+"1307261158-d0bb","2013-07-26 11:58:08","4","d0bb6b13-26-07","guest","0","6.5","0","12.5","106","2013-07-26 00:00:00",,"Jim Scott","Custom Consulting Associates, LLC","1112 SW 118th Place",,"Oklahoma City","Oklahoma","73170","United States",,"3.12",,"4.5","0",NULL,"0"
+"1307271208-0caf","2013-07-27 12:08:10","3","0caf0213-27-07","account","0","11.5","0","66.5","106",NULL,NULL,"Darryl Knight",,"1039 N Glenview Ct",,"Palatine","Illinois","60067","United States",NULL,"0",,"0","0",NULL,NULL
+"1307271306-b96f","2013-07-27 13:06:20","1","b96fec13-27-07","account","0","11.5","0","66.5","106",NULL,NULL,"John M. Klaus","John M. Klaus","509 2nd St. NW",,"Mount Vernon","Iowa","52314","United States",NULL,"0",,"0","0",NULL,NULL
+"1307271356-4c58","2013-07-27 13:56:01","3","4c583a13-27-07","guest","0","11.5","0","66.5","106",NULL,NULL,"Dale Vanderpool","Eugene Scottish Rite","29720 Jeans RD Space 40",,"Venetq","Oregon","97487","United States",NULL,"0",,"0","0",NULL,NULL
+"1307271658-b96f","2013-07-27 16:58:05","4","b96fec13-27-07","account","0","11.5","0","71.5","106","2013-07-29 00:00:00",,"John M. Klaus","John M. Klaus","509 2nd St. NW",,"Mount Vernon","Iowa","52314","United States",,"5.05",,"12.5","0",NULL,"0"
+"1307281206-1aab","2013-07-28 12:06:50","4","1aab7813-28-07","account","0","11.5","0","78.5","106","2013-07-29 00:00:00",,"MICHAEL SIMMONS",,"82 WESTFORD AVE",,"STAFFORD SPRINGS","Connecticut","06076","United States","put in sub","0",,"0","0",NULL,"0"
+"1307281706-cabb","2013-07-28 17:06:47","3","cabbb113-28-07","guest","0","11.5","0","66.5","106",NULL,NULL,"Danny R. Fulks",,"414 Monticello Road",,"Circleville","Ohio","43113","United States",NULL,"0",,"0","0",NULL,NULL
+"1307301200-dd5d","2013-07-30 12:00:43","4","dd5de613-30-07","account","0","8.5","0","31","106","2013-07-31 00:00:00",,"George Morris","George Morris","5806 Vernedale Road",,"Charlotte","North Carolina","28212","United States",,"5.05",,"12.5","0",NULL,"0"
+"1307301105-3875","2013-07-30 11:05:01","3","3875af13-30-07","guest","0","15","0","125","106",NULL,NULL,"JIM FINNEGAN",,"940 FENTON LN #14",,"LAKELAND","Florida","33809","United States",NULL,"0",,"0","0",NULL,NULL
+"1307291832-b870","2013-07-29 18:32:19","3","b8708113-29-07","guest","0","15","0","125","106",NULL,NULL,"Will Gray",,"431Forest Circle",,"Ruston","Louisiana","71270","United States",NULL,"0",,"0","0",NULL,NULL
+"1307302038-1c8d","2013-07-30 20:38:39","4","1c8dcd13-30-07","guest","0","10.5","0","52","106","2013-07-31 00:00:00",,"Arleigh Rice",,"386 North Anna Dr",,"Louisa","Virginia","23093-5506","United States",,"7.24",,"12","0",NULL,"0"
+"1307311131-5d63","2013-07-31 11:31:49","4","5d635f13-31-07","account","0","10.5","0","55.5","106","2013-07-31 00:00:00",,"Ronald Andress",,"2509 Lakewood Circle",,"Tuscaloosa","Alabama","35405","United States",,"12.64",,"30","0",NULL,"0"
+"1307311808-d42f","2013-07-31 18:08:19","3","d42f3a13-31-07","account","0","11.5","0","66.5","106",NULL,NULL,"Louis Gordon",,"2941 Ashwood Dr.",,"Corvallis","Oregon","97330","United States",NULL,"0",,"0","0",NULL,NULL
+"1308010836-f3b2","2013-08-01 08:36:10","4","f3b27913-01-08","guest","0","7.5","0","24.5","106","2013-08-01 00:00:00",,"randy gunn","randy gunn","7518 taw street",,"richmond","Virginia","23237","United States",,"5.5",,"0","0",NULL,"0"
+"1308011234-98ad","2013-08-01 12:34:35","3","98ad5413-01-08","guest","0","15","0","125","106",NULL,NULL,"Wallace Saval",,"1675 Shirley Avenue",,"Petersburg","Virginia","23805","United States",NULL,"0",,"0","0",NULL,NULL
+"1308021453-9ba8","2013-08-02 14:53:40","4","9ba8d113-02-08","guest","0","11.5","0","86.5","106","2013-08-05 00:00:00",,"Dean Rein",,"2161 N. Gunsight Dr.",,"St. George","Utah","84770","United States",,"12.35",,"22","0",NULL,"0"
+"1308031441-01f9","2013-08-03 14:41:54","3","01f9b613-03-08","account","0","11.5","0","66.5","106",NULL,NULL,"Donald Eastlake",,"155 Beaver Street",,"Milford","Massachusetts","01757","United States",NULL,"0",,"0","0",NULL,NULL
+"1308071953-ebf0","2013-08-07 19:53:55","3","ebf04e13-07-08","account","0","0","0","12","0",NULL,NULL,"Rex Hasty",,"244 JC Bryant Rd",,"Hattiesburg","Mississippi","39401","United States",NULL,"0",,"0","0",NULL,NULL
+"1308071941-ebf0","2013-08-07 19:41:58","3","ebf04e13-07-08","account","0","11.5","0","66.5","106",NULL,NULL,"Rex Hasty",,"244 JC Bryant Rd",,"Hattiesburg","Mississippi","39401","United States",NULL,"0",,"0","0",NULL,NULL
+"1308041518-b625","2013-08-04 15:18:08","3","b625cd13-04-08","account","0","11.5","0","66.5","106",NULL,NULL,"Doyle Clark",,"2212 Glory Dr",,"Clarksville","Tennessee","37043","United States",NULL,"0",,"0","0",NULL,NULL
+"1308070928-4908","2013-08-07 09:28:33","3","4908cb13-07-08","account","0","8.5","0","33.5","106",NULL,NULL,"Robert Knott","Bellaire Lodge #398","P.O. Box 672",,"Bellaire","Michigan","49615","United States",NULL,"0",,"2","0",NULL,NULL
+"1308102047-ef11","2013-08-10 20:47:15","5","ef11c913-10-08","account","0","15","0","125","106",NULL,NULL,"david saunders",,"1129 bellevue rd",,"halifax","Virginia","24558","United States",NULL,"0",,"0","0",NULL,NULL
+"1308110647-5a33","2013-08-11 06:47:55","3","5a339d13-11-08","account","0","11.5","0","66.5","106",NULL,NULL,"Michael Stein",,"1288 Paddington Road",,"Mahwah","New Jersey","07430","United States",NULL,"0",,"0","0",NULL,NULL
+"1308111437-9336","2013-08-11 14:37:47","3","9336dd13-03-08","account","0","7.5","0","18.5","106",NULL,NULL,"Richard Ingham",,"603 Cherry Street",,"Punxsutawney","Pennsylvania","15767","United States",NULL,"0",,"1.5","0",NULL,NULL
+"1308131352-ea3b","2013-08-13 13:52:34","3","ea3b5113-13-08","guest","0","11.5","0","76.5","106",NULL,NULL,"Robert Whittlesey","Guthrie Bethel Lodge 669","PO Box 644","418 W. 2nd Street","Guthrie","Kentucky","42234-0644","United States",NULL,"0",,"22","0",NULL,NULL
+"1308131457-5734","2013-08-13 14:57:04","3","5734cf13-13-08","account","0","11.5","0","66.5","106",NULL,NULL,"John Brewer",,"P.O. Box 505",,"Stanton","Kentucky","40380","United States",NULL,"0",,"0","0",NULL,NULL
+"1308141539-7842","2013-08-14 15:39:16","3","78424313-14-08","account","0","0","0","12","0",NULL,NULL,"Robert H Eisenhardt",,"9043 SE Hawks Nest Ct.",,"Hobe Sound","Florida","33455","United States",NULL,"0",,"0","0",NULL,NULL
+"1308150741-a249","2013-08-15 07:41:44","3","a2491513-25-03","account","0","0","0","12","0",NULL,NULL,"Timothy Nicely",,"4221 County Road 15",,"South Point","Ohio","45680","United States",NULL,"0","Renewal of Current subscription. ","0","0",NULL,NULL
+"1308150852-df0e","2013-08-15 08:52:00","5","df0e8d13-15-08","account","0","11.5","0","66.5","106",NULL,NULL,"C/O CECERO ROY BLABAGNO",,"2714 MEDIA CENTER DRIVE",,"LOS ANGELES","California","90065","United States",NULL,"0","PLS RESERVE FOR ME THE NEXT VOLUMES","0","0",NULL,NULL
+"1308150900-df0e","2013-08-15 09:00:17","1","df0e8d13-15-08","account","0","11.5","0","66.5","106",NULL,NULL,"C/O CECERO ROY BLABAGNO",,"2714 MEDIA CENTER DRIVE",,"LOS ANGELES","California","90065","United States",NULL,"0",,"0","0",NULL,NULL
+"1308150911-df0e","2013-08-15 09:11:39","5","df0e8d13-15-08","account","0","11.5","0","66.5","106",NULL,NULL,"C/O CECERO ROY BLABAGNO",,"2714 MEDIA CENTER DRIVE",,"LOS ANGELES","California","90065","United States",NULL,"0",,"0","0",NULL,NULL
+"1308151518-50a7","2013-08-15 15:18:14","3","50a70813-15-08","account","0","11.5","0","69.5","106",NULL,NULL,"Dean Hodgson","Flying Dutchman Firearms","1936 Country View Dr",,"Derby","Kansas","67037","United States",NULL,"0",,"6.5","0",NULL,NULL
+"1308170152-5e3a","2013-08-17 01:52:06","5","5e3a7913-17-08","account","0","11.5","0","66.5","106",NULL,NULL,"David Carroll",,"PO Box 57",,"Krum","Texas","76249","United States",NULL,"0",,"0","0",NULL,NULL
+"1308170732-889f","2013-08-17 07:32:48","3","889f7e13-17-08","guest","0","11.5","0","76.75","106",NULL,NULL,"Stephen Carroll",,"91-1255 Kaileolea Dr",,"Ewa Beach","Hawaii","96706","United States",NULL,"0",,"2.25","0",NULL,NULL
+"1308171200-5e3a","2013-08-17 12:00:00","3","5e3a7913-17-08","account","0","11.5","0","66.5","106",NULL,NULL,"David Carroll",,"PO Box 57",,"Krum","Texas","76249","United States",NULL,"0",,"0","0",NULL,NULL
+"1308181532-a87c","2013-08-18 15:32:51","3","a87c4f13-18-08","account","0","11.5","0","66.5","106",NULL,NULL,"Jeremy Vaughn",,"1409 Lauren Lane",,"Filer","Idaho","83328","United States",NULL,"0",,"0","0",NULL,NULL
+"1308181708-f549","2013-08-18 17:08:05","3","f549cd13-18-08","guest","0","6.5","0","12","106",NULL,NULL,"Dick Perkins",,"2302 W Mandalay Lane",,"Phoenix","Arizona","85023","United States",NULL,"0",,"1.5","0",NULL,NULL
+"1308181910-3b6b","2013-08-18 19:10:00","3","3b6b3113-18-08","guest","0","6.5","0","15.5","106",NULL,NULL,"Leonard Mayo",,"212 Lighthouse Drive",,"Hampton","Virginia","23664-1918","United States",NULL,"0",,"0","0",NULL,NULL
+"1308181926-b40f","2013-08-18 19:26:42","3","b40f7e13-18-08","account","0","11.5","0","66.5","106",NULL,NULL,"Carlton Wood",,"672 Maple Valley Road",,"Coventry","Rhode Island","02816","United States",NULL,"0",,"0","0",NULL,NULL
+"1308182151-6e4e","2013-08-18 21:51:32","3","6e4eae13-18-08","guest","0","8.5","0","35.6","106",NULL,NULL,"Robert Keene","Lebanon Lodge #22","511 Julie Drive",,"Gallup","New Mexico","87301","United States",NULL,"0",,"0","0",NULL,NULL
+"1308191055-3d00","2013-08-19 10:55:47","3","3d004f13-19-08","account","0","3","0","3.6","106",NULL,NULL,"WILLIAM MULLEN","N.A","108 WILLIAMS COURT",,"MOBILE","Alabama","36606","United States",NULL,"0",,"0","0",NULL,NULL
+"1308191120-3d00","2013-08-19 11:20:38","1","3d004f13-19-08","account","0","7.5","0","21.7","106",NULL,NULL,"WILLIAM MULLEN","N.A","108 WILLIAMS COURT",,"MOBILE","Alabama","36606","United States",NULL,"0",,"0","0",NULL,NULL
+"1308191248-450b","2013-08-19 12:48:19","3","450b9b13-19-08","account","0","11.5","0","66.5","106",NULL,NULL,"Leonard Demoranville",,"3456 Lexington Road",,"Danville","Kentucky","40422","United States",NULL,"0",,"0","0",NULL,NULL
+"1308191803-a28d","2013-08-19 18:03:22","3","a28d8f13-19-08","account","0","6.5","0","15.5","106",NULL,NULL,"Tom Hancock",,"2801 Collard Road",,"Arlington","Texas","76017","United States",NULL,"0",,"0","0",NULL,NULL
+"1308201052-47b9","2013-08-20 10:52:59","3","47b9f413-20-08","account","0","7.5","0","21","106",NULL,NULL,"Spence Campbell","Kedron Lodge #387","229 5th Ave W",,"Hendersonville","North Carolina","28739","United States",NULL,"0",,"0","0",NULL,NULL
+"1308201834-8472","2013-08-20 18:34:19","3","84720e13-20-08","account","0","11.5","0","66.5","106",NULL,NULL,"James Earle",,"1762 Crown Point Road","Unit 586, Lot 803DN","West Deptford","New Jersey","08086","United States",NULL,"0",,"0","0",NULL,NULL
+"1308211549-fd30","2013-08-21 15:49:22","5","fd30a013-21-08","account","0","15","0","125","107",NULL,NULL,"Brian Rountree","Grand Lodge of Manitoba","420 Corydon Ave.",,"Winnipeg","Manitoba","R3L 1N8","Canada",NULL,"0",,"0","0",NULL,NULL
+"1308211810-fd30","2013-08-21 18:10:13","5","fd30a013-21-08","account","0","15","0","125","107",NULL,NULL,"Brian Rountree","Grand Lodge of Manitoba","420 Corydon Ave.",,"Winnipeg","Manitoba","R3L 1N8","Canada",NULL,"0",,"0","0",NULL,NULL
+"1308211825-21f5","2013-08-21 18:25:33","5","21f51213-21-08","account","0","7.5","0","19","106",NULL,NULL,"Alvin Bailey","NA","4415 Casa Blanca Dr",,"Odessa","Texas","79762","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1308212033-7f21","2013-08-21 20:33:23","3","7f212113-28-05","account","0","15","0","125","107",NULL,NULL,"Douglas Collins",,"1520 Hillside Drive",,"Kamloops","British Columbia","V2E 1B1","Canada",NULL,"0",,"0","0",NULL,NULL
+"1308212129-14cc","2013-08-21 21:29:00","1","14ccec13-21-08","guest","0","11.5","0","66.5","106",NULL,NULL,"George Deblon",,"P.O. Box 512","113 Hadley Lane","Pittsfield","Vermont","05762","United States",NULL,"0",,"0","0",NULL,NULL
+"1308212153-f645","2013-08-21 21:53:32","3","f6458713-21-08","account","0","6.5","0","15.5","106",NULL,NULL,"Josef Pronnet",,"4570 Imperial Dr.",,"Brookfield","Wisconsin","53045","United States",NULL,"0",,"0","0",NULL,NULL
+"1308220401-3930","2013-08-22 04:01:34","1","3930ab13-22-08","account","0","7.5","0","27.1","106",NULL,NULL,"John Hix",,"2410 Spicer Dr",,"Beavercreek","Ohio","45431-2487Jhix","United States",NULL,"0",,"15","0",NULL,NULL
+"1308221536-d611","2013-08-22 15:36:23","3","d6117113-22-08","account","0","6.5","0","15.5","106",NULL,NULL,"Nathan Devermann",,"428 S. Concord Rd.",,"Oconomowoc","Wisconsin","53066","United States",NULL,"0",,"0","0",NULL,NULL
+"1308221553-e77e","2013-08-22 15:53:26","3","e77efe13-22-08","guest","0","11.5","0","66.5","106",NULL,NULL,"J. Bruce Hagadorn",,"3136 West Club Drive",,"Salem","Virginia","24153","United States",NULL,"0",,"0","0",NULL,NULL
+"1308221922-70a2","2013-08-22 19:22:29","3","70a2e213-22-08","account","0","6.5","0","27.5","106",NULL,NULL,"Eric Dupree",,"8501 E. Louise Dr",,"Tucson","Arizona","85730","United States",NULL,"0",,"0","0",NULL,NULL
+"1308222355-5b96","2013-08-22 23:55:07","3","5b96da13-22-08","account","0","6.5","0","15.5","106",NULL,NULL,"ben taylor",,"500 S. Third",,"Saint Joe","Arkansas","72675","United States",NULL,"0",,"0","0",NULL,NULL
+"1308230028-a909","2013-08-23 00:28:07","3","a909f213-23-08","account","0","6.5","0","15.5","106",NULL,NULL,"Russ Swinney","Russ Swinney","5977 Born Drive",,"Pensacola","Florida","32504-6345","United States",NULL,"0",,"0","0",NULL,NULL
+"1308231104-cd7d","2013-08-23 11:04:36","3","cd7dbd13-23-08","guest","0","15","0","156","106",NULL,NULL,"James Karr",,"628 Yukon Ave.",,"Elko","Nevada","89801-4152","United States",NULL,"0",,"0","0",NULL,NULL
+"1308231200-c51f","2013-08-23 12:00:49","3","c51f1c13-23-08","guest","0","7.5","0","21.5","106",NULL,NULL,"Edward Sisson",,"1966 Elm St. #2",,"Manchester","New Hampshire","03104","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1308231257-9a17","2013-08-23 12:57:10","3","9a17c513-23-08","account","0","11.5","0","78","106",NULL,NULL,"Chris Morgan",,"38000 Hills Tech Drive",,"Farmington Hills","Michigan","48331","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1308231542-05ac","2013-08-23 15:42:07","3","05aca713-23-08","account","0","7.5","0","26.75","106",NULL,NULL,"William Parks",,"PO Box 1175",,"Covington","Virginia","24426","United States",NULL,"0",,"2.25","0",NULL,NULL
+"1308241824-b807","2013-08-24 18:24:55","3","b807dd13-24-08","account","0","15","0","125","107",NULL,NULL,"Tom Johnson",,"688 Levac Drive",,"Orleans","Ontario","K4A2P6","Canada",NULL,"0",,"0","0",NULL,NULL
+"1308250010-14d5","2013-08-25 00:10:59","3","14d53a13-25-08","account","0","11.5","0","66.5","106",NULL,NULL,"Gregory Gustafson",,"300 Cobb island court",,"Chesapeake","Virginia","23322","United States",NULL,"0",,"0","0",NULL,NULL
+"1308260954-4df6","2013-08-26 09:54:57","3","4df65113-26-08","account","0","7.5","0","31","106",NULL,NULL,"Roger White",,"6889 Autumn Mist Court",,"Mason","Ohio","45040","United States",NULL,"0",,"2.5","0",NULL,NULL
+"1308261325-f516","2013-08-26 13:25:05","3","f5161013-26-08","account","0","6.5","0","15.5","106",NULL,NULL,"Bradley Baker","Bradley Baker","151 Lamont Pkwy",,"Bartlett","Illinois","60103","United States",NULL,"0",,"0","0",NULL,NULL
+"1308261334-738c","2013-08-26 13:34:52","3","738c2513-26-08","account","0","15","0","125","106",NULL,NULL,"William White",,"250 Eagle Drive",,"Blairsville","Georgia","30512","United States",NULL,"0",,"0","0",NULL,NULL
+"1308261834-3382","2013-08-26 18:34:40","3","33824313-26-08","account","0","11.5","0","66.5","106",NULL,NULL,"Larry Zwahlen","Meyerhardt Lodge 314 F&AM","PO Box 501",,"Kennesaw","Georgia","30156-0501","United States",NULL,"0",,"0","0",NULL,NULL
+"1308262301-4f1d","2013-08-26 23:01:17","3","4f1d9013-26-08","account","0","11.5","0","66.5","106",NULL,NULL,"Tim Lange",,"2406 Oak Ave",,"Slayton","Minnesota","56172","United States",NULL,"0",,"0","0",NULL,NULL
+"1308271229-dbbc","2013-08-27 12:29:43","3","dbbc2e13-27-08","guest","0","11.5","0","66.5","106",NULL,NULL,"Theodore Williams",,"1757 Highland Blvd #2",,"Bozeman","Montana","59715","United States",NULL,"0",,"0","0",NULL,NULL
+"1308271400-9951","2013-08-27 14:00:27","3","9951e413-27-08","account","0","7.5","0","21.5","106",NULL,NULL,"Robert Ierien",,"134 Post Oak Road",,"La Vernia","Texas","78121","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1308271703-9169","2013-08-27 17:03:41","3","91691713-27-08","account","0","15","0","125","106",NULL,NULL,"Zachary Holmes",,"368 Day Lily St",,"Auburn","Alabama","36832","United States",NULL,"0",,"0","0",NULL,NULL
+"1308272233-617a","2013-08-27 22:33:07","1","617a6213-27-08","account","0","8.5","0","38.5","106",NULL,NULL,"David Mason",,"84 Cobb Lane",,"N. Clarendon","Vermont","05759-9312","United States",NULL,"0",,"0","0",NULL,NULL
+"1308272315-c89d","2013-08-27 23:15:17","1","c89d7213-27-08","account","0","13.5","0","102.5","106",NULL,NULL,"Michael Deiker",,"5 Coralvine Ct. ",,"The Woodlands","Texas","77380","United States",NULL,"0",,"0","0",NULL,NULL
+"1308281130-aea0","2013-08-28 11:30:28","3","aea04c13-28-08","account","0","15","0","136","106",NULL,NULL,"Lance Atchison",,"111 Chacahoula Ln",,"Mandeville","Louisiana","70471","United States",NULL,"0",,"5","0",NULL,NULL
+"1308281508-4e8c","2013-08-28 15:08:18","3","4e8cd513-28-08","account","0","15","0","125","106",NULL,NULL,"Stuart Cook",,"10341 Pollard Creek Rd",,"Mechanicsville","Virginia","23116","United States",NULL,"0",,"0","0",NULL,NULL
+"1308281738-a317","2013-08-28 17:38:20","1","a3174213-28-08","account","0","20","0","240","106",NULL,NULL,"Dennis Reader",,"1402 Surecrop Ln",,"Pasadena","Texas","77504","United States",NULL,"0",,"0","0",NULL,NULL
+"1308281747-a317","2013-08-28 17:47:13","3","a3174213-28-08","account","0","20","0","240","106",NULL,NULL,"Dennis D Reader",,"1402 Surecrop Ln",,"Pasadena","Texas","77504","United States",NULL,"0",,"0","0",NULL,NULL
+"1308291445-c89d","2013-08-29 14:45:05","3","c89d7213-27-08","account","0","0","0","89","0",NULL,NULL,"Michael Deiker",,"5 Coralvine Ct. ",,"The Woodlands","Texas","77380","United States",NULL,"0",,"0","0",NULL,NULL
+"1308291534-7df4","2013-08-29 15:34:12","3","7df4ad13-29-08","guest","0","3","0","6.5","106",NULL,NULL,"Cal Turner",,"1941 3rd Loop Road",,"Florence ","South Carolina","29501","United States",NULL,"0",,"0","0",NULL,NULL
+"1308292230-b05e","2013-08-29 22:30:26","3","b05e1c13-29-08","guest","0","11.5","0","66.5","106",NULL,NULL,"George Wright",,"27 Lakeside Ct.",,"Yorkville","Illinois","60560+9412","United States",NULL,"0",,"0","0",NULL,NULL
+"1308301252-5731","2013-08-30 12:52:30","3","57311d13-30-08","guest","0","6.5","0","12.3","106",NULL,NULL,"Thos. L. Caldwell",,"1849 Mound Rd.",,"Jacksonville","Illinois","62650","United States",NULL,"0",,"2.5","0",NULL,NULL
+"1308302258-bee5","2013-08-30 22:58:04","3","bee52c13-30-08","account","0","11.5","0","66.5","106",NULL,NULL,"Don Springler",,"PO Box 73455",,"Metairie","Louisiana","70033-3455","United States",NULL,"0",,"0","0",NULL,NULL
+"1308310201-788d","2013-08-31 02:01:52","3","788d5013-31-08","guest","0","11.5","0","66.5","106",NULL,NULL,"Michael Starkey",,"1004 Black Bear Turnaround",,"North Pole","Alaska","99705","United States",NULL,"0",,"0","0",NULL,NULL
+"1308312015-ab79","2013-08-31 20:15:30","3","ab79f413-31-08","guest","0","15","0","125","106",NULL,NULL,"Lawrence Rosen",,"24 westshore rd","PO box 206","Alburgh","Vermont","05440","United States",NULL,"0",,"0","0",NULL,NULL
+"1308312024-403c","2013-08-31 20:24:53","3","403c4b13-31-08","guest","0","11.5","0","75.5","106",NULL,NULL,"Andrew Kaffes",,"44086 Macedonia Court",,"Ashburn","Virginia","20147","United States",NULL,"0","Looking forward to reading the material Brothers!","0","0",NULL,NULL
+"1308312348-b350","2013-08-31 23:48:05","3","b350e213-31-08","account","0","11.5","0","66.5","106",NULL,NULL,"Patrick Murphrey",,"2030 Nicklaus Drive",,"Suffolk","Virginia","23435","United States",NULL,"0",,"0","0",NULL,NULL
+"1309011241-cc4c","2013-09-01 12:41:19","3","cc4c4b13-01-09","guest","0","11.5","0","66.5","106",NULL,NULL,"Aram Adishian",,"260 Country Club Dr.",,"Oradell","New Jersey","07649","United States",NULL,"0",,"0","0",NULL,NULL
+"1309012032-0d4e","2013-09-01 20:32:26","3","0d4e3613-01-09","account","0","11.5","0","76.5","106",NULL,NULL,"Steven Kazda",,"1210 Columbia","PO Box 122","Pomeroy","Washington","99347","United States",NULL,"0",,"4","0",NULL,NULL
+"1309020128-c8ec","2013-09-02 01:28:33","3","c8ecd013-02-09","guest","0","11.5","0","66.5","106",NULL,NULL,"John Brobst",,"5 West Elm Street",,"Tamaqua","Pennsylvania","18252","United States",NULL,"0",,"0","0",NULL,NULL
+"1309021135-96a1","2013-09-02 11:35:45","3","96a1e213-02-09","account","0","7.5","0","18.5","106",NULL,NULL,"PORTER BAILEY",,"506 WOLF CREEK RD. S.",,"PELL CITY","Alabama","35128","United States",NULL,"0",,"1.5","0",NULL,NULL
+"1309021149-566e","2013-09-02 11:49:39","1","566eb313-01-09","guest","0","11.5","0","66.5","106",NULL,NULL,"Robert Chapman",,"401 14th Avenue",,"Greeley","Colorado","80631","United States",NULL,"0",,"0","0",NULL,NULL
+"1309021159-0594","2013-09-02 11:59:18","3","05941113-02-09","account","0","11.5","0","66.5","106",NULL,NULL,"Michael Nicholas",,"22015 Guilford Station Terrace",,"Sterling","Virginia","20166","United States",NULL,"0",,"0","0",NULL,NULL
+"1309021319-27ca","2013-09-02 13:19:55","3","27cac013-02-09","guest","0","3","0","8","106",NULL,NULL,"Johnny Grimes",,"12993 F.M.1277",,"SanAugustine","Texas","75972","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1309021327-b555","2013-09-02 13:27:00","3","b555f513-02-09","account","0","15","0","125","106",NULL,NULL,"William Carter",,"956 Brickenridge Drive",,"Richmond","Indiana","47374","United States",NULL,"0",,"0","0",NULL,NULL
+"1309031143-cd2a","2013-09-03 11:43:11","3","cd2a5513-03-09","account","0","11.5","0","80.25","106",NULL,NULL,"Brent Stewart","AMEC","2722 East McCarty Street","P.O. Box 1645","Jefferson City","Missouri","65102","United States",NULL,"0",,"2.25","0",NULL,NULL
+"1309031232-246e","2013-09-03 12:32:40","3","246eec13-03-09","account","0","11.5","0","66.5","106",NULL,NULL,"Domenic Corbo","Union Lodge No. 5 AF&AM","47 Kirkham Place",,"Stamford","Connecticut","06906","United States",NULL,"0",,"0","0",NULL,NULL
+"1309051009-de20","2013-09-05 10:09:08","3","de20cf13-05-09","account","0","7.5","0","18.5","106",NULL,NULL,"Ed Smith",,"222 Diamond Pt. Rd.",,"Diamond Pt.","New York","12824","United States",NULL,"0",,"1.5","0",NULL,NULL
+"1309061709-22d6","2013-09-06 17:09:33","3","22d6f113-06-09","account","0","6.5","0","15.5","106",NULL,NULL,"Richard Weible",,"196 Creek Bottom Road",,"Labadie","Missouri","63055","United States",NULL,"0",,"0","0",NULL,NULL
+"1309061722-22d6","2013-09-06 17:22:29","3","22d6f113-06-09","account","0","3","0","8","106",NULL,NULL,"Richard Weible",,"196 Creek Bottom Road",,"Labadie","Missouri","63055","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1309062245-145b","2013-09-06 22:45:20","3","145bd613-06-09","guest","0","15","0","125","106",NULL,NULL,"William Biggs","Casper Lodge No. 15","2705 E. 5th",,"Casper","Wyoming","82609-2547","United States",NULL,"0","This for our Lodge. ","0","0",NULL,NULL
+"1309070236-1342","2013-09-07 02:36:03","3","13427313-07-09","guest","0","15","0","125","106",NULL,NULL,"Clint Stevens",,"5502 Pinewood Springs",,"Houston","Tennessee","77066","United States",NULL,"0",,"0","0",NULL,NULL
+"1309071023-1b13","2013-09-07 10:23:10","3","1b13dc13-07-09","account","0","6.5","0","15.5","107",NULL,NULL,"Timothy Bagley","Timothy L. Bagley","665 Langlois St.",,"Sherbrooke","Quebec","J1E 1P3","Canada",NULL,"0",,"0","0",NULL,NULL
+"1309080451-94a2","2013-09-08 04:51:44","3","94a2c613-08-09","guest","0","11.5","0","66.5","106",NULL,NULL,"COL William Michael Alexander",,"PSC 311","Box 28","APO","Armed Forces Pacific","96258","United States",NULL,"0",,"0","0",NULL,NULL
+"1309080858-2cb6","2013-09-08 08:58:03","3","2cb60613-08-09","account","0","15","0","125","106",NULL,NULL,"Tobby Small",,"8311 Cherokee Rd",,"Richmond","Virginia","23235","United States",NULL,"0",,"0","0",NULL,NULL
+"1309092143-9abb","2013-09-09 21:43:23","3","9abbf713-09-09","account","0","6.5","0","15.5","106",NULL,NULL,"Fran Rojas",,"701 11th Ave NW",,"Isani","Minnesota","55040","United States",NULL,"0",,"0","0",NULL,NULL
+"1309101535-bbaf","2013-09-10 15:35:22","3","bbaf2a13-10-09","account","0","8.5","0","35.5","106",NULL,NULL,"Gerald Peck","Red Oak Masonic Lodge #461","c/o Secretary","412 Sorrel Lane","Red Oak","Texas","75154","United States",NULL,"0",,"0","0",NULL,NULL
+"1309101642-eb19","2013-09-10 16:42:15","3","eb197613-10-09","guest","0","11.5","0","87.5","106",NULL,NULL,"Thomas Lima","William Sutton Lodge","104 Broadway","#3","Saugus","Massachusetts","01906","United States",NULL,"0",,"0","0",NULL,NULL
+"1309111030-f62c","2013-09-11 10:30:49","3","f62ce813-10-09","account","0","11.5","0","69","106",NULL,NULL,"Boyd Weaver","Boyd Weaver","715 Leedsfield Ct",,"Arlington","Texas","76017","United States",NULL,"0",,"11.5","0",NULL,NULL
+"1309111236-987a","2013-09-11 12:36:48","3","987ab213-11-09","account","0","0","0","12","0",NULL,NULL,"Michael T. Sica",,"117 Corbin Court",,"Lakewood","New Jersey","08701","United States",NULL,"0",,"0","0",NULL,NULL
+"1309121248-821f","2013-09-12 12:48:33","3","821fec13-12-09","guest","0","6.5","0","15.5","106",NULL,NULL,"Larry Berry",,"71 Kentucky Hollow Rd.,",,"Bedford","Indiana","47421","United States",NULL,"0",,"0","0",NULL,NULL
+"1309131150-d162","2013-09-13 11:50:13","3","d1627613-13-09","guest","0","7.5","0","23","106",NULL,NULL,"Peter Pelke",,"301 Briarwood Lane",,"Algonquin","Illinois","60102","United States",NULL,"0",,"7.5","0",NULL,NULL
+"1309151432-5673","2013-09-15 14:32:27","3","56736e13-15-09","guest","0","3","0","19","106",NULL,NULL,"phil spadaccini","phil spadaccini","po box 49",,"waddington","New York","13694","United States",NULL,"0",,"7.5","0",NULL,NULL
+"1309161207-4a0e","2013-09-16 12:07:21","3","4a0ec913-16-09","account","0","7.5","0","22.95","106",NULL,NULL,"David Frogner",,"613 Iverson Rd",,"Colfax","Wisconsin","54730","United States",NULL,"0",,"2.25","0",NULL,NULL
+"1309161353-1c96","2013-09-16 13:53:24","1","1c960f13-16-09","guest","0","0","0","12","0",NULL,NULL,"TIMOTHY KIRSHMAN",,"4892 SOUTHRIDGE DRIVE",,"TAYLORSVILLE","Utah","84129","United States",NULL,"0",,"0","0",NULL,NULL
+"1309162216-d93f","2013-09-16 22:16:35","5","d93fe713-16-09","account","0","7.5","0","21.5","106",NULL,NULL,"Henry G. Scanlan ,Jr.","George Scanlan, Inc.","4043 Aletha Dr.","4043 Aletha Dr.","Baton Rouge","Louisiana","70814","United States",NULL,"0",,"0","0",NULL,NULL
+"1309162240-e13b","2013-09-16 22:40:13","3","e13b7e13-16-09","guest","0","7.5","0","21.5","106",NULL,NULL,"H.G. Scanlan,Jr.","H.G.Scanlan,Jr.","4043 Aletha Dr..",,"Baton Rouge","Louisiana","70814","United States",NULL,"0","Pay with Pay Pal","0","0",NULL,NULL
+"1309170229-4e2b","2013-09-17 02:29:14","3","4e2b9513-17-09","account","0","7.5","0","37","106",NULL,NULL,"DENNIS SUARINO",,"3888 N STIRRUP DR",,"BEVERLY HILLS","Florida","34465","United States",NULL,"0",,"30","0",NULL,NULL
+"1309191113-3cfb","2013-09-19 11:13:37","3","3cfb8b13-19-09","guest","0","8.5","0","29","106",NULL,NULL,"Richard Beecher",,"7033 SW 42nd Ave",,"Amarillo","Texas","79109","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1309201306-26df","2013-09-20 13:06:48","3","26dfdd13-20-09","account","0","0","0","12","0",NULL,NULL,"Jesse Ruch",,"6200 Old Harding Highway","Apartment L-3","Mays Landing","New Jersey","08330","United States",NULL,"0",,"0","0",NULL,NULL
+"1309221652-b102","2013-09-22 16:52:33","5","b1022513-22-09","guest","0","0","0","12","0",NULL,NULL,"Dan Brill",,"2700 De Cook Ave.",,"Park Ridge","Illinois","60078","United States",NULL,"0",,"0","0",NULL,NULL
+"1309222031-b8d0","2013-09-22 20:31:24","3","b8d09913-22-09","guest","0","7.5","0","20","106",NULL,NULL,"Russ Todd",,"12 Stonewood Drive",,"Old Lyme","Connecticut","06371","United States",NULL,"0",,"0","0",NULL,NULL
+"1309231225-4ee4","2013-09-23 12:25:18","5","4ee49f13-23-09","guest","0","0","0","12","0",NULL,NULL,"Dan Brill",,"2700 De Cook Ave.",,"Park Ridge","Illinois","60078","United States",NULL,"0",,"0","0",NULL,NULL
+"1309231338-fefe","2013-09-23 13:38:25","1","fefe5b13-23-09","account","0","11.5","0","63","106",NULL,NULL,"Randy Veroline",,"1451 Moccasin Creek Rd",,"Murphy","North Carolina","28906","United States",NULL,"0",,"16.5","0",NULL,NULL
+"1309241403-432e","2013-09-24 14:03:07","3","432e2a13-24-09","guest","0","6.5","0","15.5","106",NULL,NULL,"William White",,"542 E. Radburn St.",,"Tucson","Arizona","85704","United States",NULL,"0",,"0","0",NULL,NULL
+"1309241640-defd","2013-09-24 16:40:02","3","defdee13-24-09","account","0","0","0","12","0",NULL,NULL,"Ramesh Raghavan",,"7325 Stanford Ave",,"St. Louis","Missouri","63130","United States",NULL,"0",,"0","0",NULL,NULL
+"1309261537-066b","2013-09-26 15:37:52","3","066bde13-26-09","guest","0","10.5","0","57.5","106",NULL,NULL,"Palmer Martin","Grand Lodge of Vermont","49 East Rd",,"Barre","Vermont","05641-5390","United States",NULL,"0",,"10","0",NULL,NULL
+"1309281048-e699","2013-09-28 10:48:40","1","e6999913-28-09","guest","0","7.5","0","20","106",NULL,NULL,"Phillip Hurwitz",,"72 Long Pond Road",,"Rochester","New York","14612","United States",NULL,"0",,"0","0",NULL,NULL
+"1309281053-3267","2013-09-28 10:53:49","3","3267b313-28-09","guest","0","7.5","0","20","106",NULL,NULL,"Phillip Hurwitz",,"72 Long Pond Road",,"Rochester","New York","14612","United States",NULL,"0",,"0","0",NULL,NULL
+"1310011904-826a","2013-10-01 19:04:30","3","826a7313-01-10","account","0","0","0","12","0",NULL,NULL,"Peter Stein",,"3519 Wallace Dr.",,"Grand Island","New York","14072","United States",NULL,"0",,"0","0",NULL,NULL
+"1310021645-6ed5","2013-10-02 16:45:55","3","6ed50a13-02-10","account","0","13.5","0","103.5","106",NULL,NULL,"DONALD CURTIS",,"7305 WHITEHALL DR",,"INDIANAPOLIS","Indiana","46256","United States",NULL,"0",,"0","0",NULL,NULL
+"1310051304-2aa9","2013-10-05 13:04:34","3","2aa91913-05-10","account","0","8.5","0","33.5","106",NULL,NULL,"Walt Atchley","Thomas B Hunter Lodge #1356","PO Box 531406",,"Grand Prairie","Texas","75053","United States",NULL,"0",,"2","0",NULL,NULL
+"1310061738-2793","2013-10-06 17:38:04","3","27937313-06-10","account","0","7.5","0","35.2","106",NULL,NULL,"Alex Tambrini",,"12 Bonnie Court North",,"Homosassa","Florida","34446","United States",NULL,"0",,"7.5","0",NULL,NULL
+"1310062003-fc74","2013-10-06 20:03:27","3","fc746c13-06-10","account","0","7.5","0","21","106",NULL,NULL,"Donald Hale",,"P.O. Box 240211",,"Douglas","Alaska","9984-0211","United States",NULL,"0",,"0","0",NULL,NULL
+"1310062024-fc74","2013-10-06 20:24:49","3","fc746c13-06-10","account","0","0","0","12","0",NULL,NULL,"Donald Hale",,"P.O. Box 240211",,"Douglas","Alaska","9984-0211","United States",NULL,"0",,"0","0",NULL,NULL
+"1310082036-b480","2013-10-08 20:36:52","3","b4808a13-08-10","account","0","6.5","0","13.5","106",NULL,NULL,"TROY BENNETT",,"10 BENNETT DRIVE",,"PIEDMONT","South Carolina","29673","United States",NULL,"0",,"0","0",NULL,NULL
+"1310101148-a575","2013-10-10 11:48:15","3","a5755113-10-10","guest","0","8.5","0","33.5","106",NULL,NULL,"alvin davis",,"84 hall street",,"concord","New Hampshire","03301","United States",NULL,"0",,"2","0",NULL,NULL
+"1310101438-2554","2013-10-10 14:38:52","3","25549913-10-10","account","0","0","0","24","0",NULL,NULL,"Michael Horton",,"PO BOX 242063",,"Anchorage","Alaska","99524","United States",NULL,"0",,"0","0",NULL,NULL
+"1310141542-4a78","2013-10-14 15:42:59","3","4a788313-14-10","account","0","6.5","0","15.5","106",NULL,NULL,"Andrew Ellis",,"79 Barnes Street",,"Gouverneur","New York","13642","United States",NULL,"0",,"0","0",NULL,NULL
+"1310161455-7880","2013-10-16 14:55:44","3","7880a813-14-10","account","0","0","0","12","0",NULL,NULL,"Michael Williamson",,"12445 N. 55th St. W.",,"Sedgwick","Kansas","67135","United States",NULL,"0","I have tried to order all of Carl H. Claudy's "Doric Lodge" plays/skits both online and by phone with no success! Please add ALL 12 of Bro. Claudy's plays to order and send me a PayPal invoice for the amount necessary to pay for the request. Tha","0","0",NULL,NULL
+"1310220819-1cbb","2013-10-22 08:19:13","1","1cbb8313-22-10","account","0","8.5","0","49","106",NULL,NULL,"gerald gilman","gerald gilman","141 elm stree",,"mercer","Maine","04957","United States",NULL,"0",,"10","0",NULL,NULL
+"1310220830-1cbb","2013-10-22 08:30:15","3","1cbb8313-22-10","account","0","8.5","0","49","106",NULL,NULL,"gerald gilman","gerald gilman","141 elm street",,"mercer","Maine","04957","United States",NULL,"0",,"10","0",NULL,NULL
+"1310221434-9745","2013-10-22 14:34:30","3","97451d13-22-10","guest","0","20.5","0","452.5","106",NULL,NULL,"Thomas Nielsen",,"309 Union Street",,"Carlstadt","New Jersey","07072","United States",NULL,"0",,"0","0",NULL,NULL
+"1310241118-3958","2013-10-24 11:18:22","3","39581b13-24-10","account","0","3","0","6.5","106",NULL,NULL,"Jason Yeager",,"1341 Charles Road",,"Jefferson Twp","Pennsylvania","18436","United States",NULL,"0",,"0","0",NULL,NULL
+"1310241435-d769","2013-10-24 14:35:42","5","d7691613-24-10","account","0","13.5","0","103.5","106",NULL,NULL,"Michael Shobe","A.A.S.R. - Valley of Toledo","302 W. Sophia St, Unit C",,"Maumee","Ohio","43537","United States",NULL,"0",,"60","0",NULL,NULL
+"1310241439-d769","2013-10-24 14:39:40","3","d7691613-24-10","account","0","13.5","0","103.5","106",NULL,NULL,"Michael Shobe","A.A.S.R. - Valley of Toledo","302 W. Sophia St, Unit C",,"Maumee","Ohio","43537","United States",NULL,"0",,"60","0",NULL,NULL
+"1310252130-8ae1","2013-10-25 21:30:25","3","8ae14413-25-10","guest","0","7.5","0","21","106",NULL,NULL,"Clifford Rodecker",,"3110 Cantara Cir",,"Sparks","Nevada","89346","United States",NULL,"0",,"0","0",NULL,NULL
+"1310262032-938a","2013-10-26 20:32:17","3","938a3413-26-10","guest","0","0","0","12","0",NULL,NULL,"William Meyer",,"110 Franklin Ave.",,"La Grange","Kentucky","40031","United States",NULL,"0",,"0","0",NULL,NULL
+"1310281205-44ec","2013-10-28 12:05:29","3","44ec3d13-28-10","guest","0","8.5","0","32","106",NULL,NULL,"Jay Custer",,"1470 6th Ave",,"Baldwin","Wisconsin","54002","United States",NULL,"0",,"0","0",NULL,NULL
+"1310281400-bd76","2013-10-28 14:00:53","3","bd76dc13-28-10","guest","0","7.5","0","20","106",NULL,NULL,"Cynthia Fabbri",,"237 Crest Ct.",,"Bloomingdale","Illinois","60108","United States",NULL,"0",,"0","0",NULL,NULL
+"1310282326-1df5","2013-10-28 23:26:39","3","1df50413-28-10","account","0","7.5","0","23.7","106",NULL,NULL,"Ted Hotham","NA","44 Mahalas Lane",,"Owls Head","Maine","04854","United States",NULL,"0",,"7.5","0",NULL,NULL
+"1310301649-276f","2013-10-30 16:49:52","3","276f8413-30-10","account","0","11.5","0","66.5","106",NULL,NULL,"Jim Kudless","James Kudless","PO Box 617",,"Lebanon","New Jersey","08833","United States",NULL,"0",,"22","0",NULL,NULL
+"1310301807-6c31","2013-10-30 18:07:31","3","6c313313-30-10","account","0","3","0","18.8","106",NULL,NULL,"Floyd McGuirt",,"5924 Millstone Lane",,"Stone Mountain","Georgia","30087","United States",NULL,"0",,"0","0",NULL,NULL
+"1310311437-cc9d","2013-10-31 14:37:21","3","cc9dd013-31-10","guest","0","0","0","12","0",NULL,NULL,"Jeremy Mead",,"210 2nd Street SE Ste 400",,"Cedar Rapids","Iowa","52407","United States",NULL,"0",,"0","0",NULL,NULL
+"1311010820-de98","2013-11-01 08:20:36","3","de985613-01-11","guest","0","20.5","0","452.5","106",NULL,NULL,"Timur Mehmet Gucluer","Timur Mehmet Gucluer","34 Oak Lane",,"Randolph","New Jersey","07869","United States",NULL,"0",,"0","0",NULL,NULL
+"1311032055-3822","2013-11-03 20:55:09","3","38225f13-03-11","guest","0","0","0","12","0",NULL,NULL,"ovil winburn","n/a","42 se 62nd ave.",,"ocala","Florida","34472","United States",NULL,"0",,"0","0",NULL,NULL
+"1311040954-a677","2013-11-04 09:54:35","3","a677fe13-04-11","account","0","13.5","0","103.5","106",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"0","0",NULL,NULL
+"1311041000-a677","2013-11-04 10:00:30","3","a677fe13-04-11","account","0","3","0","8","106",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"9","0",NULL,NULL
+"1311041011-a677","2013-11-04 10:11:31","3","a677fe13-04-11","account","0","6.5","0","16.5","106",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"0","0",NULL,NULL
+"1311041429-fefe","2013-11-04 14:29:55","3","fefe5b13-23-09","account","0","7.5","0","21","106",NULL,NULL,"Randy Veroline",,"1451 Moccasin Creek Rd",,"Murphy","North Carolina","28906","United States",NULL,"0",,"0","0",NULL,NULL
+"1311041514-46d6","2013-11-04 15:14:05","3","46d6c213-04-11","account","0","13.5","0","103.5","106",NULL,NULL,"James Voelkle",,"13510 Zion Rd.",,"Tomball","Texas","77375","United States",NULL,"0",,"0","0",NULL,NULL
+"1311051048-3012","2013-11-05 10:48:58","3","30120413-05-11","account","0","0","0","12","0",NULL,NULL,"Larry Odom",,"415 E. 7th St.",,"Trenton","Missouri","64683","United States",NULL,"0",,"0","0",NULL,NULL
+"1311051717-fc65","2013-11-05 17:17:14","3","fc651d13-05-11","account","0","7.5","0","18","106",NULL,NULL,"James Buchanan",,"2568 Wimbledon Park Blvd",,"Toledo","Ohio","43617","United States",NULL,"0",,"0","0",NULL,NULL
+"1311081509-1c1b","2013-11-08 15:09:47","1","1c1b4013-08-11","guest","0","8.5","0","38.5","106",NULL,NULL,"Stephen Saunders",,"9021 Rocky Point Road",,"Soddy Daisy","Tennessee","37379","United States",NULL,"0",,"20","0",NULL,NULL
+"1311082245-5b5b","2013-11-08 22:45:07","3","5b5bfa13-08-11","guest","0","11.5","0","84.6","106",NULL,NULL,"Stan Miller","masonic lodge #45","2520 Oliver Av",,"Crescent City","California","95531","United States",NULL,"0",,"15","0",NULL,NULL
+"1311082246-fbe4","2013-11-08 22:46:45","3","fbe4a613-08-11","guest","0","3","0","18.5","106",NULL,NULL,"Kenneth Thompson",,"1682 Smokehouse Drive",,"Cordova","Tennessee","38016","United States",NULL,"0",,"0","0",NULL,NULL
+"1311101652-e124","2013-11-10 16:52:20","3","e1245513-08-11","account","0","15","0","165","106",NULL,NULL,"Andre Dudley",,"4237 Merriman Loop",,"Howell","Michigan","48843","United States",NULL,"0",,"0","0",NULL,NULL
+"1311102135-a581","2013-11-10 21:35:01","3","a5814b13-10-11","guest","0","0","0","12","0",NULL,NULL,"Albert Gaylord",,"873 East Monbo Rod",,"Statesville","North Carolina","28677","United States",NULL,"0",,"0","0",NULL,NULL
+"1311102256-987a","2013-11-10 22:56:57","3","987a3513-10-11","account","0","0","0","12","0",NULL,NULL,"Laurence Weed","Ramah Lodge #165","4235 Cromwell Court",,"Colorado Springs","Colorado","80906","United States",NULL,"0",,"0","0",NULL,NULL
+"1311111446-9029","2013-11-11 14:46:42","3","90298913-11-11","guest","0","8.5","0","33.5","106",NULL,NULL,"James Sweaney",,"P O Box 613",,"Gardiner","Montana","59030","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1311121840-e7cd","2013-11-12 18:40:12","3","e7cd2413-12-11","account","0","8.5","0","38.1","106",NULL,NULL,"David K. Hansch",,"24981 Dana Point Harbor Drive","Suite 110","Dana Point","California","92629","United States",NULL,"0",,"2.5","0",NULL,NULL
+"1311130019-181a","2013-11-13 00:19:56","3","181a5d13-13-11","guest","0","3","0","6.75","106",NULL,NULL,"Richard Hacker",,"14322 139th Ave Ct. W",,"Taylor Ridge","Illinois","61284","United States",NULL,"0",,"6.75","0",NULL,NULL
+"1311132250-2391","2013-11-13 22:50:09","3","23916913-13-11","account","0","8.5","0","34.5","106",NULL,NULL,"Larry Sutton","Larry Sutton","800 Garrison Road",,"Lula","Georgia","30554","United States",NULL,"0",,"0","0",NULL,NULL
+"1311141759-3071","2013-11-14 17:59:51","3","3071af13-14-11","account","0","0","0","12","0",NULL,NULL,"Richard Brown",,"6630 North Park Circle",,"Shreveport","Louisiana","71107-9518","United States",NULL,"0",,"0","0",NULL,NULL
+"1311141836-c4ad","2013-11-14 18:36:13","3","c4ad0413-14-11","guest","0","0","0","12","0",NULL,NULL,"Robert Powers",,"47 Foxboro Drive",,"Rising Sun","Maryland","21911","United States",NULL,"0",,"0","0",NULL,NULL
+"1311151352-55db","2013-11-15 13:52:48","3","55dbdb13-15-11","account","0","13.5","0","119.5","106",NULL,NULL,"Dennis Vernon",,"2458 Five Shillings Road",,"Frederick","Maryland","21701","United States",NULL,"0",,"10","0",NULL,NULL
+"1311181355-95ad","2013-11-18 13:55:28","3","95ad2013-18-11","account","0","13.5","0","93.5","106",NULL,NULL,"Richard Powell",,"7 White Oak Lane",,"Wayne","New Jersey","07470","United States",NULL,"0",,"29.5","0",NULL,NULL
+"1311221152-48b7","2013-11-22 11:52:11","3","48b7bd13-22-11","account","0","10.5","0","55.5","106",NULL,NULL,"Bill Boulter","lockhart Masonic Lodge 690","11101 FM 1854",,"Dale","Texas","78616","United States",NULL,"0",,"30","0",NULL,NULL
+"1311252006-8671","2013-11-25 20:06:57","3","8671a313-25-11","account","0","0","0","12","0",NULL,NULL,"Joseph Revette",,"1873 County Route 26",,"climax","New York","12042","United States",NULL,"0",,"0","0",NULL,NULL
+"1311261116-53e7","2013-11-26 11:16:52","3","53e76413-26-11","account","0","3","0","42.5","106",NULL,NULL,"PJ Bridenstine",,"310 West Main St.",,"Osakis","Minnesota","56360","United States",NULL,"0",,"0","0",NULL,NULL
+"1312021037-1bf1","2013-12-02 10:37:28","3","1bf1cb13-02-12","account","0","10.5","0","53.5","106",NULL,NULL,"Lee Stith","Lee Stith","444 N Gila Springs Blvd.","Apt. 1013","Chandler","Arizona","85226","United States",NULL,"0",,"14","0",NULL,NULL
+"1312021604-ca38","2013-12-02 16:04:49","3","ca380013-02-12","guest","0","0","0","12","0",NULL,NULL,"bob conner jr",,"po box 840",,"silver city","New Mexico","88062","United States",NULL,"0",,"0","0",NULL,NULL
+"1312031407-455e","2013-12-03 14:07:45","3","455ef113-03-12","account","0","13.5","0","120.5","106",NULL,NULL,"Thomas Winter",,"68 S Conger Avenue",,"Congers","New York","10920","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1312032306-3846","2013-12-03 23:06:51","3","3846b813-03-12","account","0","7.5","0","22","106",NULL,NULL,"Joshua Dempsey","East Ridge Lodge #755","4115 Ringgold Road",,"East Ridge","Tennessee","37412","United States",NULL,"0",,"10","0",NULL,NULL
+"1312041535-42f0","2013-12-04 15:35:32","3","42f07913-04-12","account","0","20.5","0","350.5","106",NULL,NULL,"Alan Bohanan",,"105 Iowa Avenue","Suite 236","Iowa City","Iowa","52240","United States",NULL,"0",,"0","0",NULL,NULL
+"1312051248-c5e2","2013-12-05 12:48:27","3","c5e26913-05-12","account","0","0","0","12","0",NULL,NULL,"Jamie Simpson",,"118 Bellview Road",,"Rockmart","Georgia","30153","United States",NULL,"0",,"0","0",NULL,NULL
+"1312061439-4ebe","2013-12-06 14:39:14","1","4ebeeb13-06-12","account","0","0","0","12","0",NULL,NULL,"Wiley Hart",,"243 Beach Drive",,"Florahome","Florida","32140-1706","United States",NULL,"0",,"0","0",NULL,NULL
+"1312081234-a21f","2013-12-08 12:34:00","3","a21f1013-08-12","guest","0","0","0","12","0",NULL,NULL,"Charlie Babb",,"1300 Jamestown",,"Edmond","Oklahoma","73003","United States",NULL,"0",,"0","0",NULL,NULL
+"1312090909-77af","2013-12-09 09:09:25","5","77af4213-04-08","account","0","13.5","0","113.5","106",NULL,NULL,"James Werman","James Werman","4330 Comanche Dr.",,"Pahrump","Nevada","89061","United States",NULL,"0",,"250","0",NULL,NULL
+"1312120225-7ebe","2013-12-12 02:25:21","3","7ebef913-12-12","account","0","7.5","0","24.5","106",NULL,NULL,"John Grose","Gaskets-N-More / Gasket Guy Inc.","6585 Arville Street","Suite A","Las Vegas","Nevada","89118","United States",NULL,"0",,"0","0",NULL,NULL
+"1312170019-d988","2013-12-17 00:19:46","1","d9881713-17-12","account","0","6.5","0","15.5","106",NULL,NULL,"Dan Collins","Dan Collins","4816 Sand Hill Dr.",,"Colorado Springs","Colorado","80923","United States",NULL,"0",,"0","0",NULL,NULL
+"1312171343-6de3","2013-12-17 13:43:45","3","6de35f13-17-12","account","0","10.5","0","53","106",NULL,NULL,"Dusty Parsons",,"1549 Fairidge",,"Kingsport","Tennessee","37664","United States",NULL,"0",,"62.5","0",NULL,NULL
+"1312231312-3c90","2013-12-23 13:12:29","3","3c901013-23-12","guest","0","3","0","6.5","106",NULL,NULL,"John Porteus",,"55144 County Road 5",,"West Lafayette","Ohio","43845","United States",NULL,"0",,"0","0",NULL,NULL
+"1312231408-03e6","2013-12-23 14:08:40","3","03e66e13-23-12","account","0","0","0","12","0",NULL,NULL,"Anthony Waterson",,"7814 Ridghurst PL",,"Louisville ","Kentucky","40299","United States",NULL,"0",,"0","0",NULL,NULL
+"1312262246-b47b","2013-12-26 22:46:47","3","b47bcd13-26-12","account","0","0","0","12","0",NULL,NULL,"Ryan Powers",,"3403 Monroe Rd",,"Allegan","Michigan","49010","United States",NULL,"0",,"0","0",NULL,NULL
+"1312301735-e5fe","2013-12-30 17:35:22","3","e5feb013-30-12","account","0","0","0","12","0",NULL,NULL,"Alan McCollum",,"306 E Semands",,"Conroe","Texas","77301","United States",NULL,"0",,"0","0",NULL,NULL
+"1312301739-e5fe","2013-12-30 17:39:52","3","e5feb013-30-12","account","0","3","0","7","106",NULL,NULL,"Alan McCollum",,"306 E Semands",,"Conroe","Texas","77301","United States",NULL,"0",,"3","0",NULL,NULL
+"1401021543-74a9","2014-01-02 15:43:25","3","74a98714-02-01","guest","0","3","0","8","106",NULL,NULL,"Edward Howard",,"2617 Camino Pl W",,"Kettering","Ohio","45420","United States",NULL,"0",,"0","0",NULL,NULL
+"1401031726-985a","2014-01-03 17:26:55","3","985af614-03-01","guest","0","3","0","20","106",NULL,NULL,"Jon Sage",,"902 West Second St",,"Seymour","Indiana","47274","United States",NULL,"0",,"0","0",NULL,NULL
+"1401031943-7464","2014-01-03 19:43:38","3","7464dc14-03-01","account","0","13.5","0","107.5","106",NULL,NULL,"RICH KINSEY",,"21 HICKORY",,"CHELSEA","Michigan","48118-9417","United States",NULL,"0",,"10","0",NULL,NULL
+"1401081232-3d00","2014-01-08 12:32:27","3","3d004f13-19-08","account","0","7.5","0","21","106",NULL,NULL,"WILLIAM MULLEN","N.A","108 WILLIAMS COURT",,"MOBILE","Alabama","36606","United States",NULL,"0",,"0","0",NULL,NULL
+"1401091254-1106","2014-01-09 12:54:04","3","11068514-09-01","guest","0","0","0","12","0",NULL,NULL,"Chris Stokes",,"14311-11 Runabout Ct",,"Laurel","Maryland","20707","United States",NULL,"0",,"0","0",NULL,NULL
+"1401091318-a4c6","2014-01-09 13:18:29","3","a4c66f14-09-01","guest","0","10.5","0","60.5","106",NULL,NULL,"Douglas McFarland",,"216 Sioux Pass",,"Brookings","South Dakota","57006","United States",NULL,"0",,"4","0",NULL,NULL
+"1401092027-9480","2014-01-09 20:27:06","3","94804014-09-01","account","0","7.5","0","22.5","106",NULL,NULL,"John Wright","G Wright.Co.","143 Wadsworth St",,"Geneva","New York","14456","United States",NULL,"0",,"10","0",NULL,NULL
+"1401102029-f570","2014-01-10 20:29:36","3","f570c714-10-01","account","0","11.5","0","78","106",NULL,NULL,"Lodge Secretary","Unity Lodge #198","161 141st PL NE",,"Bellevue","Washington","98007-6911","United States",NULL,"0",,"39","0",NULL,NULL
+"1401111335-085c","2014-01-11 13:35:40","3","085c9f14-11-01","account","0","3","0","18.5","106",NULL,NULL,"Christopher Carrott",,"124 colonial rd",,"Plainfield","Connecticut","06374","United States",NULL,"0",,"0","0",NULL,NULL
+"1401130809-267a","2014-01-13 08:09:12","3","267a3a14-13-01","account","0","8.5","0","40.8","106",NULL,NULL,"Christopher Smith",,"5840 Liska Drive",,"Jacksonville","Florida","32244","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1401131433-3d81","2014-01-13 14:33:50","3","3d810f14-13-01","account","0","6.5","0","14","106",NULL,NULL,"Lawrence Renfro","JL ENTERPRISES","100 Carrollton Ave",,"Shreveport","Louisiana","71105","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1401131515-bb20","2014-01-13 15:15:34","3","bb200914-13-01","account","0","20.5","0","452.5","106",NULL,NULL,"Richard Holst",,"267 Burlington Rd",,"Freehold","New Jersey","07728","United States",NULL,"0",,"0","0",NULL,NULL
+"1401132311-cc75","2014-01-13 23:11:04","3","cc758c14-13-01","guest","0","3","0","18.5","106",NULL,NULL,"Bill Reynar",,"10253 NE 129th LN",,"Kirkland","Washington","98034","United States",NULL,"0",,"0","0",NULL,NULL
+"1401181800-941b","2014-01-18 18:00:05","3","941bad14-18-01","guest","0","7.5","0","21","106",NULL,NULL,"Conley Dykes",,"111 Dawn Ct",,"Lavergne","Tennessee","37086","United States",NULL,"0",,"0","0",NULL,NULL
+"1401190624-f3ef","2014-01-19 06:24:38","1","f3ef5114-19-01","account","0","3","0","6.5","106",NULL,NULL,"Matthew Simpson",,"28 Lafayette St.",,"Goose Creek","South Carolina","29445","United States",NULL,"0",,"0","0",NULL,NULL
+"1401190706-f3ef","2014-01-19 07:06:59","3","f3ef5114-19-01","account","0","3","0","6.5","106",NULL,NULL,"Matthew Simpson",,"28 Lafayette St.",,"Goose Creek","South Carolina","29445","United States",NULL,"0",,"0","0",NULL,NULL
+"1401190736-bb64","2014-01-19 07:36:21","3","bb648214-19-01","account","0","3","0","8","106",NULL,NULL,"James Blake",,"6 Carolee Dr",,"Dover","Delaware","19901","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1401191036-3e4d","2014-01-19 10:36:06","1","3e4d5214-19-01","account","0","6.5","0","15","106",NULL,NULL,"Bennie Woods",,"124 Jae Ct",,"Moyock","North Carolina","27958","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1401210912-f3e3","2014-01-21 09:12:05","3","f3e33814-21-01","account","0","6.5","0","13.5","106",NULL,NULL,"Michael Kula",,"42983 Park Creek Drive",,"Broaldands","Virginia","20148","United States",NULL,"0",,"1.5","0",NULL,NULL
+"1401211024-fce4","2014-01-21 10:24:50","3","fce45214-21-01","guest","0","7.5","0","21","106",NULL,NULL,"Jon Seabaugh","grand river lodge 276","1905 E 281 street",,"cleveland","Missouri","64734","United States",NULL,"0",,"0","0",NULL,NULL
+"1401250942-4421","2014-01-25 09:42:11","3","4421e314-25-01","account","0","7.5","0","37.5","106",NULL,NULL,"Ralph Frazier",,"6400 Murray Lane",,"Brentwood","Tennessee","37027","United States",NULL,"0",,"20","0",NULL,NULL
+"1401261012-3f00","2014-01-26 10:12:59","3","3f005414-26-01","account","0","6.5","0","27","106",NULL,NULL,"WAYNE SPOONER",,"1820 W NORWOOD ST # C",,"CHICAGO","Illinois","60660","United States",NULL,"0",,"0","0",NULL,NULL
+"1401261533-758e","2014-01-26 15:33:51","3","758e5914-26-01","account","0","10.5","0","55.5","106",NULL,NULL,"Ernest Runyon",,"5732 Starling Circle",,"Haltom City","Texas","76117","United States",NULL,"0","I need overnight shipment. Please respond ASAP with price for overnight express shipping.","2","0",NULL,NULL
+"1401271221-b8db","2014-01-27 12:21:29","3","b8db3014-27-01","guest","0","0","0","12","0",NULL,NULL,"Peter Rompf",,"29 Bullard St",,"Mastic","New York","11950","United States",NULL,"0",,"0","0",NULL,NULL
+"1401271857-9846","2014-01-27 18:57:16","4","98463b14-27-01","account","0","8.5","0","36.7","106","2003-12-20 00:00:00",,"Elmer Etgen",,"3523 East 4th Street",,"Lubbock","Texas","79403","United States",,"0",,"0","0",NULL,"0"
+"1401280827-5143","2014-01-28 08:27:34","3","51434414-28-01","account","0","7.5","0","19","106",NULL,NULL,"Gerald Tait","Gerald Tait","142 E Hazel St",,"Homeland","Georgia","31537","United States",NULL,"0",,"7.5","0",NULL,NULL
+"1401281929-f85f","2014-01-28 19:29:24","3","f85fc614-28-01","account","0","7.5","0","21","106",NULL,NULL,"Franklyn Gallup","Franklyn Gallup","22111 Old Hwy 99 SW",,"Centralia","Washington","98531","United States",NULL,"0",,"0","0",NULL,NULL
+"1401281949-8e3d","2014-01-28 19:49:49","3","8e3d2f14-28-01","guest","0","15","0","190","107",NULL,NULL,"David Hochman",,"1311- 6224 17th Ave. S.E.",,"Calgary","Alberta","T2A 7X8","Canada",NULL,"0",,"72","0",NULL,NULL
+"1401291117-7c2f","2014-01-29 11:17:24","3","7c2fd814-29-01","guest","0","6.5","0","14","106",NULL,NULL,"gary brown",,"9024 Fieldchat Rd.",,"Baltimore","Maryland","21236","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1401291733-a5e4","2014-01-29 17:33:00","3","a5e4d214-29-01","guest","0","7.5","0","18.2","106",NULL,NULL,"William Leser",,"2824 Cheyenne Drive",,"Freeport","Illinois","61032","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1401292012-b4c4","2014-01-29 20:12:22","1","b4c49714-29-01","guest","0","3","0","8","106",NULL,NULL,"Mark Cowlishaw",,"109 Leola St",,"Silsbee","Texas","77656","United States",NULL,"0",,"0","0",NULL,NULL
+"1401292019-762a","2014-01-29 20:19:48","1","762a0b14-29-01","guest","0","3","0","8","106",NULL,NULL,"Mark Cowlishaw",,"109 Leola St",,"Silsbee","Texas","77656","United States",NULL,"0",,"0","0",NULL,NULL
+"1401301442-1396","2014-01-30 14:42:29","3","13969b14-30-01","account","0","6.5","0","27","106",NULL,NULL,"Richard Garren",,"14725 Aspen View Way",,"Leo","Indiana","46765","United States",NULL,"0",,"0","0",NULL,NULL
+"1401311303-2afe","2014-01-31 13:03:05","3","2afe3a14-31-01","account","0","8.5","0","35.5","106",NULL,NULL,"Jim Craig","Albert Pike #303","401 S Seneca",,"Wichita","Kansas","67213","United States",NULL,"0",,"0","0",NULL,NULL
+"1402011530-e73d","2014-02-01 15:30:41","3","e73d9414-01-02","account","0","3","0","8","106",NULL,NULL,"Eugene D. Racz",,"16755 Melville Road",,"Henderson","Maryland","21640-1670","United States",NULL,"0",,"0","0",NULL,NULL
+"1402031203-f712","2014-02-03 12:03:42","3","f712c614-03-02","guest","0","8.5","0","37","106",NULL,NULL,"Brian Kush",,"PSC 41 Box 4139",,"APO","Armed Forces Europe","09464","United States",NULL,"0",,"10","0",NULL,NULL
+"1402032035-01f9","2014-02-03 20:35:29","3","01f9b613-03-08","account","0","6.5","0","13.5","106",NULL,NULL,"Donald Eastlake",,"155 Beaver Street",,"Milford","Massachusetts","01757","United States",NULL,"0",,"1.5","0",NULL,NULL
+"1402051422-7f15","2014-02-05 14:22:24","3","7f155f14-05-02","guest","0","6.5","0","16.5","107",NULL,NULL,"Don Duplisea",,"158 Sunbury Drive",,"Fredericton Junction","New Brunswick","E5L 1R4","Canada",NULL,"0",,"0","0",NULL,NULL
+"1402051648-33e8","2014-02-05 16:48:19","3","33e81314-05-02","account","0","3","0","18.75","106",NULL,NULL,"David Reilly","reilly","2718 27thWay",,"West Palm Beach","Florida","33407","United States",NULL,"0",,"6.75","0",NULL,NULL
+"1402052038-bbef","2014-02-05 20:38:33","3","bbefd814-05-02","guest","0","3","0","8","106",NULL,NULL,"John Karroum",,"4814 Orchard Lane",,"Delray Beach","Florida","33445","United States",NULL,"0",,"0","0",NULL,NULL
+"1402080852-2339","2014-02-08 08:52:55","3","23390413-16-06","account","0","3","0","8","106",NULL,NULL,"Robert Judah II","R. E. Judah II","P. O. Box 192",,"Fairland","Indiana","46126","United States",NULL,"0","Please use the following account - Master Card - #5516-1105-9559-8916 - Expires 7/14 Thanks and GOD BLESS
<br>Dr. J (docjudah3@sbcglobal.net)","0","0",NULL,NULL
+"1402111844-364b","2014-02-11 18:44:38","1","364bbf14-11-02","account","0","7.5","0","22.5","106",NULL,NULL,"Todd Bennicas",,"226 Perthshire Dr.",,"Lancaster","Pennsylvania","17603","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1402130945-f9ee","2014-02-13 09:45:14","3","f9ee6814-13-02","guest","0","0","0","12","0",NULL,NULL,"Herb Steinberg",,"148 Warner St",,"Manchester","New Hampshire","03102-4164","United States",NULL,"0",,"0","0",NULL,NULL
+"1402151539-a768","2014-02-15 15:39:12","3","a7681814-15-02","guest","0","6.5","0","14","106",NULL,NULL,"Allan Martin",,"6 Cliffside Rd",,"Marblehead","Massachusetts","01945","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1402161636-9ac7","2014-02-16 16:36:53","3","9ac70214-16-02","account","0","3","0","110","106",NULL,NULL,"Edward Sisson",,"1966 Elm St. #2",,"Manchester","New Hampshire","03104","United States",NULL,"0","I currently subscribe to the Short Talk Bulletin. I want to make sure I continue to receive it. Also, I purchased Volume 1 of the collected Short Talk Bulletins and I love it. Thank you.","0","0",NULL,NULL
+"1402172050-b06c","2014-02-17 20:50:12","1","b06c1114-17-02","guest","0","7.5","0","22.5","106",NULL,NULL,"Henry G. Scanlan, Jr.",,"4043 Aletha Dr.","4043 Aletha Dr.","Baton Rouge","Louisiana","70814","United States",NULL,"0",,"0","0",NULL,NULL
+"1402211339-db66","2014-02-21 13:39:49","3","db661614-21-02","guest","0","13.5","0","163.5","106",NULL,NULL,"George F Morrow",,"110 Applewood Drvie",,"Gibsonia","Pennsylvania","15044-9223","United States",NULL,"0",,"0","0",NULL,NULL
+"1402211635-4ce3","2014-02-21 16:35:53","3","4ce3f114-21-02","guest","0","8.5","0","37","106",NULL,NULL,"William Hall","Star of the East Lodge # 843","P.O. Box 926",,"East Hampton","New York","11937","United States",NULL,"0",,"10","0",NULL,NULL
+"1402231230-7054","2014-02-23 12:30:49","3","70548a14-23-02","account","0","0","0","12","0",NULL,NULL,"Glenda Dunning",,"7224 Edenville Drive",,"Sarasota","Florida","34243","United States",NULL,"0",,"0","0",NULL,NULL
+"1402231250-7054","2014-02-23 12:50:49","3","70548a14-23-02","account","0","7.5","0","20","106",NULL,NULL,"Glenda Dunning",,"7224 Edenville Drive",,"Sarasota","Florida","34243","United States",NULL,"0",,"10","0",NULL,NULL
+"1402241355-41b1","2014-02-24 13:55:52","3","41b1e414-24-02","guest","0","13.5","0","103.5","106",NULL,NULL,"Alicia Busso",,"2320 Albion Pl",,"St. Louis","Missouri","63104","United States",NULL,"0",,"0","0",NULL,NULL
+"1402252308-3649","2014-02-25 23:08:31","3","36495814-25-02","account","0","15","0","178.1","106",NULL,NULL,"Michael Carpenter",,"6021 Riverbend Blvd",,"Baton Rouge","Louisiana","70820","United States",NULL,"0",,"10","0",NULL,NULL
+"1402261144-a385","2014-02-26 11:44:41","3","a385f414-26-02","guest","0","3","0","120","106",NULL,NULL,"John Logan","Masonic Charity Foundation","PO Box 2406",,"Edmond","Oklahoma","73083","United States",NULL,"0",,"1.5","0",NULL,NULL
+"1402262254-39f0","2014-02-26 22:54:27","3","39f0f014-26-02","guest","0","8.5","0","30.5","106",NULL,NULL,"Robert Hadfield",,"1584 Lois Street",,"Belpre","Ohio","45714","United States",NULL,"0",,"7.5","0",NULL,NULL
+"1402270541-7d90","2014-02-27 05:41:23","3","7d909314-27-02","guest","0","11.5","0","63.5","106",NULL,NULL,"Joe Pennington","Patesville Masonic :Lodge No. 295","712 Bayside Road",,"Hartsville","South Carolina","29550","United States",NULL,"0",,"5.5","0",NULL,NULL
+"1404082343-6c19","2014-04-08 23:43:57","1","6c19ff13-02-05","account","0","15","0","130","106",NULL,NULL,"Col JD Stevens",,"18309 Allora Dr",,"Edmond","Oklahoma","73012","United States",NULL,"0",,"0","0",NULL,NULL
+"1404101149-d9a8","2014-04-10 11:49:06","3","d9a8ec14-10-04","account","0","15","0","170","106",NULL,NULL,"William W. Heine",,"336 W. Illinois Ave.",,"Palatine","Illinois","60067","United States",NULL,"0",,"0","0",NULL,NULL
+"1402271149-8934","2014-02-27 11:49:30","3","89341414-27-02","guest","0","3","0","8","106",NULL,NULL,"Stephen Pomper",,"2832 Forest Glen Dr",,"Baldwin","Maryland","21013","United States",NULL,"0",,"0","0",NULL,NULL
+"1403011928-7d0c","2014-03-01 19:28:34","3","7d0c0013-09-04","account","0","0","0","60","0",NULL,NULL,"Edward J Howard",,"2617 Camino Pl W",,"Kettering","Ohio","45420-3932","United States",NULL,"0",,"0","0",NULL,NULL
+"1403021102-4a63","2014-03-02 11:02:06","3","4a633514-02-03","account","0","10.5","0","54.7","106",NULL,NULL,"Robert Bean","Pulpit Rock Lodge","22A Arlene Dr",,"Pelham","New Hampshire","03076","United States",NULL,"0",,"15","0",NULL,NULL
+"1403021138-7891","2014-03-02 11:38:12","3","7891e814-02-03","account","0","3","0","7","106",NULL,NULL,"S. Stargell",,"5020 ","Old Dixie Hwy.","Forest Park","Georgia","30297","United States",NULL,"0",,"3","0",NULL,NULL
+"1403031317-1578","2014-03-03 13:17:19","3","15783d14-03-03","account","0","3","0","20","106",NULL,NULL,"Tim Hines",,"25 Greene Burch Drive",,"Bryson City","North Carolina","28713","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1403031356-0955","2014-03-03 13:56:55","3","0955ff14-03-03","account","0","3","0","8","106",NULL,NULL,"Douglas Stam","Mission Valley Lodge #78","37376 Ponderilla Dr.",,"Polson","Montana","59860","United States",NULL,"0",,"0","0",NULL,NULL
+"1403031637-82d7","2014-03-03 16:37:08","3","82d7dc13-10-07","account","0","0","0","60","0",NULL,NULL,"James Pilson",,"719-A Summer Lane",,"Prattville","Alabama","36066","United States",NULL,"0",,"0","0",NULL,NULL
+"1403031755-1beb","2014-03-03 17:55:25","3","1bebb714-03-03","account","0","9.5","0","41.5","106",NULL,NULL,"Daniel Adams",,"130 Elizabeth Circle",,"Jackson","Georgia","30233","United States",NULL,"0",,"0","0",NULL,NULL
+"1403031805-1638","2014-03-03 18:05:28","3","16384213-06-07","account","0","0","0","60","0",NULL,NULL,"James Reed",,"203 Yale Drive",,"Tullahoma","Tennessee","37388-5638","United States",NULL,"0",,"0","0",NULL,NULL
+"1403032007-e3df","2014-03-03 20:07:28","3","e3df3314-03-03","account","0","0","0","60","0",NULL,NULL,"Robert Morrow",,"71603 N Pederson Rd",,"West Richland","Washington","99353","United States",NULL,"0",,"0","0",NULL,NULL
+"1403032104-999e","2014-03-03 21:04:21","3","999e5214-03-03","guest","0","0","0","60","0",NULL,NULL,"Matthew Appel",,"18229 60th Ave. W",,"Lynnwood","Washington","98037","United States",NULL,"0",,"0","0",NULL,NULL
+"1403032150-2358","2014-03-03 21:50:39","3","23583313-01-05","account","0","0","0","60","0",NULL,NULL,"William Loerch","AASR","208 Pine Forest Drive",,"Wetumpka","Alabama","36093","United States",NULL,"0",,"0","0",NULL,NULL
+"1403032312-f83b","2014-03-03 23:12:12","3","f83be014-03-03","account","0","3","0","8","106",NULL,NULL,"Edward Woods",,"106 E Arcadia Ave",,"Shelton","Washington","98584","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1403040657-e02c","2014-03-04 06:57:16","3","e02cb314-04-03","account","0","0","0","12","0",NULL,NULL,"alan lindsey",,"7920 haddon hall way",,"baldwinsville","New York","13027","United States",NULL,"0",,"0","0",NULL,NULL
+"1403040915-7cbd","2014-03-04 09:15:05","3","7cbd7e14-04-03","account","0","13.5","0","180.5","106",NULL,NULL,"Michael Hoff",,"9632 Horseshoe Island Road",,"Clay","New York","13041","United States",NULL,"0",,"0","0",NULL,NULL
+"1403041240-a9b3","2014-03-04 12:40:10","3","a9b3a614-04-03","guest","0","0","0","175","0",NULL,NULL,"Russ Charvonia",,"5536 N. Bryn Mawr",,"Ventura","California","93003","United States",NULL,"0",,"0","0",NULL,NULL
+"1403041744-5c45","2014-03-04 17:44:39","3","5c45cb14-04-03","guest","0","0","0","60","0",NULL,NULL,"Frank Loui","A&ASR","2850 19th Avenue",,"San Francisco","California","94132-1602","United States",NULL,"0",,"0","0",NULL,NULL
+"1403041808-22ad","2014-03-04 18:08:09","3","22ad5214-04-03","account","0","9.5","0","47","106",NULL,NULL,"john justice","acacia lodge 155","5970 cullen drive",,"sabillasville","Maryland","21780","United States",NULL,"0",,"3","0",NULL,NULL
+"1403042352-df3d","2014-03-04 23:52:26","3","df3d9614-04-03","guest","0","0","0","115","0",NULL,NULL,"Russ Todd",,"12 Stonewood Drive",,"Old Lyme","Connecticut","06371","United States",NULL,"0",,"0","0",NULL,NULL
+"1403051022-ed9d","2014-03-05 10:22:54","3","ed9df314-05-03","account","0","13.5","0","163.5","106",NULL,NULL,"Arthur Polsey",,"21716 Hyerwood",,"San Antonio","Texas","78259","United States",NULL,"0",,"0","0",NULL,NULL
+"1403051441-c13c","2014-03-05 14:41:56","1","c13cee14-05-03","guest","0","6.5","0","13.5","106",NULL,NULL,"Larry Thomas","Larry Thomas","2068 Resort Street",,"Navarre","Florida","32566","United States",NULL,"0",,"0","0",NULL,NULL
+"1403051547-2088","2014-03-05 15:47:18","3","20882914-05-03","guest","0","7.5","0","26.5","106",NULL,NULL,"Henry J. Voegtle",,"PMB 363.","9090 Skillman St, Ste 182-A","Dallas","Texas","75243","United States",NULL,"0",,"25","0",NULL,NULL
+"1403051617-0515","2014-03-05 16:17:52","3","05152913-05-05","account","0","15","0","280","106",NULL,NULL,"James Drury",,"120 Drummond Drive",,"Elizabeth City","North Carolina","27909","United States",NULL,"0",,"0","0",NULL,NULL
+"1403061006-c26d","2014-03-06 10:06:24","3","c26d8913-16-05","account","0","0","0","115","0",NULL,NULL,"Robert Drzewucki","Robert Drzewucki","118 Brockmoore Drive",,"East Amherst","New York","14051","United States",NULL,"0",,"0","0",NULL,NULL
+"1403061024-c26d","2014-03-06 10:24:11","3","c26d8913-16-05","account","0","6.5","0","15.5","106",NULL,NULL,"Robert Drzewucki","Robert Drzewucki","118 Brockmoore Drive",,"East Amherst","New York","14051","United States",NULL,"0",,"0","0",NULL,NULL
+"1403061308-d126","2014-03-06 13:08:24","3","d1269b14-06-03","account","0","13.5","0","163.5","106",NULL,NULL,"Robert R Attebery",,"9944 Killdeer Lane",,"Lakeland","Florida","33810","United States",NULL,"0",,"0","0",NULL,NULL
+"1403061417-c6e2","2014-03-06 14:17:48","3","c6e23c14-06-03","account","0","3","0","68","106",NULL,NULL,"Charlie Odorizzi","Next Millennium","3141 N. 93rd St.",,"Omaha","Nebraska","68134","United States",NULL,"0",,"0","0",NULL,NULL
+"1403061740-d207","2014-03-06 17:40:31","3","d2076914-06-03","account","0","0","0","12","0",NULL,NULL,"Robert Vighi",,"PO Box 88448",,"Carol Stream","Illinois","60188-0448","United States",NULL,"0",,"0","0",NULL,NULL
+"1403061857-19da","2014-03-06 18:57:09","3","19da0713-10-07","account","0","0","0","60","0",NULL,NULL,"Denny Robinson",,"1130 S Burr St",,"Mitchell","South Dakota","57301","United States",NULL,"0",,"0","0",NULL,NULL
+"1403071158-455e","2014-03-07 11:58:43","1","455ef113-03-12","account","0","0","0","60","0",NULL,NULL,"Thomas Winter",,"68 S Conger Avenue",,"Congers","New York","10920","United States",NULL,"0",,"0","0",NULL,NULL
+"1403071319-0840","2014-03-07 13:19:33","3","08401113-28-04","account","0","0","0","60","0",NULL,NULL,"Donald Poling",,"1210 NW 43 Street",,"Fort Lauderdale","Florida","33309","United States",NULL,"0",,"0","0",NULL,NULL
+"1403080934-a177","2014-03-08 09:34:05","3","a177e714-08-03","account","0","8.5","0","33.5","106",NULL,NULL,"Roy Miles","The Miles Company","1605 Craggie Hope Rd",,"Kingston Springs","Tennessee","37082","United States",NULL,"0",,"2","0",NULL,NULL
+"1403081003-cd93","2014-03-08 10:03:36","3","cd934b14-08-03","guest","0","3","0","8","106",NULL,NULL,"Phillip Hurwitz",,"72 Long Pond Road",,"Rochester","New York","14612","United States",NULL,"0",,"0","0",NULL,NULL
+"1403090035-7d7e","2014-03-09 00:35:41","3","7d7e4914-09-03","account","0","0","0","12","0",NULL,NULL,"WALTER TRINKALA",,"1500 PROSPECT DRIVE",,"Chesapeake","Virginia","23322","United States",NULL,"0",,"0","0",NULL,NULL
+"1403091625-13b0","2014-03-09 16:25:11","3","13b0b614-09-03","account","0","11.5","0","71.5","106",NULL,NULL,"Robert Gordon",,"1000 Azalea Drive",,"Roswell","Georgia","30075-4747","United States",NULL,"0","Shipment of Vol. 1 from publisher was poorly protected and arrived damaged. No dust jacket was provided -- extremely unusual for a book costing as much as this one. Please tell me we will do better this time.","0","0",NULL,NULL
+"1403100025-05b3","2014-03-10 00:25:15","3","05b3c413-21-05","account","0","11.5","0","71.5","106",NULL,NULL,"Donald MacCormick",,"17000 E. 44th Street",,"Independence","Missouri","64055","United States",NULL,"0",,"0","0",NULL,NULL
+"1403101223-fe7e","2014-03-10 12:23:03","3","fe7e4a13-01-04","account","0","15","0","130","106",NULL,NULL,"Fred S Kile","AASR, Valley of Columbus","290 Cramer Creek Ct",,"Dublin","Ohio","43017","United States",NULL,"0","Your flyer stated that shipping & handling was only $8. Please let me know what the actual total for this purchase is.","0","0",NULL,NULL
+"1403101230-f241","2014-03-10 12:30:29","3","f241eb14-10-03","guest","0","6.5","0","13.5","106",NULL,NULL,"Jerry Post",,"1541 Catherine Court",,"Suwanee","Georgia","30024","United States",NULL,"0",,"1.5","0",NULL,NULL
+"1403101645-6d6b","2014-03-10 16:45:07","3","6d6b9513-05-04","account","0","15","0","130","106",NULL,NULL,"William R. Fuzia",,"36899 Hwy 26",,"Seaside","Oregon","97138","United States",NULL,"0",,"0","0",NULL,NULL
+"1403101839-3e9a","2014-03-10 18:39:49","3","3e9a4914-10-03","account","0","20","0","308.5","106",NULL,NULL,"Ólafur Magnusson","Donna ehf - ICELAND","Móhellu 2","ICELAND","Hafnarfjordur","Alabama","IS 221","United States",NULL,"0","Kindly notice that I live in Iceland. The shipping cost is probably higher kindly inform me and I will pay the different.
<br>
<br>S&F
<br>Ólafur Magnusson","7.5","0",NULL,NULL
+"1403101950-b196","2014-03-10 19:50:41","3","b1968a14-10-03","guest","0","0","0","12","0",NULL,NULL,"Tim Stickney",,"1 Deer Lane",,"Epsom","New Hampshire","03234","United States",NULL,"0",,"0","0",NULL,NULL
+"1403111139-2339","2014-03-11 11:39:10","3","23390413-16-06","account","0","3","0","8","106",NULL,NULL,"Robert Judah II","R. E. Judah II","P. O. Box 192",,"Fairland","Indiana","46126","United States",NULL,"0","On February 10, 2014, I ordered these
<br>booklets (#16341048) and used Pay Pal to make the correct payment - however, I have NOT received the booklets ordered and paid for - is there a problem/ GOD BLESS Dr. j","0","0",NULL,NULL
+"1403111239-62bd","2014-03-11 12:39:33","3","62bd2f14-11-03","account","0","0","0","12","0",NULL,NULL,"Jack Weber",,"7005 Fallen Timbers Dr.",,"Dublin","Ohio","43017","United States",NULL,"0",,"0","0",NULL,NULL
+"1403111534-aa5c","2014-03-11 15:34:40","3","aa5c8b14-11-03","guest","0","11.5","0","71.5","106",NULL,NULL,"Adam Kendall","Grand Lodge of California, F. & A.M.","1111 California Street",,"San Francisco","California","94108","United States",NULL,"0",,"0","0",NULL,NULL
+"1403111912-24bd","2014-03-11 19:12:46","3","24bd6114-11-03","account","0","15","0","165","106",NULL,NULL,"Paschal King",,"PO Box 282",,"Rio Grande","Ohio","45674","United States",NULL,"0",,"0","0",NULL,NULL
+"1403112224-892c","2014-03-11 22:24:52","3","892c0014-11-03","account","0","3","0","20","106",NULL,NULL,"James E Acton",,"PO Box 862",,"League City","Texas","77574","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1403112238-f0a3","2014-03-11 22:38:21","3","f0a3c214-11-03","account","0","20","0","300.5","106",NULL,NULL,"Daniel Ruiz-Isasi",,"8302 Our Road",,"Clermont","Florida","34714","United States",NULL,"0",,"0","0",NULL,NULL
+"1403121019-f878","2014-03-12 10:19:16","3","f878b314-12-03","account","0","9.5","0","43","106",NULL,NULL,"Robert House","Amber Lodge 395","381 Nichols Road",,"Winthrop","New York","13697","United States",NULL,"0",,"20","0",NULL,NULL
+"1403121211-ce1a","2014-03-12 12:11:41","1","ce1ab913-24-07","account","0","11.5","0","71.5","107",NULL,NULL,"Donald Pardo",,"804-300 Sherk St.",,"Leamington","Ontario","N8H 4N7","Canada",NULL,"0",,"0","0",NULL,NULL
+"1403121535-ea49","2014-03-12 15:35:35","3","ea49f614-12-03","account","0","3","0","6.5","106",NULL,NULL,"Larry Perkins",,"16824 460th St.",,"Laurens","Iowa","50554","United States",NULL,"0",,"0","0",NULL,NULL
+"1403122034-d545","2014-03-12 20:34:49","1","d5458d14-12-03","guest","0","7.5","0","22.5","106",NULL,NULL,"Jim Olson",,"P.O.Box 883",,"Custer","South Dakota","57730","United States",NULL,"0",,"10","0",NULL,NULL
+"1403131453-e0cc","2014-03-13 14:53:03","3","e0cccf14-13-03","guest","0","9.5","0","54","106",NULL,NULL,"JERRY SPILLERS","JERRY SPILLERS","5591","MEADOW BROOK WAY","MARYSVILLE","California","95901","United States",NULL,"0",,"20","0",NULL,NULL
+"1403131623-f9fb","2014-03-13 16:23:21","3","f9fb4d14-13-03","account","0","20","0","285","106",NULL,NULL,"David Doan",,"12010 Alderbrook Street",,"Moorpark","California","93021-3130","United States",NULL,"0",,"0","0",NULL,NULL
+"1403141342-3679","2014-03-14 13:42:49","1","3679b314-14-03","account","0","15","0","125","106",NULL,NULL,"Preston Schultz","Preston Schultz","13011 Elm Grove Rd",,"Buda","Texas","78610","United States",NULL,"0",,"44","0",NULL,NULL
+"1403150013-266a","2014-03-15 00:13:30","1","266abd14-15-03","account","0","11.5","0","77.5","106",NULL,NULL,"Will Adams","Fairfax 43 AF&AM","19240 Rolling Hills Drive ",,"Culpeper","Virginia","22701","United States",NULL,"0",,"3","0",NULL,NULL
+"1403151408-2183","2014-03-15 14:08:31","3","21831b14-15-03","account","0","3","0","8","106",NULL,NULL,"Richard ALe","Flagstaff Lodge #7","107 E. Birch Ave",,"Flagstaff","Arizona","86001","United States",NULL,"0",,"0","0",NULL,NULL
+"1403161950-7c82","2014-03-16 19:50:33","3","7c82b214-16-03","account","0","11.5","0","71.5","106",NULL,NULL,"Monte Miller",,"2310 Zenith Ave N",,"Golden Valley","Minnesota","55422","United States",NULL,"0",,"0","0",NULL,NULL
+"1403171623-dc17","2014-03-17 16:23:22","3","dc171414-17-03","account","0","0","0","12","0",NULL,NULL,"Peter Varney",,"1520 East Worthington Avenue",,"Charlotte","North Carolina","28203","United States",NULL,"0",,"0","0",NULL,NULL
+"1403171901-9b3e","2014-03-17 19:01:12","3","9b3ef514-17-03","guest","0","0","0","12","0",NULL,NULL,"Dan Ford","Frank P. Moncure Masonic Lodge","141 Sequester Drive",,"Stafford","Virginia","22556","United States",NULL,"0",,"0","0",NULL,NULL
+"1403181448-0ac9","2014-03-18 14:48:34","3","0ac9b114-18-03","guest","0","8.5","0","35.5","106",NULL,NULL,"Wm. J Hollingsworth","Wm J. Hollingsworth","320 W. Torrance St.",,"Maryville","Missouri","64468","United States",NULL,"0",,"0","0",NULL,NULL
+"1403201126-59b8","2014-03-20 11:26:49","3","59b8b114-20-03","guest","0","11.5","0","71.5","106",NULL,NULL,"Douglas Hammond","Doug Hammond Mining","405 Hammond Lane ","Box 705","Challis","Idaho","83226","United States",NULL,"0",,"0","0",NULL,NULL
+"1403201723-1792","2014-03-20 17:23:21","3","1792c014-20-03","account","0","11.5","0","71.5","106",NULL,NULL,"Calvin D Shaver",,"30333 Wellton Mohawk Dr","Coach Stop RV Park #63","Wellton","Arizona","85356","United States",NULL,"0",,"0","0",NULL,NULL
+"1403202257-e922","2014-03-20 22:57:27","3","e9228114-20-03","guest","0","8.5","0","33.5","106",NULL,NULL,"Levone Sutton",,"464 Sam Gibbs Road",,"Arab","Alabama","35016","United States",NULL,"0",,"2","0",NULL,NULL
+"1403210015-1e24","2014-03-21 00:15:30","3","1e247814-21-03","guest","0","11.5","0","71.5","106",NULL,NULL,"Ridge Smith",,"621 West Main",,"Yukon","Oklahoma","73099","United States",NULL,"0",,"0","0",NULL,NULL
+"1403211142-14aa","2014-03-21 11:42:41","3","14aac014-21-03","guest","0","7.5","0","21","106",NULL,NULL,"Dean White","Valley of Freeport","305 W. Stephenson",,"Freeport","Illinois","61032","United States",NULL,"0",,"0","0",NULL,NULL
+"1403231355-0ee6","2014-03-23 13:55:10","3","0ee65214-23-03","guest","0","7.5","0","25.5","106",NULL,NULL,"Matthew Lewis",,"643 N. Main Street",,"Elizabethtown","Kentucky","42701","United States",NULL,"0",,"15","0",NULL,NULL
+"1403232254-d822","2014-03-23 22:54:06","3","d8224614-23-03","account","0","9.5","0","48","106",NULL,NULL,"Gregory F. Curtin","Pahrump Lodge 54","3251 E. Kaibab St.",,"Pahrump","Nevada","89048","United States",NULL,"0",,"10","0",NULL,NULL
+"1403241146-a4c3","2014-03-24 11:46:39","3","a4c31514-24-03","account","0","15","0","183","106",NULL,NULL,"Richard Strich",,"5824 DAVIS FORD RD",,"MANASSAS","Virginia","20112-3039","United States",NULL,"0",,"10","0",NULL,NULL
+"1403250755-80cb","2014-03-25 07:55:02","3","80cb5914-25-03","guest","0","9.5","0","40.5","106",NULL,NULL,"JOHN KARROUM",,"4814 ORCHARD LANE",,"DELRAY BEACH","Florida","33445","United States",NULL,"0",,"15","0",NULL,NULL
+"1403251135-5a72","2014-03-25 11:35:31","3","5a72a614-25-03","guest","0","11.5","0","71.5","106",NULL,NULL,"August Molitano",,"PO Box 427",,"Riverton","Connecticut","06065","United States",NULL,"0","please note: order form shows shipping charge as $8.00 {??]
<br>WHY IS SHIPPING CHARGE NOW $11.50 ??","0","0",NULL,NULL
+"1403251336-7a5f","2014-03-25 13:36:57","3","7a5f0f14-25-03","account","0","0","0","12","0",NULL,NULL,"KIRBY MARCHAND",,"3402 Fieldcrest Drive",,"North Versailles","Pennsylvania","15137","United States",NULL,"0",,"0","0",NULL,NULL
+"1403251543-1619","2014-03-25 15:43:06","3","1619dc14-25-03","account","0","0","0","12","0",NULL,NULL,"Bruce Douglass",,"3714 Marquita Ln.",,"Houston","Texas","77039-5749","United States",NULL,"0",,"0","0",NULL,NULL
+"1403251854-3346","2014-03-25 18:54:42","1","33463d14-25-03","guest","0","0","0","12","0",NULL,NULL,"Robert Decelle","St. Matthews Lodge","44 Linwood St",,"Andover","Massachusetts","01810","United States",NULL,"0",,"0","0",NULL,NULL
+"1403252044-b8d1","2014-03-25 20:44:39","3","b8d1e514-25-03","guest","0","15","0","130","106",NULL,NULL,"Larry Rosen",,"24 west shore rd","Po box 206","Alburgh","Vermont","05440","United States",NULL,"0",,"0","0",NULL,NULL
+"1403252346-21d2","2014-03-25 23:46:19","3","21d2c714-25-03","guest","0","15","0","130","106",NULL,NULL,"Chuck Brust",,"421 11th Ave SE",,"Rochester","Minnesota","55904","United States",NULL,"0",,"0","0",NULL,NULL
+"1403261635-328b","2014-03-26 16:35:22","1","328b6714-26-03","guest","0","0","0","12","0",NULL,NULL,"D.Frank Buchanan",,"302 Millbrook Ave",,"Randolph","New Jersey","07869","United States",NULL,"0",,"0","0",NULL,NULL
+"1403270728-27f7","2014-03-27 07:28:06","3","27f7ab13-28-03","account","0","0","0","12","0",NULL,NULL,"Gilbert I. Mundy",,"754 Mountain Avenue",,"Bound Brook","New Jersey","08805-1402","United States",NULL,"0",,"0","0",NULL,NULL
+"1403271144-7922","2014-03-27 11:44:22","3","79221214-27-03","guest","0","13.5","0","103.5","106",NULL,NULL,"Jerry Underwood","Grand Lodge of Alabama","341 Monument Drive",,"Millbrook","Alabama","36054","United States",NULL,"0",,"0","0",NULL,NULL
+"1403271452-8196","2014-03-27 14:52:18","3","81964b13-20-03","account","0","0","0","12","0",NULL,NULL,"Jeffrey D Maynor",,"PO Box 85080",,"Baton Rouge","Louisiana","70884","United States",NULL,"0",,"0","0",NULL,NULL
+"1403271457-c90a","2014-03-27 14:57:50","3","c90a6a14-27-03","account","0","15","0","165","106",NULL,NULL,"Jorge Filgueira",,"191 Chippewa Street",,"Miami Springs","Florida","33166","United States",NULL,"0",,"0","0",NULL,NULL
+"1403272055-be30","2014-03-27 20:55:12","3","be304114-27-03","account","0","7.5","0","26","106",NULL,NULL,"Fred V. Miller Sr",,"98 Picketts Ridgfe Road",,"West Redding","Connecticut","06896","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1403280916-86e1","2014-03-28 09:16:36","3","86e1fc14-28-03","account","0","15","0","193","106",NULL,NULL,"Darin Lorenzen",,"103 Cypress Drive",,"Newark","Delaware","19713","United States",NULL,"0",,"5","0",NULL,NULL
+"1403280955-7df4","2014-03-28 09:55:00","3","7df48414-28-03","account","0","3","0","18.5","106",NULL,NULL,"Gene Porter Jr","Bristol Lodge #25","917 Park Ave",,"Bristol ","Pennsylvania","19007","United States",NULL,"0",,"0","0",NULL,NULL
+"1403281140-b5bf","2014-03-28 11:40:08","3","b5bf1814-28-03","account","0","0","0","12","0",NULL,NULL,"John C Edenfield Jr",,"1471 Johnson Corner Rd",,"Lyons","Georgia","30436","United States",NULL,"0","Like to pay with Debit Card","0","0",NULL,NULL
+"1403281309-076f","2014-03-28 13:09:42","3","076fe714-28-03","guest","0","13.5","0","103.5","106",NULL,NULL,"Richard G. Maris","Eugene Lodge 11","513 Pinto Way",,"Eugene","Oregon","97401","United States",NULL,"0",,"0","0",NULL,NULL
+"1403281552-3703","2014-03-28 15:52:38","3","37035414-28-03","guest","0","20.5","0","452.5","106",NULL,NULL,"Brian Lester","Tarbet & Lester, PLLC","PO Box 2635","524 Montauk Highway","Amagansett","New York","11930","United States",NULL,"0",,"0","0",NULL,NULL
+"1403281635-c574","2014-03-28 16:35:54","3","c5749414-28-03","account","0","0","0","12","0",NULL,NULL,"Maier Fein",,"12 Mayfield Ter",,"East Lyme","Connecticut","06333-1326","United States",NULL,"0","Renew subscription expiring 2/14","0","0",NULL,NULL
+"1403281835-8e9d","2014-03-28 18:35:40","3","8e9df614-28-03","guest","0","15","0","165","106",NULL,NULL,"Patrick Stull",,"24 Willadell Road",,"Transfer","Pennsylvania","16145","United States",NULL,"0",,"0","0",NULL,NULL
+"1403290635-b440","2014-03-29 06:35:42","1","b440fc14-29-03","guest","0","11.5","0","86.5","106",NULL,NULL,"Paul Keller",,"1409 Phillip Fulmer Pkwy",,"Winchester","Tennessee","37398","United States",NULL,"0",,"6","0",NULL,NULL
+"1403291637-4609","2014-03-29 16:37:14","3","46090514-29-03","guest","0","15","0","130","106",NULL,NULL,"Michael Henry",,"3308 El Camino Avenue","Ste 300-194","Sacramento","California","95821","United States",NULL,"0",,"0","0",NULL,NULL
+"1403291727-0cd1","2014-03-29 17:27:38","3","0cd1fb14-29-03","account","0","3","0","19.75","106",NULL,NULL,"Darren Engelhart",,"PO Box 1822",,"Issaquah","Washington","98027","United States",NULL,"0",,"2.25","0",NULL,NULL
+"1403291817-d67f","2014-03-29 18:17:32","3","d67f0d14-29-03","account","0","11.5","0","66.5","106",NULL,NULL,"Carl Bliss","Sec Konosioni #950","759 Taft Ave",,"Syracuse","New York","13206","United States",NULL,"0",,"4","0",NULL,NULL
+"1403291955-c660","2014-03-29 19:55:48","3","c660d514-29-03","account","0","0","0","12","0",NULL,NULL,"William Mackey",,"29 Randal Avenue",,"West Hartford","Connecticut","06110-1744","United States",NULL,"0",,"0","0",NULL,NULL
+"1403301530-8330","2014-03-30 15:30:30","3","8330ce14-30-03","guest","0","15","0","135","106",NULL,NULL,"James W Golladay Jr","James W Golladay JR","P O Box 159",,"Stephens City","Virginia","22655","United States",NULL,"0",,"0","0",NULL,NULL
+"1403301605-51ea","2014-03-30 16:05:13","3","51ea6914-30-03","account","0","8.5","0","37","106",NULL,NULL,"tim","schupfer","14505 bourbon st sw",,"cumberland","Maryland","21502","United States",NULL,"0",,"0","0",NULL,NULL
+"1403301718-f50d","2014-03-30 17:18:46","3","f50d1d14-30-03","account","0","0","0","12","0",NULL,NULL,"John Blake",,"1334 E. 9th St.",,"Weiser","Idaho","83672","United States",NULL,"0",,"0","0",NULL,NULL
+"1403301934-eecb","2014-03-30 19:34:56","1","eecb8214-30-03","account","0","0","0","12","0",NULL,NULL,"KENNETH KINSER",,"44 GEORGE BROWN STREET",,"BILLERICA","Massachusetts","01821-2223","United States",NULL,"0","subscription # from label
<br>3624 640 3/14
<br>","0","0",NULL,NULL
+"1403301937-eecb","2014-03-30 19:37:57","3","eecb8214-30-03","account","0","0","0","12","0",NULL,NULL,"KENNETH KINSER",,"44 GEORGE BROWN STREET",,"BILLERICA","Massachusetts","01821-2223","United States",NULL,"0","subscription information from label
<br>3624 640 3/14","0","0",NULL,NULL
+"1403311005-144d","2014-03-31 10:05:42","1","144d9c14-31-03","account","0","0","0","12","0",NULL,NULL,"Elvis Willis","Solomon's Lodge No. 1","P. O. Box 1734",,"Savannah","Georgia","31402","United States",NULL,"0",,"0","0",NULL,NULL
+"1403311013-144d","2014-03-31 10:13:36","1","144d9c14-31-03","account","0","0","0","12","0",NULL,NULL,"Elvis Willis","Solomon's Lodge No. 1","P. O. Box 1734",,"Savannah","Georgia","31402","United States",NULL,"0",,"0","0",NULL,NULL
+"1403311016-144d","2014-03-31 10:16:54","1","144d9c14-31-03","account","0","0","0","12","0",NULL,NULL,"Elvis Willis","Solomon's Lodge No. 1","P. O. Box 1734",,"Savannah","Georgia","31402","United States",NULL,"0",,"0","0",NULL,NULL
+"1403311112-51e2","2014-03-31 11:12:22","3","51e28c14-31-03","account","0","0","0","12","0",NULL,NULL,"P. van Oosten",,"PO Box 817",,"Wilmette","Illinois","60091","United States",NULL,"0","current subscription number:
<br>160158 640 expires 03/14","0","0",NULL,NULL
+"1403312156-549a","2014-03-31 21:56:01","3","549a1e14-31-03","account","0","11.5","0","70.5","106",NULL,NULL,"John Bonnett",,"520 Parkwood Drive",,"Twin Falls","Idaho","83301","United States",NULL,"0",,"1","0",NULL,NULL
+"1404010412-0172","2014-04-01 04:12:14","3","0172a413-10-05","account","0","15","0","164","106",NULL,NULL,"Jason Hale",,"1809 Beechnut Cove",,"Cedar Park","Texas","78613","United States",NULL,"0",,"1","0",NULL,NULL
+"1404010843-0892","2014-04-01 08:43:32","3","0892d514-01-04","account","0","6.5","0","12.5","106",NULL,NULL,"Ken Gilbreath",,"P.O. Box 32703",,"Knoxville","Tennessee","37930","United States",NULL,"0",,"15","0",NULL,NULL
+"1404010900-f10d","2014-04-01 09:00:30","3","f10d3e14-01-04","guest","0","11.5","0","86.5","106",NULL,NULL,"Paul Keller",,"1409 Phillip Fulmer Pkwy",,"Winchester","Tennessee","37398","United States",NULL,"0",,"6","0",NULL,NULL
+"1404010906-8573","2014-04-01 09:06:51","3","85739314-01-04","account","0","15","0","176","106",NULL,NULL,"Jim Gleason",,"5573 Rockpointe Dr",,"Clifton","Virginia","20124","United States",NULL,"0",,"1","0",NULL,NULL
+"1404011628-e677","2014-04-01 16:28:35","3","e6779d14-01-04","guest","0","11.5","0","70.5","106",NULL,NULL,"Duilio Solorzano",,"14466 sw 157 path",,"Miami","Florida","33196","United States",NULL,"0",,"1","0",NULL,NULL
+"1404011855-242b","2014-04-01 18:55:23","3","242b7914-01-04","account","0","0","0","12","0",NULL,NULL,"DOUG JEROME",,"1346 SW LESCHI DR",,"OAK HARBOR","Washington","98277","United States",NULL,"0",,"0","0",NULL,NULL
+"1404020550-5d87","2014-04-02 05:50:57","3","5d87cd14-02-04","account","0","0","0","12","0",NULL,NULL,"Kurtis Lowe","19892 640 3/14","415 S Kensington St",,"Arlington","Virginia","22204","United States",NULL,"0","This is a renewal. 169892 640 3/14","0","0",NULL,NULL
+"1404020807-a27d","2014-04-02 08:07:36","3","a27d4e14-02-04","account","0","9.5","0","46.5","106",NULL,NULL,"Craig Olson",,"112 S. Greenwood",,"Eureka","Kansas","67045","United States",NULL,"0",,"0","0",NULL,NULL
+"1404021445-272b","2014-04-02 14:45:52","3","272bce14-02-04","guest","0","0","0","12","0",NULL,NULL,"Matthew Appel",,"18229 60th Ave. W",,"Lynnwood","Washington","98037","United States",NULL,"0",,"0","0",NULL,NULL
+"1404022121-f7ac","2014-04-02 21:21:49","3","f7ac7814-02-04","account","0","7.5","0","18.5","106",NULL,NULL,"RAYMOND WALTERS",,"Post Office Box 635","Post Office Box 635","Weirton","West Virginia","26062","United States",NULL,"0",,"15","0",NULL,NULL
+"1404031118-f9e5","2014-04-03 11:18:13","5","f9e59a14-03-04","account","0","0","0","12","0",NULL,,"James Lansford",,"P.0. Box 148, Mountain Home Texas",,"Mountain Home","Texas","78058","United States",,"0",,"0","0",NULL,"0"
+"1404031119-f9e5","2014-04-03 11:19:47","5","f9e59a14-03-04","account","0","0","0","12","0",NULL,,"James Lansford",,"P.0. Box 148, Mountain Home Texas",,"Mountain Home","Texas","78058","United States",,"0",,"0","0",NULL,"0"
+"1404031510-d112","2014-04-03 15:10:13","3","d112ae14-03-04","guest","0","0","0","24","0",NULL,NULL,"Michael J Welton",,"5539 Frontier DR Unit 3",,"Billings","Montana","59101","United States",NULL,"0",,"0","0",NULL,NULL
+"1404031543-c3d8","2014-04-03 15:43:04","3","c3d8c914-03-04","guest","0","11.5","0","70.5","106",NULL,NULL,"Raymond Hunter",,"13650 North Frontage Road, #152",,"Yuma","Arizona","85367-7423","United States",NULL,"0",,"1","0",NULL,NULL
+"1404041522-f057","2014-04-04 15:22:02","3","f0574914-04-04","account","0","9.5","0","41.25","106",NULL,NULL,"Robert duMaire",,"197 Stonybrook Rd.",,"Waterford","Vermont","05819","United States",NULL,"0",,"2.25","0",NULL,NULL
+"1404042049-be3b","2014-04-04 20:49:20","3","be3b5f14-04-04","account","0","0","0","12","0",NULL,NULL,"JAMES L KEYES",,"243 MARION 7013",,"FLIPPIN","Arkansas","72634-9671","United States",NULL,"0","this is a renewal","0","0",NULL,NULL
+"1404051527-75f4","2014-04-05 15:27:58","3","75f40514-05-04","guest","0","0","0","12","0",NULL,NULL,"Clinton Langford",,"142 deer run",,"Hawley","Pennsylvania","18428","United States",NULL,"0",,"0","0",NULL,NULL
+"1404051831-2dea","2014-04-05 18:31:06","3","2dea9c14-05-04","account","0","0","0","12","0",NULL,NULL,"Lee Grover",,"P.O. Box 4",,"Boalsburg","Pennsylvania","16827","United States",NULL,"0",,"0","0",NULL,NULL
+"1404061040-b37b","2014-04-06 10:40:45","3","b37bc614-06-04","account","0","15","0","196.5","106",NULL,NULL,"Michael Dreisch",,"629 Singer Rd",,"Laceyville","Pennsylvania","18623","United States",NULL,"0",,"8.5","0",NULL,NULL
+"1404070958-fbd3","2014-04-07 09:58:36","1","fbd38914-07-04","account","0","15","0","164","106",NULL,NULL,"Marcus Dugger",,"3416 estes Park Dr.",,"Snellville","Georgia","30039-6937","United States",NULL,"0",,"1","0",NULL,NULL
+"1404071020-fbd3","2014-04-07 10:20:41","3","fbd38914-07-04","account","0","15","0","164","106",NULL,NULL,"Marcus Dugger",,"3416 estes Park Dr.",,"Snellville","Georgia","30039-6937","United States",NULL,"0",,"1","0",NULL,NULL
+"1404071122-2dcd","2014-04-07 11:22:48","3","2dcdf514-07-04","guest","0","0","0","24","0",NULL,NULL,"Michael Rodriguez","Midel Tkg. Co.","101 Harper Dr.",,"Anderson","Missouri","64831-1800","United States",NULL,"0",,"0","0",NULL,NULL
+"1404102150-52cb","2014-04-10 21:50:47","3","52cb3214-10-04","guest","0","8.5","0","50","106",NULL,NULL,"Michael Seeley",,"1431 155th Street",,"Whitestone","New York","11357","United States",NULL,"0",,"17.5","0",NULL,NULL
+"1404111514-6726","2014-04-11 15:14:05","3","67262314-11-04","account","0","15","0","193.5","106",NULL,NULL,"Tony Christofferson","Temple Lodge No. 6","3801 Osuna Road NE",,"Albuquerque","New Mexico","87109","United States",NULL,"0",,"10","0",NULL,NULL
+"1404111522-44a3","2014-04-11 15:22:49","3","44a35813-12-05","account","0","11.5","0","71.5","106",NULL,NULL,"James Loudermilk",,"9416 Chatham Street",,"Manassas","Virginia","20110-3604","United States",NULL,"0",,"0","0",NULL,NULL
+"1404111648-c44e","2014-04-11 16:48:06","3","c44eb214-11-04","guest","0","7.5","0","22.5","106",NULL,NULL,"Cleslie Scott","Auto Glass by Scott, inc.","1300 S Main St.",,"Conyers","Georgia","30012","United States",NULL,"0",,"10","0",NULL,NULL
+"1404121255-53c3","2014-04-12 12:55:12","3","53c3e314-12-04","account","0","0","0","12","0",NULL,NULL,"Edward Accardi",,"po box 479",,"walker valley","New York","12588","United States",NULL,"0",,"0","0",NULL,NULL
+"1404131802-991d","2014-04-13 18:02:44","3","991dbe13-20-04","account","0","15","0","135","107",NULL,NULL,"Wayne Mac Culloch",,"1815 Chopin Place",,"Orleans","Ontario","K1C 5G1","Canada",NULL,"0",,"0","0",NULL,NULL
+"1404141255-009f","2014-04-14 12:55:30","1","009f0a14-14-04","guest","0","11.5","0","71.5","107",NULL,NULL,"George Burt",,"97 Cooper drive",,"Schomberg","Ontario","L0G 1T0","Canada",NULL,"0",,"0","0",NULL,NULL
+"1404141256-c3fb","2014-04-14 12:56:09","3","c3fbf714-14-04","guest","0","20","0","285","107",NULL,NULL,"Philip Durell",,"14287 37th Avenue",,"Surrey","British Columbia","V4P 0C2","Canada",NULL,"0",,"0","0",NULL,NULL
+"1404141307-9473","2014-04-14 13:07:13","3","9473b214-14-04","account","0","6.5","0","16.5","106",NULL,NULL,"Paul Nigro","none","4164 Austin Bluffs Pkwy # 318",,"Colorado Springs","Colorado","80918","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1404141801-69ee","2014-04-14 18:01:45","1","69ee0614-14-04","account","0","0","0","12","0",NULL,NULL,"J.J. Fontana","FONTANA","3520 Indiana Ave.",,"Baker City","Oregon","97814","United States",NULL,"0",,"0","0",NULL,NULL
+"1404161141-69d5","2014-04-16 11:41:21","3","69d5dd14-16-04","guest","0","7.5","0","21","106",NULL,NULL,"Ernie Gelwicks","EG Outdoors","312 N Seton Ave",,"Emmitsburg","Maryland","21727","United States",NULL,"0",,"0","0",NULL,NULL
+"1404161616-c8fd","2014-04-16 16:16:49","3","c8fd9a13-01-03","account","0","7.5","0","21","106",NULL,NULL,"Virgil Johnston",,"7063 W. Cinnabar Ave.",,"Peoria","Arizona","85345-6895","United States",NULL,"0",,"0","0",NULL,NULL
+"1404161619-4e9a","2014-04-16 16:19:36","3","4e9ab014-16-04","account","0","0","0","12","0",NULL,NULL,"jason leone",,"2062 lakeview rd","apt. b","bellmore","New York","11710","United States",NULL,"0",,"0","0",NULL,NULL
+"1404171526-d434","2014-04-17 15:26:30","3","d434cc14-17-04","account","0","0","0","12","0",NULL,NULL,"Roger Merrill",,"593 Lakeshore Dr",,"McCook Lake","South Dakota","57049","United States",NULL,"0",,"0","0",NULL,NULL
+"1404172331-44df","2014-04-17 23:31:18","1","44df5c14-17-04","account","0","3","0","20","106",NULL,NULL,"Eric Sims",,"1909 East 19th Street",,"Georgetown","Texas","78626-7331","United States",NULL,"0",,"0","0",NULL,NULL
+"1404180129-5e04","2014-04-18 01:29:10","3","5e042c14-18-04","guest","0","0","0","12","0",NULL,NULL,"J J Fontana",,"3520 Indiana Ave",,"Baker City","Oregon","97814","United States",NULL,"0",,"0","0",NULL,NULL
+"1404191202-cbfd","2014-04-19 12:02:34","3","cbfd4a14-19-04","guest","0","0","0","12","0",NULL,NULL,"Nicholas Glassman",,"2736 country club road",,"Endwell","New York","13760","United States",NULL,"0",,"0","0",NULL,NULL
+"1404191713-0505","2014-04-19 17:13:59","3","05050614-19-04","account","0","15","0","165","106",NULL,NULL,"T. David Wootten",,"1491 County Line Rd",,"Acworth","Georgia","30101","United States",NULL,"0",,"0","0",NULL,NULL
+"1404191938-5a33","2014-04-19 19:38:44","3","5a339d13-11-08","account","0","11.5","0","76.5","106",NULL,NULL,"Michael Stein",,"1288 Paddington Road",,"Mahwah","New Jersey","07430","United States",NULL,"0",,"0","0",NULL,NULL
+"1404201746-5cc0","2014-04-20 17:46:56","1","5cc04014-20-04","guest","0","11.5","0","71.5","106",NULL,NULL,"Danny R. Fulks",,"414 Monticello Street",,"Circleville","Ohio","43113","United States",NULL,"0",,"0","0",NULL,NULL
+"1404201751-6e4a","2014-04-20 17:51:07","3","6e4aa014-20-04","guest","0","11.5","0","71.5","106",NULL,NULL,"Danny R. Fulks",,"414 Monticello Street",,"Circleville","Ohio","43113","United States",NULL,"0",,"0","0",NULL,NULL
+"1404211429-4c03","2014-04-21 14:29:13","3","4c03cb14-21-04","account","0","3","0","18.5","106",NULL,NULL,"Adam Osman",,"215 Reed Road",,"Alum Bank","Pennsylvania","15521","United States",NULL,"0",,"0","0",NULL,NULL
+"1404211543-7859","2014-04-21 15:43:23","3","7859d214-21-04","guest","0","20","0","285","106",NULL,NULL,"PAUL COTTRELL",,"25 Sherwood Circle",,"Hurricane","West Virginia","25526","United States",NULL,"0",,"0","0",NULL,NULL
+"1404221415-fcdd","2014-04-22 14:15:43","1","fcdd5414-22-04","account","0","15","0","182","106",NULL,NULL,"Bill Sherman",,"825 South Duquesne Rd",,"Joplin","Missouri","64801","United States",NULL,"0","The subscription for the short talk Bulletin is a renewal. My subscription expires in Sept. 2014
<br>Thank you.
<br>William J. Shermam","0","0",NULL,NULL
+"1404222221-1250","2014-04-22 22:21:52","3","12501114-22-04","account","0","11.5","0","71.5","106",NULL,NULL,"Robert Mercer","Robert Mercer Sr","1416 Beckwith Rd",,"Cornville","Maine","04976","United States",NULL,"0",,"0","0",NULL,NULL
+"1404222257-1250","2014-04-22 22:57:34","3","12501114-22-04","account","0","7.5","0","27","106",NULL,NULL,"Robert Mercer","Robert Mercer Sr","1416 Beckwith Rd",,"Cornville","Maine","04976","United States",NULL,"0",,"0","0",NULL,NULL
+"1404231012-7d3f","2014-04-23 10:12:34","3","7d3f7b14-23-04","account","0","0","0","12","0",NULL,NULL,"Gordon Laatz",,"15266 Markese",,"Allen Park","Michigan","48101","United States",NULL,"0",,"0","0",NULL,NULL
+"1404231032-cb99","2014-04-23 10:32:53","3","cb99dc14-23-04","guest","0","8.5","0","43","106",NULL,NULL,"Michael Seeley",,"1431 155th Street",,"Whitestone","New York","11357","United States",NULL,"0",,"17.5","0",NULL,NULL
+"1404231712-9cfa","2014-04-23 17:12:48","1","9cfa8014-23-04","guest","0","15","0","165","106",NULL,NULL,"H. Wayne Hoffman",,"PO BOX 447",,"DELAVAN","Illinois","61734","United States",NULL,"0",,"0","0",NULL,NULL
+"1404231838-e686","2014-04-23 18:38:36","3","e6866014-23-04","account","0","15","0","165","106",NULL,NULL,"R.S. Watt Jr",,"2027 S. 292nd St",,"Federal Way","Washington","98003","United States",NULL,"0",,"0","0",NULL,NULL
+"1404261247-5cb2","2014-04-26 12:47:59","3","5cb27c14-26-04","guest","0","7.5","0","34.5","106",NULL,NULL,"Frank Rockabrand",,"6441 Via Aventura Dr",,"El Paso","Texas","79912","United States",NULL,"0",,"10","0",NULL,NULL
+"1404261604-7e67","2014-04-26 16:04:09","3","7e67c814-26-04","account","0","15","0","165","106",NULL,NULL,"Christian Moore",,"PO Box 3",,"Weimar","Texas","78962","United States",NULL,"0",,"0","0",NULL,NULL
+"1404281104-a4a2","2014-04-28 11:04:29","1","a4a2b214-28-04","guest","0","11.5","0","71.5","106",NULL,NULL,"Jerry M. Underwood ","Grand Lodge of Alabama","341 Monument Drive",,"Millbrook","Alabama","36054","United States",NULL,"0",,"0","0",NULL,NULL
+"1404281918-f17e","2014-04-28 19:18:57","3","f17eb214-28-04","guest","0","3","0","6.5","106",NULL,NULL,"Herman Mckinney",,"111 Mallory Ave Apt 7",,"Jersey City","New Jersey","07304","United States",NULL,"0",,"0","0",NULL,NULL
+"1404290727-0dd8","2014-04-29 07:27:51","3","0dd89214-29-04","guest","0","15","0","165","106",NULL,NULL,"Thomas Paxton","Queen City Lodge #131","P.O.Boz 1497",,"Cumberland","Maryland","21502-1497","United States",NULL,"0",,"0","0",NULL,NULL
+"1404292141-1b62","2014-04-29 21:41:42","3","1b62ae14-29-04","account","0","0","0","12","0",NULL,NULL,"Roger Bohn Jr",,"241 Locust Lane",,"Cinnaminson","New Jersey","08077","United States",NULL,"0",,"0","0",NULL,NULL
+"1404301225-ed84","2014-04-30 12:25:54","3","ed847814-30-04","guest","0","13.5","0","103.5","106",NULL,NULL,"Michael R. Aulicino",,"7413 Falmouth Street",,"Springfield","Virginia","22150","United States",NULL,"0",,"0","0",NULL,NULL
+"1404301706-428f","2014-04-30 17:06:31","3","428f5314-30-04","account","0","0","0","12","0",NULL,NULL,"x","x","32 east main","x","fort pierre","South Dakota","57532","United States",NULL,"0",,"0","0",NULL,NULL
+"1405011114-f044","2014-05-01 11:14:52","3","f0444414-01-05","account","0","6.5","0","16.5","106",NULL,NULL,"Randall Gurak",,"po box 341","1604 horseshoe trail","valley forge","Pennsylvania","19481","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1405012044-584b","2014-05-01 20:44:38","3","584be614-01-05","account","0","15","0","165","106",NULL,NULL,"Marcy Dupre",,"1503 Canyon Court",,"Port Orchard","Washington","98366","United States",NULL,"0",,"0","0",NULL,NULL
+"1405041451-2c19","2014-05-04 14:51:23","3","2c197114-04-05","account","0","0","0","12","0",NULL,NULL,"Eric Kuntz",,"56 Harmony Way",,"Ellsworth","Maine","04605","United States",NULL,"0",,"0","0",NULL,NULL
+"1405041626-7f21","2014-05-04 16:26:08","3","7f212113-28-05","account","0","15","0","130","107",NULL,NULL,"Douglas Collins",,"1520 Hillside Drive",,"Kamloops","British Columbia","V2E 1B1","Canada",NULL,"0",,"0","0",NULL,NULL
+"1405042246-81ac","2014-05-04 22:46:36","3","81acf814-04-05","account","0","0","0","12","0",NULL,NULL,"Edward Graham",,"11 Bogandale Rd",,"West Roxbury","Massachusetts","02132","United States",NULL,"0",,"0","0",NULL,NULL
+"1405051152-94d9","2014-05-05 11:52:49","3","94d9a814-05-05","guest","0","15","0","165","106",NULL,NULL,"Catherine Giaimo","Masonic Library & Museum of Penna.","Masonic Temple","1 North Broad St.","Philadelphia","Pennsylvania","19107","United States",NULL,"0",,"0","0",NULL,NULL
+"1405051230-ea2c","2014-05-05 12:30:06","3","ea2c9e14-05-05","account","0","15","0","165","106",NULL,NULL,"PAUL MILLER",,"6073 RIVER ROAD",,"NORFOLK","Virginia","23505-4718","United States",NULL,"0",,"0","0",NULL,NULL
+"1405051446-f3b0","2014-05-05 14:46:43","1","f3b02b14-05-05","account","0","20","0","285","106",NULL,NULL,"Stephen Ponzillo","Stephen J. Ponzillo, III","Marsteph Hall","4 Norgate Court","Ccokeysville","Maryland","21030","United States",NULL,"0",,"0","0",NULL,NULL
+"1405051720-c08d","2014-05-05 17:20:17","3","c08dbc14-05-05","guest","0","20.5","0","508","107",NULL,NULL,"David Hochman",,"1311. 6224-17th Ave. S.E.",,"Calgary","Alberta","T2A 7X8","Canada",NULL,"0",,"150","0",NULL,NULL
+"1405052128-58dc","2014-05-05 21:28:45","3","58dcda14-05-05","guest","0","20","0","285","106",NULL,NULL,"Gregory Gunderson",,"911 4 th st sw","po box 885","Stanley","North Dakota","58784","United States",NULL,"0",,"0","0",NULL,NULL
+"1405060728-e6ab","2014-05-06 07:28:03","3","e6ab1b14-06-05","account","0","7.5","0","37.5","106",NULL,NULL,"Matthew Sanders",,"209 E F St",,"Brunswick","Maryland","21716","United States",NULL,"0",,"17.5","0",NULL,NULL
+"1405061110-1401","2014-05-06 11:10:47","3","14017214-06-05","account","0","15","0","150","106",NULL,NULL,"Heidi Burch","Oregon Masonic Grand Lodgw","2150 Masonic Way",,"Forest Grove","Oregon","97064","United States",NULL,"0",,"10","0",NULL,NULL
+"1405061111-0c58","2014-05-06 11:11:57","3","0c58e214-06-05","guest","0","15","0","125","106",NULL,NULL,"Stephen Kroman","Jackson Lodge #146","363 Redding Road",,"Seymour","Indiana","47274","United States",NULL,"0",,"44","0",NULL,NULL
+"1405061734-82b4","2014-05-06 17:34:46","3","82b4dc14-06-05","guest","0","11.5","0","71.5","106",NULL,NULL,"Daniel Gardiner",,"1307 Boulder Ave",,"Helena","Montana","59601","United States",NULL,"0",,"0","0",NULL,NULL
+"1405071134-326d","2014-05-07 11:34:26","3","326d5414-07-05","account","0","0","0","12","0",NULL,NULL,"Michael Durbin",,"717 HILLCREST AVE",,"NIXA","Missouri","65714","United States",NULL,"0",,"0","0",NULL,NULL
+"1405071500-f8f9","2014-05-07 15:00:35","3","f8f91e14-07-05","account","0","20","0","285","106",NULL,NULL,"Daniel Rose",,"11196 Chippewa Drive",,"Warren","Michigan","48093-1642","United States",NULL,"0","How do I submit my payment? There is nothing that allows me to click and pay.","0","0",NULL,NULL
+"1405072018-7f21","2014-05-07 20:18:14","3","7f212113-28-05","account","0","0","0","12","0",NULL,NULL,"Douglas Collins",,"1520 Hillside Drive",,"Kamloops","British Columbia","V2E 1B1","Canada",NULL,"0",,"0","0",NULL,NULL
+"1405081650-1140","2014-05-08 16:50:39","3","11401614-08-05","guest","0","7.5","0","21","106",NULL,NULL,"Wilbert Drecktrah",,"318 North Hunter Street",,"Berlin","Wisconsin","54923","United States",NULL,"0",,"0","0",NULL,NULL
+"1405090956-22da","2014-05-09 09:56:58","3","22daf414-09-05","guest","0","15","0","165","106",NULL,NULL,"Richard Lowrey","Fellowship Lodge #345","505 S. Byers Ave.",,"Joplin","Missouri","64801","United States",NULL,"0","Please deliver between 8am and 4pm Monday thru Thursday.","0","0",NULL,NULL
+"1405092001-dc48","2014-05-09 20:01:43","3","dc484414-09-05","account","0","6.5","0","28.5","106",NULL,NULL,"Gerald Goodson",,"491 Fairway Dr",,"Somerset","Massachusetts","02726","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1405101333-cd93","2014-05-10 13:33:19","3","cd939e14-10-05","account","0","13.5","0","115.5","107",NULL,NULL,"Ian Donald",,"#17-5370 Lakeshore Rd",,"Burlington","Ontario","L7L1C2","Canada",NULL,"0",,"0","0",NULL,NULL
+"1405101348-cd93","2014-05-10 13:48:40","3","cd939e14-10-05","account","0","11.5","0","71.5","107",NULL,NULL,"Ian Donald",,"#17-5370 Lakeshore Rd",,"Burlington","Ontario","L7L1C2","Canada",NULL,"0",,"0","0",NULL,NULL
+"1405120130-aaab","2014-05-12 01:30:53","3","aaab9514-12-05","guest","0","11.5","0","62","106",NULL,NULL,"Alexander Bragat",,"257 Hampshire Dr.",,"Plainsboro","New Jersey","08536","United States",NULL,"0",,"10","0",NULL,NULL
+"1405132319-da49","2014-05-13 23:19:20","3","da49ff14-13-05","guest","0","10.5","0","60.5","106",NULL,NULL,"Cecil O Akin","RW Cecil O Akin","71 N Elm St",,"LaBelle","Florida","33935","United States",NULL,"0",,"4","0",NULL,NULL
+"1405140117-1b43","2014-05-14 01:17:32","3","1b439614-14-05","account","0","15","0","187","106",NULL,NULL,"William Gerhardt",,"3102 Old Elm Way",,"SanAntonio","Texas","78230","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1405140959-b9c9","2014-05-14 09:59:37","3","b9c9c014-14-05","account","0","11.5","0","75","107",NULL,NULL,"Brian Dillon",,"20420 Laggan Glenelg Rd",,"Dalkeith","Ontario","K0B1E0","Canada",NULL,"0",,"7.5","0",NULL,NULL
+"1405142359-70a2","2014-05-14 23:59:52","3","70a27114-14-05","account","0","13.5","0","115.5","106",NULL,NULL,"Tony Gore",,"937 Sage St",,"Baytown","Texas","77521","United States",NULL,"0","Lodge 1417 Clear Lake Lodge Texas","0","0",NULL,NULL
+"1405150910-fd70","2014-05-15 09:10:34","3","fd702814-15-05","account","0","7.5","0","21.5","106",NULL,NULL,"Henry Booth","Henry Booth","PO Box 524",,"Monterey","Virginia","24465","United States",NULL,"0",,"0","0",NULL,NULL
+"1405151432-14ef","2014-05-15 14:32:31","3","14ef7314-15-05","account","0","20.5","0","420.5","106",NULL,NULL,"Joe Watson","Grand Lodge of Georgia F & AM","811 Mulberry Street",,"Macon","Georgia","31201","United States",NULL,"0",,"140","0",NULL,NULL
+"1405151538-a939","2014-05-15 15:38:54","3","a939a614-15-05","account","0","13.5","0","113.5","106",NULL,NULL,"Bryan Farley","Bryan Farley","P.O. Box 804","42 North Main Street","Robbinsville","North Carolina","28771","United States",NULL,"0",,"24","0",NULL,NULL
+"1405160918-2178","2014-05-16 09:18:57","3","2178e614-16-05","account","0","8.5","0","33.5","106",NULL,NULL,"Chuck Springer",,"6305 St James Pl",,"Denton","Texas","76210","United States",NULL,"0",,"2","0",NULL,NULL
+"1405162048-80c5","2014-05-16 20:48:30","3","80c55414-16-05","guest","0","9.5","0","43","106",NULL,NULL,"charles holloway",,"651 Four Points Rd",,"Jackson","Georgia","30233-4266","United States",NULL,"0",,"10","0",NULL,NULL
+"1405171359-e040","2014-05-17 13:59:06","3","e0404c13-14-04","account","0","11.5","0","71.5","106",NULL,NULL,"Jose Perez","(personal)","16141 SW 42nd. Ter",,"MIami","Florida","33185-3825","United States",NULL,"0",,"0","0",NULL,NULL
+"1405181217-c602","2014-05-18 12:17:24","3","c6029814-18-05","guest","0","3","0","17","106",NULL,NULL,"Joseph Helminiak",,"1229 Pecan Station",,"San Antonio","Texas","78258-7843","United States",NULL,"0",,"1.5","0",NULL,NULL
+"1405181455-6238","2014-05-18 14:55:20","3","62383914-18-05","account","0","8.5","0","35.5","106",NULL,NULL,"Steve Hessler",,"628 1/2 North Sandusky Street",,"Bellevue","Ohio","44811","United States",NULL,"0",,"0","0",NULL,NULL
+"1405191005-999c","2014-05-19 10:05:44","3","999c4a14-19-05","guest","0","9.5","0","45.5","106",NULL,NULL,"Dennis Deitrich","Bellefonte Lodge ","7529 HWY 206 E",,"Harrison","Arkansas","72601-4339","United States",NULL,"0",,"20","0",NULL,NULL
+"1405191510-9864","2014-05-19 15:10:02","3","98646b14-19-05","guest","0","11.5","0","71.5","106",NULL,NULL,"Jerry Underwood","Grand Lodge of Alabama","P.O. Box 1070",,"Millbrook","Alabama","36054","United States",NULL,"0",,"0","0",NULL,NULL
+"1405192238-0172","2014-05-19 22:38:57","3","0172a413-10-05","account","0","3","0","20","106",NULL,NULL,"Jason Hale",,"1809 Beechnut Cove",,"Cedar Park","Texas","78613","United States",NULL,"0",,"0","0",NULL,NULL
+"1405201611-a9e3","2014-05-20 16:11:27","3","a9e37014-20-05","account","0","15","0","165","106",NULL,NULL,"George S Robinson Jr",,"2604 Horseshoe Trail",,"Chester Springs","Pennsylvania","19425","United States",NULL,"0",,"0","0",NULL,NULL
+"1405201807-f618","2014-05-20 18:07:09","3","f6189f14-20-05","account","0","0","0","12","0",NULL,NULL,"Richard Buschman",,"8334 W. Nevada Pl.",,"Lakewood","Colorado","80226","United States",NULL,"0",,"0","0",NULL,NULL
+"1405211051-562c","2014-05-21 10:51:28","3","562c0c14-21-05","account","0","15","0","177","106",NULL,NULL,"Paul Harbord",,"86 9th Ave",,"Hawthorne","New Jersey","07506-1645","United States",NULL,"0",,"0","0",NULL,NULL
+"1405212318-1d0d","2014-05-21 23:18:47","3","1d0d2f14-21-05","guest","0","15","0","187","106",NULL,NULL,"George Sherman",,"1947 Cypress Dr",,"Bel Air","Maryland","21015","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1405220056-76a2","2014-05-22 00:56:22","3","76a20e14-22-05","guest","0","9.5","0","41.5","106",NULL,NULL,"STEPHEN HAXBY",,"1701 W. STATE BLVD.",,"FORT WAYNE","Indiana","46808-1931","United States",NULL,"0","NEW HAVEN LODGE #740 F&AM","12.5","0",NULL,NULL
+"1405220931-9328","2014-05-22 09:31:46","3","93284914-22-05","account","0","0","0","12","0",NULL,NULL,"Zach Schmidt",,"W237 S4518 Big Bend Rd",,"Waukesha","Wisconsin","53189","United States",NULL,"0",,"0","0",NULL,NULL
+"1405221009-a677","2014-05-22 10:09:57","3","a677fe13-04-11","account","0","10.5","0","59","106",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"22.5","0",NULL,NULL
+"1405261813-795d","2014-05-26 18:13:46","3","795de114-26-05","account","0","6.5","0","16.5","106",NULL,NULL,"Roger Showalter",,"291 Matthews Ave",,"Ozark","Alabama","36360","United States",NULL,"0",,"0","0",NULL,NULL
+"1405271956-4041","2014-05-27 19:56:36","3","40412b14-27-05","account","0","15","0","165","106",NULL,NULL,"Raymon Bacchus",,"6009 Raina Drive",,"Centreville","Virginia","20120","United States",NULL,"0",,"0","0",NULL,NULL
+"1406010228-6377","2014-06-01 02:28:13","3","6377ac14-01-06","guest","0","8.5","0","45.6","106",NULL,NULL,"RICK SANTELLA",,"56 MAYFLOWER DRIVE",,"SICKLERVILLE","New Jersey","08081","United States",NULL,"0",,"10","0",NULL,NULL
+"1406011640-55ff","2014-06-01 16:40:10","3","55ffb914-01-06","guest","0","15","0","135","106",NULL,NULL,"Steven Aberblatt",,"6820 Horrocks Street",,"Philadelphia","Pennsylvania","19149","United States",NULL,"0",,"0","0",NULL,NULL
+"1406011714-73e2","2014-06-01 17:14:22","3","73e2ad14-01-06","account","0","3","0","20","106",NULL,NULL,"Richard Muth",,"184 Richard Drive",,"Aliquippa","Pennsylvania","15001","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1406012152-62c8","2014-06-01 21:52:20","3","62c88c14-01-06","account","0","3","0","18.75","106",NULL,NULL,"Nathan Mason",,"516 Golf View Drive",,"Peachtree City","Georgia","30269","United States",NULL,"0",,"6.75","0",NULL,NULL
+"1406012240-da77","2014-06-01 22:40:44","3","da77e514-01-06","account","0","11.5","0","71.5","106",NULL,NULL,"Rex Hasty",,"244 JC Bryant Rd",,"Hattiesburg","Mississippi","39401","United States",NULL,"0",,"0","0",NULL,NULL
+"1406021257-8a16","2014-06-02 12:57:54","3","8a163e14-02-06","account","0","3","0","19.75","106",NULL,NULL,"Paul Little",,"3 Gristmill Street ",,"Sutton","New Hampshire","03221","United States",NULL,"0",,"2.25","0",NULL,NULL
+"1406030914-0349","2014-06-03 09:14:03","3","03492614-03-06","account","0","3","0","6.5","106",NULL,NULL,"Norman Lincoln",,"P O Box 454",,"Eaton","Ohio","45320","United States",NULL,"0",,"0","0",NULL,NULL
+"1406031001-adad","2014-06-03 10:01:15","3","adadda14-03-06","guest","0","0","0","12","0",NULL,NULL,"August Moliotano",,"PO Box 427",,"Riverton","Connecticut","06065-0427","United States",NULL,"0","how about multi-year subscriptions ? e.g.: 5 Years ?","0","0",NULL,NULL
+"1406040751-d2d2","2014-06-04 07:51:02","3","d2d29613-19-04","account","0","0","0","12","0",NULL,NULL,"Craig Harm",,"425 Maple St",,"Fontanelle","Iowa","50846","United States",NULL,"0",,"0","0",NULL,NULL
+"1406041052-c26d","2014-06-04 10:52:28","3","c26d8913-16-05","account","0","0","0","12","0",NULL,NULL,"Robert Drzewucki","Robert Drzewucki","118 Brockmoore Drive",,"East Amherst","New York","14051","United States",NULL,"0","Renewing Subscription expiring 5/14","0","0",NULL,NULL
+"1406051026-a677","2014-06-05 10:26:23","3","a677fe13-04-11","account","0","0","0","12","0",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"0","0",NULL,NULL
+"1406071128-5d4a","2014-06-07 11:28:11","1","5d4aaf14-07-06","account","0","0","0","24","0",NULL,NULL,"matt muller",,"115 woodland road",,"pittsford","New York","14534","United States",NULL,"0","I am sending a 2 yrs subscription renewal.. Thanks ","0","0",NULL,NULL
+"1406082004-2d68","2014-06-08 20:04:33","3","2d680414-08-06","account","0","0","0","12","0",NULL,NULL,"Kristian Reninger",,"325 Andiron Lane",,"Rochester","New York","14612","United States",NULL,"0","renewal - link to previous subscription etc.. ","0","0",NULL,NULL
+"1406090932-dd5e","2014-06-09 09:32:07","3","dd5e1e14-09-06","guest","0","7.5","0","22.5","106",NULL,NULL,"Joe Christian","Brooklin Lodge #704","P.O. Box 1264",,"Sumiton","Alabama","35148","United States",NULL,"0",,"10","0",NULL,NULL
+"1406091036-585c","2014-06-09 10:36:55","3","585c5d14-09-06","guest","0","7.5","0","21.5","106",NULL,NULL,"Alan Walls","Springs Lodge No. 378","12821 E. Big Buck Trail",,"Floral City","Florida","34436","United States",NULL,"0",,"0","0",NULL,NULL
+"1406100736-46c0","2014-06-10 07:36:43","3","46c05514-10-06","guest","0","0","0","12","0",NULL,NULL,"Wayne Winsor",,"P.O. Box 687, Stn. C",,"Goose Bay","Newfoundland and Labrador","A0P 1C0","Canada",NULL,"0","Please note I am a current subscriber to the Short Talk Bulletin, and am renewing my subscription.","0","0",NULL,NULL
+"1406101049-01fc","2014-06-10 10:49:44","1","01fc3514-10-06","guest","0","13.5","0","103.5","106",NULL,NULL,"Nancy Power",,"PO Box 365",,"Pocono Pines","Pennsylvania","18350","United States",NULL,"0",,"0","0",NULL,NULL
+"1406101602-0b86","2014-06-10 16:02:58","1","0b86d914-10-06","guest","0","13.5","0","103.5","106",NULL,NULL,"Nancy Power",,"PO Box 365",,"Pocono Pines","Pennsylvania","18350","United States",NULL,"0",,"0","0",NULL,NULL
+"1406101607-4b63","2014-06-10 16:07:51","3","4b639514-10-06","guest","0","13.5","0","103.5","106",NULL,NULL,"Nancy Power",,"PO Box 365",,"Pocono Pines","Pennsylvania","18350","United States",NULL,"0",,"0","0",NULL,NULL
+"1406102227-da77","2014-06-10 22:27:12","3","da77e514-01-06","account","0","0","0","12","0",NULL,NULL,"Tommy Horn",,"510 North 38 Ave, Apt 6",,"Hattiesburg","Mississippi","39401","United States",NULL,"0",,"0","0",NULL,NULL
+"1406111712-08e1","2014-06-11 17:12:37","3","08e1b914-11-06","guest","0","0","0","12","0",NULL,NULL,"Kurt Lowe",,"415 S Kensington Str",,"Arlington","Virginia","22204","United States",NULL,"0",,"0","0",NULL,NULL
+"1406151640-b35f","2014-06-15 16:40:13","1","b35f9214-30-03","account","0","0","0","12","0",NULL,NULL,"Raymond Robey",,"1201 Stanford Road",,"Bethlehem","Pennsylvania","18018-2215","United States",NULL,"0",,"0","0",NULL,NULL
+"1406161742-a560","2014-06-16 17:42:59","3","a5607814-28-03","account","0","0","0","12","0",NULL,NULL,"James C. Clifford","James C. Clifford, KYCH","P.O. Box 376",,"Ballentine","South Carolina","29002-0376","United States",NULL,"0",,"0","0",NULL,NULL
+"1406171342-315e","2014-06-17 13:42:35","3","315e0a14-17-06","guest","0","11.5","0","83.5","106",NULL,NULL,"Albert Henson","n/a","290 Calef Hwy. #C14",,"Epping","New Hampshire","03042","United States",NULL,"0",,"0","0",NULL,NULL
+"1406171420-3113","2014-06-17 14:20:37","3","31136914-17-06","account","0","3","0","19","106",NULL,NULL,"Michael Postilli",,"56 Jersey Black Circle",,"Rochester","New York","14626","United States",NULL,"0",,"10","0",NULL,NULL
+"1406171613-05f0","2014-06-17 16:13:14","3","05f0e914-17-06","account","0","7.5","0","24.75","106",NULL,NULL,"john tyler","tyler","23288 orange avenue #6",,"lake forest","California","92630","United States",NULL,"0",,"6.75","0",NULL,NULL
+"1406181240-ed62","2014-06-18 12:40:04","3","ed62cc14-18-06","account","0","3","0","8","106",NULL,NULL,"leonard peterson",,"414 n main st","Apt/Suite","shawano","Wisconsin","54166","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1406191254-d0a1","2014-06-19 12:54:55","3","d0a18114-19-06","account","0","0","0","12","0",NULL,NULL,"Greg Vasquez",,"325 W. Knox Rd.",,"Tempe","Arizona","85284","United States",NULL,"0",,"0","0",NULL,NULL
+"1406191350-6793","2014-06-19 13:50:09","3","6793fc14-19-06","account","0","0","0","12","0",NULL,NULL,"Jamie Guinn",,"19910 E. 45th St. S.",,"Broken Arrow","Oklahoma","74014","United States",NULL,"0",,"0","0",NULL,NULL
+"1406201611-50bb","2014-06-20 16:11:26","3","50bb6314-20-06","account","0","11.5","0","63.5","106",NULL,NULL,"Andrew Werch","J. P. Luther Co.","PO BOX 344",,"Berlin","Wisconsin","54923","United States",NULL,"0",,"10","0",NULL,NULL
+"1406211347-2c35","2014-06-21 13:47:33","1","2c357114-21-06","guest","0","13.5","0","93.5","106",NULL,NULL,"John I. Hollowell II","Corpus Christi Masonic Lodge No. 189","P. O. Box 6704",,"Corpus Christi","Texas","78466","United States",NULL,"0",,"24","0",NULL,NULL
+"1406211355-2c35","2014-06-21 13:55:04","3","2c357114-21-06","account","0","11.5","0","62.5","106",NULL,NULL,"John I. Hollowell II","Corpus Christi Masonic Lodge No. 189","P. O. Box 6704",,"Corpus Christi","Texas","78466","United States",NULL,"0","ship to shipping address of P. O. Box 6704, Corpus Christi, TX 78466","4","0",NULL,NULL
+"1406231139-5d4a","2014-06-23 11:39:55","3","5d4aaf14-07-06","account","0","0","0","12","0",NULL,NULL,"matt muller",,"115 woodland road",,"pittsford","New York","14534","United States",NULL,"0",,"0","0",NULL,NULL
+"1406232001-ea49","2014-06-23 20:01:40","3","ea49f614-12-03","account","0","8.5","0","34.5","106",NULL,NULL,"Larry Perkins",,"16824 460th St.",,"Laurens","Iowa","50554","United States",NULL,"0",,"0","0",NULL,NULL
+"1406240041-ecb3","2014-06-24 00:41:00","1","ecb36f14-24-06","guest","0","7.5","0","18","107",NULL,NULL,"George Wong",,"842 Esquimalt Avenue",,"West Vancouver","British Columbia","V7T 1J8","Canada",NULL,"0",,"0","0",NULL,NULL
+"1406240047-8080","2014-06-24 00:47:50","3","8080fe14-24-06","guest","0","3","0","6.5","107",NULL,NULL,"George Wong",,"842 Esquimalt Ave",,"West Vancovuer","British Columbia","V7T 1J8","Canada",NULL,"0",,"0","0",NULL,NULL
+"1406251140-787d","2014-06-25 11:40:26","3","787d5e14-25-06","guest","0","15","0","180","106",NULL,NULL,"William Sexton","Etowah Lodge # 222","116 Shadow Lane",,"Dawsonville","Georgia","30534","United States",NULL,"0",,"0","0",NULL,NULL
+"1406251700-94d2","2014-06-25 17:00:49","3","94d2e614-25-06","guest","0","7.5","0","26","106",NULL,NULL,"danford Jesse","clintonville masons","2324 e richmond st",,"Shawano","Wisconsin","54166","United States",NULL,"0",,"0","0",NULL,NULL
+"1406261407-bb99","2014-06-26 14:07:50","3","bb990814-26-06","guest","0","0","0","60","0",NULL,NULL,"Raymond Hunter",,"13650 North Frontage Road, #152",,"Yuma","Arizona","85367-7423","United States",NULL,"0","5 year subscription renewal","0","0",NULL,NULL
+"1406271007-4c03","2014-06-27 10:07:37","3","4c03cb14-21-04","account","0","3","0","6.75","106",NULL,NULL,"Adam T. Osman, PM",,"215 Reed Road",,"Alum Bank","Pennsylvania","15521","United States",NULL,"0",,"6.75","0",NULL,NULL
+"1406271935-f7a3","2014-06-27 19:35:25","3","f7a39214-27-06","account","0","15","0","142","106",NULL,NULL,"Daniel Enyart",,"4 Mulberry Street",,"Fort Stewart","Georgia","31315","United States",NULL,"0",,"0","0",NULL,NULL
+"1406272238-4905","2014-06-27 22:38:52","3","49052514-27-06","account","0","0","0","12","0",NULL,NULL,"Freddie Wade",,"3579 Dubarry Road",,"Indianapolis","Indiana","46226","United States",NULL,"0",,"0","0",NULL,NULL
+"1406301258-d50e","2014-06-30 12:58:19","3","d50ebe14-30-06","account","0","0","0","60","0",NULL,NULL,"Orlando Salvato",,"41 Kelmar Avenue",,"Frazer","Pennsylvania","19355","United States",NULL,"0","I expired in May. I received June. Please be sure my new subscription starts in June, and please be sure I don't miss any issues. My acct. number is 5131 640.
<br>Fraternally,
<br>Orlando","0","0",NULL,NULL
+"1407011206-9846","2014-07-01 12:06:29","3","98463b14-27-01","account","0","8.5","0","35.5","106",NULL,NULL,"Elmer Etgen",,"3523 East 4th Street",,"Lubbock","Texas","79403","United States",NULL,"0",,"0","0",NULL,NULL
+"1407020720-0333","2014-07-02 07:20:19","3","03330c14-02-07","guest","0","13.5","0","93.5","106",NULL,NULL,"Peter Jones",,"450 Sunlight st",,"Cobbtown","Georgia","30420","United States",NULL,"0",,"24","0",NULL,NULL
+"1407040833-8a13","2014-07-04 08:33:45","3","8a131c14-04-07","account","0","0","0","12","0",NULL,NULL,"Andrew Orcutt",,"7094 Brownstone Ct",,"Middletown","Maryland","21769","United States",NULL,"0",,"0","0",NULL,NULL
+"1407041018-cb3b","2014-07-04 10:18:32","3","cb3b8714-04-07","guest","0","3","0","17.5","106",NULL,NULL,"BRIAN CHARTRAND",,"6936 SW 148 LANE",,"DAVIE","Florida","33331","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1407060959-0162","2014-07-06 09:59:36","3","01620514-06-07","guest","0","7.5","0","29.75","106",NULL,NULL,"Jeff Bloemker",,"14601 Derry hale Way",,"Smithville","Missouri","64089","United States",NULL,"0",,"2.25","0",NULL,NULL
+"1407071232-2659","2014-07-07 12:32:44","3","26598a14-07-07","account","0","15","0","165","106",NULL,NULL,"David Foote",,"1806 Cambridge Manor Drive",,"Scotia","New York","12302","United States",NULL,"0",,"0","0",NULL,NULL
+"1407080008-681f","2014-07-08 00:08:48","3","681f5a14-08-07","guest","0","3","0","17","106",NULL,NULL,"Stevens Moore",,"27406 Blue Cedar Lane",,"Spring","Texas","77386","United States",NULL,"0","I want to purchase the set of short talk bulletins on Leadership, a total of 19, at $.50 each for a total costs of $9.50. I will add $9.50 if allowed for the short talk bulletins. Please call me if I owe more.","1.5","0",NULL,NULL
+"1407082328-fc76","2014-07-08 23:28:00","3","fc76fa14-08-07","account","0","0","0","12","0",NULL,NULL,"Fred Maynard",,"2468 Millbrook Loop",,"Leander","Texas","78641","United States",NULL,"0",,"0","0",NULL,NULL
+"1407091511-f4b2","2014-07-09 15:11:35","3","f4b28114-09-07","account","0","13.5","0","93.5","106",NULL,NULL,"Duane Kemerley","Intuitive Options","5028 Road O",,"Pandora","Ohio","45877","United States",NULL,"0",,"24","0",NULL,NULL
+"1407110400-ae80","2014-07-11 04:00:04","1","ae803214-11-07","account","0","7.5","0","26.5","106",NULL,NULL,"Rah ",,"13351 D Riverside dr #422",,"Sherman Oaks","California","91423","United States",NULL,"0",,"5","0",NULL,NULL
+"1407111503-b47f","2014-07-11 15:03:36","3","b47fff14-11-07","account","0","20.5","0","422.5","106",NULL,NULL,"Fred D. Thompson","Piedmont Lodge of Perfection","3451 Glenn Springs Road",,"Spartanburg","South Carolina","29302-6222","United States",NULL,"0",,"48","0",NULL,NULL
+"1407120945-3951","2014-07-12 09:45:54","3","39515214-12-07","account","0","7.5","0","38","106",NULL,NULL,"William P. Russell",,"P.O. Box 2029",,"Bandon, OR","Oregon","97411","United States",NULL,"0",,"0","0",NULL,NULL
+"1407161328-1044","2014-07-16 13:28:01","3","10449a14-16-07","account","0","0","0","12","0",NULL,NULL,"Randy Davis",,"3495 Hempstead Street",,"Saint Charles","Missouri","63301","United States",NULL,"0",,"0","0",NULL,NULL
+"1407161454-23ce","2014-07-16 14:54:07","3","23ce9513-17-05","account","0","15","0","165","106",NULL,NULL,"Robert Moore",,"30 CSA Dr",,"Grenada","Mississippi","38901","United States",NULL,"0",,"0","0",NULL,NULL
+"1407161511-2cea","2014-07-16 15:11:41","3","2cea8414-16-07","guest","0","7.5","0","26.5","106",NULL,NULL,"Tom Bruce",,"4426 Hugh Howell Road","Suite B-118","Tucker","Georgia","30084","United States",NULL,"0",,"0","0",NULL,NULL
+"1407161613-4807","2014-07-16 16:13:20","3","4807a414-16-07","guest","0","8.5","0","36","106",NULL,NULL,"HT Banks",,"3058 Janerio Road",,"Arapahoe","North Carolina","28510","United States",NULL,"0",,"0","0",NULL,NULL
+"1407171402-d6b9","2014-07-17 14:02:58","3","d6b95f14-17-07","account","0","6.5","0","12","106",NULL,NULL,"Jerry Tomlin",,"1317 south view rd",,"Baltimore ","Maryland","21218","United States",NULL,"0",,"0","0",NULL,NULL
+"1407171451-3777","2014-07-17 14:51:10","3","37770714-17-07","account","0","15","0","165","106",NULL,NULL,"Michael Villines sr","grand lodge of tn.","100 7ave north",,"nashville","Tennessee","37203","United States",NULL,"0",,"0","0",NULL,NULL
+"1407171539-171c","2014-07-17 15:39:49","1","171cbb14-17-07","account","0","15","0","165","106",NULL,NULL,"Tracy Bloom","Most Worshipful Grand Lodge of Kansas","320 SW 8th Ave",,"Topeka","Kansas","66603","United States",NULL,"0",,"0","0",NULL,NULL
+"1407180859-d9ab","2014-07-18 08:59:35","3","d9ab6314-18-07","account","0","13.5","0","92","106",NULL,NULL,"Daniel Barston","Daniel Barston","15 Clark Street",,"Auburn","Massachusetts","01501-1743","United States",NULL,"0",,"0","0",NULL,NULL
+"1407181020-a2d7","2014-07-18 10:20:22","3","a2d73a14-18-07","account","0","6.5","0","25.5","106",NULL,NULL,"steve Belec",,"1321 south N street",,"Lake Worth","Florida","33460","United States",NULL,"0",,"0","0",NULL,NULL
+"1407190906-455e","2014-07-19 09:06:31","3","455ef113-03-12","account","0","11.5","0","71.5","106",NULL,NULL,"Thomas Winter",,"68 S Conger Avenue",,"Congers","New York","10920","United States",NULL,"0",,"0","0",NULL,NULL
+"1407200752-5cc8","2014-07-20 07:52:23","3","5cc87814-20-07","account","0","6.5","0","12","106",NULL,NULL,"Randy Brockman",,"512 - 1st Avenue",,"Clinton","Iowa","52732","United States",NULL,"0",,"0","0",NULL,NULL
+"1407200922-08f4","2014-07-20 09:22:32","3","08f4e013-21-05","account","0","15","0","165","106",NULL,NULL,"William Chapman",,"77 Pascal Ave.",,"Rockport","Maine","04856","United States",NULL,"0",,"0","0",NULL,NULL
+"1407210704-03de","2014-07-21 07:04:39","3","03de4014-21-07","guest","0","7.5","0","22.5","106",NULL,NULL,"John Tyson",,"23521 Hwy64 W",,"Knoxville","Arkansas","72845","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1407211855-97af","2014-07-21 18:55:16","3","97af8a14-21-07","guest","0","3","0","17.5","106",NULL,NULL,"Mike Rodman",,"710 Odde Pl",,"Rapid City","South Dakota","57701","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1407220809-a677","2014-07-22 08:09:36","3","a677fe13-04-11","account","0","20.5","0","380.5","106",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"12","0",NULL,NULL
+"1407221437-2131","2014-07-22 14:37:40","3","21318814-22-07","guest","0","7.5","0","21.5","106",NULL,NULL,"Jay V Smith","Jay V Smith, Secy","Ashara-Casiphia #551","4 E Brandt Blvd","Landisville","Alabama","17538-1104","United States",NULL,"0",,"0","0",NULL,NULL
+"1407221729-4395","2014-07-22 17:29:19","3","4395d014-22-07","guest","0","0","0","12","0",NULL,NULL,"Rob Gibbons",,"15132 Tangelo Blvd",,"West Palm Beach","Florida","33412","United States",NULL,"0",,"0","0",NULL,NULL
+"1407231029-fa7f","2014-07-23 10:29:30","1","fa7f8314-23-07","guest","0","11.5","0","71.5","106",NULL,NULL,"Tim Larkin",,"1505 Nautical Chart Drive",,"Charleston","South Carolina","29414","United States",NULL,"0","Paper order form said shipping was 8.00, but website charges 11.50.","0","0",NULL,NULL
+"1407232140-6d47","2014-07-23 21:40:16","1","6d47a214-23-07","account","0","7.5","0","22.5","107",NULL,NULL,"John Manning",,"69, Mount Victoria",,"Hudson","Quebec","J0P1H0","Canada",NULL,"0",,"0","0",NULL,NULL
+"1407241238-ed13","2014-07-24 12:38:59","1","ed131014-24-07","account","0","7.5","0","21.5","106",NULL,NULL,"Jay St. John","Green Valley Lodge #71","P.O. Box 771",,"Green Valley","Arizona","85622","United States",NULL,"0",,"0","0",NULL,NULL
+"1407241535-da77","2014-07-24 15:35:45","1","da77e514-01-06","account","0","0","0","12","0",NULL,NULL,"John Fillingame",,"219 Old River Rd",,"Petal","Mississippi","39465","United States",NULL,"0",,"0","0",NULL,NULL
+"1407241541-da77","2014-07-24 15:41:23","3","da77e514-01-06","account","0","0","0","12","0",NULL,NULL,"Kyle McDonald",,"111 Breckenridge Dr","Apt 101","Hattiesburg","Mississippi","39402","United States",NULL,"0",,"0","0",NULL,NULL
+"1407241653-da7a","2014-07-24 16:53:39","1","da7a5114-24-07","account","0","7.5","0","21","106",NULL,NULL,"James Nickels",,"111 Pecos St",,"Glen Rose","Texas","76043","United States",NULL,"0",,"0","0",NULL,NULL
+"1407241732-a772","2014-07-24 17:32:54","3","a772af14-24-07","account","0","6.5","0","16.5","106",NULL,NULL,"Hal Smith",,"6290 W Tropical Pkwy.",,"Las Vegas","Nevada","89130","United States",NULL,"0",,"0","0",NULL,NULL
+"1407241735-a772","2014-07-24 17:35:47","3","a772af14-24-07","account","0","3","0","8","106",NULL,NULL,"Hal Smith",,"6290 W Tropical Pkwy.",,"Las Vegas","Nevada","89130","United States",NULL,"0",,"0","0",NULL,NULL
+"1407241808-d879","2014-07-24 18:08:58","3","d8799814-24-07","account","0","6.5","0","16.5","106",NULL,NULL,"John Dennis",,"6013 Palmera Dr",,"Mason","Ohio","45040-8040","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1407250840-bafe","2014-07-25 08:40:22","1","bafe9f14-25-07","account","0","8.5","0","35.5","106",NULL,NULL,"Lynn Donaldson","Glendale Lodge No. 225","9563 State Hway 83 N.",,"DeFuniak Springs","Florida","32433","United States",NULL,"0",,"0","0",NULL,NULL
+"1407250848-b494","2014-07-25 08:48:51","3","b494ba14-25-07","guest","0","8.5","0","35.5","106",NULL,NULL,"Lynn Donaldson","Glendale Lodge No. 225","9563 State Hway 83 N.",,"DeFuniak Springs","Florida","32433","United States",NULL,"0",,"0","0",NULL,NULL
+"1407251454-44d7","2014-07-25 14:54:59","3","44d79114-25-07","account","0","0","0","12","0",NULL,NULL,"John Aiken",,"1981 Pine Dr.",,"Snellville","Georgia","30078","United States",NULL,"0",,"0","0",NULL,NULL
+"1407251630-6868","2014-07-25 16:30:31","3","6868ac14-25-07","guest","0","7.5","0","21.5","106",NULL,NULL,"Sam Carson","Chinquapin Creek Realty","PO Box 178","120 W. Main St.","Pilot Mountain","North Carolina","27041","United States",NULL,"0",,"0","0",NULL,NULL
+"1407261758-cd19","2014-07-26 17:58:22","1","cd19cd14-26-07","guest","0","7.5","0","21.5","106",NULL,NULL,"Robert Robinson","KBR","4018 Creek Ridge Lane",,"Missouri City","Texas","77459-2342","United States",NULL,"0",,"0","0",NULL,NULL
+"1407262100-0c2f","2014-07-26 21:00:33","3","0c2fb614-26-07","account","0","15","0","165","106",NULL,NULL,"Walter Siri","Walter Siri","402 Madison Street",,"Carlstadt","New Jersey","07072","United States",NULL,"0",,"4","0",NULL,NULL
+"1407270728-85bb","2014-07-27 07:28:47","3","85bb3114-27-07","account","0","3","0","20","106",NULL,NULL,"Brian Bright",,"244 Carpenter Road",,"Grant","Alabama","35747-9728","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1407271103-5eaa","2014-07-27 11:03:55","3","5eaa0614-27-07","guest","0","0","0","12","0",NULL,NULL,"Don Weiner",,"156 Hilltop Drive",,"Churchville","Pennsylvania","18966","United States",NULL,"0",,"0","0",NULL,NULL
+"1407271737-6eb2","2014-07-27 17:37:20","3","6eb2c114-27-07","account","0","0","0","12","0",NULL,NULL,"Jerry C. Templet","Jerry C ","Templet","81414 Bealer Rd.","Bush ","Louisiana","70431","United States",NULL,"0","The Short Talk Bulletins are Great. Being the Worshipful this year, I always have something to read, for the "Good of the Order". ","0","0",NULL,NULL
+"1407271924-44df","2014-07-27 19:24:25","3","44df5c14-17-04","account","0","7.5","0","33.5","106",NULL,NULL,"Eric Sims",,"1909 East 19th Street",,"Georgetown","Texas","78626-7331","United States",NULL,"0",,"0","0",NULL,NULL
+"1407281446-46d7","2014-07-28 14:46:44","3","46d79714-28-07","guest","0","11.5","0","71.5","106",NULL,NULL,"Rita Carroll",,"10100 Horseshoe Ln",,"McKinney","Texas","75070","United States",NULL,"0","Order form I printed shows $8 shipping & handling","0","0",NULL,NULL
+"1407281515-7f40","2014-07-28 15:15:14","3","7f401a14-28-07","account","0","7.5","0","21.6","106",NULL,NULL,"Carl Turner",,"1188 Main St",,"Long Lake","New York","12847","United States",NULL,"0",,"0","0",NULL,NULL
+"1407281738-e591","2014-07-28 17:38:43","3","e5915d14-28-07","guest","0","13.5","0","92.5","106",NULL,NULL,"Billy Millhollin",,"374 E. Front St",,"Forsyth","Montana","59327","United States",NULL,"0",,"2","0",NULL,NULL
+"1407281847-f820","2014-07-28 18:47:16","3","f8202e14-28-07","guest","0","8.5","0","36.7","106",NULL,NULL,"Mark Dinsmore",,"10405 Olympic Place",,"Anderson Island","Washington","98303","United States",NULL,"0",,"10","0",NULL,NULL
+"1407290954-e650","2014-07-29 09:54:20","3","e6508b14-29-07","guest","0","7.5","0","27.5","106",NULL,NULL,"BILL COCHRAN",,"161 e newman st",,"zanesville","Ohio","43701","United States",NULL,"0",,"0","0",NULL,NULL
+"1407291357-c2b9","2014-07-29 13:57:28","3","c2b93c14-29-07","account","0","7.5","0","27.5","106",NULL,NULL,"Jon Trego",,"402 Madison St.",,"Ravenna","Ohio","44266","United States",NULL,"0",,"0","0",NULL,NULL
+"1407291508-671e","2014-07-29 15:08:30","3","671e2a14-29-07","guest","0","8.5","0","32","106",NULL,NULL,"George Walton","Reactives Management Corporation","1025 Executive Blvd","Suite 101","Chesapeake","Virginia","23320","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1407291627-cd9f","2014-07-29 16:27:59","3","cd9f4414-29-07","guest","0","7.5","0","26","106",NULL,,"H. JAMES BLUM",,"5509 MARTHA'S VINEYARD",,"CLARENCE CENTER","New York","14032-9397","United States",,"0",,"0","0",NULL,"0"
+"1407291642-8a9d","2014-07-29 16:42:08","3","8a9d7914-29-07","guest","0","8.5","0","45.5","106",NULL,NULL,"Michael Day",,"PO Box 815",,"Pittsboro","North Carolina","27312","United States",NULL,"0",,"0","0",NULL,NULL
+"1407291703-ebf9","2014-07-29 17:03:13","3","ebf92514-29-07","guest","0","7.5","0","27.5","106",NULL,NULL,"Jorge Filgueira",,"191 Chippewa Street",,"Miami Springs","Florida","33166","United States",NULL,"0",,"0","0",NULL,NULL
+"1407300236-72d7","2014-07-30 02:36:59","3","72d75114-30-07","guest","0","6.5","0","24.5","106",NULL,NULL,"Charles Ward",,"4446 Mendenhall Boulevard",,"Juneau","Alaska","99801","United States",NULL,"0",,"0","0",NULL,NULL
+"1407300909-1304","2014-07-30 09:09:47","3","13047c14-30-07","account","0","0","0","12","0",NULL,NULL,"frederick Kemp",,"13103 W 126th pl",,"Overland Park","Kansas","66213","United States",NULL,"0",,"0","0",NULL,NULL
+"1407310944-ff0d","2014-07-31 09:44:26","3","ff0dfb14-31-07","guest","0","13.5","0","105.5","106",NULL,NULL,"Roy Simpadian",,"535 Amsterdam Avenue",,"Ridgewood","New Jersey","07450","United States",NULL,"0",,"0","0",NULL,NULL
+"1407311335-0894","2014-07-31 13:35:29","1","0894c914-31-07","guest","0","6.5","0","12","106",NULL,NULL,"John Smigle",,"853 Ridge Rd",,"Ontario","New York","14519","United States",NULL,"0",,"0","0",NULL,NULL
+"1407311337-7835","2014-07-31 13:37:01","3","7835b114-31-07","guest","0","6.5","0","12","106",NULL,NULL,"John Smigle",,"853 Ridge Rd",,"Ontario","New York","14519","United States",NULL,"0",,"0","0",NULL,NULL
+"1407311917-9a27","2014-07-31 19:17:40","1","9a27b214-31-07","account","0","11.5","0","71.5","106",NULL,NULL,"Danny Thomas","Garland Masonic Lodge #441","P.O. Box 460702",,"Garland","Texas","75046-0702","United States",NULL,"0",,"40","0",NULL,NULL
+"1408011117-b4ad","2014-08-01 11:17:04","3","b4ad7414-01-08","guest","0","7.5","0","21.5","106",NULL,NULL,"Oscar Orum",,"8607 Azalea Trail",,"Austin","Texas","78759-7501","United States",NULL,"0",,"0","0",NULL,NULL
+"1408011222-b613","2014-08-01 12:22:53","3","b613db14-01-08","guest","0","8.5","0","33.6","106",NULL,NULL,"Bruce Katz",,"48 Kaywood Drive",,"Rochester","New York","14626","United States",NULL,"0",,"0","0",NULL,NULL
+"1408012251-4949","2014-08-01 22:51:52","3","49496114-01-08","guest","0","7.5","0","21","106",NULL,NULL,"Vincenzo Macrino",,"5432 Lake Rd",,"Newfield","New Jersey","08344","United States",NULL,"0",,"0","0",NULL,NULL
+"1408022107-07aa","2014-08-02 21:07:37","1","07aa3e14-02-08","account","0","9.5","0","49.5","106",NULL,NULL,"Yancey Smith",,"3221 Conservation Way",,"Rapid City","South Dakota","57703","United States",NULL,"0",,"0","0",NULL,NULL
+"1408022138-07aa","2014-08-02 21:38:16","1","07aa3e14-02-08","account","0","9.5","0","49.5","106",NULL,NULL,"Yancey Smith",,"3221 Conservation Way",,"Rapid City","South Dakota","57703","United States",NULL,"0",,"0","0",NULL,NULL
+"1408032141-d879","2014-08-03 21:41:50","1","d8799814-24-07","account","0","15","0","165","106",NULL,NULL,"John Dennis",,"6013 Palmera Dr",,"Mason","Ohio","45040-8040","United States",NULL,"0",,"0","0",NULL,NULL
+"1408040946-d879","2014-08-04 09:46:40","3","d8799814-24-07","account","0","15","0","165","106",NULL,NULL,"John Dennis",,"6013 Palmera Dr",,"Mason","Ohio","45040-8040","United States",NULL,"0",,"0","0",NULL,NULL
+"1408042149-b2f1","2014-08-04 21:49:27","3","b2f10a14-04-08","account","0","11.5","0","83.5","106",NULL,NULL,"Nathan Giesenschlag",,"9095 FM 2039",,"Somerville","Texas","77879","United States",NULL,"0",,"0","0",NULL,NULL
+"1408042241-4761","2014-08-04 22:41:46","1","4761df14-04-08","guest","0","20","0","270","106",NULL,NULL,"John Strickling",,"4203 Willow Bend Ct SE",,"Decatur","Alabama","35603","United States",NULL,"0",,"60","0",NULL,NULL
+"1408050121-6f15","2014-08-05 01:21:25","3","6f15cf14-05-08","account","0","11.5","0","71.5","106",NULL,NULL,"Paul Mundy","St. Stephen's Lodge #63","349 Parker Ave",,"South Amboy","New Jersey","08879","United States",NULL,"0",,"0","0",NULL,NULL
+"1408051012-c7e0","2014-08-05 10:12:31","3","c7e0f913-28-02","account","0","7.5","0","26.5","106",NULL,NULL,"Donald Combs","Frank F. Baker Lodge#46 F&AM","1262 Meadow Lane SE",,"Darien","Georgia","31305","United States",NULL,"0",,"0","0",NULL,NULL
+"1408051341-031b","2014-08-05 13:41:25","3","031b2714-05-08","account","0","0","0","12","0",NULL,NULL,"Mike Forte","1948","3100 N. Jackson Rd.",,"Pharr","Texas","78577","United States",NULL,"0",,"0","0",NULL,NULL
+"1408051551-fb72","2014-08-05 15:51:39","3","fb72f213-20-03","account","0","0","0","12","0",NULL,NULL,"Kevin Swartz",,"509 W 3rd Ave",,"Ritzville","Washington","99169","United States",NULL,"0",,"0","0",NULL,NULL
+"1408052028-ded3","2014-08-05 20:28:09","3","ded39e14-05-08","account","0","15","0","165","106",NULL,NULL,"William Greenwood",,"PO Box 218521",,"Houston","Texas","77218","United States",NULL,"0",,"0","0",NULL,NULL
+"1408071555-918b","2014-08-07 15:55:42","3","918b7314-07-08","guest","0","9.5","0","43.5","106",NULL,NULL,"Gwen Olson","Grand Lodge of SD","520 S First Ave",,"Sioux Falls","South Dakota","57104","United States",NULL,"0",,"2","0",NULL,NULL
+"1408092116-7d06","2014-08-09 21:16:25","3","7d061b14-09-08","guest","0","0","0","12","0",NULL,NULL,"Michael Bolen","Michael Bolen","32553 NC 740 Hwy",,"Albemarle","North Carolina","28001","United States",NULL,"0",,"0","0",NULL,NULL
+"1408101145-3c02","2014-08-10 11:45:39","3","3c023a14-10-08","account","0","8.5","0","43","106",NULL,NULL,"Robert Wade",,"608 West Main St",,"Austin","Indiana","47102","United States",NULL,"0",,"7.5","0",NULL,NULL
+"1408101430-1aab","2014-08-10 14:30:25","3","1aab7813-28-07","account","0","0","0","12","0",NULL,NULL,"MICHAEL SIMMONS",,"82 WESTFORD AVENUE",,"Stafford Springs","Connecticut","06076","United States",NULL,"0",,"0","0",NULL,NULL
+"1408111146-c8d6","2014-08-11 11:46:15","3","c8d62314-11-08","guest","0","3","0","6.5","106",NULL,NULL,"shawn gorley",,"603 TAMPLIN ST APT A",,"SHARON","Pennsylvania","16146","United States",NULL,"0",,"0","0",NULL,NULL
+"1408111206-3979","2014-08-11 12:06:03","1","39798e14-11-08","account","0","0","0","12","0",NULL,NULL,"Thomas M. Richards","1936","1267 Genesee Ave.","none","mayfield heights","Ohio","44124","United States",NULL,"0",,"0","0",NULL,NULL
+"1408111716-1eab","2014-08-11 17:16:33","3","1eab2a14-30-03","account","0","15","0","130","106",NULL,NULL,"Patrick Stull",,"24 Willadell Road",,"Transfer","Pennsylvania","16154","United States",NULL,"0",,"0","0",NULL,NULL
+"1408121056-b9b8","2014-08-12 10:56:09","3","b9b80014-12-08","guest","0","10.5","0","60.5","106",NULL,NULL,"Aaron Poole",,"1020 Karel Park Rd.",,"Eldorado","Illinois","62930","United States",NULL,"0",,"0","0",NULL,NULL
+"1408121248-2bed","2014-08-12 12:48:09","3","2bedff14-12-08","account","0","8.5","0","37.5","106",NULL,NULL,"Rex E. Harrison",,"25372 Highway 195",,"Double Springs","Alabama","35553","United States",NULL,"0",,"0","0",NULL,NULL
+"1408122155-79ef","2014-08-12 21:55:57","3","79ef0814-12-08","guest","0","11.5","0","80.5","106",NULL,NULL,"Dave Olmstead","Behind The Scenes Productions","3 Glenpark Ct",,"Amelia","Ohio","45102","United States",NULL,"0",,"10","0",NULL,NULL
+"1408130238-c0bb","2014-08-13 02:38:57","3","c0bbab14-13-08","account","0","0","0","12","0",NULL,NULL,"Paul Van Laarhoven",,"38 N. Park St",,"Clintonville","Wisconsin","54929","United States",NULL,"0",,"0","0",NULL,NULL
+"1408130707-81d3","2014-08-13 07:07:24","3","81d31814-13-08","guest","0","20","0","270","106",NULL,NULL,"Mike Johnson",,"121 Bobs Creek Road","PO Box 575","Crowheart","Wyoming","82512","United States",NULL,"0",,"0","0",NULL,NULL
+"1408130707-7ca5","2014-08-13 07:07:51","1","7ca59714-13-08","account","0","9.5","0","49.5","106",NULL,NULL,"Bayani Casanoiva",,"709 Gleneagles Drive",,"Fort Washington","Maryland","20744","United States",NULL,"0",,"0","0",NULL,NULL
+"1408131527-04c9","2014-08-13 15:27:59","3","04c91514-13-08","guest","0","11.5","0","85","106",NULL,NULL,"Michael L. Sellick","Scottish Rite Masonic Center","6151 H Street",,"Sacramento","California","95819","United States",NULL,"0",,"22","0",NULL,NULL
+"1408131530-bcc9","2014-08-13 15:30:02","1","bcc92a14-13-08","account","0","7.5","0","22","106",NULL,NULL,"Daniel Leger",,"833 21 Road",,"Fruita","Colorado","81521","United States",NULL,"0",,"0","0",NULL,NULL
+"1408141418-866c","2014-08-14 14:18:46","3","866cfe14-14-08","guest","0","8.5","0","33.5","106",NULL,NULL,"GERALD BURKS","BURKS' BOOKKEEPING & TAX SVC.","9310 WARWICK BLVD.",,"NEWPORT NEWS","Virginia","23601-4535","United States",NULL,"0",,"0","0",NULL,NULL
+"1408142120-f31b","2014-08-14 21:20:27","1","f31bce14-14-08","guest","0","8.5","0","33.5","106",NULL,NULL,"John McDowall",,"5595 Jaclyn Dr",,"Warrenton","Virginia","20187","United States",NULL,"0",,"2","0",NULL,NULL
+"1408142129-51c3","2014-08-14 21:29:43","3","51c3d214-14-08","guest","0","8.5","0","33.5","106",NULL,NULL,"John McDowall","1967","5595 Jaclyn Dr",,"Warrenton","Virginia","20187","United States",NULL,"0",,"2","0",NULL,NULL
+"1408150035-d16a","2014-08-15 00:35:07","3","d16a8014-15-08","guest","0","11.5","0","71.5","106",NULL,NULL,"Nick Nealis",,"310 Ave D",,"Boise","Idaho","83712","United States",NULL,"0",,"0","0",NULL,NULL
+"1408151041-9b84","2014-08-15 10:41:17","3","9b84e814-15-08","account","0","0","0","24","0",NULL,NULL,"Barbara L Thames",,"P O Box 728",,"Reidsville","Georgia","30453","United States",NULL,"0","Subscription for 2 years please.","0","0",NULL,NULL
+"1408151115-6cd6","2014-08-15 11:15:49","3","6cd60413-22-02","account","0","15","0","180","106",NULL,NULL,"Philip Buchholz",,"PO Box 597","1105 W Rochester Ave","Saratoga","Wyoming","82331","United States",NULL,"0",,"0","0",NULL,NULL
+"1408151538-32c8","2014-08-15 15:38:49","3","32c89d14-15-08","guest","0","7.5","0","39.5","106",NULL,NULL,"Wayne Grindle","Wayne Grindle","4216 High Ridge Road",,"Haymarket","Virginia","20169","United States",NULL,"0",,"0","0",NULL,NULL
+"1408151540-550d","2014-08-15 15:40:56","3","550df214-15-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Tom Bruce",,"4426 Hugh Howell Road","Suite B-118","Tucker","Georgia","30084","United States",NULL,"0",,"0","0",NULL,NULL
+"1408151812-0a8d","2014-08-15 18:12:50","3","0a8dd414-15-08","account","0","7.5","0","27.5","106",NULL,NULL,"Michael Davis","Michael Davis","224 Churchland Road",,"Saugerties","New York","12477","United States",NULL,"0",,"0","0",NULL,NULL
+"1408152306-e39d","2014-08-15 23:06:42","1","e39dec14-15-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Paul Jones",,"2500 GRANT ST APT 115",,"BETTENDORF","Iowa","527227400","United States",NULL,"0",,"0","0",NULL,NULL
+"1408161045-f7f4","2014-08-16 10:45:43","3","f7f4f714-16-08","account","0","7.5","0","27.5","106",NULL,NULL,"Bruce Whitaker",,"14911 Missouri Ave., SW",,"Cresaptown","Maryland","21502","United States",NULL,"0",,"0","0",NULL,NULL
+"1408161052-e25e","2014-08-16 10:52:09","3","e25e4914-16-08","account","0","15","0","190","106",NULL,NULL,"Albert Piatt",,"1721 Julian Ridge Road",,"Chattanooga","Tennessee","37421-3321","United States",NULL,"0",,"0","0",NULL,NULL
+"1408161121-824a","2014-08-16 11:21:16","3","824a5414-16-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Fred Goodman","LaMonte Lodge568","121 W 3RD Ave",,"Derry","Pennsylvania","15627-1207","United States",NULL,"0",,"0","0",NULL,NULL
+"1408161756-605e","2014-08-16 17:56:01","3","605ea614-16-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Paul Van Laarhoven",,"38 N. Park St.",,"Clintonville","Wisconsin","54929","United States",NULL,"0",,"0","0",NULL,NULL
+"1408171252-3103","2014-08-17 12:52:08","3","31036b14-17-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Bradley Morton",,"1014 Cleburne street",,"Greensboro","North Carolina","27408","United States",NULL,"0",,"0","0",NULL,NULL
+"1408171609-0a4c","2014-08-17 16:09:18","3","0a4c9d14-17-08","account","0","11.5","0","71.5","106",NULL,NULL,"Jeff Slattery",,"45 Carol Lane",,"Athens","Ohio","45701","United States",NULL,"0",,"0","0",NULL,NULL
+"1408171620-d054","2014-08-17 16:20:23","3","d054aa14-17-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Andrew Ellis",,"79 Barnes Street",,"Gouverneur","New York","13642","United States",NULL,"0",,"0","0",NULL,NULL
+"1408171835-22b8","2014-08-17 18:35:30","3","22b8a614-17-08","guest","0","15","0","165","106",NULL,NULL,"Ronald Jarrett",,"10349 416th Ave",,"Britton ","South Dakota","57430","United States",NULL,"0",,"0","0",NULL,NULL
+"1408171939-f7a3","2014-08-17 19:39:49","3","f7a39214-27-06","account","0","9.5","0","44","106",NULL,NULL,"Daniel Enyart",,"4 Mulberry Street",,"Fort Stewart","Georgia","31315","United States",NULL,"0",,"0","0",NULL,NULL
+"1408172129-5659","2014-08-17 21:29:04","3","56590914-17-08","account","0","0","0","12","0",NULL,NULL,"Michael Whitescarver",,"3216 W. Winchester",,"Springfield","Missouri","65807","United States",NULL,"0",,"0","0",NULL,NULL
+"1408172137-7efb","2014-08-17 21:37:14","1","7efbc414-17-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Marlin Shughart",,"310 Huntington Drive",,"Mountville","Pennsylvania","17554","United States",NULL,"0",,"0","0",NULL,NULL
+"1408181010-86e0","2014-08-18 10:10:39","3","86e0c614-18-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Mark Chapman",,"22 Pine Crest Drive",,"Troy","Virginia","22974-6219","United States",NULL,"0",,"0","0",NULL,NULL
+"1408181128-0653","2014-08-18 11:28:44","3","0653f314-18-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Chris Cochrane",,"4172 Westview Lane",,"Oshkosh","Wisconsin","54904","United States",NULL,"0",,"0","0",NULL,NULL
+"1408181227-b1d3","2014-08-18 12:27:06","3","b1d32714-18-08","account","0","7.5","0","27.5","106",NULL,NULL,"Kevin LeVan",,"2118 Mark Drive",,"Middletown","Virginia","22645","United States",NULL,"0",,"0","0",NULL,NULL
+"1408181545-ee93","2014-08-18 15:45:33","3","ee93c814-18-08","account","0","7.5","0","27.5","106",NULL,NULL,"John Schaffhauser","John Schaffhauser","2606 Harding Ave.",,"Broomall","Pennsylvania","19008","United States",NULL,"0",,"0","0",NULL,NULL
+"1408181715-f124","2014-08-18 17:15:23","3","f1249f14-18-08","guest","0","0","0","12","0",NULL,NULL,"Donald K. Slaughter",,"438 South 85th Street",,"Omaha","Nebraska","68114","United States",NULL,"0",,"0","0",NULL,NULL
+"1408182115-90c2","2014-08-18 21:15:19","3","90c22014-18-08","account","0","7.5","0","27.5","106",NULL,NULL,"Rick Miller",,"2021 Windham St NE",,"Canton","Ohio","44721","United States",NULL,"0",,"0","0",NULL,NULL
+"1408182242-15c8","2014-08-18 22:42:33","3","15c83e14-18-08","guest","0","7.5","0","27.5","106",NULL,NULL,"William Reynar",,"10253 NE 129th LN",,"Kirkland","Washington","98034","United States",NULL,"0",,"0","0",NULL,NULL
+"1408190801-dd9c","2014-08-19 08:01:42","3","dd9ccf14-19-08","account","0","10.5","0","51","106",NULL,NULL,"Tom Paxton","Queen City Lodge #131","1939 Frederick St.","Apt 5","Cumberland","Maryland","21502","United States",NULL,"0",,"0","0",NULL,NULL
+"1408190954-1e6a","2014-08-19 09:54:49","3","1e6a2f13-31-03","account","0","9.5","0","49.5","106",NULL,NULL,"Chet Russell",,"P.O. Box 281",,"Plainville ","Connecticut","06062","United States",NULL,"0",,"0","0",NULL,NULL
+"1408191302-1aad","2014-08-19 13:02:07","3","1aad8114-19-08","guest","0","8.5","0","33.5","106",NULL,NULL,"Michael Postilli",,"56 Jersey Black Circle",,"Rochester","New York","14626","United States",NULL,"0",,"0","0",NULL,NULL
+"1408191426-fe7e","2014-08-19 14:26:01","3","fe7e4a13-01-04","account","0","7.5","0","27.5","106",NULL,NULL,"Fred S Kile","AASR, Valley of Columbus","290 Cramer Creek Ct",,"Dublin","Ohio","43017","United States",NULL,"0",,"0","0",NULL,NULL
+"1408191433-9a7b","2014-08-19 14:33:38","3","9a7b7e14-19-08","guest","0","7.5","0","27.5","106",NULL,NULL,"William Breed","Coastal Lodge #57","7 Fairview Dr",,"Pawcatuck","Connecticut","06379-1271","United States",NULL,"0",,"0","0",NULL,NULL
+"1408191453-f6b2","2014-08-19 14:53:19","1","f6b29314-19-08","account","0","6.5","0","12","106",NULL,NULL,"John Shroedere","N/A","5418 Inverchapel Rd",,"Springfield","Virginia","22151","United States",NULL,"0",,"0","0",NULL,NULL
+"1408191551-b178","2014-08-19 15:51:31","3","b1784014-19-08","guest","0","11.5","0","71.5","106",NULL,NULL,"Joseph DeNicola","Old Colony Lodge","402 Main Street",,"Hanover","Massachusetts","02339","United States",NULL,"0",,"0","0",NULL,NULL
+"1408191604-bda5","2014-08-19 16:04:11","1","bda52314-19-08","account","0","8.5","0","50.1","106",NULL,NULL,"Christopher Casey",,"31 Ridgeland Road",,"Shrewsbury","Massachusetts","01545","United States",NULL,"0",,"0","0",NULL,NULL
+"1408191611-bda5","2014-08-19 16:11:44","3","bda52314-19-08","account","0","8.5","0","46.1","106",NULL,NULL,"Christopher Casey",,"31 Ridgeland Road",,"Shrewsbury","Massachusetts","01545","United States",NULL,"0",,"0","0",NULL,NULL
+"1408191643-3080","2014-08-19 16:43:03","3","30800114-19-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Robert Legowsky",,"2627 Spring Grove Dr",,"Brighton","Michigan","48114","United States",NULL,"0",,"0","0",NULL,NULL
+"1408191707-c169","2014-08-19 17:07:20","1","c1692014-19-08","account","0","7.5","0","27.5","106",NULL,NULL,"Marvin Armstrong","Marvin Armstrong","2606 S Taylor",,"Pittsburg","Kansas","66762","United States",NULL,"0",,"0","0",NULL,NULL
+"1408191745-b338","2014-08-19 17:45:50","1","b338c014-19-08","account","0","7.5","0","27.5","106",NULL,NULL,"Marvin Armstrong","Pittsburg Lodge No 187 AF&AM","2606 S Taylor",,"Pittsburg","Kansas","66762","United States",NULL,"0",,"0","0",NULL,NULL
+"1408191748-4e61","2014-08-19 17:48:38","3","4e610214-19-08","guest","0","7.5","0","27.5","106",NULL,NULL,"John Breitigan",,"309 Windsor Circle",,"Washington","Pennsylvania","15301","United States",NULL,"0",,"0","0",NULL,NULL
+"1408191807-9784","2014-08-19 18:07:51","3","97845f14-19-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Brenda Watson","Brenda Watson","2501 W. Zia Rd.","#6-104","Santa Fe","New Mexico","87505","United States",NULL,"0",,"0","0",NULL,NULL
+"1408191937-41ed","2014-08-19 19:37:34","3","41ed4814-19-08","account","0","10.5","0","51.5","106",NULL,NULL,"James Fiete",,"2201 Parkridge Avenue",,"Brentwood","Missouri","63144-1639","United States",NULL,"0",,"0","0",NULL,NULL
+"1408192045-0a4e","2014-08-19 20:45:34","3","0a4e5414-19-08","guest","0","8.5","0","35.25","106",NULL,NULL,"Jeff Bloemker ",,"14601 Derryhale Way",,"Smithville ","Missouri","64089","United States",NULL,"0",,"2.25","0",NULL,NULL
+"1408192145-7e95","2014-08-19 21:45:43","3","7e955d14-19-08","guest","0","10.5","0","57.1","106",NULL,NULL,"charles nesom",,"440 elaine rd",,"deridder","Louisiana","70634","United States",NULL,"0",,"2.5","0",NULL,NULL
+"1408192223-addd","2014-08-19 22:23:32","3","addda514-19-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Mike Campbell",,"2502 Goliad Str",,"Temple","Texas","76501","United States",NULL,"0",,"0","0",NULL,NULL
+"1408200931-bebb","2014-08-20 09:31:46","3","bebb6914-20-08","account","0","6.5","0","24.75","106",NULL,NULL,"Timothy Walker",,"236 N Pennsylvania Ave",,"Casper","Wyoming","82609","United States",NULL,"0",,"2.25","0",NULL,NULL
+"1408201014-c332","2014-08-20 10:14:48","3","c332f514-20-08","guest","0","9.5","0","43","106",NULL,NULL,"Oscar Patterson III",,"248 Patrick Mill Circle",,"Ponte Vedra Beach","Florida","32082","United States",NULL,"0",,"0","0",NULL,NULL
+"1408201036-2012","2014-08-20 10:36:31","5","20128013-26-03","account","0","11.5","0","66","106",NULL,NULL,"Frank Loui","San Francisco Scottish Rite","2850 19th Avenue",,"San Francisco","California","94132","United States",NULL,"0",,"0","0",NULL,NULL
+"1408201040-05ec","2014-08-20 10:40:05","3","05ec3714-20-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Barry Allen",,"19230 Sharon Valley Rd",,"Manchester","Michigan","48158","United States",NULL,"0",,"0","0",NULL,NULL
+"1408201041-0595","2014-08-20 10:41:08","3","05955814-20-08","guest","0","11.5","0","66","106",NULL,NULL,"Frank Loui","A&ASR","2850 19th Avenue",,"San Francisco","California","94132","United States",NULL,"0",,"0","0",NULL,NULL
+"1408201319-185b","2014-08-20 13:19:41","3","185b8014-20-08","account","0","3","0","8","106",NULL,NULL,"JOHN PANICCIA",,"1963 CATO COURT",,"INDIALANTIC","Florida","32903","United States",NULL,"0",,"0","0",NULL,NULL
+"1408201335-53af","2014-08-20 13:35:20","3","53af4014-20-08","account","0","7.5","0","27.5","106",NULL,NULL,"Robert Gaydosh",,"212 Old York Road",,"Bridgewater","New Jersey","08807","United States",NULL,"0",,"0","0",NULL,NULL
+"1408201411-ca1f","2014-08-20 14:11:56","3","ca1fba14-20-08","account","0","8.5","0","33.5","106",NULL,NULL,"Patrick Curtis",,"9409 Gwynndale Drive",,"Clinton","Maryland","20735","United States",NULL,"0",,"0","0",NULL,NULL
+"1408201516-26ba","2014-08-20 15:16:25","3","26ba2f14-20-08","guest","0","11.5","0","66.5","106",NULL,NULL,"Gwen Olson","Grand Lodge A.F. & A.M. of South Dakota","520 S First Ave",,"Sioux Falls","South Dakota","57104","United States",NULL,"0",,"0","0",NULL,NULL
+"1408201559-51ae","2014-08-20 15:59:11","1","51ae1814-20-08","guest","0","9.5","0","49.5","106",NULL,NULL,"James Morris",,"672 West 4th St",,"Hoisington","Kansas","67544","United States",NULL,"0",,"0","0",NULL,NULL
+"1408201606-af23","2014-08-20 16:06:09","3","af233814-20-08","guest","0","9.5","0","49.5","106",NULL,NULL,"James Morris",,"672 West 4th St",,"Hoisington","Kansas","67544-2223","United States",NULL,"0",,"0","0",NULL,NULL
+"1408201726-ebf9","2014-08-20 17:26:47","3","ebf92514-29-07","account","0","0","0","12","0",NULL,NULL,"Jorge Filgueira",,"191 Chippewa Street",,"Miami Springs","Florida","33166","United States",NULL,"0","This is for yearly renewal.","0","0",NULL,NULL
+"1408201840-2900","2014-08-20 18:40:18","3","2900eb14-20-08","account","0","7.5","0","27.5","106",NULL,NULL,"Monte Bollar","Grand Lodge of Idaho","219 N. 17th St.",,"Boise","Idaho","83702","United States",NULL,"0",,"0","0",NULL,NULL
+"1408202202-6e27","2014-08-20 22:02:49","3","6e271014-20-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Joshua Dempsey","East Ridge Lodge #755","4115 Ringgold Road",,"East Ridge","Tennessee","37412","United States",NULL,"0",,"0","0",NULL,NULL
+"1408211055-c894","2014-08-21 10:55:38","1","c894ae14-21-08","guest","0","9.5","0","49.5","106",NULL,NULL,"Dave Krasner",,"540 Turquoise st",,"New Orleans","Louisiana","70124","United States",NULL,"0",,"0","0",NULL,NULL
+"1408211118-d8ca","2014-08-21 11:18:20","3","d8ca6d14-21-08","account","0","7.5","0","27.5","106",NULL,NULL,"Childress Lodge 695",,"344 Main street",,"childress","Texas","79201","United States",NULL,"0",,"0","0",NULL,NULL
+"1408211121-6b17","2014-08-21 11:21:22","3","6b17d414-21-08","guest","0","9.5","0","49.5","106",NULL,NULL,"Dave Krasner",,"540 Turquoise st",,"new Orleans","Louisiana","70124","United States",NULL,"0",,"0","0",NULL,NULL
+"1408211600-a34f","2014-08-21 16:00:07","3","a34fe414-21-08","guest","0","11.5","0","71.5","106",NULL,NULL,"John Foreaker","John","Foreaker","185 Old Log Cabin Road","North East","Maryland","21901","United States",NULL,"0",,"0","0",NULL,NULL
+"1408211944-8b03","2014-08-21 19:44:45","3","8b035114-21-08","guest","0","7.5","0","27.5","106",NULL,NULL,"colin oakenfull","colin oakenfull","182 waters edge",,"montgomery","New York","12549","United States",NULL,"0",,"0","0",NULL,NULL
+"1408212222-1b23","2014-08-21 22:22:05","1","1b236d14-21-08","guest","0","13.5","0","93.5","106",NULL,NULL,"Thomas Otto",,"1825 West Main Street",,"Waynesboro","Virginia","22980","United States",NULL,"0",,"24","0",NULL,NULL
+"1408212355-b6f7","2014-08-21 23:55:41","3","b6f73f14-21-08","account","0","7.5","0","27.5","106",NULL,NULL,"William Cummings",,"188 MINERVA ST",,"DERBY","Connecticut","064181810","United States",NULL,"0",,"0","0",NULL,NULL
+"1408221132-7574","2014-08-22 11:32:25","3","7574e614-22-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Ronald Salazar","Mt. Moriah Lodge No.116","22 Class Ct",,"Parkville","Maryland","21234","United States",NULL,"0",,"0","0",NULL,NULL
+"1408221157-f075","2014-08-22 11:57:53","3","f0758514-22-08","account","0","10.5","0","52.5","106",NULL,NULL,"Joe Norfolk",,"Box 418","18 Osprey Lane","Guernsey","Wyoming","82214","United States",NULL,"0",,"0","0",NULL,NULL
+"1408221929-2695","2014-08-22 19:29:06","3","2695cb14-22-08","account","0","7.5","0","27.5","106",NULL,NULL,"Michael Reinhardt","Oasis Lodge No. 41 F.&A.M.","2200 W Mesquite Ave","STE 105","Las Vegas","Nevada","89106","United States",NULL,"0",,"0","0",NULL,NULL
+"1408222029-9865","2014-08-22 20:29:49","3","98659514-22-08","guest","0","8.5","0","32.25","106",NULL,NULL,"Scott Kitchner",,"15 Fairway drive ",,"Rock Springs ","Wyoming","82901","United States",NULL,"0",,"6.75","0",NULL,NULL
+"1408222210-5e85","2014-08-22 22:10:44","1","5e85ee14-22-08","account","0","7.5","0","27.5","106",NULL,NULL,"Dennis Campbell",,"1511 L. T. Hardee road",,"Greenville","North Carolina","27858","United States",NULL,"0",,"0","0",NULL,NULL
+"1408231610-919c","2014-08-23 16:10:27","3","919caa13-22-02","account","0","7.5","0","27.5","106",NULL,NULL,"William Short",,"4615 Stone Mill Dr",,"Indianapolis","Indiana","46237","United States",NULL,"0",,"0","0",NULL,NULL
+"1408232302-a42f","2014-08-23 23:02:21","3","a42fdb14-23-08","guest","0","15","0","185","106",NULL,NULL,"Arne Hansen",,"2055 Ponderosa Ct.",,"Bellingham","Washington","98229","United States",NULL,"0",,"0","0",NULL,NULL
+"1408240034-97e0","2014-08-24 00:34:49","1","97e0f514-24-08","guest","0","15","0","165","106",NULL,NULL,"Nate warren",,"3013 Queenston Ave",,"Norman","Oklahoma","73071-2923","United States",NULL,"0",,"0","0",NULL,NULL
+"1408251112-fe7e","2014-08-25 11:12:06","1","fe7e4a13-01-04","account","0","15","0","130","106",NULL,NULL,"Fred S Kile","AASR, Valley of Columbus","290 Cramer Creek Ct",,"Dublin","Ohio","43017","United States",NULL,"0",,"0","0",NULL,NULL
+"1408251121-fe7e","2014-08-25 11:21:00","3","fe7e4a13-01-04","account","0","15","0","130","106",NULL,NULL,"Fred S Kile","AASR, Valley of Columbus","290 Cramer Creek Ct",,"Dublin","Ohio","43017","United States",NULL,"0",,"0","0",NULL,NULL
+"1408251139-4cf0","2014-08-25 11:39:52","3","4cf0c214-25-08","account","0","8.5","0","44.5","106",NULL,NULL,"Ryan Peterson",,"PO BOX 27","14871 Shady Grove Lane","Norwood","Louisiana","70761","United States",NULL,"0",,"5","0",NULL,NULL
+"1408252101-3323","2014-08-25 21:01:53","3","3323d114-25-08","account","0","7.5","0","27.5","106",NULL,NULL,"James Clancy","Webster Masonic Lodge 538","PO Box 15",,"Webster","New York","14580","United States",NULL,"0",,"0","0",NULL,NULL
+"1408260531-36ae","2014-08-26 05:31:35","3","36ae9314-26-08","account","0","0","0","12","0",NULL,NULL,"Kurtis Lowe",,"415 South Kensington St",,"Arlinton","Virginia","22204","United States",NULL,"0","previous subscription label 169892 640 ","0","0",NULL,NULL
+"1408260945-de93","2014-08-26 09:45:43","3","de939d14-26-08","guest","0","9.5","0","43.5","106",NULL,NULL,"Bruce W Rhinehart","Bruce W Rhinehart","5856 Kinkade Rd",,"Bridgeport","Illinois","62417-2399","United States",NULL,"0",,"0","0",NULL,NULL
+"1408261032-0d13","2014-08-26 10:32:16","3","0d133d14-26-08","account","0","7.5","0","27.5","106",NULL,NULL,"Earl Wys",,"2625 N Woodhaven DR",,"Peoria","Illinois","61604-2015","United States",NULL,"0",,"0","0",NULL,NULL
+"1408261349-2992","2014-08-26 13:49:20","3","2992d214-26-08","account","0","7.5","0","39.5","106",NULL,NULL,"James L Heatherley","TAT, LLC","2043 Ferris Road",,"Ferris","Texas","75125","United States",NULL,"0",,"0","0",NULL,NULL
+"1408261659-66b2","2014-08-26 16:59:24","3","66b27714-26-08","account","0","7.5","0","21","106",NULL,NULL,"Ken Black",,"10990 Switzer Ave #101",,"Dallas","Texas","75238","United States",NULL,"0",,"0","0",NULL,NULL
+"1408262110-6209","2014-08-26 21:10:32","3","6209b814-26-08","guest","0","6.5","0","15","106",NULL,NULL,"James Sturdevant",,"200 Rice Avenue",,"Sheridan","Wyoming","82801","United States",NULL,"0",,"0","0",NULL,NULL
+"1408262217-0eba","2014-08-26 22:17:47","3","0eba4b14-26-08","guest","0","3","0","8","106",NULL,NULL,"Shaun Arner",,"508 Burlington Ave NE",,"Palm Bay","Florida","32907","United States",NULL,"0",,"0","0",NULL,NULL
+"1408262339-312d","2014-08-26 23:39:55","3","312d2814-26-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Terry Tate",,"1802 N. 9th Street",,"Marlow","Oklahoma","73055","United States",NULL,"0",,"0","0",NULL,NULL
+"1408270846-237a","2014-08-27 08:46:12","3","237a9d14-27-08","guest","0","8.5","0","35","106",NULL,NULL,"Daniel Barston",,"15 Clark Street",,"Auburn","Massachusetts","01501","United States",NULL,"0",,"12.5","0",NULL,NULL
+"1408270852-03c4","2014-08-27 08:52:49","3","03c45b14-27-08","guest","0","7.5","0","27.5","106",NULL,NULL,"gerald gilman","maine lodge #20","141 elm street",,"mercer","Maine","04957","United States",NULL,"0",,"0","0",NULL,NULL
+"1408270928-b1aa","2014-08-27 09:28:31","3","b1aa8a14-27-08","account","0","8.5","0","29.5","106",NULL,NULL,"Kenneth Sullivan",,"11371 E 63rd Street",,"Indianapolis","Indiana","46236-3926","United States",NULL,"0",,"0","0",NULL,NULL
+"1408271113-a754","2014-08-27 11:13:36","3","a7549314-27-08","guest","0","7.5","0","27.5","106",NULL,NULL,"William Gurley",,"1608 Forest Fern Circle",,"Virginia Beach","Virginia","23454","United States",NULL,"0",,"0","0",NULL,NULL
+"1408271651-0bc9","2014-08-27 16:51:31","3","0bc91213-10-04","account","0","9.5","0","49.5","106",NULL,NULL,"Bruce Vesper",,"1557 Desert Springs Ave",,"Richland","Washington","99352","United States",NULL,"0",,"0","0",NULL,NULL
+"1408272147-4e2b","2014-08-27 21:47:52","3","4e2b4114-27-08","account","0","9.5","0","45.7","107",NULL,NULL,"francois LaRue","LFL consulting","1210 Liguori",,"Sherbrooke","Quebec","J1J 4C5","Canada",NULL,"0",,"2.5","0",NULL,NULL
+"1408281108-4b70","2014-08-28 11:08:26","1","4b708e14-28-08","account","0","9.5","0","49.5","106",NULL,NULL,"Alfred Nickerson",,"2025 North Street, NW",,"Granville","Ohio","43023","United States",NULL,"0","Thank you.","0","0",NULL,NULL
+"1408281156-b00a","2014-08-28 11:56:22","1","b00ab814-28-08","guest","0","15","0","165","106",NULL,NULL,"Patricia Bradbury",,"5874 Lexington Drive",,"Pipersville","Pennsylvania","18947","United States",NULL,"0",,"0","0",NULL,NULL
+"1408281209-cd86","2014-08-28 12:09:26","3","cd866614-28-08","account","0","15","0","165","106",NULL,NULL,"Patricia Bradbury",,"5874 Lexington Drive",,"Pipersville","Pennsylvania","18947","United States",NULL,"0",,"0","0",NULL,NULL
+"1408281223-84b2","2014-08-28 12:23:56","3","84b22214-28-08","account","0","7.5","0","27.5","106",NULL,NULL,"Peter Stein",,"3519 Wallace Dr.",,"Grand Island","New York","14072","United States",NULL,"0",,"0","0",NULL,NULL
+"1408281302-c8bf","2014-08-28 13:02:59","3","c8bfa014-28-08","guest","0","11.5","0","71.5","106",NULL,NULL,"Leonard Demoranville",,"3456 Lexington Road",,"Danville","Kentucky","40422","United States",NULL,"0",,"0","0",NULL,NULL
+"1408281317-f7a4","2014-08-28 13:17:52","3","f7a49a14-28-08","account","0","7.5","0","27.5","106",NULL,NULL,"Michael Powers",,"851 Hodges street","PO Box 283","Beecher","Illinois","60401","United States",NULL,"0",,"0","0",NULL,NULL
+"1408281539-aa49","2014-08-28 15:39:57","3","aa49a514-28-08","guest","0","15","0","165","106",NULL,NULL,"Andrew Martinez",,"307 Candlewood Ct.",,"Millersville","Maryland","21108","United States",NULL,"0",,"0","0",NULL,NULL
+"1408281628-f618","2014-08-28 16:28:38","1","f6189f14-20-05","account","0","9.5","0","49.5","106",NULL,NULL,"Richard Buschman",,"8334 W. Nevada Pl.",,"Lakewood","Colorado","80226","United States",NULL,"0",,"0","0",NULL,NULL
+"1408281646-a350","2014-08-28 16:46:38","3","a3506414-28-08","account","0","15","0","197","106",NULL,NULL,"James Carter",,"2218 Stonehurst Drive",,"Louisville","Kentucky","402472","United States",NULL,"0",,"0","0",NULL,NULL
+"1408281646-f618","2014-08-28 16:46:39","3","f6189f14-20-05","account","0","9.5","0","49.5","106",NULL,NULL,"Richard Buschman",,"8334 W. Nevada Pl.",,"Lakewood","Colorado","80226","United States",NULL,"0",,"0","0",NULL,NULL
+"1408290223-add0","2014-08-29 02:23:35","3","add04d13-17-07","account","0","15","0","142","106",NULL,NULL,"Lawrence Jolma",,"PO Box 637",,"Seaside","Oregon","97138","United States",NULL,"0",,"0","0",NULL,NULL
+"1408291128-5e85","2014-08-29 11:28:53","3","5e85ee14-22-08","account","0","7.5","0","27.5","106",NULL,NULL,"Dennis Campbell",,"1511 L. T. Hardee road",,"Greenville","North Carolina","27858","United States",NULL,"0",,"0","0",NULL,NULL
+"1408291200-2655","2014-08-29 12:00:15","1","26557614-29-08","account","0","9.5","0","49.5","106",NULL,NULL,"Vernon L. Butt","Lodge #441 of KS","PO Box 441",,"Johnson City","Kansas","67855-0441","United States",NULL,"0",,"0","0",NULL,NULL
+"1408291219-239a","2014-08-29 12:19:18","1","239af414-29-08","account","0","9.5","0","49.5","106",NULL,NULL,"Vernon Butt","Johnson Lodge 441","PO Box 441",,"Johnson City","Kansas","67855-0441","United States",NULL,"0",,"0","0",NULL,NULL
+"1408291453-ea15","2014-08-29 14:53:23","3","ea15d114-29-08","account","0","0","0","12","0",NULL,NULL,"Terrance R. Landry",,"119-1751 Northgate Rd",,"Cobble Hill","British Columbia","V0R 1L6","Canada",NULL,"0",,"0","0",NULL,NULL
+"1408292126-6567","2014-08-29 21:26:26","3","6567de14-29-08","account","0","7.5","0","27.5","106",NULL,NULL,"Raymond Glegg","Seneca Lodge #797 F&AM","2427 St. Paul Blvd.",,"Rochester","New York","14617","United States",NULL,"0",,"0","0",NULL,NULL
+"1408301143-23ce","2014-08-30 11:43:28","3","23ce9513-17-05","account","0","20","0","285","106",NULL,NULL,"Robert Moore",,"30 CSA Dr",,"Grenada","Mississippi","38901","United States",NULL,"0",,"0","0",NULL,NULL
+"1408302239-2554","2014-08-30 22:39:15","3","25549913-10-10","account","0","7.5","0","27.5","106",NULL,NULL,"Michael Horton",,"PO BOX 242063",,"Anchorage","Alaska","99524","United States",NULL,"0",,"0","0",NULL,NULL
+"1408311134-c321","2014-08-31 11:34:07","3","c321c414-31-08","account","0","6.5","0","12.5","106",NULL,NULL,"Jimmy Dunlap",,"330 W. Mountain View Drive",,"Sheridan","Wyoming","82801","United States",NULL,"0",,"0","0",NULL,NULL
+"1408311508-1b1a","2014-08-31 15:08:43","3","1b1a6e14-31-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Richard Beecher",,"7033 SW 42nd Ave",,"Amarillo","Texas","7109-5007","United States",NULL,"0",,"0","0",NULL,NULL
+"1408311646-2eac","2014-08-31 16:46:37","3","2eac3c14-31-08","account","0","15","0","185","106",NULL,NULL,"Shawn Hojaboom","Shawn","14Gerrish St.",,"Franklin","New Hampshire","03235","United States",NULL,"0",,"0","0",NULL,NULL
+"1408312028-2d4b","2014-08-31 20:28:36","3","2d4b7a14-31-08","account","0","15","0","185","106",NULL,NULL,"Wayne D. Frankenstein",,"305 Linden Street",,"Zelienople","Pennsylvania","16063-1089","United States",NULL,"0",,"0","0",NULL,NULL
+"1409011416-f3b2","2014-09-01 14:16:50","3","f3b28614-01-09","guest","0","0","0","12","0",NULL,NULL,"Jerry Lynch",,"1944 Ardella Dr",,"Pocatello","Idaho","83201","United States",NULL,"0","This is a renewal ","0","0",NULL,NULL
+"1409011554-fd30","2014-09-01 15:54:23","3","fd30a013-21-08","account","0","11.5","0","71.5","107",NULL,NULL,"Brian Rountree","Grand Lodge of Manitoba","420 Corydon Ave.",,"Winnipeg","Manitoba","R3L 1N8","Canada",NULL,"0",,"0","0",NULL,NULL
+"1409011728-f9b8","2014-09-01 17:28:21","3","f9b8ae14-01-09","account","0","7.5","0","27.5","106",NULL,NULL,"Richard A. Eppler",,"400 Cedar Lane",,"Cheshire","Connecticut","06410-2222","United States",NULL,"0",,"0","0",NULL,NULL
+"1409012015-22e0","2014-09-01 20:15:18","3","22e0f814-01-09","guest","0","9.5","0","49.5","106",NULL,NULL,"Vernon Butt","Lodge #441","PO Box441",,"Johnson City","Kansas","67855","United States",NULL,"0",,"0","0",NULL,NULL
+"1409020008-2b23","2014-09-02 00:08:23","3","2b237c14-02-09","guest","0","11.5","0","71.5","106",NULL,NULL,"Charles Stewart","Charles B Stewart","5325 South Bearfield Road",,"Columbia","Missouri","65201","United States",NULL,"0",,"0","0",NULL,NULL
+"1409020727-9a17","2014-09-02 07:27:54","3","9a17c513-23-08","account","0","11.5","0","71.5","106",NULL,NULL,"Chris Morgan",,"38000 Hills Tech Drive",,"Farmington Hills","Michigan","48331","United States",NULL,"0","I'm enjoying vol. I! Can't wait for Vol II!!","0","0",NULL,NULL
+"1409022230-da77","2014-09-02 22:30:20","3","da77e514-01-06","account","0","7.5","0","27.5","106",NULL,NULL,"Rex Hasty",,"244 JC Bryant Rd",,"Hattiesburg","Mississippi","39401","United States",NULL,"0",,"0","0",NULL,NULL
+"1409022235-73e9","2014-09-02 22:35:27","3","73e9e214-02-09","guest","0","8.5","0","41.75","106",NULL,NULL,"Dean Adams",,"212 Countrywood Circle",,"Sour Lake","Texas","77659","United States",NULL,"0",,"2.25","0",NULL,NULL
+"1409040016-29bb","2014-09-04 00:16:43","1","29bbc014-04-09","account","0","13.5","0","107.5","106",NULL,NULL,"DONALD RUTH","WESTERN BRANCH LODGE #189","4321 KING ST",,"PORTSMOUTH","Virginia","23707-2521","United States",NULL,"0",,"0","0",NULL,NULL
+"1409040048-2154","2014-09-04 00:48:55","3","21545014-04-09","guest","0","7.5","0","22.7","106",NULL,NULL,"vincenzo macrino",,"5432 lake rd",,"newfield","New Jersey","08344","United States",NULL,"0",,"10","0",NULL,NULL
+"1409040847-1b13","2014-09-04 08:47:17","3","1b13dc13-07-09","account","0","6.5","0","15.5","107",NULL,NULL,"Timothy Bagley","Timothy L. Bagley","665 Langlois St.",,"Sherbrooke","Quebec","J1E 1P3","Canada",NULL,"0",,"0","0",NULL,NULL
+"1409041304-c53f","2014-09-04 13:04:44","1","c53fb814-04-09","account","0","7.5","0","27.5","106",NULL,NULL,"Roger Sobran","Palestine Lodge 357","500 Temple St.",,"Detroit","Michigan","48201","United States",NULL,"0",,"0","0",NULL,NULL
+"1409041649-4dff","2014-09-04 16:49:07","3","4dffe113-15-07","account","0","7.5","0","27.5","106",NULL,NULL,"Robert Gooch","Clarksville Lodge No. 89","111 Tobacco Rd",,"Clarksville","Tennessee","37042","United States",NULL,"0",,"0","0",NULL,NULL
+"1409042200-a06f","2014-09-04 22:00:27","3","a06fe614-04-09","account","0","8.5","0","35.5","106",NULL,NULL,"Glenn Palmertree ",,"2065 Attala Rd 3028",,"Kosciusko ","Mississippi","39090","United States",NULL,"0",,"0","0",NULL,NULL
+"1409051032-6395","2014-09-05 10:32:32","3","63958214-05-09","guest","0","8.5","0","33.5","106",NULL,NULL,"Ronald Benson Jr",,"300 Clubview Drive",,"Moultrie","Georgia","31768","United States",NULL,"0",,"2","0",NULL,NULL
+"1409051301-eb94","2014-09-05 13:01:10","3","eb945d14-05-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Leonard Hephner","Leonard J Hephner","850 Holman Street",,"Leesburg","Alabama","35983","United States",NULL,"0",,"0","0",NULL,NULL
+"1409051320-0a4d","2014-09-05 13:20:34","3","0a4db814-05-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Eric Muehlenbein",,"5639 Patrick St SW",,"Canton","Ohio","44706","United States",NULL,"0",,"0","0",NULL,NULL
+"1409051649-6b66","2014-09-05 16:49:00","3","6b664e14-05-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Tom Bruce",,"4426 Hugh Howell Road","Suite B-118","Tucker","Georgia","30084","United States",NULL,"0",,"0","0",NULL,NULL
+"1409051818-44e2","2014-09-05 18:18:17","3","44e26514-05-09","guest","0","0","0","12","0",NULL,NULL,"Stephen Tharaldsen",,"PO Box 75",,"Gouverneur","New York","13642","United States",NULL,"0",,"0","0",NULL,NULL
+"1409052225-8196","2014-09-05 22:25:46","3","81964b13-20-03","account","0","15","0","130","106",NULL,NULL,"Jeffrey D Maynor",,"PO Box 85080",,"Baton Rouge","Louisiana","70884","United States",NULL,"0",,"0","0",NULL,NULL
+"1409061314-4644","2014-09-06 13:14:40","3","4644ed14-06-09","account","0","9.5","0","49.5","106",NULL,NULL,"DAVID BOLIN",,"4709 Mullen Road",,"Shawnee","Kansas","66216-1160","United States",NULL,"0",,"0","0",NULL,NULL
+"1409061324-76c0","2014-09-06 13:24:42","3","76c0e214-06-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Wayne Walter",,"3689 N Delwood Dr",,"Port Clinton","Ohio","43452","United States",NULL,"0",,"0","0",NULL,NULL
+"1409061425-ecae","2014-09-06 14:25:47","3","ecae7d14-06-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Pavel Vershchetin",,"195 Wahoo Way",,"Charlottesville","Virginia","22903","United States",NULL,"0",,"0","0",NULL,NULL
+"1409061553-69ad","2014-09-06 15:53:32","1","69ad1d14-06-09","account","0","7.5","0","27.5","106",NULL,NULL,"Charlie Krefting",,"530 Winncastle Street",,"Simi Valley","California","93065","United States",NULL,"0",,"0","0",NULL,NULL
+"1409061636-9951","2014-09-06 16:36:56","3","9951e413-27-08","account","0","7.5","0","27.5","106",NULL,NULL,"Robert Ierien",,"134 Post Oak Road",,"La Vernia","Texas","78121","United States",NULL,"0",,"0","0",NULL,NULL
+"1409081025-b9c9","2014-09-08 10:25:09","3","b9c9c014-14-05","account","0","0","0","12","0",NULL,NULL,"Brian Dillon",,"20420 Laggan Glenelg Rd",,"Dalkeith","Ontario","K0B1E0","Canada",NULL,"0",,"0","0",NULL,NULL
+"1409081323-daf0","2014-09-08 13:23:45","3","daf0ef14-08-09","guest","0","9.5","0","49.5","106",NULL,NULL,"Texas City Lodge #1118",,"P.O. Box 2504",,"Texas City","Texas","77590-2504","United States",NULL,"0",,"0","0",NULL,NULL
+"1409081521-d183","2014-09-08 15:21:11","3","d183d714-08-09","guest","0","9.5","0","49.5","106",NULL,NULL,"Alfred Nickerson",,"2025 North Street, NW",,"Granville","Ohio","43023","United States",NULL,"0",,"0","0",NULL,NULL
+"1409082132-9bae","2014-09-08 21:32:46","3","9bae0b14-08-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Bill Young",,"2552 N 1900 East Rd",,"Blue Mound","Illinois","62513","United States",NULL,"0",,"0","0",NULL,NULL
+"1409092109-a1b5","2014-09-09 21:09:17","3","a1b5f814-09-09","account","0","15","0","170","106",NULL,NULL,"John Perry","Allstate","9931 Corporate Campus Dr Ste 2000",,"Louisville","Kentucky","40223-4034","United States",NULL,"0",,"0","0",NULL,NULL
+"1409100243-fb42","2014-09-10 02:43:25","3","fb427314-10-09","account","0","8.5","0","34","106",NULL,NULL,"Mark C. Harris",,"1147E 1900N Rd",,"Taylorville","Illinois","62568","United States",NULL,"0",,"0","0",NULL,NULL
+"1409100945-144d","2014-09-10 09:45:07","3","144d9c14-31-03","account","0","9.5","0","49.5","106",NULL,NULL,"Elvis Willis","Solomon's Lodge No. 1","P. O. Box 1734",,"Savannah","Georgia","31402","United States",NULL,"0",,"0","0",NULL,NULL
+"1409101027-418c","2014-09-10 10:27:40","1","418c2714-10-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Stephen Colton","Stephen","Colton","2152 Hoch Dr.","Cuyahoga Falls","Ohio","44221-4402","United States",NULL,"0",,"0","0",NULL,NULL
+"1409101125-1dac","2014-09-10 11:25:23","3","1dac6914-10-09","account","0","7.5","0","27.5","106",NULL,NULL,"Larry Kent",,"529 Sevilla pl",,"The villages","Florida","32159","United States",NULL,"0",,"0","0",NULL,NULL
+"1409101315-677a","2014-09-10 13:15:41","3","677a1814-10-09","account","0","13.5","0","98.5","106",NULL,NULL,"Robert W Niebaum","Lakewood Masonic Temple","15300 Detroit Ave",,"Lakewood","Ohio","44107-3888","United States",NULL,"0",,"4","0",NULL,NULL
+"1409101331-8c50","2014-09-10 13:31:46","3","8c508514-10-09","account","0","7.5","0","27.5","106",NULL,NULL,"Robert Crase",,"11909 Liming-Van Thompson Rd.",,"Hamersville","Ohio","45130","United States",NULL,"0",,"0","0",NULL,NULL
+"1409101411-5536","2014-09-10 14:11:27","3","55363714-10-09","account","0","7.5","0","27.5","106",NULL,NULL,"Dale Smith","Unity Lodge #273","9125 E 87th St. S.",,"Derby","Kansas","67037-9639","United States",NULL,"0",,"0","0",NULL,NULL
+"1409102128-2504","2014-09-10 21:28:25","3","25046c14-10-09","guest","0","11.5","0","76.5","106",NULL,NULL,"JIMMY REED WALENCIAK",,"1401 E YUKON",,"ODESSA","Texas","79762","United States",NULL,"0",,"0","0",NULL,NULL
+"1409102310-3235","2014-09-10 23:10:05","1","3235a014-10-09","account","0","9.5","0","59.5","106",NULL,NULL,"Rod Galloway",,"195 Boice St S",,"Salem","Oregon","97302","United States",NULL,"0",,"0","0",NULL,NULL
+"1409111224-2ddc","2014-09-11 12:24:49","3","2ddc2f14-11-09","guest","0","11.5","0","76.5","106",NULL,NULL,"Raymond Babinsky",,"6908 Sunset Avenue",,"Countryside","Illinois","60525-4822","United States",NULL,"0",,"0","0",NULL,NULL
+"1409111507-acb2","2014-09-11 15:07:56","3","acb23714-11-09","account","0","11.5","0","71.5","106",NULL,NULL,"Dale Lynch",,"1509 Pine Avenue",,"Voorhees","New Jersey","08043","United States",NULL,"0",,"0","0",NULL,NULL
+"1409121107-a493","2014-09-12 11:07:15","3","a4938e14-12-09","guest","0","7.5","0","39.5","106",NULL,NULL,"Eric Grebe",,"8647 N Servite Dr",,"Milwaukee","Wisconsin","53223","United States",NULL,"0",,"0","0",NULL,NULL
+"1409121217-68cf","2014-09-12 12:17:59","3","68cfa214-12-09","guest","0","15","0","165","106",NULL,NULL,"David Burkus",,"74 Wellington Drive",,"Hampton","Virginia","23666-2855","United States",NULL,"0",,"0","0",NULL,NULL
+"1409130948-a4a5","2014-09-13 09:48:49","3","a4a56f14-13-09","account","0","7.5","0","27.5","106",NULL,NULL,"Jim Seeger",,"2409 Vance Drive",,"Edmond","Oklahoma","73013","United States",NULL,"0","Please ship as soon as possible. Thank you!","0","0",NULL,NULL
+"1409140056-e29b","2014-09-14 00:56:35","3","e29bc514-14-09","guest","0","15","0","177","106",NULL,NULL,"John Neiswanger","Industrial Electronics","9 Hollis Lane",,"Gridley","California","95948","United States",NULL,"0",,"0","0",NULL,NULL
+"1409141210-bee5","2014-09-14 12:10:27","3","bee52c13-30-08","account","0","11.5","0","71.5","106",NULL,NULL,"Don Springler",,"PO Box 73455",,"Metairie","Louisiana","70033-3455","United States",NULL,"0",,"0","0",NULL,NULL
+"1409141257-8196","2014-09-14 12:57:54","3","81964b13-20-03","account","0","7.5","0","27.5","106",NULL,NULL,"Jeffrey D Maynor",,"PO Box 85080",,"Baton Rouge","Louisiana","70884","United States",NULL,"0",,"0","0",NULL,NULL
+"1409141718-a624","2014-09-14 17:18:24","3","a6241514-14-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Brian Rodriguez",,"29 Grafton St",,"Greenlawn","New York","11740","United States",NULL,"0",,"0","0",NULL,NULL
+"1409142058-77f4","2014-09-14 20:58:36","3","77f44614-14-09","account","0","13.5","0","106","106",NULL,NULL,"David Childress",,"129 Railroad Avenue",,"Central Square","New York","13036","United States",NULL,"0",,"14","0",NULL,NULL
+"1409150839-3850","2014-09-15 08:39:56","3","3850a214-15-09","guest","0","7.5","0","27.5","106",NULL,NULL,"brian crislip",,"239 hagley drive",,"pawleys island","South Carolina","29585","United States",NULL,"0",,"0","0",NULL,NULL
+"1409151859-07ca","2014-09-15 18:59:15","3","07ca9e14-15-09","account","0","8.5","0","46.75","106",NULL,NULL,"John Pearson",,"7400 Whernside Street",,"Lorton","Virginia","22079","United States",NULL,"0",,"2.25","0",NULL,NULL
+"1409152200-3255","2014-09-15 22:00:27","3","32554514-15-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Dale Bruck",,"1244 Lancashire DR",,"Indian Land","South Carolina","29707","United States",NULL,"0",,"0","0",NULL,NULL
+"1409160033-2d84","2014-09-16 00:33:26","3","2d845c14-16-09","guest","0","15","0","130","106",NULL,NULL,"Chance Robinson",,"PO BOX 1088",,"MARFA","Texas","79843","United States",NULL,"0",,"0","0",NULL,NULL
+"1409161221-1cdc","2014-09-16 12:21:58","1","1cdc0214-16-09","account","0","7.5","0","27.5","106",NULL,NULL,"Gary Stang",,"3206 Eisenhower St",,"Eau Claire ","Wisconsin","54701","United States",NULL,"0",,"0","0",NULL,NULL
+"1409161904-d420","2014-09-16 19:04:16","3","d420ae14-16-09","account","0","13.5","0","105.5","106",NULL,NULL,"Jim Kendall","Telebyte NW","900 Sheridan Road","Ste 108","Bremerton","Washington","98310","United States",NULL,"0",,"0","0",NULL,NULL
+"1409171218-ae52","2014-09-17 12:18:54","3","ae525e14-17-09","account","0","9.5","0","40","106",NULL,NULL,"Ezra Hodgson",,"504 CR 455",,"Berryville","Arkansas","72616","United States",NULL,"0",,"0","0",NULL,NULL
+"1409181045-1afd","2014-09-18 10:45:56","3","1afd8a14-18-09","account","0","7.5","0","27.5","106",NULL,NULL,"DC Heilman",,"8911 Walden Ridge Drive",,"Charlotte","North Carolina","28216","United States",NULL,"0",,"0","0",NULL,NULL
+"1409181315-1b53","2014-09-18 13:15:33","1","1b538b14-18-09","guest","0","13.5","0","93.5","106",NULL,NULL,"Jim Davis","Riverton Lodge #26","1001 Hillside Ave","Attn. Jim Davis","Riverton","Wyoming","82501","United States",NULL,"0",,"0","0",NULL,NULL
+"1409181322-92f3","2014-09-18 13:22:53","3","92f37f14-18-09","guest","0","13.5","0","93.5","106",NULL,NULL,"Jim Davis","Riverton Lodge # 26","1001 Hillside Ave","Attn. Jim Davis","Riverton","Wyoming","82501","United States",NULL,"0",,"0","0",NULL,NULL
+"1409190839-643d","2014-09-19 08:39:34","3","643d5414-19-09","account","0","8.5","0","37","106",NULL,NULL,"Bert Horne",,"13705 Courtland Ave",,"Cleveland","Ohio","44111","United States",NULL,"0",,"0","0",NULL,NULL
+"1409190853-cdde","2014-09-19 08:53:44","1","cddece14-19-09","guest","0","8.5","0","30.5","106",NULL,NULL,"Victor Smith",,"1611 Bradley Rd.",,"Westville","Florida","32464","United States",NULL,"0",,"1.5","0",NULL,NULL
+"1409191643-6ab3","2014-09-19 16:43:18","3","6ab39f14-19-09","guest","0","11.5","0","71.5","106",NULL,NULL,"Shem Peachey","Sacramento Lodge No. 24","3110 Abbott Ave",,"Alamogordo","New Mexico","88310","United States",NULL,"0",,"4","0",NULL,NULL
+"1409201401-0468","2014-09-20 14:01:27","3","0468a014-20-09","guest","0","8.5","0","34","106",NULL,NULL,"Brad Smith",,"420 Highland Dr",,"Bossier City","Louisiana","71111","United States",NULL,"0",,"0","0",NULL,NULL
+"1409201448-683f","2014-09-20 14:48:36","3","683fa614-20-09","guest","0","8.5","0","32","106",NULL,NULL,"Clinton Langford",,"142 deer run",,"Hawley","Pennsylvania","18428","United States",NULL,"0",,"0","0",NULL,NULL
+"1409201753-7a99","2014-09-20 17:53:14","3","7a991314-20-09","account","0","0","0","12","0",NULL,NULL,"Ronald Block",,"1523 Enyart Way #102",,"Annapolis","Maryland","21409-5961","United States",NULL,"0","renewal of subscription 63877 640","0","0",NULL,NULL
+"1409211252-84b2","2014-09-21 12:52:30","3","84b22214-28-08","account","0","3","0","6.5","106",NULL,NULL,"Peter Stein",,"3519 Wallace Dr.",,"Grand Island","New York","14072","United States",NULL,"0",,"0","0",NULL,NULL
+"1409212327-0c2f","2014-09-21 23:27:12","3","0c2fb614-26-07","account","0","8.5","0","36.1","106",NULL,NULL,"Walter Siri","Walter Siri","402 Madison Street",,"Carlstadt","New Jersey","07072","United States",NULL,"0",,"10","0",NULL,NULL
+"1409220932-65d2","2014-09-22 09:32:46","3","65d27114-22-09","guest","0","10.5","0","52.6","106",NULL,NULL,"Thomas Nielsen",,"500 Madison St.",,"Carlstadt","New Jersey","07072","United States",NULL,"0",,"10","0",NULL,NULL
+"1409230506-83cf","2014-09-23 05:06:51","3","83cfb314-23-09","account","0","8.5","0","44","106",NULL,NULL,"Samuel Brandes",,"18901 J and J Lane",,"Yorba Linda","California","92886","United States",NULL,"0",,"0","0",NULL,NULL
+"1409251548-045a","2014-09-25 15:48:40","3","045ab014-25-09","guest","0","13.5","0","113.5","106",NULL,NULL,"tom musso","Acacia Lodge #579","2 Highland dr",,"Pittston","Pennsylvania","18640","United States",NULL,"0",,"0","0",NULL,NULL
+"1409241320-a51c","2014-09-24 13:20:44","3","a51c5514-24-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Bill Harrison",,"1922 Redmon Rd.",,"Longview","Texas","75602","United States",NULL,"0",,"0","0",NULL,NULL
+"1409260723-864c","2014-09-26 07:23:03","3","864ca014-26-09","account","0","7.5","0","27.5","106",NULL,NULL,"Larry Wilson","Desktop Systems Consulting","P.O. Box 4881",,"West Richland","Washington","99353","United States",NULL,"0",,"0","0",NULL,NULL
+"1409261544-767c","2014-09-26 15:44:11","3","767c9f14-26-09","guest","0","7.5","0","27.5","106",NULL,NULL,"David Rice","MRD Best LLC","4808 NE 126th Ave",,"Vancouver","Washington","98682","United States",NULL,"0",,"0","0",NULL,NULL
+"1409271908-2e25","2014-09-27 19:08:27","3","2e25fb14-27-09","account","0","3","0","17","106",NULL,NULL,"Kevin Edge",,"619 E. Norris Point Road",,"LaFollette","Tennessee","37766","United States",NULL,"0",,"1.5","0",NULL,NULL
+"1409281322-84b2","2014-09-28 13:22:20","3","84b22214-28-08","account","0","8.5","0","32.5","106",NULL,NULL,"Peter Stein",,"3519 Wallace Dr.",,"Grand Island","New York","14072","United States",NULL,"0",,"0","0",NULL,NULL
+"1409291050-bbfd","2014-09-29 10:50:09","3","bbfdbc14-29-09","account","0","7.5","0","27.5","106",NULL,NULL,"James Price","Larry Price","425 DeChene Drive",,"Thomasville","Georgia","31757","United States",NULL,"0",,"0","0",NULL,NULL
+"1410102131-3f2c","2014-10-10 21:31:29","3","3f2c0014-10-10","account","0","11.5","0","68","106",NULL,NULL,"Michael Seeley",,"14-31 155th Street",,"Whitestone","New York","11357","United States",NULL,"0",,"10","0",NULL,NULL
+"1409291146-184f","2014-09-29 11:46:44","3","184f5b14-29-09","account","0","8.5","0","33.5","106",NULL,NULL,"Bruce Fykes",,"155 South Gate Dr.",,"Thomasville","Georgia","31757","United States",NULL,"0",,"2","0",NULL,NULL
+"1409291618-2bc0","2014-09-29 16:18:00","3","2bc02c13-17-06","account","0","0","0","12","0",NULL,NULL,"Clarence Tucker",,"4 Johnson Road",,"LaGrangeville","New York","12540","United States",NULL,"0",,"0","0",NULL,NULL
+"1409291639-da77","2014-09-29 16:39:10","3","da77e514-01-06","account","0","0","0","12","0",NULL,NULL,"Rex Hasty",,"244 JC Bryant Rd",,"Hattiesburg","Mississippi","39401","United States",NULL,"0",,"0","0",NULL,NULL
+"1409291720-ea3a","2014-09-29 17:20:59","1","ea3a7614-29-09","guest","0","15","0","165","106",NULL,NULL,"William LeVeque","Grand Lodge of Michigan","E9586 Cedar Street",,"Wetmore","Michigan","49895","United States",NULL,"0",,"0","0",NULL,NULL
+"1409292135-1cbb","2014-09-29 21:35:08","3","1cbb8313-22-10","account","0","0","0","12","0",NULL,NULL,"gerald gilman","gerald gilman","141 elm street",,"mercer","Maine","04957","United States",NULL,"0",,"0","0",NULL,NULL
+"1409292156-7705","2014-09-29 21:56:13","3","7705db14-29-09","account","0","7.5","0","27.5","106",NULL,NULL,"Carl Kirtley",,"9807 Loquat Dr",,"Pensacola ","Florida","32506","United States",NULL,"0",,"0","0",NULL,NULL
+"1409300037-5681","2014-09-30 00:37:31","3","56811c14-30-09","account","0","7.5","0","39.5","106",NULL,NULL,"Casey Latham",,"17921 Siskiyou Rd. Apt. 4",,"Apple Valley","California","92307","United States",NULL,"0",,"0","0",NULL,NULL
+"1409302243-f67d","2014-09-30 22:43:56","3","f67dc914-30-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Thomas R. Galbraith",,"913 Lotus Ave.",,"Midwest City","Oklahoma","73130","United States",NULL,"0",,"0","0",NULL,NULL
+"1410011158-a677","2014-10-01 11:58:42","1","a677fe13-04-11","account","0","0","0","12","0",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"0","0",NULL,NULL
+"1410011208-a677","2014-10-01 12:08:54","3","a677fe13-04-11","account","0","0","0","12","0",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"0","0",NULL,NULL
+"1410011945-cdd3","2014-10-01 19:45:33","3","cdd30514-01-10","guest","0","7.5","0","27.5","106",NULL,NULL,"Peter Patterson",,"895 Hazel",,"Livermore","California","94550","United States",NULL,"0",,"0","0",NULL,NULL
+"1410020027-4591","2014-10-02 00:27:36","3","4591ca14-02-10","account","0","0","0","12","0",NULL,NULL,"Craig Thighe",,"6439 S Potomac Ct",,"Centennial","Colorado","80111","United States",NULL,"0",,"0","0",NULL,NULL
+"1410021320-4cc1","2014-10-02 13:20:05","3","4cc1d914-02-10","guest","0","15","0","130","106",NULL,NULL,"scott waracka","kailua electric","47-102B Wailehua Rd",,"kaneohe","Hawaii","96744","United States",NULL,"0","please ship via fedex 3 day","20","0",NULL,NULL
+"1410021511-fe90","2014-10-02 15:11:26","3","fe904e14-02-10","account","0","7.5","0","27.5","106",NULL,NULL,"Walter Sawicki II","Olive Branch Lodge # 576","4562 Newport Ave.",,"St. Louis","Missouri","63116-2410","United States",NULL,"0",,"0","0",NULL,NULL
+"1410030935-c433","2014-10-03 09:35:36","3","c4335314-03-10","guest","0","0","0","12","0",NULL,NULL,"Rajesh Aialavajjala",,"129B Vosburgh Rd",,"Mechanicville","New York","12118-3620","United States",NULL,"0",,"0","0",NULL,NULL
+"1410030942-4d28","2014-10-03 09:42:18","3","4d28c614-03-10","account","0","0","0","12","0",NULL,NULL,"Secretary","Naval Lodge No. 4","330 Pennsylvania Ave",,"Washington","District of Columbia","20003","United States",NULL,"0",,"0","0",NULL,NULL
+"1410031448-fa7e","2014-10-03 14:48:48","3","fa7eb414-03-10","guest","0","15","0","185","106",NULL,NULL,"Louis Babbit","Harmonia Lodge No. 138 F & A M","2135 STONINGTON TER",,"WEST PALM BEACH","Florida","334115167","United States",NULL,"0",,"0","0",NULL,NULL
+"1410031656-f8cd","2014-10-03 16:56:33","3","f8cd0114-03-10","account","0","0","0","12","0",NULL,NULL,"Keith Wohlfert",,"N2594 County Road A",,"Oxford","Wisconsin","53952","United States",NULL,"0",,"0","0",NULL,NULL
+"1410051014-0bdf","2014-10-05 10:14:40","3","0bdf9514-05-10","account","0","9.5","0","39.75","106",NULL,NULL,"Eric Cable",,"2736 Lawton Bluff Rd",,"Charlotte","North Carolina","28226","United States",NULL,"0",,"2.25","0",NULL,NULL
+"1410051955-8178","2014-10-05 19:55:50","3","81784414-05-10","guest","0","7.5","0","27.5","106",NULL,NULL,"richard bennett",,"1880 hwy 2",,"two harbors","Minnesota","55616","United States",NULL,"0",,"0","0",NULL,NULL
+"1410052117-b58d","2014-10-05 21:17:42","1","b58d4314-05-10","guest","0","7.5","0","27.5","107",NULL,NULL,"Scott Barlett","DGL Scot","55 blackstrap path ",,"Conception Bay South","Newfoundland and Labrador","A1W 4B6","Canada",NULL,"0",,"0","0",NULL,NULL
+"1410052129-ff17","2014-10-05 21:29:48","3","ff17bf14-05-10","guest","0","7.5","0","27.5","107",NULL,NULL,"Scott Barlett","DGL Scot","PO box 396",,"Mr Pearl","Newfoundland and Labrador","A1N 2C4","Canada",NULL,"0",,"0","0",NULL,NULL
+"1410052139-0625","2014-10-05 21:39:43","3","06256814-05-10","guest","0","0","0","12","0",NULL,NULL,"Rafael Campo","Medidata Solutions","20 Ash St., Suite 330",,"Conshohocken","Pennsylvania","19428","United States",NULL,"0",,"0","0",NULL,NULL
+"1410061102-dc82","2014-10-06 11:02:05","3","dc825914-06-10","guest","0","0","0","12","0",NULL,NULL,"William Turner",,"5264 S Lisbon Way",,"Centennial","Colorado","80015","United States",NULL,"0",,"0","0",NULL,NULL
+"1410061628-b8c1","2014-10-06 16:28:50","3","b8c12614-06-10","account","0","7.5","0","27.5","106",NULL,NULL,"brooks collins",,"201 north cole lane",,"elizabethtown","Kentucky","42701","United States",NULL,"0",,"0","0",NULL,NULL
+"1410061709-8e96","2014-10-06 17:09:13","3","8e963814-06-10","account","0","15","0","125","106",NULL,NULL,"Jeffrey Chan","UPS Store","297 Kinderkamack Road","Suite #101 Box 232","Oradell","New Jersey","07649","United States",NULL,"0",,"11.5","0",NULL,NULL
+"1410062206-beba","2014-10-06 22:06:50","1","bebab714-06-10","guest","0","11.5","0","71.5","106",NULL,NULL,"Burns Lodge #41 AF&AM",,"Box 69",,"Burns","Wyoming","82053","United States",NULL,"0",,"0","0",NULL,NULL
+"1410062217-fdc8","2014-10-06 22:17:10","3","fdc8a414-06-10","guest","0","11.5","0","71.5","106",NULL,NULL,"Burns Lodge #41 AF&AM",,"Box 69",,"Burns","Wyoming","82053","United States",NULL,"0",,"0","0",NULL,NULL
+"1410070204-24ff","2014-10-07 02:04:28","3","24ff0b14-07-10","guest","0","7.5","0","27.5","106",NULL,NULL,"William Biggs","Casper Lodge No. 15","2705 E. 5th",,"Casper","Wyoming","82609-2547","United States",NULL,"0",,"0","0",NULL,NULL
+"1410070213-9cea","2014-10-07 02:13:08","3","9cea6714-07-10","guest","0","15","0","130","106",NULL,NULL,"William Biggs","Casper Lodge No. 15","2705 E. 5th",,"Casper","Wyoming","82609-2547","United States",NULL,"0",,"0","0",NULL,NULL
+"1410071759-409a","2014-10-07 17:59:12","3","409a2914-07-10","guest","0","9.5","0","41.5","106",NULL,NULL,"Cary Lewis","Cary Lewis","9 Upper Gulf Road",,"Middletown Springs","Vermont","05757","United States",NULL,"0",,"0","0",NULL,NULL
+"1410081023-1bd0","2014-10-08 10:23:12","3","1bd0d714-08-10","guest","0","7.5","0","21.5","106",NULL,NULL,"Norman Kolstad","Corner Stone Lodge #99","P.O. Box 267",,"Fergus Falls","Minnesota","56538","United States",NULL,"0",,"0","0",NULL,NULL
+"1410081155-c5fa","2014-10-08 11:55:04","3","c5fa5114-08-10","guest","0","8.5","0","36","106",NULL,NULL,"Marshall Clowers",,"200 Circle Drive NE",,"Cleveland","Tennessee","37312","United States",NULL,"0",,"0","0",NULL,NULL
+"1410081254-310c","2014-10-08 12:54:16","3","310c5414-08-10","guest","0","9.5","0","49.5","106",NULL,NULL,"Richard Frazier",,"15 Schenck Avenue",,"Matawan","New Jersey","07747","United States",NULL,"0",,"0","0",NULL,NULL
+"1410092214-002f","2014-10-09 22:14:01","3","002f1814-09-10","guest","0","7.5","0","27.5","106",NULL,NULL,"Charles Bradley",,"3191 Pawtucket Ave",,"Riverside","Rhode Island","02915","United States",NULL,"0",,"0","0",NULL,NULL
+"1410101056-5927","2014-10-10 10:56:29","3","59271714-10-10","account","0","7.5","0","39.5","106",NULL,NULL,"Steve Jablonski",,"7 Fieldston Place",,"Flemington","New Jersey","08822","United States",NULL,"0",,"0","0",NULL,NULL
+"1410111109-9505","2014-10-11 11:09:00","3","95057f14-11-10","guest","0","0","0","12","0",NULL,NULL,"Thomas Pinney","Thomas Pinney","1814 Utah St.",,"Sturgeon Bay","Wisconsin","54235","United States",NULL,"0",,"0","0",NULL,NULL
+"1410111151-85d6","2014-10-11 11:51:28","3","85d62f14-11-10","guest","0","7.5","0","27.5","106",NULL,NULL,"Daniel Terhune",,"PO Box 681",,"Frewsburg","New York","14738","United States",NULL,"0",,"0","0",NULL,NULL
+"1410112155-5a93","2014-10-11 21:55:40","3","5a933b14-11-10","guest","0","6.5","0","12","106",NULL,NULL,"Corey VanMeter",,"2951 Rutherford Rd",,"Loogootee","Indiana","47553","United States",NULL,"0",,"0","0",NULL,NULL
+"1410122229-b163","2014-10-12 22:29:01","3","b1638814-12-10","account","0","8.5","0","34","106",NULL,NULL,"Richard Bradbury",,"5874 Lexington Drive",,"Pipersville","Pennsylvania","18947","United States",NULL,"0",,"0","0",NULL,NULL
+"1410141721-04f0","2014-10-14 17:21:04","3","04f03d14-14-10","account","0","7.5","0","38","106",NULL,NULL,"John Frustace",,"101 Roosevelt Drive",,"Poughquag","New York","12570","United States",NULL,"0",,"0","0",NULL,NULL
+"1410142337-1682","2014-10-14 23:37:22","3","1682c514-14-10","guest","0","3","0","8","106",NULL,NULL,"Jeffrey Nelson",,"3112 Tyler Parkway",,"Bismarck","North Dakota","58503","United States",NULL,"0",,"0","0",NULL,NULL
+"1410150129-71ba","2014-10-15 01:29:42","1","71ba1714-29-09","account","0","7.5","0","27.5","106",NULL,NULL,"garie obrien",,"1308 idaho ave.",,"ames","Iowa","50014","United States",NULL,"0",,"0","0",NULL,NULL
+"1410150201-71ba","2014-10-15 02:01:56","1","71ba1714-29-09","account","0","7.5","0","27.5","106",NULL,NULL,"garie obrien",,"1308 idaho ave.",,"ames","Iowa","50014","United States",NULL,"0",,"0","0",NULL,NULL
+"1410151538-a7e8","2014-10-15 15:38:42","3","a7e8a414-15-10","account","0","7.5","0","25","106",NULL,NULL,"Morris L Anderson","Wayne Lodge #120","413 West 7th",,"Wayne","Nebraska","68787-1305","United States",NULL,"0",,"0","0",NULL,NULL
+"1410160843-3d8e","2014-10-16 08:43:05","3","3d8e7e13-03-06","account","0","8.5","0","45.5","106",NULL,NULL,"Blake Hansen","Brother Blake","58 North 750 East",,"American Fork","Utah","84043","United States",NULL,"0",,"0","0",NULL,NULL
+"1410161037-6472","2014-10-16 10:37:03","1","64725114-16-10","guest","0","9.5","0","43","106",NULL,NULL,"John Heffernan","Smiths Creek #491F&AM","48174 Pheasant",,"New Baltimore","Michigan","48047","United States",NULL,"0",,"0","0",NULL,NULL
+"1410171047-27fb","2014-10-17 10:47:47","1","27fba214-17-10","guest","0","8.5","0","35.7","106",NULL,NULL,"james Purington",,"2210 McPherson Street","apt 106","raleigh","North Carolina","27610","United States",NULL,"0",,"0","0",NULL,NULL
+"1410180817-5ca9","2014-10-18 08:17:57","3","5ca98b14-18-10","guest","0","8.5","0","50.5","106",NULL,NULL,"JERRY SMITH",,"463 gabe holcomb rd",,"brandon","Mississippi","39042","United States",NULL,"0",,"2.5","0",NULL,NULL
+"1410181131-2182","2014-10-18 11:31:49","3","2182b414-18-10","account","0","9.5","0","40","106",NULL,NULL,"John Adams",,"1241 W 1020 SOUTH CIR",,"CEDAR CITY","Utah","84720","United States",NULL,"0",,"0","0",NULL,NULL
+"1410181326-c755","2014-10-18 13:26:15","1","c7555a14-18-10","account","0","7.5","0","27.5","106",NULL,NULL,"Gerard Wilson",,"2401 Encinal Dr",,"Walnut Creek","California","94597-3126","United States",NULL,"0",,"0","0",NULL,NULL
+"1410182046-3e02","2014-10-18 20:46:30","3","3e02af14-18-10","guest","0","8.5","0","29.5","106",NULL,NULL,"Philip Brooks",,"405 Greear Place",,"Herndon","Virginia","2010","United States",NULL,"0",,"0","0",NULL,NULL
+"1410190023-8762","2014-10-19 00:23:05","1","8762ad14-19-10","account","0","7.5","0","27.5","106",NULL,NULL,"Josue' Suazo",,"10409 Alan St",,"River Ridge","Louisiana","70123","United States",NULL,"0",,"0","0",NULL,NULL
+"1410190047-f47d","2014-10-19 00:47:10","3","f47d7614-19-10","guest","0","13.5","0","103.5","106",NULL,NULL,"Robert Wolfarth",,"7 S 1200 E",,"Salt Lake City","Utah","84102","United States",NULL,"0",,"0","0",NULL,NULL
+"1410191024-36be","2014-10-19 10:24:18","3","36beec14-19-10","account","0","0","0","12","0",NULL,NULL,"Morris Vainder",,"436 E 11 Ave",,"Mount Dora","Florida","32757","United States",NULL,"0",,"0","0",NULL,NULL
+"1410191202-3e99","2014-10-19 12:02:23","3","3e99a014-19-10","guest","0","0","0","12","0",NULL,NULL,"Jim Boaz",,"9350 E. Old Pellegrino Rd.",,"Tucson","Arizona","85749","United States",NULL,"0",,"0","0",NULL,NULL
+"1410191554-b421","2014-10-19 15:54:14","3","b4212e14-19-10","account","0","10.5","0","54.5","106",NULL,NULL,"Keith Harrington","Keith Harrington","3731 Summersage Ct",,"Champaign","Illinois","61822","United States",NULL,"0",,"0","0",NULL,NULL
+"1410200833-2e25","2014-10-20 08:33:13","3","2e25fb14-27-09","account","0","7.5","0","27.5","106",NULL,NULL,"Kevin Edge",,"619 E. Norris Point Road",,"LaFollette","Tennessee","37766","United States",NULL,"0",,"0","0",NULL,NULL
+"1410201616-01f3","2014-10-20 16:16:19","1","01f38d14-20-10","guest","0","9.5","0","41","106",NULL,NULL,"Robert Herold","Robert Herold","155 W Main St",,"Whitewater","Wisconsin","53190","United States",NULL,"0",,"7.5","0",NULL,NULL
+"1410201653-4f10","2014-10-20 16:53:35","1","4f10b214-20-10","guest","0","9.5","0","45","106",NULL,NULL,"Robert Herold","Robert Herold","155 W Main St",,"Whitewater","Wisconsin","53190","United States",NULL,"0",,"5","0",NULL,NULL
+"1410211158-8ecf","2014-10-21 11:58:06","3","8ecffa14-21-10","account","0","9.5","0","44.5","106",NULL,NULL,"Lodge Secretary",,"PO Box 1751",,"Big Spring","Texas","79720","United States",NULL,"0",,"2","0",NULL,NULL
+"1410211538-b207","2014-10-21 15:38:34","3","b207a614-21-10","account","0","15","0","136","106",NULL,NULL,"John Kashinsky","Action Group","191 North Ave",,"Mount Clemens","Michigan","48043","United States",NULL,"0",,"47.5","0",NULL,NULL
+"1410221002-4178","2014-10-22 10:02:40","3","41782714-22-10","account","0","0","0","12","0",NULL,NULL,"Rodger Alwais",,"11 Thatch Pond Rd ",,"Smithtown","New York","11787","United States",NULL,"0","This is a Gift Subscription for a new brother in my lodge. Mr Rodger Alwais of 11 Thatch Pond Rd Smithtown NY 11787","0","0",NULL,NULL
+"1410221006-4178","2014-10-22 10:06:52","3","41782714-22-10","account","0","0","0","12","0",NULL,NULL,"Brian Stephans",,"63-136 Pritchett St",,"Rego Park","New York","11374","United States",NULL,"0","This is a gift Subscription for a new brother in my lodge Mr. Brian Stephans 63-136 Pritchett St Rego Park NY 11374","0","0",NULL,NULL
+"1410221717-74d2","2014-10-22 17:17:54","3","74d22914-22-10","account","0","9.5","0","49.5","106",NULL,NULL,"Garry Randles",,"174302 W Byron Rd",,"Prosser","Washington","99350","United States",NULL,"0",,"0","0",NULL,NULL
+"1410221832-a94b","2014-10-22 18:32:23","3","a94bb414-22-10","account","0","15","0","135","106",NULL,NULL,"nicholas lettiere",,"591 bement ave","ph","Staten Island","New York","10310","United States",NULL,"0",,"0","0",NULL,NULL
+"1410231101-1356","2014-10-23 11:01:35","1","13564a14-23-10","guest","0","9.5","0","41.5","106",NULL,NULL,"Robert Grzeskiewicz",,"946 Windmill Lane",,"Evans","Georgia","30809","United States",NULL,"0",,"0","0",NULL,NULL
+"1410231145-45e4","2014-10-23 11:45:48","3","45e42614-23-10","guest","0","7.5","0","27.5","106",NULL,NULL,"Bernie Mitchell","Supreme Council Grottoes North America","430 Beecher Road",,"Gahanna","Ohio","43230","United States",NULL,"0",,"0","0",NULL,NULL
+"1410231321-117a","2014-10-23 13:21:05","1","117aab14-23-10","guest","0","20.5","0","464.5","106",NULL,NULL,"Luman Chichester",,"917 county route 403",,"Greenville","New York","12083","United States",NULL,"0",,"0","0",NULL,NULL
+"1410232147-c29c","2014-10-23 21:47:20","3","c29cfa14-23-10","guest","0","7.5","0","27.5","106",NULL,NULL,"George Morris",,"5806 Vernedale road",,"Charlotte","North Carolina","28212","United States",NULL,"0",,"0","0",NULL,NULL
+"1410240836-a623","2014-10-24 08:36:13","3","a6238e14-24-10","account","0","9.5","0","44.5","106",NULL,NULL,"Scott Kinne",,"321 Harding Ave",,"Endwell","New York","13760","United States",NULL,"0","As Master of St. Mark's-Vestal Lodge No. 435, Vestal, NY, our program for an upcoming metting is "What is the MSANA". In addition to what I am ordering, if you have anything to add which will lend itself to the program would be fraternally apprec","0","0",NULL,NULL
+"1410242340-5ea6","2014-10-24 23:40:34","3","5ea67c14-24-10","guest","0","9.5","0","49.5","106",NULL,NULL,"Yancey Smith",,"3221 Conservation Way",,"Rapid City","South Dakota","57703","United States",NULL,"0",,"0","0",NULL,NULL
+"1410251259-0c6a","2014-10-25 12:59:51","3","0c6a2314-25-10","guest","0","7.5","0","39.5","106",NULL,NULL,"Chris Lamb",,"29527 legends stone drive",,"Spring","Texas","77386","United States",NULL,"0",,"0","0",NULL,NULL
+"1410251612-ae52","2014-10-25 16:12:22","1","ae525e14-17-09","account","0","3","0","6.75","106",NULL,NULL,"Ezra Hodgson",,"504 CR 455",,"Berryville","Arkansas","72616","United States",NULL,"0",,"6.75","0",NULL,NULL
+"1410261312-b927","2014-10-26 13:12:47","3","b9274c14-26-10","guest","0","0","0","12","0",NULL,NULL,"GENE Keyes","KEYES AND COMPANY INC","1925 N DUCK LAKE RD.",,"HIGHLAND","Michigan","48356","United States",NULL,"0","re new 70513 640 3/14","0","0",NULL,NULL
+"1410261649-45bc","2014-10-26 16:49:10","3","45bc6b14-26-10","guest","0","13.5","0","113.5","106",NULL,NULL,"michael sorbin",,"5253 e. 117 st.",,"cleveland","Ohio","44125","United States",NULL,"0",,"24","0",NULL,NULL
+"1410262004-1570","2014-10-26 20:04:01","3","15709314-26-10","guest","0","7.5","0","27.5","106",NULL,NULL,"Charlton Rodgers",,"1308 Hendrix Ave",,"Alamogordo","New Mexico","88310","United States",NULL,"0",,"0","0",NULL,NULL
+"1410271908-d179","2014-10-27 19:08:31","3","d1793514-27-10","guest","0","7.5","0","27.5","106",NULL,NULL,"David Keyt",,"43 East 300 North",,"North Salt Lake","Utah","84054","United States",NULL,"0",,"0","0",NULL,NULL
+"1410281733-99ba","2014-10-28 17:33:49","3","99ba8e14-28-10","account","0","0","0","12","0",NULL,NULL,"MICHAEL J HITCHNER",,"216 Hackensack St",,"Wood-Ridge","New Jersey","07075","United States",NULL,"0",,"0","0",NULL,NULL
+"1410291328-1250","2014-10-29 13:28:16","3","12501114-22-04","account","0","11.5","0","68.5","106",NULL,NULL,"Robert Mercer","Robert Mercer Sr","1416 Beckwith Rd",,"Cornville","Maine","04976","United States",NULL,"0",,"0","0",NULL,NULL
+"1410291541-6c75","2014-10-29 15:41:11","1","6c75c914-29-10","account","0","8.5","0","31","106",NULL,NULL,"David Weiser",,"1800 Colonial Road",,"Harrisburg","Pennsylvania","17112","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1410291727-4a53","2014-10-29 17:27:08","1","4a53ca14-29-10","account","0","7.5","0","27.5","106",NULL,NULL,"Rick Becker","C/O Floral Hills Cemetery","409 Filbert Rd",,"Lynnwood","Washington","98036-4934","United States",NULL,"0",,"0","0",NULL,NULL
+"1410310718-0112","2014-10-31 07:18:03","3","01123b14-31-10","guest","0","7.5","0","27.5","106",NULL,NULL,"Darin Nine",,"10340 SE HWY464-C",,"Ocklawaha","Florida","32179","United States",NULL,"0",,"0","0",NULL,NULL
+"1410311547-fd15","2014-10-31 15:47:46","1","fd156614-31-10","account","0","0","0","12","0",NULL,NULL,"Joseph Turano",,"393 Stanhope Street",,"Brooklyn","New York","11237-4404","United States",NULL,"0",,"0","0",NULL,NULL
+"1410311555-fd15","2014-10-31 15:55:19","3","fd156614-31-10","account","0","0","0","12","0",NULL,NULL,"Joseph Turano",,"393 Stanhope Street",,"Brooklyn","New York","11237-4404","United States",NULL,"0",,"0","0",NULL,NULL
+"1411012333-a40a","2014-11-01 23:33:18","3","a40a2114-01-11","guest","0","7.5","0","27.5","106",NULL,NULL,"Brian Steward",,"208 Crowley Ave",,"Buffalo","New York","14207","United States",NULL,"0",,"0","0",NULL,NULL
+"1411021917-a31d","2014-11-02 19:17:24","3","a31d2b14-02-11","guest","0","11.5","0","80","106",NULL,NULL,"Roy McConkey",,"529 Saline Pump Rd",,"Moriarty","New Mexico","87035","United States",NULL,"0",,"6.5","0",NULL,NULL
+"1411031016-1609","2014-11-03 10:16:03","3","1609d114-03-11","guest","0","9.5","0","42","106",NULL,NULL,"Daniel Barston",,"15 Clark Street",,"Auburn","Massachusetts","01501-1743","United States",NULL,"0",,"0","0",NULL,NULL
+"1411031333-b95b","2014-11-03 13:33:59","3","b95b2114-03-11","account","0","11.5","0","86","106",NULL,NULL,"F GORDON BERRY",,"3115 SEGER AVE",,"SIOUX CITY","Iowa","51106-3239","United States",NULL,"0",,"5","0",NULL,NULL
+"1411031352-946e","2014-11-03 13:52:00","3","946e8314-03-11","account","0","0","0","12","0",NULL,NULL,"O Carl Anderson",,"1308 Garfield St.",,"Great Bend","Kansas","67530","United States",NULL,"0",,"0","0",NULL,NULL
+"1411031402-946e","2014-11-03 14:02:03","3","946e8314-03-11","account","0","0","0","12","0",NULL,NULL,"Robert Anderson",,"125 W. 15th Ave.",,"Emporia","Kansas","66801","United States",NULL,"0",,"0","0",NULL,NULL
+"1411051319-c5db","2014-11-05 13:19:00","3","c5db4714-05-11","guest","0","0","0","12","0",NULL,NULL,"Frank Furr, IV",,"380 Sunrise Drive",,"Clayton","Delaware","19938","United States",NULL,"0",,"0","0",NULL,NULL
+"1411051407-1a48","2014-11-05 14:07:00","1","1a48f414-05-11","guest","0","13.5","0","103.5","106",NULL,NULL,"Jimmie West","J.N. West","124 Cross Creek Dr",,"Paris","Kentucky","40361","United States",NULL,"0",,"0","0",NULL,NULL
+"1411052118-86b6","2014-11-05 21:18:59","3","86b63d14-05-11","guest","0","7.5","0","27.5","106",NULL,NULL,"Paul Joiner",,"2317 Lakeshore Blvd","#603","Ypsilanti","Michigan","48198","United States",NULL,"0",,"0","0",NULL,NULL
+"1411062043-d879","2014-11-06 20:43:42","3","d8799814-24-07","account","0","7.5","0","27.5","106",NULL,NULL,"John Dennis",,"6013 Palmera Dr",,"Mason","Ohio","45040-8040","United States",NULL,"0",,"0","0",NULL,NULL
+"1411062109-9797","2014-11-06 21:09:48","3","97978314-06-11","account","0","7.5","0","39.5","106",NULL,NULL,"Mike Nichols",,"310 Clovis Drive",,"Georgetown","Texas","78628","United States",NULL,"0",,"0","0",NULL,NULL
+"1411070824-344e","2014-11-07 08:24:05","3","344efb13-10-02","account","0","0","0","12","0",NULL,NULL,"S J Helm",,"5187 Paes Road",,"New Holland ","Pennsylvania","17557","United States",NULL,"0",,"0","0",NULL,NULL
+"1411070836-344e","2014-11-07 08:36:59","3","344efb13-10-02","account","0","9.5","0","42","106",NULL,NULL,"S J Helm",,"5187 Paes Road",,"New Holland ","Pennsylvania","17557","United States",NULL,"0",,"5","0",NULL,NULL
+"1411091815-4a6d","2014-11-09 18:15:46","3","4a6d6514-09-11","guest","0","8.5","0","35.5","106",NULL,NULL,"Lyle Christian","Hiram Lodge # 50","1 Leyton Circle",,"Madison","Wisconsin","53713-3401","United States",NULL,"0",,"0","0",NULL,NULL
+"1411101007-1af0","2014-11-10 10:07:30","3","1af07714-10-11","account","0","13.5","0","93.5","106",NULL,NULL,"John L Smith","Yellow Springs Lodge #421","4311 Joy Drive",,"Enon","Ohio","45323","United States",NULL,"0",,"0","0",NULL,NULL
+"1411101249-437c","2014-11-10 12:49:15","3","437c1014-10-11","guest","0","9.5","0","49.5","106",NULL,NULL,"Andy Wilson","Mansfield Lodge #489","PO Box 160","Attn: Andy Wilson","Newborn","Georgia","30056","United States",NULL,"0",,"0","0",NULL,NULL
+"1411111038-8d85","2014-11-11 10:38:12","3","8d85cc14-11-11","account","0","11.5","0","81.5","106",NULL,NULL,"Thomas Hineman",,"2363 Donner St NW",,"North Canton","Ohio","44720","United States",NULL,"0",,"17","0",NULL,NULL
+"1411111243-42b5","2014-11-11 12:43:17","3","42b53a14-11-11","account","0","0","0","12","0",NULL,NULL,"JOSEPH K. BARBARA",,"289 Miller ave",,"Branchburg","New Jersey","08876","United States",NULL,"0","Hi if some one can please call me. I ordered vol II $150.00 by mail and I did not receive it yet? I called the # but no one picks up.","0","0",NULL,NULL
+"1411111309-bed2","2014-11-11 13:09:59","3","bed2f514-11-11","guest","0","0","0","12","0",NULL,NULL,"Paul Lundquist",,"P.O. Box 452",,"Evergreen","Colorado","80437","United States",NULL,"0",,"0","0",NULL,NULL
+"1411120733-29f2","2014-11-12 07:33:49","3","29f25314-12-11","guest","0","20.5","0","452.5","106",NULL,NULL,"Eugene St.Clair",,"2209 N. pershing drive","#307","Arlington","Virginia","22201","United States",NULL,"0",,"0","0",NULL,NULL
+"1411130258-670d","2014-11-13 02:58:44","3","670d4714-13-11","guest","0","15","0","165","106",NULL,NULL,"Clint Stevens",,"5502 Pinewood Springs",,"Houston","Texas","77066","United States",NULL,"0",,"0","0",NULL,NULL
+"1411130904-fb4d","2014-11-13 09:04:57","1","fb4d5214-13-11","guest","0","9.5","0","47","106",NULL,NULL,"Gwen Olson","Grand Lodge of South Dakota","520 S First Ave",,"Sioux Falls","South Dakota","57104","United States",NULL,"0",,"3","0",NULL,NULL
+"1411130933-a152","2014-11-13 09:33:22","3","a1525e14-13-11","guest","0","0","0","12","0",NULL,NULL,"Ray Greyling",,"3828 Taylortown Rd",,"Furlong","Pennsylvania","18925","United States",NULL,"0",,"0","0",NULL,NULL
+"1411131256-adc3","2014-11-13 12:56:27","1","adc3ff14-13-11","guest","0","8.5","0","33.5","106",NULL,NULL,"Robert Grzeskiewicz","Lincolnton #354","946 Windmill Ln",,"Evans","Georgia","30809","United States",NULL,"0",,"2","0",NULL,NULL
+"1411131616-fb67","2014-11-13 16:16:27","3","fb673714-13-11","guest","0","7.5","0","27.5","106",NULL,NULL,"Anthony Angelica","Estuary Lodge #43","PO Box 206",,"Deep River","Connecticut","06417","United States",NULL,"0",,"0","0",NULL,NULL
+"1411140949-ee1a","2014-11-14 09:49:09","3","ee1a8d14-14-11","account","0","7.5","0","39.5","106",NULL,NULL,"Brian Harris",,"17255 Palm Ridge Dr",,"D'Iberville","Mississippi","39540","United States",NULL,"0",,"0","0",NULL,NULL
+"1411141420-9b27","2014-11-14 14:20:58","3","9b273814-14-11","guest","0","7.5","0","27.5","106",NULL,NULL,"Jorge Martinez",,"525 West River Drive",,"Pennsauken","New Jersey","08110","United States",NULL,"0",,"0","0",NULL,NULL
+"1411141734-68d7","2014-11-14 17:34:08","3","68d74414-14-11","guest","0","0","0","12","0",NULL,NULL,"Andre Beliveau",,"908 Tower Ave.",,"Maybrook","New York","12543","United States",NULL,"0",,"0","0",NULL,NULL
+"1411160005-5a0a","2014-11-16 00:05:20","3","5a0a2e14-16-11","guest","0","6.5","0","12.5","106",NULL,NULL,"Dennis White",,"64 Lester Way",,"Sequim","Washington","98382","United States",NULL,"0",,"0","0",NULL,NULL
+"1411160946-4159","2014-11-16 09:46:52","1","41599814-16-11","account","0","7.5","0","27.5","106",NULL,NULL,"Mark Caudill",,"14809 National Rd.",,"Thornville","Ohio","43076","United States",NULL,"0",,"0","0",NULL,NULL
+"1411161426-de1f","2014-11-16 14:26:53","3","de1f5d14-16-11","account","0","8.5","0","32","106",NULL,NULL,"Harry A. Bruno","Cochran #217","995 Limestone Road",,"Cochran","Georgia","31014","United States",NULL,"0",,"0","0",NULL,NULL
+"1411161559-4159","2014-11-16 15:59:29","3","41599814-16-11","account","0","7.5","0","27.5","106",NULL,NULL,"Mark Caudill",,"14809 National Rd.",,"Thornville","Ohio","43076","United States",NULL,"0",,"0","0",NULL,NULL
+"1411162026-4e5d","2014-11-16 20:26:33","3","4e5d6914-16-11","guest","0","7.5","0","27.5","106",NULL,NULL,"Steven Waxman",,"43 Silver Lake Ave.",,"Warwick","Rhode Island","02888","United States",NULL,"0",,"0","0",NULL,NULL
+"1411181200-a187","2014-11-18 12:00:25","3","a187ad14-18-11","account","0","7.5","0","27.5","106",NULL,NULL,"James Godbold",,"2856 Dove Avenue",,"Marrero","Louisiana","70072","United States",NULL,"0",,"0","0",NULL,NULL
+"1411191003-02d9","2014-11-19 10:03:09","3","02d9ff14-19-11","account","0","15","0","207","106",NULL,NULL,"Dr Ken Moder",,"160 Drury Lane",,"West Lafayette","Indiana","47906","United States",NULL,"0",,"0","0",NULL,NULL
+"1411201130-a0c6","2014-11-20 11:30:47","1","a0c6b814-20-11","guest","0","9.5","0","49.5","106",NULL,NULL,"Bernard Golubiewski","Landmark Lodge","19 Main Street","Laflin","Wilkes-Barre","Pennsylvania","18702","United States",NULL,"0",,"0","0",NULL,NULL
+"1411201138-0d82","2014-11-20 11:38:29","3","0d828d14-20-11","guest","0","9.5","0","49.5","106",NULL,NULL,"Bernard Golubiewski","Landmark Lodge","19 Main Street",,"Wilkes-Barre","Pennsylvania","18702-7102","United States",NULL,"0",,"0","0",NULL,NULL
+"1411201345-d299","2014-11-20 13:45:41","1","d2998014-20-11","guest","0","9.5","0","42.5","106",NULL,NULL,"Kenneth Kaplan",,"324 Grandville Arch",,"Smiithfield","Virginia","23430","United States",NULL,"0",,"0","0",NULL,NULL
+"1411210150-8a89","2014-11-21 01:50:54","3","8a890d14-21-11","account","0","13.5","0","93.6","106",NULL,NULL,"Kyle J. Hudson",,"2987 Rainbow Ln.",,"Fortuna","California","95540","United States",NULL,"0",,"10","0",NULL,NULL
+"1411211257-7bf9","2014-11-21 12:57:09","3","7bf92b14-21-11","account","0","0","0","12","0",NULL,NULL,"David Robbins",,"13828 E County Road 500 S",,"Sheridan","Indiana","46069","United States",NULL,"0",,"0","0",NULL,NULL
+"1411221156-f954","2014-11-22 11:56:08","3","f9547714-22-11","guest","0","8.5","0","37","106",NULL,NULL,"William Zarychta",,"12138 Pawtuckett lane",,"Waldorf","Maryland","20602","United States",NULL,"0",,"7.5","0",NULL,NULL
+"1411231203-bf0b","2014-11-23 12:03:57","3","bf0b2114-23-11","guest","0","8.5","0","32.25","106",NULL,NULL,"Jay Poirier",,"18 Libby Ave",,"Lewiston","Maine","04240","United States",NULL,"0",,"6.75","0",NULL,NULL
+"1411231855-98f0","2014-11-23 18:55:06","3","98f02714-23-11","guest","0","11.5","0","66","106",NULL,NULL,"James Spaulding",,"31 Birch Glen Dr",,"Waterford","New York","12188","United States",NULL,"0",,"25","0",NULL,NULL
+"1411240918-ccc4","2014-11-24 09:18:57","3","ccc42114-24-11","guest","0","7.5","0","27.5","106",NULL,NULL,"Kevin Carnine",,"155 Dana Dr",,"Beaver Dam","Wisconsin","53916","United States",NULL,"0",,"0","0",NULL,NULL
+"1411241126-2aa2","2014-11-24 11:26:50","3","2aa26914-24-11","account","0","7.5","0","21.5","106",NULL,NULL,"Larry anderson","Salina Lodge 60","P.O. Box 1274",,"Salina, ","Kansas","67401-1274","United States",NULL,"0",,"0","0",NULL,NULL
+"1411241945-1a70","2014-11-24 19:45:27","3","1a703d13-19-06","account","0","3","0","8","106",NULL,NULL,"Robert Bigelow","none","4420 Carmel Drive",,"Cheyenne","Wyoming","82009","United States",NULL,"0",,"0","0",NULL,NULL
+"1411251606-4671","2014-11-25 16:06:24","1","46717814-25-11","account","0","7.5","0","27.5","106",NULL,NULL,"Greg Brown",,"4130 216TH PL SE",,"Bothell","Washington","98021","United States",NULL,"0",,"0","0",NULL,NULL
+"1411251631-4671","2014-11-25 16:31:21","3","46717814-25-11","account","0","7.5","0","27.5","106",NULL,NULL,"Greg Brown",,"4130 216TH PL SE",,"Bothell","Washington","98021","United States",NULL,"0",,"0","0",NULL,NULL
+"1411260956-ed94","2014-11-26 09:56:39","3","ed942914-26-11","account","0","15","0","156","106",NULL,NULL,"Richard Lewis",,"PO Box 38","518 N Wheatland HWY","Wheatland","Wyoming","82201","United States",NULL,"0",,"15","0",NULL,NULL
+"1411261701-73a0","2014-11-26 17:01:26","1","73a0c914-26-11","account","0","7.5","0","27.5","106",NULL,NULL,"Ari Marcus",,"32 Meredith Cir",,"Needham","Massachusetts","02492","United States",NULL,"0",,"0","0",NULL,NULL
+"1411261706-73a0","2014-11-26 17:06:15","3","73a0c914-26-11","account","0","7.5","0","27.5","106",NULL,NULL,"Ari Marcus",,"32 Meredith Cir",,"Needham","Massachusetts","02492","United States",NULL,"0",,"0","0",NULL,NULL
+"1411280747-6976","2014-11-28 07:47:50","3","6976cf14-28-11","guest","0","7.5","0","27.5","106",NULL,NULL,"Robert Taylor",,"30 Indian Birch Rd.",,"Turnersville","New Jersey","08012","United States",NULL,"0",,"0","0",NULL,NULL
+"1411302049-d5fc","2014-11-30 20:49:23","3","d5fc9814-30-11","account","0","0","0","12","0",NULL,NULL,"Robert Leonard",,"4808 Clipper Xing",,"Edmond","Oklahoma","73013","United States",NULL,"0",,"0","0",NULL,NULL
+"1412011117-8677","2014-12-01 11:17:11","3","8677ad14-01-12","account","0","8.5","0","35.2","106",NULL,NULL,"Martin Richards","My Hse","25 Trinity Place",,"New Rochelle","New York","10805","United States",NULL,"0",,"2.5","0",NULL,NULL
+"1412011500-2794","2014-12-01 15:00:10","3","2794e614-01-12","guest","0","9.5","0","61.5","106",NULL,NULL,"Naneen Christopher",,"972 Sherman Ave. ","Apt. 2F","Bronx","New York","10456","United States",NULL,"0",,"0","0",NULL,NULL
+"1412012239-8231","2014-12-01 22:39:55","3","82315214-01-12","guest","0","7.5","0","27.5","106",NULL,NULL,"York Masonic Lodge #56",,"PO Box 21",,"York","Nebraska","68467","United States",NULL,"0",,"0","0",NULL,NULL
+"1412021025-423e","2014-12-02 10:25:31","3","423e7314-02-12","guest","0","8.5","0","33.5","106",NULL,NULL,"Dean White","Scottish Rite Bodies","305 W. Stephenson",,"Freeport","Illinois","61032","United States",NULL,"0",,"2","0",NULL,NULL
+"1412021204-1abc","2014-12-02 12:04:45","3","1abcbd14-02-12","account","0","13.5","0","96","106",NULL,NULL,"Lee Peterson","Harmar Lodge #390","1309 Lancaster Street",,"Marietta","Ohio","45750","United States",NULL,"0",,"0","0",NULL,NULL
+"1412021304-9b88","2014-12-02 13:04:49","1","9b88a314-02-12","guest","0","8.5","0","29.5","106",NULL,NULL,"Herbert Hampton","Hampton Technical Service","7909 Moore's Ridge Rd.SE",,"U","Ohio","44683","United States",NULL,"0",,"0","0",NULL,NULL
+"1412022010-5d95","2014-12-02 20:10:20","3","5d950714-02-12","account","0","9.5","0","53","106",NULL,NULL,"Michael Richardson",,"1035 Washington Avenue","4S","Brooklyn","New York","11225","United States",NULL,"0",,"2.5","0",NULL,NULL
+"1412022239-da77","2014-12-02 22:39:32","3","da77e514-01-06","account","0","0","0","12","0",NULL,NULL,"Rex Hasty",,"244 JC Bryant Rd",,"Hattiesburg","Mississippi","39401","United States",NULL,"0",,"0","0",NULL,NULL
+"1412022257-da77","2014-12-02 22:57:35","3","da77e514-01-06","account","0","0","0","12","0",NULL,NULL,"John Fillingame",,"219 Old River Rd",,"Petal","Mississippi","39465","United States",NULL,"0",,"0","0",NULL,NULL
+"1412022303-da77","2014-12-02 23:03:03","3","da77e514-01-06","account","0","0","0","12","0",NULL,NULL,"Jack Howguettes III",,"204 S 20th Ave",,"Hattiesburg","Mississippi","39401","United States",NULL,"0",,"0","0",NULL,NULL
+"1412031351-2e25","2014-12-03 13:51:39","3","2e25fb14-27-09","account","0","0","0","12","0",NULL,NULL,"Henry Hamblin Jr.",,"428 Oak Run Lane",,"LaFollette","Tennessee","37766","United States",NULL,"0",,"0","0",NULL,NULL
+"1412031428-417d","2014-12-03 14:28:03","3","417d5214-03-12","account","0","0","0","36","0",NULL,NULL,"Ralph Archangel",,"1105 - 42 Street",,"Brooklyn","New York","11219","United States",NULL,"0",,"0","0",NULL,NULL
+"1412032203-f715","2014-12-03 22:03:11","3","f7152114-03-12","account","0","10.5","0","52.5","106",NULL,NULL,"Earnest Lancaster",,"305 W 3rd St",,"Mobeetie","Texas","79061","United States",NULL,"0",,"10","0",NULL,NULL
+"1412041028-0bb1","2014-12-04 10:28:21","3","0bb1a014-04-12","guest","0","7.5","0","27.5","106",NULL,NULL,"John Porteus",,"55144 County Road 5",,"West Lafayette","Ohio","43845","United States",NULL,"0",,"0","0",NULL,NULL
+"1412041748-0d35","2014-12-04 17:48:47","3","0d35d614-04-12","account","0","8.5","0","43","106",NULL,NULL,"Michael P. Pizzola","Jefferson Lodge #15","24655 Dupont Blvd",,"Georgetown","Delaware","19947","United States",NULL,"0",,"4.5","0",NULL,NULL
+"1412042246-484a","2014-12-04 22:46:47","1","484a2f14-04-12","guest","0","8.5","0","34","106",NULL,NULL,"Dennis Brassard",,"667 Marsh Hill Rd.",,"Dracut","Massachusetts","01826","United States",NULL,"0",,"0","0",NULL,NULL
+"1412042250-74e8","2014-12-04 22:50:50","3","74e8e014-04-12","guest","0","8.5","0","34","106",NULL,NULL,"Dennis Brassard",,"667 Marsh Hill Rd.",,"Dracut","Massachusetts","01826-1523","United States",NULL,"0",,"0","0",NULL,NULL
+"1412051523-d47c","2014-12-05 15:23:24","1","d47cda14-05-12","guest","0","7.5","0","21","106",NULL,NULL,"Kenneth Schneider",,"3628 Nautilus Tr.",,"Aurora","Ohio","44202","United States",NULL,"0",,"0","0",NULL,NULL
+"1412060911-377e","2014-12-06 09:11:22","3","377edd14-06-12","guest","0","0","0","12","0",NULL,NULL,"Ramon Voils",,"866 Lake Wellington Drive",,"Wellington","Florida","33414","United States",NULL,"0",,"0","0",NULL,NULL
+"1412061308-18cd","2014-12-06 13:08:15","3","18cdc814-06-12","guest","0","0","0","12","0",NULL,NULL,"jon trego",,"402 madison st.",,"ravenna","Ohio","44266","United States",NULL,"0",,"0","0",NULL,NULL
+"1412071625-97e2","2014-12-07 16:25:07","3","97e29914-07-12","account","0","7.5","0","39.5","106",NULL,NULL,"Edward A Magilton",,"5088 State Route 97",,"Narrowsburg","New York","12764","United States",NULL,"0",,"0","0",NULL,NULL
+"1412080909-facd","2014-12-08 09:09:28","3","facd4c14-08-12","guest","0","9.5","0","43","106",NULL,NULL,"Richard Martindale",,"PO Box 109",,"Boutte","Louisiana","70039","United States",NULL,"0",,"0","0",NULL,NULL
+"1412081232-7593","2014-12-08 12:32:46","3","75939a14-08-12","guest","0","7.5","0","27.5","106",NULL,NULL,"George Hernandez Jr.",,"73 w 30th street",,"bayonne","New Jersey","07002","United States",NULL,"0",,"0","0",NULL,NULL
+"1412081706-05b3","2014-12-08 17:06:28","3","05b3c413-21-05","account","0","13.5","0","115.5","106",NULL,NULL,"Donald MacCormick",,"17000 E. 44th Street",,"Independence","Missouri","64055","United States",NULL,"0",,"0","0",NULL,NULL
+"1412081740-6307","2014-12-08 17:40:35","3","63078a14-08-12","guest","0","0","0","12","106",NULL,NULL,"Philip Brooks",,"405 Greear Place",,"Herndon","Virginia","20170","United States",NULL,"0",,"0","0",NULL,NULL
+"1412081809-329c","2014-12-08 18:09:17","3","329cbc14-08-12","guest","0","7.5","0","27.5","106",NULL,NULL,"Scott Rosengrant",,"333 Upper Valley Road",,"Torrington","Connecticut","06790","United States",NULL,"0",,"0","0",NULL,NULL
+"1412090923-c0ec","2014-12-09 09:23:56","3","c0ec3e14-09-12","guest","0","3","0","6.5","106",NULL,NULL,"gerard messina","Gerard Messina","64-04 60th Ave",,"maspeth","New York","11378","United States",NULL,"0",,"0","0",NULL,NULL
+"1412090933-ab22","2014-12-09 09:33:23","3","ab225b14-09-12","guest","0","0","0","12","0",NULL,NULL,"Keith Herman",,"641 Guilford Road",,"Cherry Hill","New Jersey","08003","United States",NULL,"0",,"0","0",NULL,NULL
+"1412091131-40b6","2014-12-09 11:31:57","3","40b6a914-09-12","account","0","0","0","12","0",NULL,NULL,"Michael Tucker",,"265 Sailors Way",,"Lakewood","New Jersey","08701","United States",NULL,"0",,"0","0",NULL,NULL
+"1412091400-286c","2014-12-09 14:00:34","1","286c5214-09-12","guest","0","0","0","12","0",NULL,NULL,"Robert Ribbeck","Home","4808 s cherry ave",,"Tucson","Arizona","85714","United States",NULL,"0",,"0","0",NULL,NULL
+"1412091547-3221","2014-12-09 15:47:22","1","32216014-09-12","guest","0","0","0","12","0",NULL,NULL,"Burton Barr",,"1314 Kalakaua Ave.","Apt 1206","Honolulu","Hawaii","96826","United States",NULL,"0",,"0","0",NULL,NULL
+"1412091548-c20b","2014-12-09 15:48:55","1","c20b3814-09-12","guest","0","0","0","24","0",NULL,NULL,"Jacquelynn Morris","Masonic Service","3905 National Drive","#280","Burtonsville","Maryland","20866","United States",NULL,"0",,"0","0",NULL,NULL
+"1412091552-bd71","2014-12-09 15:52:19","1","bd717514-09-12","guest","0","0","0","12","0",NULL,NULL,"Jacquelynn Morris","Masonic Service","3905 National Drive","#280","Burtonsville","Maryland","20866","United States",NULL,"0",,"0","0",NULL,NULL
+"1412091556-4cae","2014-12-09 15:56:57","3","4caef414-09-12","guest","0","0","0","12","0",NULL,NULL,"Burton Barr",,"1314 Kakakaua Ave","Apt 1206","Honolulu","Hawaii","96826","United States",NULL,"0",,"0","0",NULL,NULL
+"1412091614-e9d9","2014-12-09 16:14:30","1","e9d95214-09-12","guest","0","0","0","12","0",NULL,NULL,"SEYMOUR LATKE","MASONIC SERVICE ASSOC","3905 NATIONAL DR STE B280",,"BURTONSVILLE","Maryland","20866","United States",NULL,"0",,"0","0",NULL,NULL
+"1412091628-32aa","2014-12-09 16:28:48","1","32aa9314-09-12","guest","0","0","0","12","0",NULL,NULL,"Robert Ribbeck","Home","4808 s. cherry ave",,"Tucson","Arizona","85714","United States",NULL,"0",,"0","0",NULL,NULL
+"1412091633-10f0","2014-12-09 16:33:16","1","10f0c314-09-12","guest","0","0","0","12","0",NULL,NULL,"Robert Ribbeck","Home","4808 s. cherry ave",,"Tucson","Arizona","85714","United States",NULL,"0",,"0","0",NULL,NULL
+"1412091646-b33d","2014-12-09 16:46:46","3","b33df314-09-12","guest","0","0","0","12","0",NULL,NULL,"Robert Ribbeck","Home","4808 s. cherry ave",,"Tucson","Arizona","85714","United States",NULL,"0",,"0","0",NULL,NULL
+"1412100707-c0ed","2014-12-10 07:07:17","3","c0edb014-10-12","account","0","0","0","12","0",NULL,NULL,"Robert Engelbach, Sr.",,"1211 Michigan Avenue",,"Cumberland","Maryland","21502","United States",NULL,"0",,"0","0",NULL,NULL
+"1412101246-aaab","2014-12-10 12:46:27","3","aaabf514-10-12","guest","0","0","0","12","0",NULL,NULL,"Gerald Houston",,"426 Green Briar St",,"Deridder","Louisiana","70634","United States",NULL,"0",,"0","0",NULL,NULL
+"1412101414-ca20","2014-12-10 14:14:47","3","ca20a514-10-12","account","0","0","0","12","0",NULL,NULL,"Mike Spencer",,"167 Chestnut St.",,"Foxborough","Massachusetts","02035","United States",NULL,"0",,"0","0",NULL,NULL
+"1412111114-fb4d","2014-12-11 11:14:23","3","fb4d5214-13-11","account","0","9.5","0","47","106",NULL,NULL,"Gwen Olson","Grand Lodge of South Dakota","520 S First Ave",,"Sioux Falls","South Dakota","57104","United States",NULL,"0",,"3","0",NULL,NULL
+"1412120024-78fd","2014-12-12 00:24:44","3","78fdfa13-18-03","account","0","7.5","0","27.5","106",NULL,NULL,"Christopher Houser",,"PO Box 601",,"Dallas","North Carolina","28034","United States",NULL,"0",,"0","0",NULL,NULL
+"1412121623-d13b","2014-12-12 16:23:36","3","d13bca14-12-12","account","0","0","0","12","0",NULL,NULL,"Paul Weikel",,"2342 Starleaf Lane",,"Columbus","Ohio","43235","United States",NULL,"0",,"0","0",NULL,NULL
+"1412141543-991d","2014-12-14 15:43:53","3","991dbe13-20-04","account","0","15","0","165","107",NULL,NULL,"Wayne Mac Culloch",,"1815 Chopin Place",,"Orleans","Ontario","K1C 5G1","Canada",NULL,"0",,"0","0",NULL,NULL
+"1412150719-5675","2014-12-15 07:19:11","3","56753414-15-12","guest","0","7.5","0","27.5","106",NULL,NULL,"William Meyer",,"110 Franklin Ave.",,"La Grange","Kentucky","40031","United States",NULL,"0",,"0","0",NULL,NULL
+"1412150815-dad9","2014-12-15 08:15:42","3","dad9ce14-15-12","account","0","0","0","48","0",NULL,NULL,"William H Boyd",,"8950 M52",,"Perry","Michigan","48872","United States",NULL,"0",,"0","0",NULL,NULL
+"1412151230-8dd5","2014-12-15 12:30:41","3","8dd56914-15-12","guest","0","0","0","24","0",NULL,NULL,"Frederick L Reinig",,"5664 Macintosh Dr",,"Bay City","Michigan","48706-5638","United States",NULL,"0",,"0","0",NULL,NULL
+"1412171045-315c","2014-12-17 10:45:03","1","315c2914-17-12","guest","0","7.5","0","27.5","106",NULL,NULL,"Marian Patterson",,"164 Patterson Lane",,"Indian Land","South Carolina","29707","United States",NULL,"0",,"0","0",NULL,NULL
+"1412171155-872f","2014-12-17 11:55:07","3","872fe614-17-12","account","0","7.5","0","18","106",NULL,NULL,"MICHAEL BENT",,"40 COLON ST",,"BEVERLY","Massachusetts","01915","United States",NULL,"0",,"0","0",NULL,NULL
+"1412171531-a5b5","2014-12-17 15:31:10","3","a5b56a14-17-12","account","0","11.5","0","69","106",NULL,NULL,"James Xie","Scottsdale Masonic Lodge #43","2531 N. Scottsdale Rd.",,"Scottsdale","Arizona","85257","United States",NULL,"0",,"0","0",NULL,NULL
+"1412201841-77c7","2014-12-20 18:41:30","1","77c76114-20-12","guest","0","0","0","24","0",NULL,NULL,"Scott Ward",,"97 East Shore Circle",,"Ithaca","New York","14850","United States",NULL,"0",,"0","0",NULL,NULL
+"1412201846-758a","2014-12-20 18:46:03","3","758acc14-20-12","guest","0","0","0","12","0",NULL,NULL,"Scott Ward",,"97 East Shore Circle",,"Ithaca","New York","14850","United States",NULL,"0",,"0","0",NULL,NULL
+"1412201856-1435","2014-12-20 18:56:33","3","1435e714-20-12","guest","0","0","0","12","0",NULL,NULL,"Charles L. Zabriskie",,"10 St. Paul's Place","Apt. 6H","Brooklyn","New York","11226","United States",NULL,"0",,"0","0",NULL,NULL
+"1412210928-ae6f","2014-12-21 09:28:36","3","ae6fbf14-21-12","guest","0","13.5","0","103.5","106",NULL,NULL,"Dawn Schaefer",,"5507 Hinton St",,"Springfield","Virginia","22151","United States",NULL,"0",,"0","0",NULL,NULL
+"1412210936-777e","2014-12-21 09:36:07","3","777ea414-21-12","account","0","0","0","12","0",NULL,NULL,"alvin davis",,"3752 corte bella hills ave",,"north las vegas","Nevada","89081","United States",NULL,"0",,"0","0",NULL,NULL
+"1412211853-9343","2014-12-21 18:53:46","3","93437214-21-12","account","0","15","0","165","106",NULL,NULL,"Robert M. Saverance",,"PO Box 283",,"Lamar","South Carolina","29069","United States",NULL,"0",,"0","0",NULL,NULL
+"1412211902-9343","2014-12-21 19:02:59","3","93437214-21-12","account","0","15","0","165","106",NULL,NULL,"Robert M. Saverance",,"PO Box 283",,"Lamar","South Carolina","29069","United States",NULL,"0",,"0","0",NULL,NULL
+"1412221452-d6fa","2014-12-22 14:52:27","3","d6fa1314-22-12","guest","0","15","0","207","106",NULL,NULL,"Timothy Nicely",,"4221 County Road 14",,"South Point","Ohio","45680","United States",NULL,"0",,"0","0",NULL,NULL
+"1412221543-8131","2014-12-22 15:43:55","3","81316114-22-12","account","0","0","0","12","0",NULL,NULL,"Richard Elzey",,"1824 NW State Road 116-90",,"Markle","Indiana","46770","United States",NULL,"0","Gift Subscription to: Tim Wilson
<br>1504 High Street, Decatur, IN 46733-3210","0","0",NULL,NULL
+"1412230852-fb1e","2014-12-23 08:52:15","3","fb1ef114-23-12","guest","0","0","0","12","0",NULL,NULL,"Laurance Henson",,"12B Cottage Street",,"Milford","New Hampshire","03055","United States",NULL,"0",,"0","0",NULL,NULL
+"1412241510-907f","2014-12-24 15:10:43","3","907f7014-24-12","guest","0","7.5","0","27.5","106",NULL,NULL,"Ken Jones",,"715 Mason Terrace Road","apt 28","Perry","Georgia","31069","United States",NULL,"0",,"0","0",NULL,NULL
+"1412271253-c7ab","2014-12-27 12:53:29","3","c7abcd14-27-12","account","0","0","0","12","0",NULL,NULL,"John Hubbs",,"230 Shannon Rd.",,"Hendersonville","North Carolina","28791","United States",NULL,"0",,"0","0",NULL,NULL
+"1412281211-1cba","2014-12-28 12:11:44","3","1cba2e13-23-02","account","0","0","0","12","0",NULL,NULL,"Philip A. Cole",,"1305 Apollo Dr.",,"Arnold","Missouri","63010","United States",NULL,"0",,"0","0",NULL,NULL
+"1412281403-b4ea","2014-12-28 14:03:22","3","b4ea5114-28-12","account","0","0","0","12","0",NULL,NULL,"Howard Dalton",,"18455 Plantation Court Drive",,"Pririeville","Louisiana","70769-3726","United States",NULL,"0",,"0","0",NULL,NULL
+"1412282043-cb5c","2014-12-28 20:43:07","3","cb5cf613-13-07","account","0","0","0","12","0",NULL,NULL,"Rodger Ellingwood",,"4461 Summerlin Place",,"Rock Hill","South Carolina","29732","United States",NULL,"0",,"0","0",NULL,NULL
+"1412291130-700e","2014-12-29 11:30:30","3","700eac14-29-12","guest","0","0","0","12","0",NULL,NULL,"John Tincher",,"125 E. Pewabic st",,"Ironwood","Michigan","49938","United States",NULL,"0",,"0","0",NULL,NULL
+"1412291419-91e6","2014-12-29 14:19:42","3","91e69514-29-12","guest","0","6.5","0","15.5","106",NULL,NULL,"Dean R. Larson",,"1849 Windfield Drive",,"Munster","Indiana","46321-5184","United States",NULL,"0",,"0","0",NULL,NULL
+"1412291620-e1c8","2014-12-29 16:20:11","1","e1c81314-29-12","guest","0","0","0","12","0",NULL,NULL,"Randy Heine","randy heine","P.O. box 3050",,"Carlsbad","New Mexico","88221-3050","United States",NULL,"0",,"0","0",NULL,NULL
+"1412291752-a06e","2014-12-29 17:52:59","1","a06e0f14-29-12","guest","0","7.5","0","21","106",NULL,NULL,"Charles Huddleston","Mizpah Mount Moriah Lodge No. 40","12030 New Halls Ferry Road",,"Florissant","Missouri","63033","United States",NULL,"0",,"0","0",NULL,NULL
+"1412292305-8885","2014-12-29 23:05:19","3","88852a14-29-12","guest","0","8.5","0","37","106",NULL,NULL,"Ted Bolte","Star In The West #33","2524 East Burdick Expressway",,"Minot","North Dakota","58701","United States",NULL,"0",,"0","0",NULL,NULL
+"1412300720-5ef5","2014-12-30 07:20:17","1","5ef57414-30-12","account","0","7.5","0","39.5","106",NULL,NULL,"Richard H. Geyer",,"165 N Washington Rd",,"West Sunbury","Pennsylvania","16061-2935","United States",NULL,"0",,"0","0",NULL,NULL
+"1412301254-dde4","2014-12-30 12:54:29","1","dde4c914-30-12","guest","0","0","0","12","0",NULL,NULL,"Robert Powers",,"47 Foxboro Drive",,"Rising Sun","Maryland","21911","United States",NULL,"0",,"0","0",NULL,NULL
+"1412301257-70dc","2014-12-30 12:57:43","3","70dcce14-30-12","guest","0","0","0","12","0",NULL,NULL,"Robert Powers",,"47 Foxboro Drive",,"Rising Sun","Maryland","21911","United States",NULL,"0",,"0","0",NULL,NULL
+"1412301456-6de3","2014-12-30 14:56:43","3","6de35f13-17-12","account","0","0","0","12","0",NULL,NULL,"Dusty Parsons",,"1549 Fairidge",,"Kingsport","Tennessee","37664","United States",NULL,"0",,"0","0",NULL,NULL
+"1412301457-1b92","2014-12-30 14:57:30","3","1b92d314-30-12","account","0","8.5","0","30.5","106",NULL,NULL,"Charles Ashley",,"3128 Fayburrow Drive",,"Reynoldsburg","Ohio","43068","United States",NULL,"0",,"0","0",NULL,NULL
+"1412301501-6de3","2014-12-30 15:01:50","3","6de35f13-17-12","account","0","0","0","12","0",NULL,NULL,"Bart Rowlett",,"228 Lakeview Ci",,"Kingsport","Tennessee","37663","United States",NULL,"0","This is a gift subscription to Bart from Dusty Parsons","0","0",NULL,NULL
+"1412311048-c529","2014-12-31 10:48:30","3","c529ba14-31-12","guest","0","7.5","0","27.5","106",NULL,NULL,"Bryan Hugerich",,"335 New road",,"Montague","New Jersey","07827","United States",NULL,"0",,"0","0",NULL,NULL
+"1412311546-6de3","2014-12-31 15:46:50","3","6de35f13-17-12","account","0","0","0","12","0",NULL,NULL,"Tim Sutton",,"6110 Temple Star Rd",,"Kingsport","Tennessee","37660","United States",NULL,"0","Gift Subscription to Timmy from Dusty Parsons","0","0",NULL,NULL
+"1412311640-e07e","2014-12-31 16:40:27","3","e07e0f14-31-12","account","0","15","0","155","106",NULL,NULL,"Keith Wilhite",,"2132 Vinewood",,"Pueblo","Colorado","81005","United States",NULL,"0",,"0","0",NULL,NULL
+"1501011225-82b9","2015-01-01 12:25:57","3","82b9fe15-01-01","account","0","7.5","0","27.5","106",NULL,NULL,"Neil Coy","Neil T. Coy, Sr.","146 N. Elmira Street",,"Athens","Pennsylvania","810-1325","United States",NULL,"0",,"0","0",NULL,NULL
+"1501021750-55db","2015-01-02 17:50:27","3","55dbdb13-15-11","account","0","0","0","12","0",NULL,NULL,"Dennis Vernon",,"2458 Five Shillings Road",,"Frederick","Maryland","21701","United States",NULL,"0",,"0","0",NULL,NULL
+"1501031146-7e51","2015-01-03 11:46:10","3","7e514215-03-01","guest","0","0","0","12","0",NULL,NULL,"Bradley Ottum",,"4556 Benderville Rd",,"Green Bay","Wisconsin","54311","United States",NULL,"0",,"0","0",NULL,NULL
+"1501031602-fb5f","2015-01-03 16:02:46","3","fb5f1815-03-01","guest","0","0","0","12","0",NULL,NULL,"Brian K. Phelps",,"155 Carl Drive",,"Plymouth","North Carolina","27962","United States",NULL,"0",,"0","0",NULL,NULL
+"1501041121-0e6a","2015-01-04 11:21:35","3","0e6aa415-04-01","guest","0","0","0","12","0",NULL,NULL,"Carl Hoecker",,"8703 Eaglebrook Ct",,"Alexandria","Virginia","22308","United States",NULL,"0",,"0","0",NULL,NULL
+"1501041555-2190","2015-01-04 15:55:27","3","21908615-04-01","account","0","8.5","0","45.5","106",NULL,NULL,"Keith Plummer ",,"10150 S Bullet Prairie Rd",,"Tishomingo","Oklahoma","73460","United States",NULL,"0",,"0","0",NULL,NULL
+"1501042028-aeda","2015-01-04 20:28:11","3","aeda1f15-04-01","guest","0","8.5","0","43.5","106",NULL,NULL,"Michael Jaffee",,"515 Lego Dr.",,"Charlottesville","Virginia","22911","United States",NULL,"0",,"0","0",NULL,NULL
+"1501042059-665b","2015-01-04 20:59:14","3","665bd315-04-01","account","0","11.5","0","75.5","106",NULL,NULL,"Andrew Spencer",,"312 WILLIS RD",,"FRANKLIN","Virginia","23851","United States",NULL,"0",,"0","0",NULL,NULL
+"1501042205-06b7","2015-01-04 22:05:28","3","06b7d415-04-01","account","0","0","0","12","0",NULL,NULL,"Merle Wade MD","Clinical Urology Associates","713 Goodyear Ave",,"Gadsden","Alabama","35903","United States",NULL,"0",,"0","0",NULL,NULL
+"1501051030-5910","2015-01-05 10:30:24","3","59101215-05-01","account","0","0","0","12","0",NULL,NULL,"Robert Henson",,"PO Box 709",,"Hearne","Texas","77859","United States",NULL,"0",,"0","0",NULL,NULL
+"1501051816-cbce","2015-01-05 18:16:07","3","cbcec315-05-01","guest","0","0","0","12","0",NULL,NULL,"Sott Ford",,"2229 Ironwood Dr. SW",,"Altoona","Iowa","50009","United States",NULL,"0",,"0","0",NULL,NULL
+"1501051823-cea6","2015-01-05 18:23:21","1","cea65d15-05-01","guest","0","4","0","25","106",NULL,NULL,"Chris Tilley",,"809 Misty morning ct.",,"O'fallon","Missouri","63366","United States",NULL,"0",,"0","0",NULL,NULL
+"1501052247-7f25","2015-01-05 22:47:02","3","7f252a15-05-01","guest","0","15","0","133","106",NULL,NULL,"Samuel Wade",,"12 Grasshopper Lane",,"Acton","Massachusetts","01720","United States",NULL,"0",,"0","0",NULL,NULL
+"1501061001-455e","2015-01-06 10:01:15","3","455ef113-03-12","account","0","0","0","12","0",NULL,NULL,"Thomas Winter",,"68 S Conger Avenue",,"Congers","New York","10920","United States",NULL,"0",,"0","0",NULL,NULL
+"1501061332-a48e","2015-01-06 13:32:04","3","a48e9b15-06-01","guest","0","15","0","133","106",NULL,NULL,"Karl Hargis","Deer Creek Lodge No. 510","8904 County Road 612",,"Mansfield","Texas","76063","United States",NULL,"0",,"0","0",NULL,NULL
+"1501101548-61c3","2015-01-10 15:48:37","3","61c30d15-10-01","account","0","8.5","0","30.5","106",NULL,NULL,"Jim Parham",,"3897 E. 72nd St.",,"Tulsa","Oklahoma","74136","United States",NULL,"0",,"0","0",NULL,NULL
+"1501101948-962a","2015-01-10 19:48:14","3","962a1915-10-01","account","0","0","0","12","0",NULL,NULL,"John Bartlett",,"1811 Fifth Ave.",,"Folsom","Pennsylvania","19033","United States",NULL,"0",,"0","0",NULL,NULL
+"1501101956-a24d","2015-01-10 19:56:59","3","a24d4915-10-01","guest","0","7.5","0","21.5","106",NULL,NULL,"Randy Hudson",,"1327 Hintz Rd",,"Sealy","Texas","77474","United States",NULL,"0",,"0","0",NULL,NULL
+"1501121210-5ee7","2015-01-12 12:10:08","1","5ee7a915-12-01","guest","0","8.5","0","47.5","106",NULL,NULL,"Daniel Streeter",,"13 Ravine drive",,"Newton","New Jersey","07860","United States",NULL,"0",,"0","0",NULL,NULL
+"1501131614-1041","2015-01-13 16:15:04","1","10414f15-13-01","account","0","0","0","12","0",NULL,NULL,"Herbert Davis",,"11994 Ferndale Street",,"Philadelphia","Pennsylvania","19116","United States",NULL,"0",,"0","0",NULL,NULL
+"1501141629-53e8","2015-01-14 16:29:23","3","53e89715-14-01","account","0","15","0","140","106",NULL,NULL,"John Beringer","Martinez Lodge 41","22 Kilgo Court",,"Pleasant Hill","California","94523","United States",NULL,"0",,"0","0",NULL,NULL
+"1501150823-2c71","2015-01-15 08:23:54","3","2c715315-15-01","account","0","0","0","16","106",NULL,NULL,"Michael Thoms",,"1132 16th Avenue",,"Saint Paul Park","Minnesota","55071","United States",NULL,"0",,"0","0",NULL,NULL
+"1501151400-9a89","2015-01-15 14:00:58","1","9a89ae15-15-01","account","0","15","0","113","106",NULL,NULL,"Jacob Dermott",,"1 Arbor Ct",,"Nappanee","Indiana","46550","United States",NULL,"0",,"0","0",NULL,NULL
+"1501151736-51bd","2015-01-15 17:36:34","3","51bd6d15-15-01","guest","0","7.5","0","27.5","106",NULL,NULL,"Robin Entrekin",,"507 Musgrove St",,"Clinton","South Carolina","29325","United States",NULL,"0",,"0","0",NULL,NULL
+"1501161219-9059","2015-01-16 12:19:45","3","90598315-16-01","guest","0","11.5","0","79.5","106",NULL,NULL,"Jack VanElzakker","Valley of Rochester","811 Ayrault Rd. suite 3",,"Fairport","New York","14450","United States",NULL,"0",,"0","0",NULL,NULL
+"1501171243-d849","2015-01-17 12:43:39","3","d8497715-17-01","guest","0","7.5","0","27.5","106",NULL,NULL,"Bob Baker",,"47 Dunwoodie Road",,"Glenmont","New York","12077","United States",NULL,"0",,"0","0",NULL,NULL
+"1501171332-eef8","2015-01-17 13:32:56","3","eef80415-17-01","account","0","0","0","36","0",NULL,NULL,"Jeff Bowman",,"2824 S Stoneridge Drive",,"Blue Springs","Missouri","64015","United States",NULL,"0","3-year subscription, not 3 copies of the ST Bulletin.","0","0",NULL,NULL
+"1501171620-824d","2015-01-17 16:20:46","3","824d2115-17-01","guest","0","10.5","0","53.5","106",NULL,NULL,"Kenneth Compton",,"PO Box 1165",,"Estero","Florida","33929","United States",NULL,"0",,"0","0",NULL,NULL
+"1501190047-a677","2015-01-19 00:47:03","3","a677fe13-04-11","account","0","8.5","0","34.5","106",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"0","0",NULL,NULL
+"1501191258-7c1b","2015-01-19 12:58:02","3","7c1bac15-19-01","guest","0","4","0","25","106",NULL,NULL,"phil terrell",,"673 county road 586",,"rogersville ","Alabama","35652","United States",NULL,"0",,"0","0",NULL,NULL
+"1501201049-9aab","2015-01-20 10:49:12","3","9aab5b15-20-01","guest","0","0","0","12","0",NULL,NULL,"James Rogerson",,"2310 Little Bear Court",,"Euless","Texas","76039","United States",NULL,"0",,"0","0",NULL,NULL
+"1501201430-2c83","2015-01-20 14:30:53","3","2c83c515-20-01","guest","0","0","0","12","0",NULL,NULL,"Jamal Anglin",,"25312 136th AVE SE",,"Kent","Washington","98042","United States",NULL,"0",,"0","0",NULL,NULL
+"1501201657-dd5d","2015-01-20 16:57:15","1","dd5de613-30-07","account","0","7.5","0","22.5","106",NULL,NULL,"George Morris","George Morris","5806 Vernedale Road",,"Charlotte","North Carolina","28212","United States",NULL,"0",,"0","0",NULL,NULL
+"1501221244-db10","2015-01-22 12:44:21","1","db101a15-22-01","account","0","8.5","0","36.5","106",NULL,NULL,"Steven Schmidt","Yellville lodge 117","450 Boatdock Road","P.O Box 281","Lakeview","Arkansas","72642","United States",NULL,"0",,"0","0",NULL,NULL
+"1501221513-42b5","2015-01-22 15:13:44","3","42b53a14-11-11","account","0","15","0","113","106",NULL,NULL,"JOSEPH K. BARBARA",,"289 Miller ave",,"Branchburg","New Jersey","08876","United States",NULL,"0",,"0","0",NULL,NULL
+"1501221747-3ceb","2015-01-22 17:47:04","3","3ceb8815-22-01","account","0","7.5","0","29.6","106",NULL,NULL,"A Metts",,"382 Gayle Ave.",,"San Antonio","Texas","78223","United States",NULL,"0",,"0","0",NULL,NULL
+"1501222200-3836","2015-01-22 22:00:05","1","38367015-22-01","account","0","8.5","0","43.5","106",NULL,NULL,"Scott Blosser",,"335 Serenity Road",,"Wheeling","West Virginia","26003","United States",NULL,"0",,"0","0",NULL,NULL
+"1501261306-7243","2015-01-26 13:06:00","3","7243fe15-26-01","account","0","7.5","0","27.5","106",NULL,NULL,"Ben Smith","none","442 Lakemont Drive",,"Chapin","South Carolina","29036","United States",NULL,"0",,"0","0",NULL,NULL
+"1501261858-3550","2015-01-26 18:58:50","3","3550db15-26-01","account","0","0","0","16","106",NULL,NULL,"David Pearson",,"13917 23rd Avenue SE",,"Mill Creek","Washington","98012","United States",NULL,"0",,"0","0",NULL,NULL
+"1501262127-ee0e","2015-01-26 21:27:28","3","ee0e9015-26-01","account","0","0","0","24","0",NULL,NULL,"Brent Ford",,"552 Moreboro Rd",,"Hatboro","Pennsylvania","19040","United States",NULL,"0","Please send one subscription to me and the other to:
<br>Jeffrey Ford, PM
<br>1408 Potomac Dr.
<br>Richardson, TX 75081","0","0",NULL,NULL
+"1501270932-cab8","2015-01-27 09:32:56","3","cab8a415-27-01","account","0","0","0","12","0",NULL,NULL,"Peter Pagani",,"22756 Red Bay Lane",,"Milton","Delaware","19968","United States",NULL,"0",,"0","0",NULL,NULL
+"1501271340-6554","2015-01-27 13:40:58","3","6554e815-27-01","account","0","15","0","107","106",NULL,NULL,"Carroll Campbell","Silentia Lodge 168 NJ","c/o 87 Bartholdi Ave",,"Butler","New Jersey","07405","United States",NULL,"0",,"0","0",NULL,NULL
+"1501281148-c5fa","2015-01-28 11:48:29","3","c5faaa15-28-01","guest","0","9.5","0","42.5","106",NULL,NULL,"Roy Berggren",,"2450 E. Carol Ave.",,"Mesa","Arizona","85204","United States",NULL,"0",,"0","0",NULL,NULL
+"1501281559-8978","2015-01-28 15:59:50","1","8978b715-28-01","account","0","0","0","12","0",NULL,NULL,"Jimmy Hunt","Jimmy M Hunt Jr","331-1 Metro Circle",,"Wilmington","North Carolina","28401","United States",NULL,"0",,"0","0",NULL,NULL
+"1501301222-8f1e","2015-01-30 12:22:34","3","8f1e3d15-30-01","account","0","7.5","0","27.5","106",NULL,NULL,"John Church",,"1425 Concord Ln",,"Altus","Oklahoma","73521","United States",NULL,"0",,"0","0",NULL,NULL
+"1501301628-527d","2015-01-30 16:28:32","3","527df015-30-01","account","0","8.5","0","35.5","106",NULL,NULL,"Robert Blankenhorn","Venus lodge #152","1250 Middle Bellville Rd",,"Mansfield","Ohio","44904","United States",NULL,"0",,"0","0",NULL,NULL
+"1501310628-e930","2015-01-31 06:28:04","1","e9304a15-31-01","guest","0","0","0","12","0",NULL,NULL,"Shelton Lattimore",,"161 Explorer Dr.",,"Cope","South Carolina","29038","United States",NULL,"0",,"0","0",NULL,NULL
+"1501311017-dele","2015-01-31 10:17:42","1","0","guest","0","0","0","12","0",NULL,NULL,,,,,,,,,NULL,"0",,"0","0",NULL,NULL
+"1501311021-dele","2015-01-31 10:21:21","1","0","account","0","0","0","12","0",NULL,NULL,,,,,,,,,NULL,"0",,"0","0",NULL,NULL
+"1501311035-7e4b","2015-01-31 10:35:45","1","7e4b2f15-06-01","account","0","8.5","0","36.5","106",NULL,NULL,"Steven Schmidt",,"450 Boatdock Road","Box 1","Lakeview","Arkansas","72642","United States",NULL,"0",,"0","0",NULL,NULL
+"1501311703-9142","2015-01-31 17:03:37","3","91425e15-31-01","guest","0","7.5","0","27.5","106",NULL,NULL,"Michael Holeman",,"406 N Bradley",,"Caney","Kansas","67333","United States",NULL,"0",,"0","0",NULL,NULL
+"1502012145-8ab0","2015-02-01 21:45:08","3","8ab0fc15-01-02","guest","0","0","0","12","0",NULL,NULL,"Eric Gamble",,"4012 Jasper Street",,"Metairie","Louisiana","70002","United States",NULL,"0",,"0","0",NULL,NULL
+"1502020102-e8fd","2015-02-02 01:02:17","3","e8fd3915-02-02","guest","0","7.5","0","27.5","106",NULL,NULL,"Bill Meyer",,"110 Franklin Ave.",,"La Grange","Kentucky","40031","United States",NULL,"0",,"0","0",NULL,NULL
+"1502031102-a249","2015-02-03 11:02:45","3","a2491513-25-03","account","0","0","0","5","106",NULL,NULL,"Timothy Nicely",,"4221 County Road 15",,"South Point","Ohio","45680","United States",NULL,"0",,"0","0",NULL,NULL
+"1502031110-a249","2015-02-03 11:10:44","3","a2491513-25-03","account","0","7.5","0","27.5","106",NULL,NULL,"Timothy Nicely",,"4221 County Road 15",,"South Point","Ohio","45680","United States",NULL,"0",,"0","0",NULL,NULL
+"1502031715-5923","2015-02-03 17:15:52","3","5923e815-03-02","guest","0","7.5","0","26.5","106",NULL,NULL,"travis bohannon",,"4860 tortuga trail",,"wichita falls","Texas","76309","United States",NULL,"0",,"0","0",NULL,NULL
+"1502041430-8672","2015-02-04 14:30:14","3","86725115-04-02","guest","0","7.5","0","39.5","106",NULL,NULL,"Frederick Scozzafava",,"22 Park St.",,"Gouverneur","New York","13642","United States",NULL,"0",,"0","0",NULL,NULL
+"1502050943-001c","2015-02-05 09:43:33","1","001ce515-05-02","account","0","0","0","12","0",NULL,NULL,"Raymond Heinrich",,"251 Kimball Road",,"Concord","Virginia","24538","United States",NULL,"0",,"0","0",NULL,NULL
+"1502051925-399b","2015-02-05 19:25:38","3","399b1715-05-02","account","0","9.5","0","57","106",NULL,NULL,"Matthew Lewis",,"70538 Abita Ave",,"Mandeville","Louisiana","70471","United States",NULL,"0",,"0","0",NULL,NULL
+"1502060656-5b9e","2015-02-06 06:56:50","3","5b9eea15-06-02","guest","0","0","0","12","0",NULL,NULL,"Charlie Babb",,"1300 Jamestown",,"Edmond","Oklahoma","73003","United States",NULL,"0",,"0","0",NULL,NULL
+"1502061341-4bc4","2015-02-06 13:41:59","3","4bc42d15-06-02","account","0","20","0","270","106",NULL,NULL,"Reid Gardiner","Grand Lodge of Montana","425 N Park Ave",,"Helena","Montana","59601","United States",NULL,"0",,"0","0",NULL,NULL
+"1502061628-0c34","2015-02-06 16:28:20","1","0c34b115-06-02","guest","0","0","0","5","106",NULL,NULL,"Jerald Boyd","Prineville Lodge 76 (OR)","10311 SE Juniper Canyon Road",,"Prineville","Oregon","97754","United States",NULL,"0",,"0","0",NULL,NULL
+"1502071034-dele","2015-02-07 10:34:45","1","0","account","0","0","0","12","0",NULL,NULL,,,,,,,,,NULL,"0",,"0","0",NULL,NULL
+"1502071043-eb55","2015-02-07 10:43:45","3","eb553315-07-02","account","0","0","0","12","0",NULL,NULL,"Shelton Lattimore",,"161 Explorer Dr.",,"Cope","South Carolina","29038","United States",NULL,"0",,"0","0",NULL,NULL
+"1502071149-e18e","2015-02-07 11:49:09","3","e18e2215-07-02","account","0","15","0","95","106",NULL,NULL,"James Robinson","Spearfish Masonic Lodge # 18","3355 E Colorado Blvd",,"Spearfish","South Dakota","57783","United States",NULL,"0",,"0","0",NULL,NULL
+"1502081435-f4bf","2015-02-08 14:35:05","1","f4bf5315-08-02","guest","0","0","0","5","106",NULL,NULL,"Jerald Boyd","Prineville Lodge 76 (OR(","10311 SE Juniper Canyon Road",,"Prineville","Oregon","97754","United States",NULL,"0",,"0","0",NULL,NULL
+"1502081443-54e0","2015-02-08 14:43:27","3","54e0d115-08-02","guest","0","0","0","5","106",NULL,NULL,"Jerald Boyd","Prineville Lodge 76","10311 SE Juniper Canyon Road",,"Prineville","Oregon","97754","United States",NULL,"0","Ship Priority Mail -4 days or less.","0","0",NULL,NULL
+"1502081929-d5e0","2015-02-08 19:29:55","3","d5e08315-08-02","guest","0","0","0","12","0",NULL,NULL,"Lyle Hubbard",,"1123 S. 15th Place",,"Milwaukee","Wisconsin","53204","United States",NULL,"0",,"0","0",NULL,NULL
+"1502082152-622d","2015-02-08 21:52:26","3","622d4315-08-02","account","0","0","0","12","0",NULL,NULL,"Robert Smith","Lebanon Lodge #116","118 Fairfield Street",,"Oakland","Maine","04963","United States",NULL,"0",,"0","0",NULL,NULL
+"1502112053-d2d2","2015-02-11 20:53:27","1","d2d29613-19-04","account","0","0","0","3","106",NULL,NULL,"Craig Harm",,"425 Maple St",,"Fontanelle","Iowa","50846","United States",NULL,"0",,"0","0",NULL,NULL
+"1502112120-d2d2","2015-02-11 21:20:28","3","d2d29613-19-04","account","0","0","0","3","106",NULL,NULL,"Craig Harm",,"425 Maple St",,"Fontanelle","Iowa","50846","United States",NULL,"0",,"0","0",NULL,NULL
+"1502121641-28fd","2015-02-12 16:41:18","3","28fd2015-12-02","guest","0","0","0","12","0",NULL,NULL,"Andrew Pachefsky",,"1904 E Kenmore Pl",,"Shorewood","Wisconsin","53211","United States",NULL,"0",,"0","0",NULL,NULL
+"1502122139-1792","2015-02-12 21:39:32","3","1792c014-20-03","account","0","0","0","68","0",NULL,NULL,"Calvin D Shaver",,"30333 Wellton Mohawk Dr","Coach Stop RV Park #63","Wellton","Arizona","85356","United States",NULL,"0",,"0","0",NULL,NULL
+"1502130906-f09f","2015-02-13 09:06:51","3","f09f4515-13-02","guest","0","8.5","0","32.5","106",NULL,NULL,"melvin stimmel",,"32 whisconier vlg",,"brookfield","Connecticut","06804-3821","United States",NULL,"0",,"0","0",NULL,NULL
+"1502131115-4b2d","2015-02-13 11:15:50","3","4b2d1115-13-02","account","0","15","0","96","106",NULL,NULL,"Riley Miller","Riley C. Miller","PO Box 311284",,"New Braunfels","Texas","78131","United States",NULL,"0",,"0","0",NULL,NULL
+"1502142013-f0a3","2015-02-14 20:13:21","3","f0a3c214-11-03","account","0","0","0","123","0",NULL,NULL,"Daniel Ruiz-Isasi",,"8302 Our Road",,"Clermont","Florida","34714","United States",NULL,"0",,"0","0",NULL,NULL
+"1502142347-0515","2015-02-14 23:47:37","3","05152913-05-05","account","0","0","0","123","0",NULL,NULL,"James Drury",,"120 Drummond Drive",,"Elizabeth City","North Carolina","27909","United States",NULL,"0",,"0","0",NULL,NULL
+"1502151135-73a1","2015-02-15 11:35:06","3","73a13f15-15-02","account","0","0","0","12","0",NULL,NULL,"Mark Angstrom",,"7636 Mandarin Drive",,"Boca Raton","Florida","33433","United States",NULL,"0",,"0","0",NULL,NULL
+"1502161344-11a6","2015-02-16 13:44:47","1","11a68015-16-02","account","0","7.5","0","27.5","106",NULL,NULL,"Reginald Davis",,"224 North Highway 67","Suite 288","Florissant","Missouri","63031","United States",NULL,"0",,"0","0",NULL,NULL
+"1502161414-7581","2015-02-16 14:14:43","1","75814015-16-02","account","0","7.5","0","27.5","106",NULL,NULL,"Hubert Semeleer","Hubert Semeleer","Piedra Plat 55D","ARUBA D.W.I.","Aruba DWI.","Alabama","------------","United States",NULL,"0",,"0","0",NULL,NULL
+"1502161424-11a6","2015-02-16 14:24:59","3","11a68015-16-02","account","0","7.5","0","27.5","106",NULL,NULL,"Reginald Davis",,"224 North Highway 67","Suite 288","Florissant","Missouri","63031","United States",NULL,"0",,"0","0",NULL,NULL
+"1502161456-7581","2015-02-16 14:56:19","1","75814015-16-02","account","0","7.5","0","27.5","106",NULL,NULL,"Hubert Semeleer","Hubert Semeleer","Piedra Plat 55D","ARUBA D.W.I.","Aruba DWI.","Alabama","------------","United States",NULL,"0",,"0","0",NULL,NULL
+"1502161850-cb36","2015-02-16 18:50:43","3","cb36f213-13-04","account","0","0","0","68","0",NULL,NULL,"Ridge Smith",,"PO Box 851123",,"Yukon","Oklahoma","73085","United States",NULL,"0",,"0","0",NULL,NULL
+"1502171636-0abe","2015-02-17 16:36:13","3","0abe7815-17-02","guest","0","0","0","285","106",NULL,NULL,"Zach Holmes",,"PO Box 34",,"Loachapoka","Alabama","36865-0034","United States",NULL,"0",,"0","0",NULL,NULL
+"1502171825-3649","2015-02-17 18:25:22","3","36495814-25-02","account","0","0","0","80","0",NULL,NULL,"Michael Carpenter",,"6021 Riverbend Blvd",,"Baton Rouge","Louisiana","70820","United States",NULL,"0",,"0","0",NULL,NULL
+"1502172218-1ea0","2015-02-17 22:18:26","3","1ea08615-17-02","account","0","0","0","123","0",NULL,NULL,"David Eschrich",,"917 Haymarket Dr.",,"Lakeland","Florida","33809","United States",NULL,"0",,"0","0",NULL,NULL
+"1502180941-58ca","2015-02-18 09:41:29","3","58ca5a15-18-02","guest","0","9.5","0","49.5","106",NULL,NULL,"Robert Taupier","Robert Taupier","75 Lamplighter Drive",,"Shrewsbury","Massachusetts","01545","United States",NULL,"0",,"0","0",NULL,NULL
+"1502181427-b968","2015-02-18 14:27:31","3","b9683315-18-02","account","0","0","0","12","0",NULL,NULL,"juan santiago","Delight in God Universal life mission","56 Geogia King Village",,"newark","New Jersey","07107","United States",NULL,"0",,"0","0",NULL,NULL
+"1502190836-739f","2015-02-19 08:36:07","3","739fbe15-19-02","account","0","0","0","5","106",NULL,NULL,"Mitch Mertes",,"P.O. Box 15432",,"Boise","Idaho","83715-5432","United States",NULL,"0",,"0","0",NULL,NULL
+"1502191535-4528","2015-02-19 15:35:09","1","4528b515-19-02","account","0","0","0","12","0",NULL,NULL,"KEITH Cooper",,"5516 w pueblo ave",,"Phoenix ","Arizona","85043","United States",NULL,"0",,"0","0",NULL,NULL
+"1502191724-0500","2015-02-19 17:24:19","3","05008115-19-02","account","0","11.5","0","85.5","106",NULL,NULL,"Don Helberg",,"45 Cerro Del Alamo",,"Santa Fe","New Mexico","87507","United States",NULL,"0",,"0","0",NULL,NULL
+"1502221424-eb2a","2015-02-22 14:24:04","1","eb2a8815-22-02","account","0","0","0","12","0",NULL,NULL,"Michael R. Yedinak",,"21117 MOUNT EVANS CT",,"RENO","Nevada","89508-8098","United States",NULL,"0",,"0","0",NULL,NULL
+"1502241711-b110","2015-02-24 17:11:20","3","b110bc15-24-02","account","0","0","0","17","106",NULL,NULL,"Edwin Berroa",,"1620 Parker St Apt 3",,"Bronx","New York","10462","United States",NULL,"0",,"0","0",NULL,NULL
+"1502261315-c744","2015-02-26 13:15:10","3","c744d415-26-02","guest","0","0","0","12","0",NULL,NULL,"Andrew BE",,"PO Box 1867",,"Grand Junction","Colorado","81502","United States",NULL,"0",,"0","0",NULL,NULL
+"1502261434-d944","2015-02-26 14:34:24","3","d944ed15-26-02","guest","0","0","0","68","0",NULL,NULL,"Marcus Dugger",,"3416 Estes Park Dr.",,"Snellville","Georgia","30039","United States",NULL,"0",,"0","0",NULL,NULL
+"1502270827-05f6","2015-02-27 08:27:29","5","05f6ba15-27-02","guest","0","7.5","0","21.5","106",NULL,NULL,"Richard Martindale","Richard Martindale","PO Box 109",,"Boutte","Louisiana","70039","United States",NULL,"0",,"0","0",NULL,NULL
+"1502281022-5472","2015-02-28 10:22:20","3","54724815-28-02","guest","0","4","0","13","106",NULL,NULL,"Kevin Stogner","Kevin's crib","3324 Maplewood dr",,"North Augusta","South Carolina","29841","United States",NULL,"0",,"0","0",NULL,NULL
+"1502281218-d5d6","2015-02-28 12:18:09","3","d5d6a615-28-02","guest","0","7.5","0","27.5","106",NULL,NULL,"Vincent Capone","-none","318 Brookline Ave.",,"Cherry Hill","New Jersey","08002","United States",NULL,"0",,"0","0",NULL,NULL
+"1502282327-ca65","2015-02-28 23:27:35","3","ca650715-28-02","account","0","7.5","0","27.5","106",NULL,NULL,"Jerrick Simbol",,"10550 Haverhill Lane",,"Huntley","Illinois","60142","United States",NULL,"0",,"0","0",NULL,NULL
+"1503010300-8463","2015-03-01 03:00:35","1","8463b715-01-03","account","0","0","0","12","0",NULL,NULL,"Owen Shieh",,"98-1457 Kaahumanu St., Apt. F",,"Aiea","Hawaii","96701","United States",NULL,"0",,"0","0",NULL,NULL
+"1503010828-44dd","2015-03-01 08:28:01","5","44dd5e15-01-03","guest","0","0","0","12","0",NULL,NULL,"Robert Groves",,"2271 Skint Chestnut Drive",,"Lithia Springs","Georgia","30122","United States",NULL,"0",,"0","0",NULL,NULL
+"1503012320-306b","2015-03-01 23:20:52","3","306b7a15-01-03","guest","0","0","0","68","0",NULL,NULL,"Phillip Cheek",,"6339 Dr Thomas Walker Rd",,"Rose Hill","Virginia","24281","United States",NULL,"0",,"0","0",NULL,NULL
+"1503021132-cc30","2015-03-02 11:32:41","3","cc308015-02-03","account","0","0","0","12","0",NULL,NULL,"Kenneth Thompson",,"1682 Smokehouse Drive",,"Cordova","Tennessee","38016","United States",NULL,"0",,"0","0",NULL,NULL
+"1503021145-e450","2015-03-02 11:45:52","3","e4500215-02-03","guest","0","0","0","12","0",NULL,NULL,"James McLaughlin",,"12161 Duttlinger Lane",,"Wheatfield","Indiana","46392","United States",NULL,"0",,"0","0",NULL,NULL
+"1503021621-087f","2015-03-02 16:21:37","3","087f8a15-02-03","account","0","0","0","166","0",NULL,,"Joyce Lane","Joyce Lane","9252 Dibble Ave NW",,"Seattle","Alabama","98117","United States","Ship to Washington State. Error in ordering process. PayPal accepted payment.","0",,"0","0",NULL,"0"
+"1503041534-05b3","2015-03-04 15:34:21","3","05b3c413-21-05","account","0","0","0","68","0",NULL,NULL,"Donald MacCormick",,"17000 E. 44th Street",,"Independence","Missouri","64055","United States",NULL,"0",,"0","0",NULL,NULL
+"1503042026-7ee9","2015-03-04 20:26:33","3","7ee94a15-04-03","account","0","8.5","0","45.5","106",NULL,NULL,"Paul Schlehr",,"2200 Van Diest Road",,"Winnemucca","Nevada","89445","United States",NULL,"0",,"0","0",NULL,NULL
+"1503051028-7810","2015-03-05 10:28:16","3","7810b915-05-03","account","0","9.5","0","41","106",NULL,NULL,"Robert Potts",,"2521 Kingston Pike","Apt 2001","Knoxville","Tennessee","37919","United States",NULL,"0",,"0","0",NULL,NULL
+"1503051055-f41b","2015-03-05 10:55:14","1","f41bfd15-05-03","account","0","0","0","166","0",NULL,NULL,"Thomas Thornton",,"11 Adelphia Rd",,"Parsippany","New Jersey","07054","United States",NULL,"0",,"0","0",NULL,NULL
+"1503051631-85ff","2015-03-05 16:31:06","3","85ffff15-05-03","guest","0","0","0","12","0",NULL,NULL,"Richard Whalen",,"1711 Hickory Gate Dr. S.",,"Dunedin","Florida","34698-2413","United States",NULL,"0",,"0","0",NULL,NULL
+"1503061338-c26d","2015-03-06 13:38:14","3","c26d8913-16-05","account","0","0","0","123","0",NULL,NULL,"Robert Drzewucki","Robert Drzewucki","118 Brockmoore Drive",,"East Amherst","New York","14051","United States",NULL,"0",,"0","0",NULL,NULL
+"1503070713-7e4b","2015-03-07 07:13:17","5","7e4b2f15-06-01","account","0","11.5","0","65.5","106",NULL,NULL,"Steven Schmidt","Yellville Lodge 117","450 Boatdock Road","Box 1","Lakeview","Arkansas","72642","United States",NULL,"0",,"0","0",NULL,NULL
+"1503081414-4498","2015-03-08 14:14:56","3","44988e15-08-03","guest","0","0","0","12","0",NULL,NULL,"Philip Brooks",,"405 Greear Place",,"Herndon","Virginia","20170","United States",NULL,"0",,"0","0",NULL,NULL
+"1503081418-357e","2015-03-08 14:18:27","3","357e4d15-08-03","guest","0","0","0","12","0",NULL,NULL,"Joe Brooks","c/o Manorcare","1070 Stouffer Ave",,"Chambersburg","Pennsylvania","17201","United States",NULL,"0",,"0","0",NULL,NULL
+"1503082234-2e97","2015-03-08 22:34:29","3","2e972715-08-03","account","0","0","0","80","0",NULL,NULL,"John Brobst",,"5 West Elm Street",,"Tamaqua","Pennsylvania","18252","United States",NULL,"0",,"0","0",NULL,NULL
+"1503091320-2829","2015-03-09 13:20:03","3","2829bc15-09-03","account","0","0","0","12","0",NULL,NULL,"Charles Francis",,"P.O.Box 342",,"East Bridgewater","Massachusetts","02333","United States",NULL,"0",,"0","0",NULL,NULL
+"1503110933-d16e","2015-03-11 09:33:11","3","d16e9b15-11-03","account","0","0","0","12","0",NULL,NULL,"David Madara",,"6678 Harding Highway",,"Mays Landing","New Jersey","08330","United States",NULL,"0",,"0","0",NULL,NULL
+"1503111317-419f","2015-03-11 13:17:29","3","419f2915-11-03","account","0","0","0","16","106",NULL,NULL,"fateral #37",,"407 victory place dr",,"locust grove","Georgia","30248","United States",NULL,"0",,"0","0",NULL,NULL
+"1503111417-a28d","2015-03-11 14:17:37","3","a28d8f13-19-08","account","0","20","0","487.6","106",NULL,NULL,"Tom Hancock",,"2801 Collard Road",,"Arlington","Texas","76017","United States",NULL,"0","I would also like to get items #103LF, 104PI, 112DS, and 312SF (1 each) added to order, separately is ok. Thanks, Tom Hancock","0","0",NULL,NULL
+"1503111545-aeae","2015-03-11 15:45:16","3","aeaee315-11-03","account","0","0","0","12","0",NULL,NULL,"Sergio Perez",,"8140 SW 132 Street",,"Pinecrest","Florida","33156","United States",NULL,"0","I am an existing subscriber. #157702 640","0","0",NULL,NULL
+"1503121130-18b3","2015-03-12 11:30:38","3","18b3cf15-12-03","guest","0","8.5","0","35.5","106",NULL,NULL,"William Muncy",,"8po box 873",,"Annville","Kentucky","40402","United States",NULL,"0",,"0","0",NULL,NULL
+"1503121239-1add","2015-03-12 12:39:11","3","1add6115-12-03","guest","0","0","0","17","106",NULL,NULL,"Christopher Rhody",,"670 N Wade Avenue",,"Washington","Pennsylvania","15301","United States",NULL,"0",,"0","0",NULL,NULL
+"1503121422-4126","2015-03-12 14:22:17","3","4126bf15-12-03","account","0","11.5","0","64.5","106",NULL,NULL,"Mike Rodman",,"710 Odde Pl",,"Rapid City","South Dakota","57701","United States",NULL,"0",,"0","0",NULL,NULL
+"1503131825-4379","2015-03-13 18:25:34","3","43790d15-13-03","account","0","0","0","12","0",NULL,NULL,"James Cooper",,"190 Talmadge Dr",,"Springfield","Massachusetts","01118","United States",NULL,"0",,"0","0",NULL,NULL
+"1503181232-0d67","2015-03-18 12:32:23","3","0d678115-18-03","account","0","0","0","281","0",NULL,NULL,"Tom McGuire","Georgetown Mortgage","4819 Williams Dr",,"Georgetown","Texas","78633","United States",NULL,"0",,"0","0",NULL,NULL
+"1503201811-80f4","2015-03-20 18:11:48","3","80f4b715-20-03","guest","0","9.5","0","376","106",NULL,NULL,"Olafur Magnusson","Olafur Magnusson","6200 Midnight Pass Rd","Siesta Duens","Sarasota","Florida","34242","United States",NULL,"0","I will stay at this address to April 6th and the delivery has to be guaranteed befor that time.","0","0",NULL,NULL
+"1503210839-4b0b","2015-03-21 08:39:03","3","4b0b8a15-21-03","account","0","0","0","12","0",NULL,NULL,"William Miller",,"352 Woolf Road",,"Milford","New Jersey","08848","United States",NULL,"0",,"0","0",NULL,NULL
+"1503211046-4911","2015-03-21 10:46:57","3","49119515-21-03","guest","0","0","0","68","0",NULL,NULL,"John Zabel",,"371 Lyndon Rd",,"Fairport","New York","14450","United States",NULL,"0",,"0","0",NULL,NULL
+"1503212335-905a","2015-03-21 23:35:41","3","905a0b15-21-03","guest","0","0","0","281","0",NULL,NULL,"Harry Koenen","Harry Koenen","10888 East Koenen Road",,"Palmer","Alaska","99645","United States",NULL,"0",,"0","0",NULL,NULL
+"1503230959-1cc8","2015-03-23 09:59:03","3","1cc8ad15-23-03","guest","0","0","0","4","106",NULL,NULL,"Carolyn Eigel",,"#10 Lily St.",,"Greenville, ","South Carolina","29617","United States",NULL,"0",,"0","0",NULL,NULL
+"1503231010-2a9f","2015-03-23 10:10:44","3","2a9fe515-23-03","guest","0","0","0","4","106",NULL,NULL,"Carolyn Eigel",,"#10 Lily St.",,"Greenville,","South Carolina","29617","United States",NULL,"0",,"0","0",NULL,NULL
+"1503231017-1482","2015-03-23 10:17:42","3","1482dc15-23-03","guest","0","4","0","13","106",NULL,NULL,"Carolyn Eigel",,"#10 Lily St.",,"Greenville,","South Carolina","29617","United States",NULL,"0",,"0","0",NULL,NULL
+"1503231029-18f1","2015-03-23 10:29:50","3","18f15615-23-03","guest","0","7.5","0","24.5","106",NULL,NULL,"Carolyn Eigel",,"#10 Lily St.",,"Greenville,","South Carolina","29617","United States",NULL,"0",,"0","0",NULL,NULL
+"1503231434-6664","2015-03-23 14:34:26","3","66649515-23-03","guest","0","0","0","68","0",NULL,NULL,"Phillip Walker",,"1782 Rockdale Cir.",,"Snellville","Georgia","30078","United States",NULL,"0",,"0","0",NULL,NULL
+"1503241548-55aa","2015-03-24 15:48:52","3","55aae715-24-03","guest","0","0","0","68","0",NULL,NULL,"August Molitano",,"PO Box 427",,"Riverton","Connecticut","06065-0427","United States",NULL,"0",,"0","0",NULL,NULL
+"1503241601-ad08","2015-03-24 16:01:57","3","ad089a13-16-02","account","0","0","0","68","0",NULL,NULL,"John LeRoy",,"16161 Point Lookout Rd.",,"Lexington Park","Maryland","20653","United States",NULL,"0",,"0","0",NULL,NULL
+"1503241626-bce0","2015-03-24 16:26:59","3","bce04815-13-02","account","0","11.5","0","63.5","106",NULL,NULL,"Michael Perez",,"86-23 115 street",,"Richmond Hill","New York","11418","United States",NULL,"0",,"0","0",NULL,NULL
+"1503250928-917d","2015-03-25 09:28:34","3","917da315-25-03","guest","0","0","0","166","0",NULL,NULL,"Kurt Gazow",,"4223 Northridge Way",,"Bellingham","Washington","98226","United States",NULL,"0",,"0","0",NULL,NULL
+"1503251010-ebed","2015-03-25 10:10:35","3","ebede215-25-03","guest","0","0","0","166","0",NULL,NULL,"Matthew Appel",,"18229 60th Ave. W",,"Lynnwood","Washington","98037","United States",NULL,"0",,"0","0",NULL,NULL
+"1503251343-895c","2015-03-25 13:43:22","3","895c5015-25-03","account","0","0","0","123","0",NULL,NULL,"Todd Johnstone","WA Masonic Charities","4970 Bridgeport Way W","Library and Museum","University Place","Washington","98467","United States",NULL,"0",,"0","0",NULL,NULL
+"1503251449-acb2","2015-03-25 14:49:35","3","acb23714-11-09","account","0","0","0","68","0",NULL,NULL,"Dale Lynch",,"1509 Pine Avenue",,"Voorhees","New Jersey","08043","United States",NULL,"0",,"0","0",NULL,NULL
+"1503260542-7709","2015-03-26 05:42:41","3","77097115-26-03","guest","0","4","0","10","106",NULL,NULL,"Charles Matheney",,"109 N Sycamore St",,"Flat Rock","Illinois","62427","United States",NULL,"0",,"0","0",NULL,NULL
+"1503261358-4533","2015-03-26 13:58:54","3","45338f13-28-04","account","0","0","0","60","0",NULL,NULL,"Charles Knapp Jr",,"111 Fifth Street",,"Narrowsburg","New York","12764","United States",NULL,"0","Please renew my subscription to the STB for whatever period of time $60 will buy","0","0",NULL,NULL
+"1503261502-6963","2015-03-26 15:02:13","3","69636d15-26-03","guest","0","7.5","0","34.5","106",NULL,NULL,"jeff flint",,"PO Box 134",,"Arena","Wisconsin","53503","United States",NULL,"0",,"0","0",NULL,NULL
+"1503270829-758d","2015-03-27 08:29:47","3","758dbd15-27-03","guest","0","11.5","0","65.5","106",NULL,NULL,"Shem Peachey","Sacramento Lodge No. 24","3110 Abbott Ave",,"Alamogordo","New Mexico","88310","United States",NULL,"0",,"0","0",NULL,NULL
+"1503271114-7a5f","2015-03-27 11:14:18","3","7a5f0f14-25-03","account","0","0","0","12","0",NULL,NULL,"KIRBY MARCHAND",,"3402 Fieldcrest Drive",,"North Versailles","Pennsylvania","15137","United States",NULL,"0",,"0","0",NULL,NULL
+"1503271423-acb5","2015-03-27 14:23:56","3","acb52315-27-03","guest","0","0","0","123","0",NULL,NULL,"Daniel Rose",,"11196 Chippewa Drive",,"Warren","Michigan","48093-1642","United States",NULL,"0",,"0","0",NULL,NULL
+"1503271431-3c49","2015-03-27 14:31:03","3","3c49aa13-19-07","account","0","0","0","123","0",NULL,NULL,"Dennis Block",,"194 Lewis Road",,"Hampstead","North Carolina","28443","United States",NULL,"0",,"0","0",NULL,NULL
+"1503271701-92b4","2015-03-27 17:01:00","3","92b41115-27-03","guest","0","0","0","12","0",NULL,NULL,"John Zabel",,"371 Lyndon Rd",,"Fairport","New York","14450","United States",NULL,"0",,"0","0",NULL,NULL
+"1503272024-eeca","2015-03-27 20:24:53","3","eecaf615-27-03","guest","0","0","0","73","106",NULL,NULL,"T David Jordan",,"1661 HWY 177",,"Russellville","Alabama","35654","United States",NULL,"0",,"0","0",NULL,NULL
+"1503281343-ad08","2015-03-28 13:43:49","3","ad089a13-16-02","account","0","11.5","0","65.5","106",NULL,NULL,"John LeRoy",,"16161 Point Lookout Rd.",,"Lexington Park","Maryland","20653","United States",NULL,"0",,"0","0",NULL,NULL
+"1503281703-b0fb","2015-03-28 17:03:06","3","b0fb7015-28-03","guest","0","0","0","68","0",NULL,NULL,"Frank Loui","Scottish Rite","2850 19th Avenue",,"San Francisco","California","94132-1602","United States",NULL,"0",,"0","0",NULL,NULL
+"1503281908-ef11","2015-03-28 19:08:02","5","ef11c913-10-08","account","0","0","0","12","0",NULL,NULL,"david saunders",,"1129 bellevue rd",,"halifax","Virginia","24558","United States",NULL,"0",,"0","0",NULL,NULL
+"1503281911-ef11","2015-03-28 19:11:50","3","ef11c913-10-08","account","0","0","0","12","0",NULL,NULL,"david saunders",,"1129 bellevue rd",,"halifax","Virginia","24558","United States",NULL,"0",,"0","0",NULL,NULL
+"1503290916-b80e","2015-03-29 09:16:19","3","b80ed215-29-03","guest","0","0","0","72.2","106",NULL,NULL,"P.J. Bridenstine",,"310 West Main Street",,"Osakis","Minnesota","56360","United States",NULL,"0",,"0","0",NULL,NULL
+"1503291349-b9ee","2015-03-29 13:49:19","1","b9ee4e15-29-03","account","0","0","0","12","0",NULL,NULL,"Joe Fontana",,"3520 Indiana Ave",,"Baker City","Oregon","97814","United States",NULL,"0",,"0","0",NULL,NULL
+"1503291352-b9ee","2015-03-29 13:52:56","3","b9ee4e15-29-03","account","0","0","0","12","0",NULL,NULL,"Joe Fontana",,"3520 Indiana Ave",,"Baker City","Oregon","97814","United States",NULL,"0",,"0","0",NULL,NULL
+"1503301419-6d6b","2015-03-30 14:19:06","3","6d6b9513-05-04","account","0","0","0","12","0",NULL,NULL,"William R. Fuzia",,"2115 Fulton Street",,"Bluefield","West Virginia","24701","United States",NULL,"0",,"0","0",NULL,NULL
+"1503302000-a9ab","2015-03-30 20:00:30","1","a9ab8a15-30-03","guest","0","0","0","12","0",NULL,NULL,"George Lupo","G Lupo","19240 Loranger Trace",,"Loranger","Louisiana","70446","United States",NULL,"0",,"0","0",NULL,NULL
+"1503311358-6750","2015-03-31 13:58:05","3","67505c15-31-03","guest","0","8.5","0","36.5","106",NULL,NULL,"Donald Anderson","Durango/San Juan Lodge #46","10914 State Hwy 172",,"Ignacio","Colorado","81137","United States",NULL,"0",,"0","0",NULL,NULL
+"1503311439-12d2","2015-03-31 14:39:58","3","12d2fe13-06-05","account","0","0","0","68","0",NULL,NULL,"Michael Fischer","Ameriprise Financial","408 W Mountain St","Suite 101","Kernersville","North Carolina","27284","United States",NULL,"0",,"0","0",NULL,NULL
+"1503311611-f9fb","2015-03-31 16:11:08","1","f9fb4d14-13-03","account","0","0","0","123","0",NULL,NULL,"David Doan",,"12010 Alderbrook Street",,"Moorpark","California","93021-3130","United States",NULL,"0",,"0","0",NULL,NULL
+"1503311838-c2f5","2015-03-31 18:38:28","5","c2f50715-31-03","account","0","0","0","12","0",NULL,NULL,"Mike Mahaffey",,"8210 Pelham Dr",,"Westerville","Ohio","43081","United States",NULL,"0",,"0","0",NULL,NULL
+"1503311842-c2f5","2015-03-31 18:42:55","3","c2f50715-31-03","account","0","0","0","12","0",NULL,NULL,"Mike Mahaffey",,"8210 Pelham Dr",,"Westerville","Ohio","43081","United States",NULL,"0",,"0","0",NULL,NULL
+"1503312116-d0f7","2015-03-31 21:16:28","3","d0f78d15-31-03","guest","0","8.5","0","36.5","106",NULL,NULL,"Paul Levin","Rising Sun Lodge","9 Mennen Road",,"Schuylerville","New York","12871","United States",NULL,"0",,"0","0",NULL,NULL
+"1504011337-5e61","2015-04-01 13:37:56","3","5e615715-01-04","account","0","0","0","68","0",NULL,NULL,"Raymond Hunter",,"1",,"y","Arizona","8","United States",NULL,"0",,"0","0",NULL,NULL
+"1504011715-e2e1","2015-04-01 17:15:26","3","e2e13c15-01-04","account","0","9.5","0","41.5","106",NULL,NULL,"Emil Ewald",,"156 Alwood Lane",,"Naples","Florida","34105","United States",NULL,"0",,"0","0",NULL,NULL
+"1504021105-6d6b","2015-04-02 11:05:09","3","6d6b9513-05-04","account","0","0","0","123","0",NULL,NULL,"William R. Fuzia",,"2115 Fulton Street",,"Bluefield","West Virginia","24701","United States",NULL,"0",,"0","0",NULL,NULL
+"1504021653-fbd3","2015-04-02 16:53:21","3","fbd38914-07-04","account","0","0","0","68","0",NULL,NULL,"Marcus Dugger",,"3416 estes Park Dr.",,"Snellville","Georgia","30039-6937","United States",NULL,"0",,"0","0",NULL,NULL
+"1504030949-94bd","2015-04-03 09:49:53","3","94bd8e15-03-04","guest","0","0","0","68","0",NULL,NULL,"Daniel Barston",,"15 Clark Street",,"Auburn","Massachusetts","01501-1743","United States",NULL,"0",,"0","0",NULL,NULL
+"1504031247-4dff","2015-04-03 12:47:41","3","4dffe113-15-07","account","0","0","0","123","0",NULL,NULL,"Robert Gooch","Clarksville Lodge No. 89","111 Tobacco Rd",,"Clarksville","Tennessee","37042","United States",NULL,"0",,"0","0",NULL,NULL
+"1504031714-e686","2015-04-03 17:14:43","3","e6866014-23-04","account","0","0","0","68","0",NULL,NULL,"R.S. Watt Jr",,"2027 S. 292nd St",,"Federal Way","Washington","98003","United States",NULL,"0",,"0","0",NULL,NULL
+"1504041117-4a53","2015-04-04 11:17:58","3","4a533f13-16-07","account","0","0","0","158","0",NULL,NULL,"Kurt Gazow",,"4223 Northridge Way",,"Bellingham","Washington","98226","United States",NULL,"0",,"0","0",NULL,NULL
+"1504041123-e25e","2015-04-04 11:23:16","3","e25e4914-16-08","account","0","0","0","68","0",NULL,NULL,"Albert Piatt",,"1721 Julian Ridge Road",,"Chattanooga","Tennessee","37421-3321","United States",NULL,"0",,"0","0",NULL,NULL
+"1504042027-1c4e","2015-04-04 20:27:08","1","1c4e6a15-04-04","account","0","0","0","12","0",NULL,NULL,"Edward Savage",,"8 Chase Rd #2B",,"N Brookfield","Massachusetts","01535-1846","United States",NULL,"0","I have 2 different msana account numbers (can't figure out how that happened) and if you want to apply the renewal you can select either of the accounts below to keep it active, and let the other lapse or close.
<br>
<br>170545 - 640
<br>172742 - 631
<br>","0","0",NULL,NULL
+"1504042031-1c4e","2015-04-04 20:31:18","3","1c4e6a15-04-04","account","0","0","0","12","0",NULL,NULL,"Edward L Savage",,"8 Chase Rd #2B",,"N Brookfield","Massachusetts","01535-1846","United States",NULL,"0","
<br>","0","0",NULL,NULL
+"1504042329-95af","2015-04-04 23:29:04","1","95af3c15-04-04","account","0","15","0","115","106",NULL,NULL,"JOHN KARROUM",,"4814 Orchard Lane",,"Delray Beach","Florida","33445","United States",NULL,"0",,"0","0",NULL,NULL
+"1504051600-a4c3","2015-04-05 16:00:11","3","a4c31514-24-03","account","0","0","0","68","0",NULL,NULL,"Richard Strich",,"5824 DAVIS FORD RD",,"MANASSAS","Virginia","20112-3039","United States",NULL,"0",,"0","0",NULL,NULL
+"1504052254-9949","2015-04-05 22:54:29","3","99491015-05-04","guest","0","0","0","191","0",NULL,NULL,"Russ Charvonia",,"5536 N. Bryn Mawr",,"ventura","California","93003","United States",NULL,"0",,"0","0",NULL,NULL
+"1504061411-1d54","2015-04-06 14:11:54","3","1d548915-06-04","account","0","0","0","12","0",NULL,NULL,"Greg Glur",,"823 14th St S",,"Fargo","North Dakota","58103","United States",NULL,"0",,"0","0",NULL,NULL
+"1504071641-05b3","2015-04-07 16:41:45","3","05b3c413-21-05","account","0","0","0","68","0",NULL,NULL,"Donald MacCormick",,"17000 E. 44th Street",,"Independence","Missouri","64055","United States",NULL,"0",,"0","0",NULL,NULL
+"1504081029-9e66","2015-04-08 10:29:29","1","9e66ad15-08-04","account","0","8.5","0","35.5","106",NULL,NULL,"Javier Sanchez","East Dallas Lodge No. 1200","4230 LBJ Freeway","Suite 330","Dalals","Texas","75244","United States",NULL,"0",,"0","0",NULL,NULL
+"1504081415-e6e2","2015-04-08 14:15:56","3","e6e29a15-08-04","account","0","0","0","12","0",NULL,NULL,"Paul Alexander",,"390 Linden Dr",,"Idaho Falls","Idaho","83401","United States",NULL,"0",,"0","0",NULL,NULL
+"1504081439-de8c","2015-04-08 14:39:20","3","de8c9215-08-04","account","0","11.5","0","65.5","106",NULL,NULL,"John Freeburg",,"6356 Riverdale Dr.",,"Ramsey","Minnesota","55303-4800","United States",NULL,"0",,"0","0",NULL,NULL
+"1504081522-12ca","2015-04-08 15:22:41","3","12ca3015-08-04","account","0","7.5","0","27.5","106",NULL,NULL,"Stanley Foulke",,"3018 Ashton Palms Dr",,"Lake Wales","Florida","33859","United States",NULL,"0",,"0","0",NULL,NULL
+"1504081701-9953","2015-04-08 17:01:14","3","9953fb15-08-04","account","0","0","0","12","0",NULL,NULL,"Steve Pallette","Steve Pallette","P.O Box 9",,"Knotts Island","North Carolina","27950","United States",NULL,"0",,"0","0",NULL,NULL
+"1504081905-e935","2015-04-08 19:05:11","3","e9354215-08-04","account","0","10.5","0","66.5","106",NULL,NULL,"robert gilligan",,"100 geiger drive",,"tewksbury","Massachusetts","01876","United States",NULL,"0",,"0","0",NULL,NULL
+"1504082041-4c86","2015-04-08 20:41:15","1","4c86c815-08-04","guest","0","0","0","4","106",NULL,NULL,"Johnathan Granger",,"400 Frostberry Ct",,"Fountain Inn","South Carolina","29644","United States",NULL,"0",,"0","0",NULL,NULL
+"1504091000-42a4","2015-04-09 10:00:55","3","42a4c115-09-04","guest","0","15","0","140","106",NULL,NULL,"Curt Edic","Scottish Rite Masonic Center","202 S 20th St",,"Omaha","Nebraska","68102-1201","United States",NULL,"0",,"0","0",NULL,NULL
+"1504091013-82f7","2015-04-09 10:13:24","3","82f72515-09-04","account","0","9.5","0","46.5","106",NULL,NULL,"Robert Donnelly","Grand Lodge of Vermont","49 East Rd",,"Barre","Vermont","05641-5390","United States",NULL,"0",,"0","0",NULL,NULL
+"1504091411-19aa","2015-04-09 14:11:46","3","19aa8015-09-04","account","0","10.5","0","60.5","106",NULL,NULL,"Charles DeMaio","Scottish Rite Cathedral","650 North Meridan St.",,"Indianapolis","Indiana","46204","United States",NULL,"0",,"0","0",NULL,NULL
+"1504092207-9412","2015-04-09 22:07:25","3","94122915-09-04","account","0","0","0","12","0",NULL,NULL,"Steven A. Fulton",,"188 Furnace Road",,"New Bethlehem","Pennsylvania","16242","United States",NULL,"0",,"0","0",NULL,NULL
+"1504111949-de70","2015-04-11 19:49:23","3","de70f315-11-04","guest","0","0","0","12","0",NULL,NULL,"Eugene Mackey ","527 Wells AVE. N.","527 Wells AVE. N.",,"Renton","Washington","98057","United States",NULL,"0",,"0","0",NULL,NULL
+"1504121256-c454","2015-04-12 12:56:52","3","c4549115-12-04","guest","0","0","0","12","0",NULL,NULL,"Richard Hentz",,"31424 N. Soth Jackson RD",,"Elk","Washington","99009","United States",NULL,"0",,"0","0",NULL,NULL
+"1504121535-eecb","2015-04-12 15:35:38","3","eecb8214-30-03","account","0","0","0","12","0",NULL,NULL,"KENNETH KINSER",,"44 GEORGE BROWN STREET",,"BILLERICA","Massachusetts","01821-2223","United States",NULL,"0",,"0","0",NULL,NULL
+"1504121855-2c6a","2015-04-12 18:55:23","3","2c6a2a15-12-04","guest","0","0","0","24","0",NULL,NULL,"Brian Franksain",,"4705 Ellwood Road",,"New Castle","Pennsylvania","16101","United States",NULL,"0",,"0","0",NULL,NULL
+"1504122205-562c","2015-04-12 22:05:50","3","562c0c14-21-05","account","0","0","0","68","0",NULL,NULL,"Paul Harbord",,"86 9th Ave",,"Hawthorne","New Jersey","07506-1645","United States",NULL,"0",,"0","0",NULL,NULL
+"1504152122-d072","2015-04-15 21:22:34","3","d0726d15-15-04","account","0","15","0","105","106",NULL,NULL,"Herbert Tompkins",,"7855 Chabolyn Way",,"Fair Oaks","California","95628","United States",NULL,"0",,"0","0",NULL,NULL
+"1504160755-95af","2015-04-16 07:55:54","3","95af3c15-04-04","account","0","10.5","0","60.5","106",NULL,NULL,"JOHN KARROUM",,"4814 Orchard Lane",,"Delray Beach","Florida","33445","United States",NULL,"0",,"0","0",NULL,NULL
+"1504161456-9a17","2015-04-16 14:56:23","1","9a17c513-23-08","account","0","0","0","68","0",NULL,NULL,"Chris Morgan",,"38000 Hills Tech Drive",,"Farmington Hills","Michigan","48331","United States",NULL,"0",,"0","0",NULL,NULL
+"1504171357-8196","2015-04-17 13:57:26","3","81964b13-20-03","account","0","0","0","135","0",NULL,NULL,"Jeffrey D Maynor",,"PO Box 85080",,"Baton Rouge","Louisiana","70884","United States",NULL,"0",,"0","0",NULL,NULL
+"1504171506-cdb7","2015-04-17 15:06:40","3","cdb77615-17-04","guest","0","0","0","12","0",NULL,NULL,"Lynn Baker ",,"220 South Center Street",,"Beavertown","Pennsylvania","17813","United States",NULL,"0",,"0","0",NULL,NULL
+"1504171601-c08b","2015-04-17 16:01:14","3","c08b6c15-17-04","account","0","9.5","0","40.5","106",NULL,NULL,"Jay Brown",,"42 ASHLAR VILLAGE",,"WALLINGFORD","Connecticut","06492","United States",NULL,"0",,"0","0",NULL,NULL
+"1504171607-1aab","2015-04-17 16:07:18","3","1aab7813-28-07","account","0","7.5","0","107.5","106",NULL,NULL,"MICHAEL SIMMONS",,"82 WESTFORD AVENUE",,"Stafford Springs","Connecticut","06076","United States",NULL,"0",,"0","0",NULL,NULL
+"1504172012-9384","2015-04-17 20:12:47","3","9384a215-17-04","account","0","7.5","0","27.5","106",NULL,NULL,"Gerry Ross","Gerry Ross","3144 Coach Road",,"Argyle","New York","12809","United States",NULL,"0",,"0","0",NULL,NULL
+"1504172134-ea54","2015-04-17 21:34:08","3","ea54ef15-17-04","guest","0","0","0","68","0",NULL,NULL,"Andrew Martinez",,"307 Candlewood Ct.",,"Millersville","Maryland","21108","United States",NULL,"0",,"0","0",NULL,NULL
+"1504181703-5eed","2015-04-18 17:03:24","3","5eede115-18-04","guest","0","9.5","0","40.1","106",NULL,NULL,"Richard McEntire",,"30 west 141 Street Apt 15D",,"New York","New York","10037","United States",NULL,"0",,"0","0",NULL,NULL
+"1504200026-301d","2015-04-20 00:26:57","3","301d5815-20-04","account","0","0","0","12","0",NULL,NULL,"William West",,"3794 N Diana Ave",,"Palmer","Alaska","99645","United States",NULL,"0",,"0","0",NULL,NULL
+"1504200849-6db9","2015-04-20 08:49:33","3","6db90115-20-04","guest","0","0","0","12","0",NULL,NULL,"Oscar Patterson III",,"248 Patrick Mill Circle",,"Ponte Vedra Beach","Florida","32082","United States",NULL,"0",,"0","0",NULL,NULL
+"1504201056-b0a5","2015-04-20 10:56:01","3","b0a54a15-20-04","account","0","0","0","12","0",NULL,NULL,"William Gleaves","William Gleaves","2964 Woodshead Terrace",,"York","Pennsylvania","17403","United States",NULL,"0",,"0","0",NULL,NULL
+"1504210902-8885","2015-04-21 09:02:11","3","88853e15-21-04","account","0","11.5","0","85.5","106",NULL,NULL,"william ogle","ogle law firm","444 Seabreeze Blvd ","Suite 800","Daytona Beach","Florida","32118","United States",NULL,"0",,"0","0",NULL,NULL
+"1504210939-2637","2015-04-21 09:39:10","3","26376b15-21-04","guest","0","0","0","68","0",NULL,NULL,"Thomas Paxton","Queen City Lodge #131","1939 Frederick St. Apt 5","P.O.Box 1497","Cumberland","Maryland","21502","United States",NULL,"0",,"0","0",NULL,NULL
+"1504211023-3352","2015-04-21 10:23:51","3","33524a15-21-04","account","0","0","0","12","0",NULL,NULL,"Jon Laity",,"1408 State St",,"Cedar Falls","Iowa","50613","United States",NULL,"0","renewal","0","0",NULL,NULL
+"1504221526-379d","2015-04-22 15:26:52","3","379d1915-22-04","account","0","15","0","123","106",NULL,NULL,"Duane Gaulden","Select Insurance Group","6009 Wesley Street",,"Greenville","Texas","75402","United States",NULL,"0",,"0","0",NULL,NULL
+"1504221704-e8aa","2015-04-22 17:04:43","2","e8aaaf15-22-04","guest","0","8.5","0","35.5","106",NULL,,"Floyd McGuirt","Stone Mountain Lodge # 449","5924 Millstone Lane",,"Stone Mountain","Georgia","30087-1820","United States",,"0",,"0","0",NULL,"0"
+"1504241108-02ad","2015-04-24 11:08:46","3","02ad5915-24-04","guest","0","11.5","0","65.5","106",NULL,NULL,"Bruce Lott","Masonic Homes of Kentucky, Inc.","3761 Johnson Hall Drive",,"Masonic Home","Kentucky","40041","United States",NULL,"0",,"0","0",NULL,NULL
+"1504241152-ca1f","2015-04-24 11:52:17","3","ca1fba14-20-08","account","0","0","0","12","0",NULL,NULL,"Patrick Curtis",,"9409 Gwynndale Drive",,"Clinton","Maryland","20735","United States",NULL,"0",,"0","0",NULL,NULL
+"1504261108-b7e5","2015-04-26 11:08:17","3","b7e5a915-26-04","account","0","0","0","12","0",NULL,NULL,"Kenneth Neu","Retired","4591 S. Deframe St.",,"Morrison","Colorado","80465","United States",NULL,"0",,"0","0",NULL,NULL
+"1504261715-892c","2015-04-26 17:15:56","3","892c0014-11-03","account","0","0","0","12","0",NULL,NULL,"James E Acton",,"PO Box 862",,"League City","Texas","77574","United States",NULL,"0",,"0","0",NULL,NULL
+"1504262100-ac99","2015-04-26 21:00:51","3","ac998115-26-04","account","0","0","0","12","0",NULL,NULL,"Ralph Sowder",,"12145 Knoll Court",,"Custer","South Dakota","57730","United States",NULL,"0",,"0","0",NULL,NULL
+"1504271803-562c","2015-04-27 18:03:36","3","562c0c14-21-05","account","0","0","0","12","0",NULL,NULL,"Paul Harbord",,"86 9th Ave",,"Hawthorne","New Jersey","07506-1645","United States",NULL,"0","acct# 173971 from label","0","0",NULL,NULL
+"1504272114-56a8","2015-04-27 21:14:36","3","56a87913-04-06","account","0","0","0","12","0",NULL,NULL,"Bob Reid",,"13600 Princeton Circle",,"Savage","Minnesota","55378","United States",NULL,"0",,"0","0",NULL,NULL
+"1504280539-6c19","2015-04-28 05:39:24","3","6c19ff13-02-05","account","0","11.5","0","195.5","106",NULL,NULL,"Col JD Stevens",,"18309 Allora Dr",,"Edmond","Oklahoma","73012","United States",NULL,"0",,"0","0",NULL,NULL
+"1504280806-c660","2015-04-28 08:06:03","3","c660d514-29-03","account","0","0","0","12","0",NULL,NULL,"William Mackey",,"29 Randal Avenue",,"West Hartford","Connecticut","06110-1744","United States",NULL,"0",,"0","0",NULL,NULL
+"1504282248-3809","2015-04-28 22:48:06","3","3809aa15-28-04","account","0","7.5","0","21.5","106",NULL,NULL,"Wesley Phillips","Arrites Oden396","PO Box 244",,"Falkville","Alabama","35622","United States",NULL,"0",,"0","0",NULL,NULL
+"1504291832-44b6","2015-04-29 18:32:35","3","44b65215-29-04","account","0","0","0","12","0",NULL,NULL,"Phillip Cheek",,"6339 Dr Thoma Walker Rd",,"Rose Hill","Virginia","24281","United States",NULL,"0",,"0","0",NULL,NULL
+"1504300841-3051","2015-04-30 08:41:47","3","3051fc15-30-04","account","0","7.5","0","39.5","106",NULL,NULL,"Frank During",,"P.O.Box 471",,"Ellsworth","Wisconsin","54011","United States",NULL,"0",,"0","0",NULL,NULL
+"1504301033-b9ca","2015-04-30 10:33:10","3","b9caa515-30-04","account","0","7.5","0","27.5","106",NULL,NULL,"adam skiff",,"89 springhouse rd",,"so burlington ","Vermont","05403","United States",NULL,"0",,"0","0",NULL,NULL
+"1504301106-20f0","2015-04-30 11:06:10","3","20f03c15-30-04","account","0","0","0","281","0",NULL,NULL,"Terry Tilton",,"2501 Highway 37",,"Hibbing","Minnesota","55746-3619","United States",NULL,"0","Already picked up Gr. Master's Edition Vol. 2 - DO NOT SHIP","0","0",NULL,NULL
+"1505011456-8576","2015-05-01 14:56:09","5","8576db15-01-05","account","0","0","0","12","0",NULL,NULL,"Charles Levan",,"164 Nightingale Circle",,"Ellenton","Florida","34222-4254","United States",NULL,"0",,"0","0",NULL,NULL
+"1505011632-9e1f","2015-05-01 16:32:36","1","9e1f4715-01-05","account","0","0","0","12","0",NULL,NULL,"Kyle W. Strickland Strickland","Lake Drummond Lodge No. 178","PO BOX 6655",,"Chesapeake","Virginia","23323-0655","United States",NULL,"0",,"0","0",NULL,NULL
+"1505021344-0dc8","2015-05-02 13:44:15","3","0dc83715-02-05","account","0","0","0","68","0",NULL,NULL,"Carl Plants","Carl Plants","6124 NW 6th Street",,"Lincoln","Nebraska","68521","United States",NULL,"0",,"0","0",NULL,NULL
+"1505031707-7581","2015-05-03 17:07:15","5","75814015-16-02","account","0","7.5","0","27.5","106",NULL,,"Hubert Semeleer","Hubert Semeleer","Piedra Plat 55D",,"Aruba DUTCH CARIBBEAN","Alabama","------------","United States","PayPal payment refunded. 5-5-15","0","HI, PLS NOTE MY SHIPPING ADDRESS IS: HUBERT SEMELEER
<br> PIEDRA PLAT 55-D
<br> ARUBA, DUTCH CARIBBEAN
<br>","0","0",NULL,"0"
+"1505050011-3c92","2015-05-05 00:11:21","1","3c92cf15-05-05","account","0","8.5","0","33.5","106",NULL,NULL,"Micheal Leonard",,"12 Gothic Ave",,"Worcester","Massachusetts","01606","United States",NULL,"0",,"0","0",NULL,NULL
+"1505051242-3616","2015-05-05 12:42:02","3","3616a315-05-05","guest","0","11.5","0","65.5","106",NULL,NULL,"Tom Jordan",".","2499 Overlook Way, N.E.",,"Atlanta","Georgia","30345","United States",NULL,"0",,"0","0",NULL,NULL
+"1505051903-6919","2015-05-05 19:03:48","3","69199515-05-05","account","0","0","0","12","0",NULL,NULL,"Ty Carter","Strategic Network Consultants","524 East 9th St",,"Washington","North Carolina","27889","United States",NULL,"0",,"0","0",NULL,NULL
+"1505061138-ee2a","2015-05-06 11:38:35","3","ee2a7815-06-05","account","0","10.5","0","51.5","106",NULL,NULL,"Lawrence Hopkins",,"10 Monticello Court",,"Mansfield","Texas","76063","United States",NULL,"0","These are for East Dallas Lodge #1200 AF&AM. I am a past master and we are having an event on 5/19 for prospective members. I would like to have them on hand for this event if at all possible. If you don't think normal shipping will get them here in time,","0","0",NULL,NULL
+"1505071257-d12d","2015-05-07 12:57:08","3","d12dec15-07-05","guest","0","4","0","82","106",NULL,NULL,"Timothy Nicely",,"4221 County Road 15",,"South Point","Ohio","4580","United States",NULL,"0",,"0","0",NULL,NULL
+"1505061610-a53a","2015-05-06 16:10:17","3","a53ac615-06-05","account","0","7.5","0","27.5","106",NULL,NULL,"Bill Balentine",,"1674 University Pky","#200","Sarasota","Florida","34243","United States",NULL,"0",,"0","0",NULL,NULL
+"1505071639-6c2c","2015-05-07 16:39:05","3","6c2c2815-06-05","account","0","15","0","130","106",NULL,NULL,"Benjamin Croley","Paragon Lodge","2310 Lehman Ave",,"Toledo","Ohio","43611","United States",NULL,"0",,"0","0",NULL,NULL
+"1505072035-e35c","2015-05-07 20:35:03","3","e35cce15-07-05","guest","0","0","0","12","0",NULL,NULL,"Matthew Sanders",,"209 E F Street",,"Brunswick","Maryland","21716","United States",NULL,"0",,"0","0",NULL,NULL
+"1505072213-242b","2015-05-07 22:13:30","3","242b7914-01-04","account","0","0","0","12","0",NULL,NULL,"DOUG JEROME",,"1346 SW LESCHI DR",,"OAK HARBOR","Washington","98277","United States",NULL,"0",,"0","0",NULL,NULL
+"1505080748-2c4e","2015-05-08 07:48:49","3","2c4e8e15-08-05","guest","0","0","0","12","0",NULL,NULL,"Richard Barton",,"259 Lakeshire Drive",,"Lexington","South Carolina","29073-7856","United States",NULL,"0",,"0","0",NULL,NULL
+"1505081058-1637","2015-05-08 10:58:34","3","16371915-06-05","guest","0","7.5","0","26.5","106",NULL,NULL,"rich young",,"po box 15",,"millington","Maryland","21651","United States",NULL,"0","Hi, if possible would need to have these by May 20th for our open house. Thanks","0","0",NULL,NULL
+"1505102011-df36","2015-05-10 20:11:05","3","df36c815-10-05","guest","0","7.5","0","193.5","106",NULL,NULL,"David Duke",,"27682 Kingport",,"Splendora","Texas","77372","United States",NULL,"0",,"0","0",NULL,NULL
+"1505120902-1d8e","2015-05-12 09:02:26","3","1d8eac15-12-05","account","0","9.5","0","49.5","106",NULL,NULL,"Luke Lewis","Salyersville Masonic Lodge","1839 Mashfork Road",,"Salyersville","Kentucky","41465","United States",NULL,"0",,"0","0",NULL,NULL
+"1505121525-82d7","2015-05-12 15:25:43","1","82d7dc13-10-07","account","0","0","0","68","0",NULL,NULL,"James Pilson",,"719-A Summer Lane",,"Prattville","Alabama","36066","United States",NULL,"0",,"0","0",NULL,NULL
+"1505121609-03a4","2015-05-12 16:09:45","3","03a49415-12-05","account","0","15","0","177","106",NULL,NULL,"Robert Kachelhofer","Hoover Lodge #644","2512 Old Rocky Ridge Road",,"Birmingham","Alabama","35216-4854","United States",NULL,"0",,"0","0",NULL,NULL
+"1505121804-65c9","2015-05-12 18:04:14","3","65c9c115-12-05","account","0","0","0","12","0",NULL,NULL,"William Weaver",,"39 Joyce Ct.",,"Ringgold","Georgia","30736","United States",NULL,"0",,"0","0",NULL,NULL
+"1505131540-82f7","2015-05-13 15:40:37","3","82f72515-09-04","account","0","11.5","0","75.5","106",NULL,NULL,"Robert Donnelly","Grand Lodge of Vermont","49 East Rd",,"Barre","Vermont","05641-5390","United States",NULL,"0",,"0","0",NULL,NULL
+"1505141303-3bbd","2015-05-14 13:03:33","3","3bbd0715-14-05","account","0","9.5","0","49.5","106",NULL,NULL,"Wyatt Pedigo",,"8809 Aaron Drive",,"Oklahoma City","Oklahoma","73132-1026","United States",NULL,"0",,"0","0",NULL,NULL
+"1505141818-e18e","2015-05-14 18:18:19","3","e18e2215-07-02","account","0","15","0","123","106",NULL,NULL,"James Robinson","Spearfish Masonic Lodge # 18","3355 E Colorado Blvd",,"Spearfish","South Dakota","57783","United States",NULL,"0",,"0","0",NULL,NULL
+"1505151308-b2ea","2015-05-15 13:08:59","1","b2ea8915-15-05","guest","0","7.5","0","21.5","106",NULL,NULL,"Louis Villaume",,"4500 Country Club Lane",,"Lake Charles","Louisiana","70605","United States",NULL,"0",,"0","0",NULL,NULL
+"1505151826-25a3","2015-05-15 18:26:24","3","25a37f15-15-05","account","0","9.5","0","46.5","106",NULL,NULL,"Todd Onesti",,"33 Prentiss Street",,"Munroe Falls","Ohio","44262","United States",NULL,"0","Would like to have for an event on May 26","0","0",NULL,NULL
+"1505161349-942d","2015-05-16 13:49:46","3","942d3615-16-05","guest","0","0","0","12","0",NULL,NULL,"Daniel Deaton",,"519 Ashley Court",,"Berea","Kentucky","40403","United States",NULL,"0",,"0","0",NULL,NULL
+"1505180935-1aed","2015-05-18 09:35:51","3","1aed3d15-18-05","account","0","7.5","0","27.5","106",NULL,NULL,"george c. matoy",,"7622 GA Hwy 42 S.",,"Fort Valley","Georgia","31030","United States",NULL,"0",,"0","0",NULL,NULL
+"1505191403-21e9","2015-05-19 14:03:32","3","21e94915-19-05","guest","0","0","0","12","0",NULL,NULL,"Donald Clowers",,"2109 Downing Drive",,"Colorado Springs","Colorado","80909","United States",NULL,"0",,"0","0",NULL,NULL
+"1505200500-d7dc","2015-05-20 05:00:38","3","d7dcaa15-20-05","account","0","0","0","12","0",NULL,NULL,"Richard Roblee",,"2303 Franz Ct",,"richland","Washington","99352","United States",NULL,"0",,"0","0",NULL,NULL
+"1505200719-9d7d","2015-05-20 07:19:49","3","9d7d1615-20-05","account","0","0","0","12","0",NULL,NULL,"Richard Burkman",,"413 2nd Ave SW",,"Glen Burnie","Maryland","21061","United States",NULL,"0",,"0","0",NULL,NULL
+"1505201213-66c7","2015-05-20 12:13:43","3","66c7b815-20-05","account","0","15","0","165","106",NULL,NULL,"Fred Sherrill",,"PO Box 816",,"Conover","North Carolina","28613","United States",NULL,"0",,"0","0",NULL,NULL
+"1505201633-beb2","2015-05-20 16:33:46","3","beb21715-20-05","account","0","8.5","0","45.5","106",NULL,NULL,"Roy Burke",,"5480 E Idlewood Ln",,"Sandy Springs","Georgia","30327","United States",NULL,"0","My former subscription number is 109188. This is a new address.","0","0",NULL,NULL
+"1505210941-b04d","2015-05-21 09:41:04","3","b04d8515-21-05","guest","0","7.5","0","27.5","106",NULL,NULL,"Dennis Robertson","Dennis Robertson","6556 LeMaster Road",,"Athens","Ohio","45701-9133","United States",NULL,"0",,"0","0",NULL,NULL
+"1505212145-3b74","2015-05-21 21:45:50","3","3b74a615-21-05","account","0","0","0","12","0",NULL,NULL,"thomas frady",,"412 davis rd",,"liberty","South Carolina","29657","United States",NULL,"0",,"0","0",NULL,NULL
+"1505221643-a330","2015-05-22 16:43:10","1","a330f215-22-05","account","0","0","0","12","0",NULL,NULL,"Graham D Southall",,"913 Woodland Riad",,"Wauconda","Illinois","60084-1474","United States",NULL,"0",,"0","0",NULL,NULL
+"1505241646-088e","2015-05-24 16:46:28","3","088e7915-24-05","guest","0","0","0","12","0",NULL,NULL,"RICK SANTELLA",,"56 MAYFLOWER DRIVE",,"SICKLERVILLE","New Jersey","08081","United States",NULL,"0",,"0","0",NULL,NULL
+"1505251933-1ea0","2015-05-25 19:33:08","3","1ea08615-17-02","account","0","0","0","98","0",NULL,NULL,"David Eschrich",,"917 Haymarket Dr.",,"Lakeland","Florida","33809","United States",NULL,"0",,"0","0",NULL,NULL
+"1505261223-4533","2015-05-26 12:23:43","3","45338f13-28-04","account","0","0","0","123","0",NULL,NULL,"Charles Knapp Jr",,"5 4th Avenue",,"Narrowsburg","New York","12764","United States",NULL,"0",,"0","0",NULL,NULL
+"1505261300-e080","2015-05-26 13:00:55","3","e0801215-26-05","guest","0","8.5","0","36.5","106",NULL,NULL,"Louis Villaume","Villaume","4500 Country Club Lane",,"Lake Charles","Louisiana","70605","United States",NULL,"0",,"0","0",NULL,NULL
+"1505270849-cb5c","2015-05-27 08:49:11","3","cb5cf613-13-07","account","0","0","0","136","0",NULL,NULL,"Rodger Ellingwood",,"4461 Summerlin Place",,"Rock Hill","South Carolina","29732","United States",NULL,"0",,"0","0",NULL,NULL
+"1505271726-b039","2015-05-27 17:26:50","1","b0391515-27-05","account","0","11.5","0","83.5","106",NULL,NULL,"Craig Gross","Tucson Lodge No. 4","3590 N. Country Club Rd.",,"Tucson","Arizona","85716","United States",NULL,"0",,"0","0",NULL,NULL
+"1505280932-5e57","2015-05-28 09:32:57","3","5e579c15-28-05","account","0","7.5","0","21.5","106",NULL,NULL,"Miguel Banagan",,"7633 Leesburg Pike","Suite 100","Falls Church","Virginia","22043","United States",NULL,"0",,"0","0",NULL,NULL
+"1505291542-24e4","2015-05-29 15:42:11","3","24e47f15-29-05","account","0","4","0","12","106",NULL,NULL,"frank schenck",,"101 royal oak dr",,"aurora","Ohio","44202","United States",NULL,"0",,"0","0",NULL,NULL
+"1505301516-7d7e","2015-05-30 15:16:10","3","7d7e4914-09-03","account","0","0","0","12","0",NULL,NULL,"WALTER TRINKALA",,"1500 PROSPECT DRIVE",,"Chesapeake","Virginia","23322","United States",NULL,"0",,"0","0",NULL,NULL
+"1505310916-36ca","2015-05-31 09:16:28","3","36ca6a15-31-05","guest","0","0","0","12","0",NULL,NULL,"Carl Smyers",,"65 Webb Road",,"Middletown","New York","10940","United States",NULL,"0",,"0","0",NULL,NULL
+"1506012214-f7b3","2015-06-01 22:14:48","3","f7b38615-01-06","guest","0","0","0","12","0",NULL,NULL,"John Gleasner",,"500 N. Lenzner Ave.","E-13","Sierra Vista","Arizona","85635","United States",NULL,"0",,"0","0",NULL,NULL
+"1506021240-4afa","2015-06-02 12:40:29","3","4afa8a15-02-06","account","0","0","0","16.5","106",NULL,NULL,"Andrew Martinez",,"307 Candlewood Ct.",,"Millersville","Maryland","21108","United States",NULL,"0",,"0","0",NULL,NULL
+"1506022226-d302","2015-06-02 22:26:03","3","d302cf15-02-06","guest","0","0","0","285","106",NULL,NULL,"Kyle Thorson",,"6916 Pinnacle Ridge Rd",,"Raleigh","North Carolina","27603","United States",NULL,"0",,"0","0",NULL,NULL
+"1506032018-9a17","2015-06-03 20:18:56","3","9a17c513-23-08","account","0","0","0","68","0",NULL,NULL,"Chris Morgan",,"38000 Hills Tech Drive",,"Farmington Hills","Michigan","48331","United States",NULL,"0",,"0","0",NULL,NULL
+"1506041858-d85d","2015-06-04 18:58:26","3","d85df315-04-06","guest","0","7.5","0","27.5","106",NULL,NULL,"Maurice Little",,"346 Alder Road",,"Dover","Delaware","19904","United States",NULL,"0",,"0","0",NULL,NULL
+"1506051201-d725","2015-06-05 12:01:37","3","d7254a15-05-06","account","0","10.5","0","52.5","106",NULL,NULL,"Glendon Rice","Unity Lodge #130","520 S. 1st Ave",,"Sioux Falls","South Dakota","57104","United States",NULL,"0",,"0","0",NULL,NULL
+"1506051715-4d3c","2015-06-05 17:15:33","3","4d3cd815-05-06","guest","0","0","0","12","0",NULL,NULL,"Michael Smith",,"1690 Royalsborough Rd.",,"Durham","Maine","04222","United States",NULL,"0",,"0","0",NULL,NULL
+"1506061046-3648","2015-06-06 10:46:26","3","3648ba15-06-06","account","0","15","0","95","106",NULL,NULL,"Ed Lowe",,"62F Canter Lane",,"Northfield","Ohio","44067","United States",NULL,"0",,"0","0",NULL,NULL
+"1506070946-3c02","2015-06-07 09:46:52","3","3c023a14-10-08","account","0","7.5","0","27.5","106",NULL,NULL,"Robert Wade",,"608 West Main St",,"Austin","Indiana","47102","United States",NULL,"0",,"0","0",NULL,NULL
+"1506081039-b207","2015-06-08 10:39:30","3","b207a614-21-10","account","0","7.5","0","27.5","106",NULL,NULL,"John Kashinsky","Action Group","191 North Ave",,"Mount Clemens","Michigan","48043","United States",NULL,"0",,"0","0",NULL,NULL
+"1506081617-6178","2015-06-08 16:17:02","3","61781b15-08-06","guest","0","0","0","12","0",NULL,NULL,"Joseph Helminiak",,"1229 Pecan Station",,"San Antonio","Texas","78258","United States",NULL,"0",,"0","0",NULL,NULL
+"1506082348-d412","2015-06-08 23:48:45","1","d412dc15-08-06","guest","0","8.5","0","35.5","106",NULL,NULL,"Mitchell May","Thomas DeVenny Lodge #928","1069 Camp Creek Road",,"Stopover","Kentucky","41568","United States",NULL,"0",,"0","0",NULL,NULL
+"1506082350-23ec","2015-06-08 23:50:47","3","23ec1e15-08-06","guest","0","8.5","0","35.5","106",NULL,NULL,"Mitchell May","Thomas DeVenny Lodge #928","1069 Camp Creek Road",,"Stopover","Kentucky","41568","United States",NULL,"0",,"0","0",NULL,NULL
+"1506091804-90c2","2015-06-09 18:04:33","3","90c22014-18-08","account","0","0","0","68","0",NULL,NULL,"Rick Miller",,"2021 Windham St NE",,"Canton","Ohio","44721","United States",NULL,"0",,"0","0",NULL,NULL
+"1506101303-512d","2015-06-10 13:03:35","3","512da215-10-06","account","0","15","0","140","106",NULL,NULL,"Larry Darling","Secretary","1092 Foothill Road",,"Gardnerville","Nevada","89460","United States",NULL,"0",,"0","0",NULL,NULL
+"1506110548-ed95","2015-06-11 05:48:54","3","ed955115-11-06","account","0","0","0","68","0",NULL,NULL,"Edward James",,"15831 Easthaven Ct",,"Bowie","Maryland","20716","United States",NULL,"0",,"0","0",NULL,NULL
+"1506111148-5cb2","2015-06-11 11:48:35","3","5cb27c14-26-04","account","0","0","0","12","0",NULL,NULL,"Frank Rockabrand",,"1800 N Stanton St #604",,"El Paso","Texas","79902-3537","United States",NULL,"0",,"0","0",NULL,NULL
+"1506111318-a10f","2015-06-11 13:18:57","3","a10fe215-11-06","guest","0","0","0","12","0",NULL,NULL,"KEITH COOPER",,"5516 W PUEBLO AVE",,"PHOENIX","Arizona","85043","United States",NULL,"0",,"0","0",NULL,NULL
+"1506111612-b43a","2015-06-11 16:12:10","3","b43a9115-11-06","account","0","0","0","12","0",NULL,NULL,"william Stewart",,"200 sumwalt street",,"sandston","Virginia","23150","United States",NULL,"0",,"0","0",NULL,NULL
+"1506112113-44a3","2015-06-11 21:13:56","3","44a35813-12-05","account","0","0","0","68","0",NULL,NULL,"James Loudermilk",,"9416 Chatham Street",,"Manassas","Virginia","20110-3604","United States",NULL,"0",,"0","0",NULL,NULL
+"1506131229-4310","2015-06-13 12:29:44","3","43100515-13-06","guest","0","0","0","12","0",NULL,NULL,"Wallace Bernard",,"PO Box 190085",,"Nashville","Tennessee","37219","United States",NULL,"0",,"0","0",NULL,NULL
+"1506141659-55db","2015-06-14 16:59:33","3","55dbdb13-15-11","account","0","0","0","12","0",NULL,NULL,"Dennis Vernon",,"2458 Five Shillings Road",,"Frederick","Maryland","21701","United States",NULL,"0","This order is a RENEWAL","0","0",NULL,NULL
+"1506141938-18b4","2015-06-14 19:38:26","3","18b44915-14-06","account","0","9.5","0","56.5","106",NULL,NULL,"Brian M Cielatka",,"148 Long Street",,"Archibald","Louisiana","71218","United States",NULL,"0",,"0","0",NULL,NULL
+"1506150944-455e","2015-06-15 09:44:16","3","455ef113-03-12","account","0","0","0","68","0",NULL,NULL,"Thomas Winter",,"68 S Conger Avenue",,"Congers","New York","10920","United States",NULL,"0",,"0","0",NULL,NULL
+"1506151310-f6e9","2015-06-15 13:10:26","3","f6e9d115-15-06","guest","0","0","0","123","0",NULL,NULL,"Robert Davis","Guthrie Scottish Rite","900 E. Oklahoma","P.O. Box 70","Guthrie","Oklahoma","73044","United States",NULL,"0",,"0","0",NULL,NULL
+"1506151558-a10b","2015-06-15 15:58:36","3","a10b4e15-15-06","account","0","0","0","68","0",NULL,NULL,"Richard Kasza",,"4345 South 36th Street",,"Greenfield","Wisconsin","53221","United States",NULL,"0",,"0","0",NULL,NULL
+"1506161336-0a3e","2015-06-16 13:36:50","3","0a3eab15-16-06","guest","0","8.5","0","35.5","106",NULL,NULL,"troy clark","door to virtue","46 Monroe St",,"westminster ","Maryland","21157","United States",NULL,"0",,"0","0",NULL,NULL
+"1506161652-3dfa","2015-06-16 16:52:09","3","3dfa3f15-16-06","guest","0","8.5","0","52.6","106",NULL,NULL,"Thomas Neyhart",,"41 Pawtuxet Rd",,"Plymouth, ma","Massachusetts","02360","United States",NULL,"0",,"0","0",NULL,NULL
+"1506171004-f932","2015-06-17 10:04:21","3","f9322f15-17-06","account","0","11.5","0","65.6","106",NULL,NULL,"WILLIAM MINNECI","C/O BELLEVUE FLORIST, INC","220 OLD HICKORY BLVD","STE 101","NASHVILLE","Tennessee","37221","United States",NULL,"0",,"0","0",NULL,NULL
+"1506172124-af1c","2015-06-17 21:24:16","3","af1c0315-17-06","account","0","7.5","0","27.5","106",NULL,NULL,"Mark Hoffman",,"117 Llewellyn Drive",,"Westfield","Massachusetts","01085","United States",NULL,"0",,"0","0",NULL,NULL
+"1506172327-5230","2015-06-17 23:27:22","3","52306415-17-06","account","0","0","0","12","0",NULL,NULL,"Michael Rankin",,"315 118th St E",,"Tacoma","Washington","98445","United States",NULL,"0",,"0","0",NULL,NULL
+"1506182029-8eff","2015-06-18 20:29:21","3","8eff9715-18-06","guest","0","8.5","0","35.5","106",NULL,NULL,"Steven Silvers",,"9802 Westchase Dr",,"Tampa","Florida","33626","United States",NULL,"0",,"0","0",NULL,NULL
+"1506190949-2f09","2015-06-19 09:49:32","3","2f09a715-19-06","guest","0","7.5","0","27.5","106",NULL,NULL,"William Barrick",,"4624 N McCarty St",,"Houston","Texas","77013","United States",NULL,"0",,"0","0",NULL,NULL
+"1506220920-f8f9","2015-06-22 09:20:41","3","f8f91e14-07-05","account","0","0","0","123","0",NULL,NULL,"Daniel Rose",,"11196 Chippewa Drive",,"Warren","Michigan","48093-1642","United States",NULL,"0",,"0","0",NULL,NULL
+"1506221417-fe7e","2015-06-22 14:17:24","1","fe7e4a13-01-04","account","0","0","0","123","0",NULL,NULL,"Fred S Kile","AASR, Valley of Columbus","290 Cramer Creek Ct",,"Dublin","Ohio","43017","United States",NULL,"0",,"0","0",NULL,NULL
+"1506221425-3935","2015-06-22 14:25:34","3","3935e215-22-06","account","0","0","0","123","0",NULL,NULL,"Fred Kile","AASR, Valley of Columbus","290 Cramer Creek Ct",,"Dublin","Ohio","43017","United States",NULL,"0",,"0","0",NULL,NULL
+"1506222052-36eb","2015-06-22 20:52:01","1","36ebb813-20-02","account","0","15","0","135","106",NULL,NULL,"Wilson S. Moses","Sacramento Masonic Service Bureau","4440 Bijan Court",,"Fair oaks","California","95628","United States",NULL,"0",,"0","0",NULL,NULL
+"1506231047-d725","2015-06-23 10:47:21","3","d7254a15-05-06","account","0","20","0","320","106",NULL,NULL,"Glendon Rice","Unity Lodge #130","520 S. 1st Ave",,"Sioux Falls","South Dakota","57104","United States",NULL,"0",,"0","0",NULL,NULL
+"1506231333-f4b8","2015-06-23 13:33:26","3","f4b85015-23-06","guest","0","0","0","166","0",NULL,NULL,"Brian Dodson",,"2707 Lakeside Village Dr",,"Missouri City","Texas","77459","United States",NULL,"0",,"0","0",NULL,NULL
+"1506231716-ac8f","2015-06-23 17:16:41","1","ac8f0615-23-06","guest","0","20","0","245","106",NULL,NULL,"Debbie Galli","Grand Lodge of Nebraska","301 N Cotner Blvd",,"Lincoln","Nebraska","68505-2315","United States",NULL,"0",,"0","0",NULL,NULL
+"1506231718-ac8f","2015-06-23 17:18:53","3","ac8f0615-23-06","account","0","20","0","245","106",NULL,NULL,"Debbie Galli","Grand Lodge of Nebraska","301 N Cotner Blvd",,"Lincoln","Nebraska","68505-2315","United States",NULL,"0",,"0","0",NULL,NULL
+"1506240750-3c49","2015-06-24 07:50:32","3","3c49aa13-19-07","account","0","0","0","123","0",NULL,NULL,"Dennis Block",,"194 Lewis Road",,"Hampstead","North Carolina","28443","United States",NULL,"0",,"0","0",NULL,NULL
+"1506241511-50bb","2015-06-24 15:11:15","3","50bb6314-20-06","account","0","8.5","0","35.5","106",NULL,NULL,"Andrew Werch","J. P. Luther Co.","PO BOX 344",,"Berlin","Wisconsin","54923","United States",NULL,"0",,"0","0",NULL,NULL
+"1506242300-19d7","2015-06-24 23:00:48","1","19d7ae13-30-06","account","0","0","0","259","0",NULL,NULL,"Richard Maag","Masonic Temple Association Company of Sandusky","304 Wayne Street",,"Sandusky","Ohio","44870","United States",NULL,"0",,"0","0",NULL,NULL
+"1506242310-19d7","2015-06-24 23:10:30","3","19d7ae13-30-06","account","0","0","0","259","0",NULL,NULL,"Richard Maag","Masonic Temple association Company of Sandusky","1104 Wayne Street",,"Sandusky","Ohio","44870","United States",NULL,"0",,"0","0",NULL,NULL
+"1506250750-d4b7","2015-06-25 07:50:26","3","d4b73015-25-06","guest","0","15","0","116","106",NULL,NULL,"Larry Preston","Janesville-Western Star #55","5902 N Glenmoor Ln",,"Janesville","Wisconsin","53545","United States",NULL,"0",,"0","0",NULL,NULL
+"1506251104-5ef0","2015-06-25 11:04:20","3","5ef0a915-25-06","guest","0","0","0","12","0",NULL,NULL,"John A Branda","John Branda","82-16 34th Avenue","1G","Jackson Heights","New York","11372","United States",NULL,"0",,"0","0",NULL,NULL
+"1506251315-e24e","2015-06-25 13:15:05","3","e24e8315-25-06","guest","0","7.5","0","89.5","106",NULL,NULL,"Nelson Bryant","Bryant Lettering&Design","8650 Staples Mill Road",,"Henrico","Virginia","23228","United States",NULL,"0",,"0","0",NULL,NULL
+"1506251801-73e2","2015-06-25 18:01:09","3","73e2ad14-01-06","account","0","0","0","24","0",NULL,NULL,"Richard Muth",,"184 Richard Drive",,"Aliquippa","Pennsylvania","15001","United States",NULL,"0","This is intended for 2 years, NOT for 2 copies. Thanks!!","0","0",NULL,NULL
+"1506261232-e935","2015-06-26 12:32:47","3","e9354215-08-04","account","0","20","0","463.6","106",NULL,NULL,"robert gilligan",,"100 geiger drive",,"tewksbury","Massachusetts","01876","United States",NULL,"0",,"0","0",NULL,NULL
+"1506261305-3d63","2015-06-26 13:05:09","3","3d631915-26-06","guest","0","8.5","0","37.5","106",NULL,NULL,"James Mack",,"846 Bristol St",,"Pingree Grove","Illinois","60140","United States",NULL,"0",,"0","0",NULL,NULL
+"1506261859-e040","2015-06-26 18:59:22","3","e0404c13-14-04","account","0","0","0","80","0",NULL,NULL,"Jose Perez","(personal)","16141 SW 42nd. Ter",,"MIami","Florida","33185-3825","United States",NULL,"0",,"0","0",NULL,NULL
+"1506271050-fc6d","2015-06-27 10:50:02","3","fc6d1215-27-06","account","0","8.5","0","327.5","106",NULL,NULL,"Chad Wagoner",,"9953 County Road 120",,"Carthage","Missouri","64836","United States",NULL,"0",,"0","0",NULL,NULL
+"1506281552-662b","2015-06-28 15:52:28","3","662b6615-28-06","account","0","0","0","68","0",NULL,NULL,"Dean Clatterbuck",,"P.O. Box 149","292 Click's Lane","New Market","Virginia","22844","United States",NULL,"0",,"0","0",NULL,NULL
+"1506281759-4484","2015-06-28 17:59:17","1","44848715-28-06","account","0","0","0","12","0",NULL,NULL,"Gerald Chartrand",,"2078 129th Ct NE",,"Blaine","Minnesota","55449-4996","United States",NULL,"0",,"0","0",NULL,NULL
+"1506282033-ad1b","2015-06-28 20:33:45","1","ad1b1a15-28-06","guest","0","0","0","68","0",NULL,NULL,"Bruce Caswell","Bruce Caswell","8940 E. Bacon Rd.",,"Hillsdale","Michigan","49242","United States",NULL,"0",,"0","0",NULL,NULL
+"1506291236-c96c","2015-06-29 12:36:01","3","c96cf415-29-06","guest","0","0","0","80","0",NULL,NULL,"Darin Lorenzen",,"103 Cypress Drive",,"Newark","Delaware","19713","United States",NULL,"0",,"0","0",NULL,NULL
+"1506292020-45da","2015-06-29 20:20:43","3","45da1515-29-06","guest","0","0","0","68","0",NULL,NULL,"Norm Sanford",,"825 Willow Valley Lakes Drive",,"Willow Street","Pennsylvania","17584","United States",NULL,"0",,"0","0",NULL,NULL
+"1507011510-797e","2015-07-01 15:10:30","3","797eb715-01-07","guest","0","11.5","0","65.5","106",NULL,NULL,"William Ellison","Lee Lodge No. 209 AF & AM","P. O. Box 207",,"Waynesboro","Virginia","22980","United States",NULL,"0",,"0","0",NULL,NULL
+"1507021124-31ba","2015-07-02 11:24:18","3","31ba1e15-02-07","guest","0","7.5","0","27.5","106",NULL,NULL,"John Consoli","John consoli","120 Darnell Ave",,"Spring Hill","Florida","34606","United States",NULL,"0",,"0","0",NULL,NULL
+"1507021644-5c32","2015-07-02 16:44:52","3","5c321714-10-08","account","0","0","0","68","0",NULL,NULL,"Tracy Chastain",,"1250 Bee Lane",,"Geneva","Florida","32732","United States",NULL,"0",,"0","0",NULL,NULL
+"1507031043-0b06","2015-07-03 10:43:42","1","0b06b115-03-07","guest","0","10.5","0","65.5","106",NULL,NULL,"Vance Burns",,"13100 W 87th St S",,"Clearwataer","Kansas","67026-8500","United States",NULL,"0",,"0","0",NULL,NULL
+"1507031059-91b5","2015-07-03 10:59:29","3","91b5c115-03-07","guest","0","7.5","0","37.5","106",NULL,NULL,"Vance Burns",,"13100 W 87th St S",,"Clearwataer","Kansas","67026-8500","United States",NULL,"0",,"0","0",NULL,NULL
+"1507031631-6969","2015-07-03 16:31:12","3","6969f215-03-07","guest","0","10.5","0","56.1","106",NULL,NULL,"Frederick Ritter",,"2535 River Rock Dr",,"Macungie","Pennsylvania","18062","United States",NULL,"0",,"0","0",NULL,NULL
+"1507031723-5683","2015-07-03 17:23:23","3","5683f515-03-07","account","0","0","0","36","0",NULL,NULL,"John Stelling",,"6406 Jadeite Ave",,"Alta Loma","California","917373525","United States",NULL,"0",,"0","0",NULL,NULL
+"1507051819-fb04","2015-07-05 18:19:37","3","fb04f115-05-07","account","0","8.5","0","32.5","106",NULL,NULL,"ron code",,"4032 sparle berry dr",,"san bernardina","California","92407","United States",NULL,"0",,"0","0",NULL,NULL
+"1507061110-a9e1","2015-07-06 11:10:53","3","a9e1d515-06-07","guest","0","0","0","24","0",NULL,NULL,"Stephen Allen White","20574 Running Creek Church Rd","20574 Running Creek Church Rd",,"Locust","North Carolina","28097","United States",NULL,"0","This is a renewal of my subscription","0","0",NULL,NULL
+"1507072314-b2f1","2015-07-07 23:14:13","3","b2f10a14-04-08","account","0","4","0","93.5","106",NULL,NULL,"Nathan Giesenschlag",,"9095 FM 2039",,"Somerville","Texas","77879","United States",NULL,"0",,"0","0",NULL,NULL
+"1507080309-53c9","2015-07-08 03:09:21","1","53c94815-08-07","account","0","15","0","150","106",NULL,NULL,"Terrance M Schaffer","Sherburne Lodge #95","10251 Palm St. NW",,"Coon Rapids","Minnesota","55433","United States",NULL,"0","Can these be delivered by 7/17/15? We need them for a parade... Also, Our Grand Lodge Web Site says 500 sell for $115.00, is this wrong?","0","0",NULL,NULL
+"1507090836-87df","2015-07-09 08:36:36","3","87df3e15-09-07","guest","0","15","0","150","106",NULL,NULL,"Terrance Schaffer",,"10251 Palm St. NW",,"Coon Rapids","Minnesota","55433","United States",NULL,"0",,"0","0",NULL,NULL
+"1507091356-f4b2","2015-07-09 13:56:12","3","f4b28114-09-07","account","0","10.5","0","52.5","106",NULL,NULL,"Duane Kemerley","Intuitive Options","5028 Road O",,"Pandora","Ohio","45877","United States",NULL,"0",,"0","0",NULL,NULL
+"1507091530-5edd","2015-07-09 15:30:25","3","5edd6315-09-07","guest","0","0","0","4","106",NULL,NULL,"John Brown",,"312 Elm Ave Elm Ave.",,"Tiffin","Ohio","44883","United States",NULL,"0",,"0","0",NULL,NULL
+"1507091900-ad6a","2015-07-09 19:00:20","3","ad6a4c15-09-07","account","0","0","0","12","0",NULL,NULL,"Donald Enz",,"1775 Midway Road",,"De Pere","Wisconsin","54115","United States",NULL,"0",,"0","0",NULL,NULL
+"1507130924-5329","2015-07-13 09:24:25","1","5329b315-13-07","guest","0","9.5","0","43.5","106",NULL,NULL,"Ernest Cavin","Haag-Streit USA ","3535 Kings Mills Rd",,"Mason","Ohio","45040","United States",NULL,"0",,"0","0",NULL,NULL
+"1507130930-eb28","2015-07-13 09:30:18","3","eb284515-13-07","guest","0","9.5","0","43.5","106",NULL,NULL,"Ernest Cavin","Haag-Streit USA","3535 Kings Mills Rd",,"Mason","Ohio","45040","United States",NULL,"0",,"0","0",NULL,NULL
+"1507131027-fefc","2015-07-13 10:27:11","3","fefcce15-13-07","guest","0","7.5","0","27.5","106",NULL,NULL,"David Sandy",,"1818 Cromwood Road",,"Baltimore","Maryland","21234","United States",NULL,"0",,"0","0",NULL,NULL
+"1507131036-de09","2015-07-13 10:36:50","3","de098e15-13-07","account","0","0","0","12","0",NULL,NULL,"Mark Smith",,"8 Kitcher Court",,"Trumbull","Connecticut","06611","United States",NULL,"0",,"0","0",NULL,NULL
+"1507131418-405a","2015-07-13 14:18:13","3","405a1315-13-07","account","0","7.5","0","27.5","106",NULL,NULL,"Craig Wepprecht",,"3621 16th Avenue",,"Kenosha","Wisconsin","53140","United States",NULL,"0",,"0","0",NULL,NULL
+"1507131749-450b","2015-07-13 17:49:37","3","450b9b13-19-08","account","0","0","0","68","0",NULL,NULL,"Leonard Demoranville",,"2410 Waterworks Rd.",,"Danville","Kentucky","40422","United States",NULL,"0",,"0","0",NULL,NULL
+"1507131801-5ee1","2015-07-13 18:01:49","3","5ee19a15-13-07","guest","0","15","0","133","106",NULL,NULL,"Shem Peachey","Sacramento","3110 Abbott Ave",,"Alamogordo","New Mexico","88310","United States",NULL,"0",,"0","0",NULL,NULL
+"1507131815-1a84","2015-07-13 18:15:20","3","1a840e15-13-07","guest","0","7.5","0","27.5","106",NULL,NULL,"Michael Vickrey",,"4155 Vern Sikking Road",,"Appling","Georgia","30802","United States",NULL,"0",,"0","0",NULL,NULL
+"1507132116-f6bd","2015-07-13 21:16:54","3","f6bda715-13-07","account","0","7.5","0","27.5","106",NULL,NULL,"Ross Kenyon","Wor. Ross Kenyon","15 Front Street","#2","Clinton","Massachusetts","01510","United States",NULL,"0",,"0","0",NULL,NULL
+"1507132313-ea99","2015-07-13 23:13:44","3","ea99ef15-13-07","account","0","7.5","0","27.5","106",NULL,NULL,"Rob Gregory ",,"498 Sycamore Street",,"Rahway ","New Jersey","07065","United States",NULL,"0",,"0","0",NULL,NULL
+"1507140738-88cb","2015-07-14 07:38:17","1","88cbba15-14-07","guest","0","7.5","0","27.5","106",NULL,NULL,"Carl J. Klossner",,"P.O. Box 875","118 Quarry Ave.","Old Forge","New York","13420","United States",NULL,"0",,"0","0",NULL,NULL
+"1507141058-ea2c","2015-07-14 10:58:21","3","ea2c9e14-05-05","account","0","8.5","0","33.5","106",NULL,NULL,"PAUL MILLER",,"6073 RIVER ROAD",,"NORFOLK","Virginia","23505-4718","United States",NULL,"0",,"0","0",NULL,NULL
+"1507141431-1dbf","2015-07-14 14:31:17","3","1dbf3a15-14-07","guest","0","7.5","0","27.5","106",NULL,NULL,"Ken Cohen",,"2161 Fenway Pl",,"Reynoldsburg","Ohio","43068","United States",NULL,"0",,"0","0",NULL,NULL
+"1507141526-0d30","2015-07-14 15:26:46","3","0d301f15-14-07","guest","0","7.5","0","27.5","106",NULL,NULL,"John Woolsey",,"2604 Ave. I",,"Bay City","Texas","77414","United States",NULL,"0",,"0","0",NULL,NULL
+"1507141544-ebf9","2015-07-14 15:44:20","3","ebf92514-29-07","account","0","7.5","0","95.5","106",NULL,NULL,"Jorge Filgueira",,"191 Chippewa Street",,"Miami Springs","Florida","33166","United States",NULL,"0",,"0","0",NULL,NULL
+"1507141621-a18e","2015-07-14 16:21:58","1","a18ea615-07-05","account","0","20","0","245","106",NULL,NULL,"Yvette Story","Grand Lodge AF&AM of Oklahoma","102 S. Broad",,"Guthrie","Oklahoma","73044","United States",NULL,"0",,"0","0",NULL,NULL
+"1507141824-36eb","2015-07-14 18:24:05","3","36ebb813-20-02","account","0","15","0","135","106",NULL,NULL,"Wilson S. Moses","Sacramento Masonic Service Bureau","4440 Bijan Court",,"Fair oaks","California","95628","United States",NULL,"0",,"0","0",NULL,NULL
+"1507150840-3d1b","2015-07-15 08:40:51","3","3d1bd115-15-07","account","0","9.5","0","49.5","106",NULL,NULL,"Brian Coffey",,"134 Lenox Parkway",,"Martinez","Georgia","30907","United States",NULL,"0",,"0","0",NULL,NULL
+"1507151739-463f","2015-07-15 17:39:29","3","463f6c15-15-07","account","0","7.5","0","32.5","106",NULL,NULL,"Rick Tee",,"126 S. Main St.",,"Bath","North Carolina","27808","United States",NULL,"0",,"0","0",NULL,NULL
+"1507162049-da77","2015-07-16 20:49:13","3","da77e514-01-06","account","0","0","0","12","0",NULL,NULL,"Lee Rackley",,"246 Westover Dr","Apt.450","Hattiesburg","Mississippi","39402","United States",NULL,"0",,"0","0",NULL,NULL
+"1507170903-47d1","2015-07-17 09:03:24","3","47d1ef15-17-07","account","0","0","0","12","0",NULL,NULL,"Dieter Hees",,"410 Merion Ave",,"Pine Beach","New Jersey","08741","United States",NULL,"0",,"0","0",NULL,NULL
+"1507171845-4028","2015-07-17 18:45:13","1","40282f15-17-07","guest","0","0","0","12","0",NULL,NULL,"Leroy Mitchell",,"10701 Tucker Rd",,"Vancleave","Mississippi","39565","United States",NULL,"0",,"0","0",NULL,NULL
+"1507181025-6e31","2015-07-18 10:25:06","3","6e31a415-18-07","account","0","0","0","12","0",NULL,NULL,"Robert Wheeler",,"325 Plant Ave",,"St Louis","Missouri","63119","United States",NULL,"0","renew subscription","0","0",NULL,NULL
+"1507181039-c6a2","2015-07-18 10:39:41","3","c6a2c415-18-07","guest","0","7.5","0","27.5","106",NULL,NULL,"Jermaine Jones",,"1048 Snead Dr.",,"Suffolk","Virginia","23434","United States",NULL,"0",,"0","0",NULL,NULL
+"1507181916-a0c2","2015-07-18 19:16:12","3","a0c2ac15-18-07","account","0","8.5","0","33.5","106",NULL,NULL,"Chad Pezzano",,"938 Catalpa Court",,"Niskayuna","New York","12309","United States",NULL,"0",,"0","0",NULL,NULL
+"1507190139-6c19","2015-07-19 01:39:27","1","6c19ff13-02-05","account","0","0","0","135","0",NULL,NULL,"Col JD Stevens",,"18309 Allora Dr",,"Edmond","Oklahoma","73012","United States",NULL,"0",,"0","0",NULL,NULL
+"1507191033-c388","2015-07-19 10:33:24","3","c388e715-19-07","guest","0","0","0","12","0",NULL,NULL,"Greg Vasquez",,"325 w. Knox Rd.",,"Tempe","Arizona","85242","United States",NULL,"0",,"0","0",NULL,NULL
+"1507191908-0217","2015-07-19 19:08:17","3","0217ad15-19-07","account","0","0","0","80","0",NULL,NULL,"Lawrence Thompson",,"805 Shorewood Dr",,"Coppell","Texas","Texas","United States",NULL,"0",,"0","0",NULL,NULL
+"1507201341-2c4b","2015-07-20 13:41:10","1","2c4bab15-20-07","account","0","7.5","0","27.5","106",NULL,NULL,"Nelson Rose",,"5180 SW 19th St",,"Plantation","Florida","33317","United States",NULL,"0",,"0","0",NULL,NULL
+"1507210036-8e44","2015-07-21 00:36:46","3","8e44db15-21-07","account","0","0","0","12","0",NULL,NULL,"Charles Ward",,"4446 Mendenhall Boulevard",,"Juneau","Alaska","99801","United States",NULL,"0",,"0","0",NULL,NULL
+"1507211159-1472","2015-07-21 11:59:31","3","14720015-21-07","account","0","8.5","0","45.5","106",NULL,NULL,"Michael Dixon",,"913 Jannas Trail",,"Edmond","Oklahoma","73012","United States",NULL,"0",,"0","0",NULL,NULL
+"1507211239-96f6","2015-07-21 12:39:44","1","96f6b915-21-07","account","0","0","0","12","0",NULL,NULL,"Don Huxford",,"24 Montana Street",,"Rapid City","South Dakota","57701","United States",NULL,"0",,"0","0",NULL,NULL
+"1507211258-96f6","2015-07-21 12:58:09","3","96f6b915-21-07","account","0","0","0","12","0",NULL,NULL,"Don Huxford",,"24 Montana Street",,"Rapid City","South Dakota","57701","United States",NULL,"0",,"0","0",NULL,NULL
+"1507212303-b5b8","2015-07-21 23:03:13","3","b5b84415-21-07","account","0","8.5","0","35.5","106",NULL,NULL,"Roger Shirley","Handyman Specialist LLC.","16 Curt Jarrett Rd.",,"Ashville","Alabama","35953","United States",NULL,"0",,"0","0",NULL,NULL
+"1507221526-9c20","2015-07-22 15:26:35","3","9c205215-22-07","account","0","15","0","140","106",NULL,NULL,"Randy Clements",,"89 Springhill dr W",,"Tifton","Georgia","31793","United States",NULL,"0",,"0","0",NULL,NULL
+"1507221745-4f1c","2015-07-22 17:45:33","1","4f1cfc15-22-07","account","0","7.5","0","21.5","106",NULL,NULL,"Jake Terpstra","Miriam Lodge #20","1822 - 47th Ave","Vernon, BC V1T 9P3","Vernon, BC, Canada V1T 9P3","Alabama","V1T 9P3","United States",NULL,"0","I was unable to register an account through your drop down info. We are in Canada and I hope this can come through.","0","0",NULL,NULL
+"1507222335-7d86","2015-07-22 23:35:52","3","7d862215-22-07","account","0","0","0","123","0",NULL,NULL,"Chuck Brust",,"421 11 Ave SE",,"Rochester","Minnesota","55904","United States",NULL,"0",,"0","0",NULL,NULL
+"1507241252-1b43","2015-07-24 12:52:15","3","1b439614-14-05","account","0","0","0","80","0",NULL,NULL,"William Gerhardt",,"3102 Old Elm Way",,"SanAntonio","Texas","78230","United States",NULL,"0",,"0","0",NULL,NULL
+"1507241648-44d7","2015-07-24 16:48:27","1","44d79114-25-07","account","0","0","0","12","0",NULL,NULL,"John Aiken",,"1981 Pine Dr.",,"Snellville","Georgia","30078","United States",NULL,"0",,"0","0",NULL,NULL
+"1507261542-dbdc","2015-07-26 15:42:06","3","dbdcd115-26-07","guest","0","0","0","68","0",NULL,NULL,"Patricia Bradbury",,"5874 Lexington Drive",,"Pipersville","Pennsylvania","18947","United States",NULL,"0",,"0","0",NULL,NULL
+"1507262024-d879","2015-07-26 20:24:38","3","d8799814-24-07","account","0","0","0","80","0",NULL,NULL,"John Dennis",,"6013 Palmera Dr",,"Mason","Ohio","45040-8040","United States",NULL,"0","subscription is for renewal of #119644 640 9/15","0","0",NULL,NULL
+"1507281134-8d7a","2015-07-28 11:34:25","3","8d7a3515-28-07","guest","0","4","0","14","106",NULL,NULL,"Robert chalk",,"10005 State rd. 48",,"aurora","Indiana","47001","United States",NULL,"0",,"0","0",NULL,NULL
+"1507281357-65c8","2015-07-28 13:57:15","5","65c89b15-28-07","guest","0","20","0","245","106",NULL,NULL,"Donald Yankey","Grand Lodge of Kentucky","300 Masonic Home Dr",,"Masonic Home","Kentucky","40041","United States",NULL,"0",,"0","0",NULL,NULL
+"1507281750-5659","2015-07-28 17:50:11","3","56590914-17-08","account","0","0","0","12","0",NULL,NULL,"Michael Whitescarver",,"3216 W. Winchester",,"Springfield","Missouri","65807","United States",NULL,"0",,"0","0",NULL,NULL
+"1507281937-26a3","2015-07-28 19:37:15","3","26a3a113-19-03","account","0","0","0","68","0",NULL,NULL,"Raymond Dotson","Raymond Dotson","174 Quail Drive","Sleepy Creek Club","Dudley","North Carolina","28333","United States",NULL,"0",,"0","0",NULL,NULL
+"1507282255-b002","2015-07-28 22:55:39","3","b002ae15-28-07","guest","0","8.5","0","33.5","106",NULL,NULL,"Paul Hulseapple",,"5 Garrison Ln",,"Ballston Lake","New York","12019","United States",NULL,"0",,"0","0",NULL,NULL
+"1507291144-439a","2015-07-29 11:44:25","3","439afd15-29-07","account","0","7.5","0","21.5","106",NULL,NULL,"bob blum","Hickory Flat #205","c/o 2614 Grapevine Cir",,"Cumming","Georgia","30041","United States",NULL,"0",,"0","0",NULL,NULL
+"1507291332-6d8d","2015-07-29 13:32:00","3","6d8d6f15-29-07","account","0","0","0","12","0",NULL,NULL,"BENJAMIN BRAYTON",,"5911 RANDOLPH RD",,"MORRISVILLE","Vermont","05661-8114","United States",NULL,"0","Renewal Acct.#121456 640 8/15","0","0",NULL,NULL
+"1507291501-163a","2015-07-29 15:01:32","1","163a4215-29-07","account","0","0","0","12","0",NULL,NULL,"Clyde A. Barton",,"CMR 467 Box 2864R",,"APO","Armed Forces Europe","09096-2864","United States",NULL,"0",,"0","0",NULL,NULL
+"1507301238-163a","2015-07-30 12:38:41","1","163a4215-29-07","account","0","0","0","12","0",NULL,NULL,"Clyde A. Barton",,"CMR 467 Box 2864R",,"APO","Armed Forces Europe","09096-2864","United States",NULL,"0",,"0","0",NULL,NULL
+"1507301634-b643","2015-07-30 16:34:08","1","b6433e15-30-07","account","0","0","0","16","106",NULL,NULL,"Larry Kent","Larry Kent","529 Sevilla Pl",,"The Villages","Florida","32159","United States",NULL,"0",,"0","0",NULL,NULL
+"1507301936-1437","2015-07-30 19:36:02","3","1437d915-30-07","guest","0","0","0","68","0",NULL,NULL,"Frank Loui","A&ASR","2850 19th Avenue",,"San Francisco","California","94132","United States",NULL,"0",,"0","0",NULL,NULL
+"1507302026-2501","2015-07-30 20:26:17","3","25016915-30-07","account","0","8.5","0","38.5","106",NULL,NULL,"Christopher Blunt",,"5 Snells Court",,"East Bridgewater","Massachusetts","02333","United States",NULL,"0",,"0","0",NULL,NULL
+"1507310119-07b3","2015-07-31 01:19:59","3","07b3f515-31-07","account","0","0","0","68","0",NULL,NULL,"STEPHEN HAXBY",,"1701 W. STATE BLVD.",,"FORT WAYNE","Indiana","46808-1931","United States",NULL,"0",,"0","0",NULL,NULL
+"1507310948-49a7","2015-07-31 09:48:02","3","49a79f15-31-07","guest","0","0","0","166","0",NULL,NULL,"Jason L Lang",,"2458 59th street NE",,"Buffalo","Minnesota","55313","United States",NULL,"0",,"0","0",NULL,NULL
+"1507311257-a554","2015-07-31 12:57:47","3","a5543e15-31-07","guest","0","4","0","93","106",NULL,NULL,"Roy Simpadian",,"535 Amsterdam Ave",,"Ridgewood","New Jersey","07450","United States",NULL,"0",,"0","0",NULL,NULL
+"1508021131-b83f","2015-08-02 11:31:49","3","b83f1d15-02-08","account","0","0","0","12","0",NULL,NULL,"Todd Tubby",,"8 Mohican Place",,"Lake Hiawatha","New Jersey","07034","United States",NULL,"0",,"0","0",NULL,NULL
+"1508031725-f9a4","2015-08-03 17:25:33","3","f9a4f715-03-08","account","0","0","0","12","0",NULL,NULL,"David Grieco",,"825 Flanders Rd",,"Coventry","Connecticut","06238","United States",NULL,"0",,"0","0",NULL,NULL
+"1508041224-35ce","2015-08-04 12:24:31","3","35ce9f15-04-08","guest","0","15","0","123","106",NULL,NULL,"Pete Pancari","Pete Pancari","177 Greenlea Drive",,"Moon Twp.","Pennsylvania","15108","United States",NULL,"0",,"0","0",NULL,NULL
+"1508041244-7c88","2015-08-04 12:44:46","3","7c88b913-23-06","account","0","0","0","281","0",NULL,NULL,"Jason Crowder",,"10606 NE Skidmore St",,"Portland","Oregon","97220","United States",NULL,"0",,"0","0",NULL,NULL
+"1508041249-bda5","2015-08-04 12:49:30","1","bda52314-19-08","account","0","0","0","12","0",NULL,NULL,"Christopher Casey",,"31 Ridgeland Road",,"Shrewsbury","Massachusetts","01545","United States",NULL,"0",,"0","0",NULL,NULL
+"1508041425-82f7","2015-08-04 14:25:01","3","82f72515-09-04","account","0","11.5","0","65.5","106",NULL,NULL,"Robert Donnelly","Grand Lodge of Vermont","49 East Rd",,"Barre","Vermont","05641-5390","United States",NULL,"0",,"0","0",NULL,NULL
+"1508041534-9d26","2015-08-04 15:34:23","3","9d26e415-04-08","account","0","0","0","12","0",NULL,NULL,"David Blanton",,"557 Seay Rd",,"Boiling Springs","South Carolina","29317","United States",NULL,"0",,"0","0",NULL,NULL
+"1508041847-ab46","2015-08-04 18:47:43","1","ab46f215-04-08","guest","0","0","0","123","0",NULL,NULL,"Joseph J Beaumont",,"7 Terrell Lane",,"Hollis","New Hampshire","03049-8509","United States",NULL,"0",,"0","0",NULL,NULL
+"1508050015-964b","2015-08-05 00:15:12","1","964b2415-05-08","guest","0","0","0","166","0",NULL,NULL," Robert Strayer","Brunswick Lodge 717","363 Knox Drive",,"Brunswick","Georgia","31525","United States",NULL,"0",,"0","0",NULL,NULL
+"1508050528-52ab","2015-08-05 05:28:19","3","52ab3315-05-08","account","0","0","0","12","0",NULL,NULL,"Darryl Smith",,"4601 Hampnett Avenue",,"Baltimore","Maryland","21214","United States",NULL,"0",,"0","0",NULL,NULL
+"1508051240-89a6","2015-08-05 12:40:04","3","89a68e15-05-08","account","0","4","0","93","106",NULL,NULL,"Richard J Brown","same","3215 135 St.",,"Toledo","Ohio","43611-2406","United States",NULL,"0",,"0","0",NULL,NULL
+"1508051936-da45","2015-08-05 19:36:28","3","da458e15-05-08","guest","0","0","0","136","0",NULL,NULL,"Roberto Sanchez",,"16346 flint run way",,"Sugar land","Texas","77498","United States",NULL,"0",,"0","0",NULL,NULL
+"1508071207-6cd6","2015-08-07 12:07:28","3","6cd60413-22-02","account","0","0","0","123","0",NULL,NULL,"Philip Buchholz",,"PO Box 597","1105 W Rochester Ave","Saratoga","Wyoming","82331","United States",NULL,"0",,"0","0",NULL,NULL
+"1508071240-7adc","2015-08-07 12:40:12","1","7adc5a15-06-08","account","0","11.5","0","77.5","106",NULL,NULL,"Tim Krueger",,"355Thain Road",,"Lewiston","Idaho","83501","United States",NULL,"0",,"0","0",NULL,NULL
+"1508072347-4484","2015-08-07 23:47:42","3","44848715-28-06","account","0","0","0","12","0",NULL,NULL,"Gerald Chartrand",,"2078 129th Ct NE",,"Blaine","Minnesota","55449-4996","United States",NULL,"0",,"0","0",NULL,NULL
+"1508081207-82f5","2015-08-08 12:07:34","3","82f5cb15-08-08","account","0","0","0","293","0",NULL,NULL,"Brent Helm","Brent AHelm","198 Saratoga Trail",,"Lapeer","Michigan","48446","United States",NULL,"0",,"0","0",NULL,NULL
+"1508091725-e906","2015-08-09 17:25:10","3","e9060c15-09-08","guest","0","0","0","166","0",NULL,NULL,"Robert Strayer Jr","Brunswick Lodge #717","363 Knox Dr. ",,"Brunswick ","Georgia","31525","United States",NULL,"0",,"0","0",NULL,NULL
+"1508102145-eb1e","2015-08-10 21:45:21","3","eb1e8a15-10-08","guest","0","0","0","123","0",NULL,NULL,"Lawrence Rosen",,"24 West Shore Rd","P.O. Box 206","Alburgh","Vermont","05440","United States",NULL,"0",,"0","0",NULL,NULL
+"1508102333-f789","2015-08-10 23:33:30","1","f7894815-10-08","account","0","0","0","166","0",NULL,NULL,"Michael Seibert",,"100 W Taylor Run Pkwy Apt 8",,"Alexandria","Virginia","22314","United States",NULL,"0",,"0","0",NULL,NULL
+"1508112057-4410","2015-08-11 20:57:44","3","44106a15-11-08","guest","0","0","0","123","0",NULL,NULL,"JOHN LOGAN",,"13913 Kirkland Ridge",,"Edmond","Oklahoma","73013","United States",NULL,"0",,"0","0",NULL,NULL
+"1508141057-80c6","2015-08-14 10:57:50","3","80c6a115-14-08","account","0","8.5","0","44.5","106",NULL,NULL,"Thomas Wilds",,"102 Wenlock Cir",,"Irmo","South Carolina","29063","United States",NULL,"0",,"0","0",NULL,NULL
+"1508141739-8848","2015-08-14 17:39:38","3","88488815-14-08","guest","0","0","0","68","0",NULL,NULL,"Arne Hansen",,"2055 Ponderosa Ct.",,"Bellingham","Washington","98229","United States",NULL,"0",,"0","0",NULL,NULL
+"1508160112-67f9","2015-08-16 01:12:43","3","67f9c815-16-08","guest","0","15","0","119","106",NULL,NULL,"Carl Nelson","Campbell 115","2940 Oxley RD.",,"Leslie","Arkansas","72645","United States",NULL,"0",,"0","0",NULL,NULL
+"1508160944-f7a3","2015-08-16 09:44:02","3","f7a39214-27-06","account","0","0","0","123","0",NULL,NULL,"Daniel Enyart",,"134 Mills Cir",,"Fort Huachuca","Arizona","85613","United States",NULL,"0",,"0","0",NULL,NULL
+"1508172043-498b","2015-08-17 20:43:49","3","498b2615-17-08","account","0","4","0","21.1","106",NULL,NULL,"Donald Courter","Donald Courter","3412 Hazelwood Ct.",,"Davenport","Iowa","52806","United States",NULL,"0",,"0","0",NULL,NULL
+"1508181421-4104","2015-08-18 14:21:21","3","41049015-18-08","account","0","0","0","12","0",NULL,NULL,"Chad Michels",,"1041 Main St.",,"Lomira","Wisconsin","53048","United States",NULL,"0",,"0","0",NULL,NULL
+"1508191345-8ecc","2015-08-19 13:45:20","1","8eccb315-19-08","account","0","9.5","0","46.5","106",NULL,NULL,"John Burkhart","Jackson Masonic Lodge 146 F&AM","951 W. 8th. St.",,"Seymour","Indiana","47274","United States",NULL,"0",,"0","0",NULL,NULL
+"1508191359-d1bf","2015-08-19 13:59:22","3","d1bf0115-19-08","guest","0","8.5","0","35.6","106",NULL,NULL,"John Burkhart","Jackson Masonic Lodge 146 F&AM","951 W. 8th. St.",,"Seymour","Indiana","47274","United States",NULL,"0",,"0","0",NULL,NULL
+"1508200843-e2d2","2015-08-20 08:43:53","3","e2d2dd15-20-08","guest","0","10.5","0","52.5","106",NULL,NULL,"Jay Custer","Collins-Spring Valley Lodge #192","1470 6th Ave",,"Baldwin","Wisconsin","54002","United States",NULL,"0",,"0","0",NULL,NULL
+"1508211506-a856","2015-08-21 15:06:35","1","a8568b15-21-08","guest","0","11.5","0","75.5","106",NULL,NULL,"Daniel Ferszt","Ionic Composite Lodge","1122 S. La Cienega Blvd.","Suite 100","Los Angeles","California","90035","United States",NULL,"0",,"0","0",NULL,NULL
+"1508211538-0016","2015-08-21 15:38:24","3","00161b15-21-08","guest","0","11.5","0","75.5","106",NULL,NULL,"Daniel Ferszt","Ionic Composite Lodge","1122 S. La Cienega Blvd.","Suite 100","Los Angeles","California","90035","United States",NULL,"0","Need this by the weekend Aug. 28-30th","0","0",NULL,NULL
+"1508231906-3d10","2015-08-23 19:06:09","3","3d109d15-23-08","account","0","9.5","0","49.5","106",NULL,NULL,"Edward Harris",,"1935 Ptarmigan Lane NW",,"Poulsbo","Washington","98370","United States",NULL,"0",,"0","0",NULL,NULL
+"1508241247-0bc9","2015-08-24 12:47:28","3","0bc91213-10-04","account","0","0","0","123","0",NULL,NULL,"Bruce Vesper",,"1557 Desert Springs Ave",,"Richland","Washington","99352","United States",NULL,"0",,"0","0",NULL,NULL
+"1508241735-ab34","2015-08-24 17:35:19","3","ab34a415-24-08","guest","0","7.5","0","27.5","106",NULL,NULL,"James F Hardee",,"3700 Relic Dr",,"Sandston","Virginia","23150","United States",NULL,"0",,"0","0",NULL,NULL
+"1508242002-4d0d","2015-08-24 20:02:53","3","4d0d1d15-24-08","guest","0","15","0","106","106",NULL,NULL,"Davis Hawkins",,"3384 Lytle Rd",,"Waynesville","Ohio","45068","United States",NULL,"0",,"0","0",NULL,NULL
+"1508241517-02d9","2015-08-24 15:17:19","3","02d9ff14-19-11","account","0","0","0","68","0",NULL,NULL,"Dr Ken Moder",,"160 Drury Lane",,"West Lafayette","Indiana","47906","United States",NULL,"0",,"0","0",NULL,NULL
+"1508242008-b3f3","2015-08-24 20:08:33","3","b3f34a15-24-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Murray K. Lilley",,"123 Grist Stone Way",,"Owings Mills","Maryland","21117","United States",NULL,"0",,"0","0",NULL,NULL
+"1508250839-5aca","2015-08-25 08:39:18","3","5acaad15-25-08","guest","0","0","0","68","0",NULL,NULL,"John Zabel",,"371 Lyndon Rd",,"Fairport","New York","14450","United States",NULL,"0",,"0","0",NULL,NULL
+"1508251025-d089","2015-08-25 10:25:54","3","d0894e15-25-08","guest","0","0","0","5","106",NULL,NULL,"John Burkhart","Jackson Lodge 146","PO Box 146.",,"Seymour","Indiana","47274","United States",NULL,"0",,"0","0",NULL,NULL
+"1508251402-d55a","2015-08-25 14:02:42","3","d55a0815-25-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Dale Marfell",,"616 N Locust",,"Litchfield","Illinois","62056","United States",NULL,"0",,"0","0",NULL,NULL
+"1508251409-d405","2015-08-25 14:09:55","3","d405ff15-25-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Kenneth G Bates","Dexter Lodge # 1072","513 Brown St","PO Box 531","Dexter","New York","13634","United States",NULL,"0",,"0","0",NULL,NULL
+"1508251557-b870","2015-08-25 15:57:32","1","b8700013-22-07","account","0","0","0","123","0",NULL,NULL,"William R. Clark, Jr.",,"3830 - 39th Street",,"Des Moines","Iowa","50310","United States",NULL,"0",,"0","0",NULL,NULL
+"1508260050-23be","2015-08-26 00:50:33","3","23be3a15-26-08","account","0","0","0","148","0",NULL,NULL,"Eric Johnson",,"2017 Piper Circle",,"Anacortes","Washington","98221-3125","United States",NULL,"0","usually I order by mail via subscription number 162937 640","0","0",NULL,NULL
+"1508262128-61e3","2015-08-26 21:28:39","3","61e37f15-26-08","guest","0","0","0","166","0",NULL,NULL,"Donald Crews",,"2724 Willard Ave",,"Cincinnati","Ohio","45209","United States",NULL,"0",,"0","0",NULL,NULL
+"1508262310-02e7","2015-08-26 23:10:22","3","02e71a15-26-08","guest","0","4","0","13","106",NULL,NULL,"Mit Patel",,"807 S. Oregon Avenue","Apt B","Tampa","Florida","33612","United States",NULL,"0",,"0","0",NULL,NULL
+"1508262323-cb36","2015-08-26 23:23:06","3","cb36f213-13-04","account","0","7.5","0","27.5","106",NULL,NULL,"Ridge Smith",,"PO Box 851123",,"Yukon","Oklahoma","73085","United States",NULL,"0",,"0","0",NULL,NULL
+"1508270834-918a","2015-08-27 08:34:07","1","918aaf15-27-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Dayton Berg",,"53153 Rush Lake Trail",,"Rush City","Minnesota","55069","United States",NULL,"0",,"0","0",NULL,NULL
+"1508270950-18f5","2015-08-27 09:50:39","3","18f5fb15-27-08","account","0","7.5","0","193.5","106",NULL,NULL,"Michael Wilhelm",,"91 Bee Mountain Road",,"Oxford","Connecticut","06478","United States",NULL,"0",,"0","0",NULL,NULL
+"1508271008-1cbf","2015-08-27 10:08:37","1","1cbf0015-27-08","account","0","9.5","0","49.5","106",NULL,NULL,"Michael Ifland",,"610 Bradford Trce",,"Cookeville","Tennessee","38501","United States",NULL,"0",,"0","0",NULL,NULL
+"1508271010-1cbf","2015-08-27 10:10:09","3","1cbf0015-27-08","account","0","9.5","0","49.5","106",NULL,NULL,"Michael Ifland",,"610 Bradford Trce",,"Cookeville","Tennessee","38501","United States",NULL,"0",,"0","0",NULL,NULL
+"1508281143-2740","2015-08-28 11:43:38","3","2740a715-28-08","account","0","7.5","0","27.5","106",NULL,NULL,"dean adams",,"212 Countrywood Circle",,"Sour Lake","Texas","77659","United States",NULL,"0",,"0","0",NULL,NULL
+"1508281610-33d0","2015-08-28 16:10:12","3","33d0a615-28-08","account","0","0","0","12","0",NULL,NULL,"Kenneth Littler",,"124 Combs dr. ",,"Aiken ","South Carolina","29801","United States",NULL,"0",,"0","0",NULL,NULL
+"1508281800-ed58","2015-08-28 18:00:55","3","ed585715-28-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Sean Daley",,"168 Harvard St.",,"Whitman","Massachusetts","02382","United States",NULL,"0",,"0","0",NULL,NULL
+"1508281814-609b","2015-08-28 18:14:04","1","609b9615-28-08","account","0","8.5","0","34.5","106",NULL,NULL,"Charles Berry",,"P.O. Box 1954",,"Huntsville","Alabama","35807","United States",NULL,"0",,"0","0",NULL,NULL
+"1508291200-a554","2015-08-29 12:00:55","3","a5543715-29-08","account","0","0","0","12","0",NULL,NULL,"Michael Devlin",,"5818 Apollo Drive",,"Lake View","New York","14085","United States",NULL,"0",,"0","0",NULL,NULL
+"1508291919-4126","2015-08-29 19:19:46","1","4126bf15-12-03","account","0","7.5","0","39.5","106",NULL,NULL,"Mike Rodman",,"710 Odde Pl",,"Rapid City","South Dakota","57701","United States",NULL,"0",,"0","0",NULL,NULL
+"1508300103-bee5","2015-08-30 01:03:42","3","bee52c13-30-08","account","0","0","0","68","0",NULL,NULL,"Don Springler",,"PO Box 73455",,"Metairie","Louisiana","70033-3455","United States",NULL,"0",,"0","0",NULL,NULL
+"1508301759-1530","2015-08-30 17:59:41","3","15302515-30-08","guest","0","10.5","0","121.5","106",NULL,NULL,"Richard Sobotta","Cygnet Controls Inc.","8123 S. Lemont Rd.",,"Darien","Illinois","60561","United States",NULL,"0","I am Treasurer and I will be Master at the end of September,of King Ocars Lodge No855, Chicago, Il.","0","0",NULL,NULL
+"1508301907-3e65","2015-08-30 19:07:14","3","3e651815-30-08","guest","0","7.5","0","27.5","106",NULL,NULL,"Mark H Smith",,"1900 N 29th St",,"Boise","Idaho","83703","United States",NULL,"0",,"0","0",NULL,NULL
+"1508302025-a1b5","2015-08-30 20:25:52","3","a1b5f814-09-09","account","0","0","0","68","0",NULL,NULL,"John Perry","Allstate","9931 Corporate Campus Dr Ste 2000",,"Louisville","Kentucky","40223-4034","United States",NULL,"0",,"0","0",NULL,NULL
+"1508310830-c26d","2015-08-31 08:30:58","3","c26d8913-16-05","account","0","0","0","123","0",NULL,NULL,"Robert Drzewucki","Robert Drzewucki","118 Brockmoore Drive",,"East Amherst","New York","14051","United States",NULL,"0",,"0","0",NULL,NULL
+"1508311326-c329","2015-08-31 13:26:53","3","c3292d15-31-08","account","0","7.5","0","27.5","106",NULL,NULL,"James Chase",,"46 Tuftonboro Neck Road",,"Mirror Lake","New Hampshire","03853","United States",NULL,"0",,"0","0",NULL,NULL
+"1508311220-4111","2015-08-31 12:20:52","3","41114715-31-08","account","0","15","0","109","106",NULL,NULL,"Ernie Shoup","San Juan No 25","906 Mountain View Dr.",,"Aztec","New Mexico","87410","United States",NULL,"0",,"0","0",NULL,NULL
+"1508311427-f703","2015-08-31 14:27:10","3","f7039c15-31-08","account","0","8.5","0","32.5","106",NULL,NULL,"jeff lank",,"346 owls nest drive",,"bear","Delaware","19701","United States",NULL,"0",,"0","0",NULL,NULL
+"1508311430-a6b4","2015-08-31 14:30:30","3","a6b48d15-31-08","guest","0","0","0","73","106",NULL,NULL,"Lester Hanson","Salem Lodge 125 F.$A.M.","110 N. Van NHess St.,",,"West Salem","Wisconsin","54669-1603","United States",NULL,"0",,"0","0",NULL,NULL
+"1508311455-597c","2015-08-31 14:55:35","3","597cd315-31-08","account","0","7.5","0","27.5","106",NULL,NULL,"Billy Hewitt",,"601 Lower Brookhaven Rd.",,"Monticello","Mississippi","39654-3585","United States",NULL,"0",,"0","0",NULL,NULL
+"1508312227-1ebf","2015-08-31 22:27:26","3","1ebf1415-31-08","guest","0","0","0","68","0",NULL,NULL,"Eugene Olofson",,"19 Proudfit St.",,"Jamestown","New York","14701","United States",NULL,"0",,"0","0",NULL,NULL
+"1509010757-c0c4","2015-09-01 07:57:51","3","c0c47a15-01-09","guest","0","7.5","0","27.5","106",NULL,NULL,"EUGENE ELWELL",,"142 GREENVIEW TERRACE",,"MOUNT LAUREL","New Jersey","08054","United States",NULL,"0",,"0","0",NULL,NULL
+"1509010855-fbcf","2015-09-01 08:55:05","3","fbcff415-01-09","account","0","10.5","0","58.5","106",NULL,NULL,"Russell Oliver",,"1460 Raymont Dr",,"Kettering","Ohio","45429","United States",NULL,"0",,"0","0",NULL,NULL
+"1509011057-dc61","2015-09-01 10:57:45","3","dc610a15-01-09","account","0","0","0","68","0",NULL,NULL,"leonel zolessi",,"209 bear dr ",,"richland","Washington","99352","United States",NULL,"0",,"0","0",NULL,NULL
+"1509011249-bb7a","2015-09-01 12:49:29","3","bb7a3715-01-09","account","0","7.5","0","27.5","106",NULL,NULL,"Daniel Weiner",,"105 Partree Rd",,"Cherry Hill","New Jersey","08003","United States",NULL,"0",,"0","0",NULL,NULL
+"1509011649-4087","2015-09-01 16:49:16","3","40872a15-01-09","account","0","7.5","0","27.5","106",NULL,NULL,"John Godsey","John Godsey","127 Clements Road",,"Cumberland,,","Virginia","23040","United States",NULL,"0",,"0","0",NULL,NULL
+"1509021847-0a8a","2015-09-02 18:47:13","3","0a8a6a15-02-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Beynon St John",,"566 Cliff",,"Lander","Wyoming","82520","United States",NULL,"0",,"0","0",NULL,NULL
+"1509022224-44df","2015-09-02 22:24:44","1","44df5c14-17-04","account","0","7.5","0","27.5","106",NULL,NULL,"Eric Sims",,"1909 East 19th Street",,"Georgetown","Texas","78626-7331","United States",NULL,"0",,"0","0",NULL,NULL
+"1509022227-44df","2015-09-02 22:27:19","3","44df5c14-17-04","account","0","7.5","0","27.5","106",NULL,NULL,"Eric Sims",,"1909 East 19th Street",,"Georgetown","Texas","78626-7331","United States",NULL,"0",,"0","0",NULL,NULL
+"1509031442-5f35","2015-09-03 14:42:30","3","5f358115-03-09","account","0","7.5","0","30.1","106",NULL,NULL,"james Hammond","CITY DRUG STORE","104 E. Belknap",,"Jacksboro","Texas","76458","United States",NULL,"0",,"0","0",NULL,NULL
+"1509031459-d538","2015-09-03 14:59:19","3","d538c315-02-09","account","0","0","0","98","0",NULL,NULL,"Phillip Waker","Phillip Walker","1782 Rockdale Circle",,"SNELLVILLE","Georgia","30078-3404","United States",NULL,"0",,"0","0",NULL,NULL
+"1509031610-ddbe","2015-09-03 16:10:44","3","ddbed415-03-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Samuel Bennett",,"6211 Harlow Blvd.",,"Jacksonville","Florida","32210","United States",NULL,"0",,"0","0",NULL,NULL
+"1509031657-77da","2015-09-03 16:57:38","3","77da2315-03-09","account","0","0","0","12","0",NULL,NULL,"Rob Matherly",,"803 Bank St",,"Centerville","Iowa","52544","United States",NULL,"0",,"0","0",NULL,NULL
+"1509031910-50ce","2015-09-03 19:10:29","1","50ce7d15-03-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Stephen Godfrey","S. Godfrey","18 - 4300 Stoneywood Lane","Victoria BC V8X 5A5","CANADA","Alabama","V8X 5A5","United States",NULL,"0",,"0","0",NULL,NULL
+"1509031917-940c","2015-09-03 19:17:14","1","940c1f15-03-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Stephen Godfrey","S. Godfrey","18-4300 Stoneywood Lane",,"Victoria","Alabama","V8X 5A5","United States",NULL,"0",,"0","0",NULL,NULL
+"1509040128-b33d","2015-09-04 01:28:46","3","b33df314-09-12","account","0","7.5","0","27.5","106",NULL,NULL,"Robert Ribbeck","Home","4808 s. cherry ave",,"Tucson","Arizona","85714","United States",NULL,"0",,"0","0",NULL,NULL
+"1509041217-8b21","2015-09-04 12:17:51","3","8b214715-04-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Jerry Garris",,"2901 Lyndell Way",,"Lancaster","South Carolina","29720","United States",NULL,"0",,"0","0",NULL,NULL
+"1509041610-8a8b","2015-09-04 16:10:11","1","8a8bec15-04-09","account","0","7.5","0","27.5","106",NULL,NULL,"Daniel Hobson",,"204 S. Nursery Rd",,"Leesburg","Florida","34748","United States",NULL,"0",,"0","0",NULL,NULL
+"1509041615-8a8b","2015-09-04 16:15:35","3","8a8bec15-04-09","account","0","7.5","0","27.5","106",NULL,NULL,"Daniel Hobson",,"204 S. Nursery Rd",,"Leesburg","Florida","34748","United States",NULL,"0",,"0","0",NULL,NULL
+"1509041754-906a","2015-09-04 17:54:33","3","906a7615-04-09","guest","0","7.5","0","27.5","106",NULL,NULL,"charles ramsey",,"po box 1053",,"fredericksburg","Texas","78624","United States",NULL,"0",,"0","0",NULL,NULL
+"1509041949-d420","2015-09-04 19:49:31","3","d420ae14-16-09","account","0","7.5","0","27.5","106",NULL,NULL,"Jim Kendall","Telebyte NW","900 Sheridan Road","Ste 108","Bremerton","Washington","98310","United States",NULL,"0",,"0","0",NULL,NULL
+"1509042044-8d73","2015-09-04 20:44:30","3","8d73eb15-04-09","account","0","7.5","0","27.5","106",NULL,NULL,"Robert Ossont",,"60 Hopkins Street",,"Mount Morris","New York","14510","United States",NULL,"0",,"0","0",NULL,NULL
+"1509042142-de1b","2015-09-04 21:42:08","3","de1bb315-04-09","guest","0","9.5","0","49.5","106",NULL,NULL,"Danny Uden",,"27087 155th Rd",,"Arkansas City","Kansas","67005","United States",NULL,"0",,"0","0",NULL,NULL
+"1509050933-bd80","2015-09-05 09:33:00","1","bd808815-05-09","account","0","7.5","0","27.5","106",NULL,NULL,"Kenneth Smith",,"P.O. Box 3084",,"Alice","Texas","78333","United States",NULL,"0",,"0","0",NULL,NULL
+"1509050935-bd80","2015-09-05 09:35:49","3","bd808815-05-09","account","0","7.5","0","27.5","106",NULL,NULL,"Kenneth Smith",,"P.O. Box 3084",,"Alice","Texas","78333","United States",NULL,"0",,"0","0",NULL,NULL
+"1509051156-adad","2015-09-05 11:56:43","3","adadec15-05-09","account","0","9.5","0","47.5","106",NULL,NULL,"Kurt Wagner","Tropical Lodge # 56","5072 Fiddleleaf Drive",,"Ft. Myers","Florida","33905-5131","United States",NULL,"0",,"0","0",NULL,NULL
+"1509051244-add0","2015-09-05 12:44:58","3","add01315-05-09","account","0","0","0","4","106",NULL,NULL,"Gary Wilson","Gary Wilson","44 S. Adams Street","#225","Denver","Colorado","80209","United States",NULL,"0",,"0","0",NULL,NULL
+"1509061640-9eb7","2015-09-06 16:40:05","3","9eb7e315-06-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Andre Beliveau",,"908 Tower Ave. ",,"Maybrook","New York","12543","United States",NULL,"0",,"0","0",NULL,NULL
+"1509071237-7091","2015-09-07 12:37:54","3","70915415-07-09","account","0","7.5","0","27.5","106",NULL,NULL,"Joel Graeter","Tyler Chapter #24/G.M. Patrick Council #13","13613 C.R. 2241",,"Tyler","Texas","75707","United States",NULL,"0",,"0","0",NULL,NULL
+"1509071507-363b","2015-09-07 15:07:23","3","363bb715-07-09","guest","0","11.5","0","78.6","106",NULL,NULL,"Cecil O. Akin",,"71 N. Elm St",,"LaBelle","Florida","33935","United States",NULL,"0","overnite ups if possible","0","0",NULL,NULL
+"1509072338-c18f","2015-09-07 23:38:17","3","c18fb915-07-09","account","0","7.5","0","39.5","106",NULL,NULL,"Robert Gore",,"26-25 30th Street, 2",,"Astoria","New York","11102","United States",NULL,"0",,"0","0",NULL,NULL
+"1509081107-7635","2015-09-08 11:07:27","3","7635a415-08-09","guest","0","0","0","12","0",NULL,NULL,"Tom Sutton",,"6659 Steamboat Springs Dr",,"White Lake","Michigan","48383","United States",NULL,"0",,"0","0",NULL,NULL
+"1509081315-5148","2015-09-08 13:15:10","3","51481515-08-09","guest","0","8.5","0","44.5","106",NULL,NULL,"James Hamlin",,"801 213th St SE",,"Bothell","Washington","98021","United States",NULL,"0",,"0","0",NULL,NULL
+"1509081344-42b5","2015-09-08 13:44:14","1","42b53a14-11-11","account","0","7.5","0","27.5","106",NULL,NULL,"JOSEPH K. BARBARA",,"289 Miller ave",,"Branchburg","New Jersey","08876","United States",NULL,"0",,"0","0",NULL,NULL
+"1509081347-42b5","2015-09-08 13:47:52","3","42b53a14-11-11","account","0","7.5","0","27.5","106",NULL,NULL,"JOSEPH K. BARBARA",,"289 Miller ave",,"Branchburg","New Jersey","08876","United States",NULL,"0",,"0","0",NULL,NULL
+"1509092101-ce1a","2015-09-09 21:01:43","1","ce1a2615-09-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Walter Brown",,"1625 County Road 720",,"Buna","Texas","77612","United States",NULL,"0",,"0","0",NULL,NULL
+"1509092122-90b7","2015-09-09 21:22:15","3","90b74d15-09-09","account","0","7.5","0","27.5","106",NULL,NULL,"Walter Brown",,"1625 County Road 720",,"Buna","Texas","77612","United States",NULL,"0",,"0","0",NULL,NULL
+"1509100930-e20a","2015-09-10 09:30:29","1","e20aa815-10-09","account","0","11.5","0","75.5","106",NULL,NULL,"Thomas Lowe","Grand Lodge of NH","PO Box 486","30 Mont Vernon St","Milford ","New Hampshire","03055-0486","United States",NULL,"0",,"0","0",NULL,NULL
+"1509101452-691d","2015-09-10 14:52:49","3","691d0815-10-09","guest","0","11.5","0","65.5","106",NULL,NULL,"Bruce Dickinson",,"137 Diamond View",,"La Vernia","Texas","78121","United States",NULL,"0",,"0","0",NULL,NULL
+"1509101619-3b47","2015-09-10 16:19:56","3","3b476115-10-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Doug Kirk","Mt. Olivet Lodge # 226","1721 South Alcony-Conover Road",,"Troy","Ohio","45373","United States",NULL,"0",,"0","0",NULL,NULL
+"1509102338-f8de","2015-09-10 23:38:40","3","f8def815-10-09","guest","0","8.5","0","33.6","106",NULL,NULL,"John Maihos",,"27 Pearl St",,"Beverly","Massachusetts","01915","United States",NULL,"0",,"0","0",NULL,NULL
+"1509121127-65a3","2015-09-12 11:27:39","3","65a31115-12-09","account","0","7.5","0","27.5","106",NULL,NULL,"Daniel French",,"345 W 20th St",,"Holland","Michigan","49423","United States",NULL,"0",,"0","0",NULL,NULL
+"1509121714-23d6","2015-09-12 17:14:12","3","23d63015-12-09","account","0","0","0","5","106",NULL,NULL,"Edwin Pertubal",,"3626 Misty Woods Circle",,"Pace","Florida","32571","United States",NULL,"0",,"0","0",NULL,NULL
+"1509131233-1daf","2015-09-13 12:33:19","5","1daf0715-13-09","account","0","7.5","0","37.5","106",NULL,NULL,"Jim Thomas",,"280 N 8th St","Apt 305","Boise","Idaho","83702","United States",NULL,"0",,"0","0",NULL,NULL
+"1509131533-8dc1","2015-09-13 15:33:32","3","8dc10015-13-09","account","0","8.5","0","33.5","106",NULL,NULL,"TONY TELKEN",,"2642 AUGUSTA DRIVE",,"GRAND FORKS","North Dakota","58201","United States",NULL,"0",,"0","0",NULL,NULL
+"1509131604-2893","2015-09-13 16:04:07","3","28934f15-13-09","account","0","7.5","0","27.5","106",NULL,NULL,"David Carsno",,"213 Stevers Mill rd",,"Broadalbin","New York","12025","United States",NULL,"0",,"0","0",NULL,NULL
+"1509132054-be78","2015-09-13 20:54:52","3","be788815-13-09","account","0","0","0","98","0",NULL,NULL,"robert loflin",,"323 N colorado st",,"port lavaca","Texas","77979","United States",NULL,"0",,"0","0",NULL,NULL
+"1509141049-3d27","2015-09-14 10:49:51","3","3d278f15-14-09","account","0","8.5","0","33.5","106",NULL,NULL,"Adolph Lopez",,"1716 Quesada Way",,"Burlingame","California","94010","United States",NULL,"0",,"0","0",NULL,NULL
+"1509141318-dca7","2015-09-14 13:18:18","3","dca79a15-14-09","guest","0","0","0","4","106",NULL,NULL,"Gary Hubbard",,"5842 Indiana St.",,"Buena Park","California","90621","United States",NULL,"0",,"0","0",NULL,NULL
+"1509141733-b584","2015-09-14 17:33:36","3","b584cd15-14-09","account","0","0","0","12","0",NULL,NULL,"Cameron Olsen",,"1911 W Fruit Tree Ln",,"Queen Creek","Arizona","85142-6355","United States",NULL,"0",,"0","0",NULL,NULL
+"1509151240-b148","2015-09-15 12:40:37","1","b148ae15-15-09","guest","0","7.5","0","27.5","106",NULL,NULL,"James Stephenson",,"5585 Johnson Grove Rd",,"Alamo","Tennessee","38001","United States",NULL,"0",,"0","0",NULL,NULL
+"1509151244-d248","2015-09-15 12:44:45","3","d2485615-15-09","guest","0","7.5","0","27.5","106",NULL,NULL,"James Stephenson",,"5585 Johnson Grove Rd",,"Alamo","Tennessee","38001","United States",NULL,"0",,"0","0",NULL,NULL
+"1509161103-2a44","2015-09-16 11:03:57","3","2a443815-16-09","guest","0","11.5","0","67.6","106",NULL,NULL,"Gary Sparks","SPARKS FAMILY LAW, INC.","2890 North Main Street, Suite 205",,"Walnut Creek","California","94597","United States",NULL,"0","UPS 2-DAY ship to arrive Friday 9/18","0","0",NULL,NULL
+"1509161454-3bea","2015-09-16 14:54:55","3","3beaf715-16-09","account","0","0","0","13","106",NULL,NULL,"Michael Miller","Michael Miller","640 mix avenue apt5N",,"Hamden","Connecticut","06514","United States",NULL,"0",,"0","0",NULL,NULL
+"1509161806-429e","2015-09-16 18:06:50","3","429eeb15-16-09","guest","0","9.5","0","45.5","106",NULL,NULL,"Jared Decker","%HRCA","PO Box 8710",,"Kodiak","Alaska","99615","United States",NULL,"0",,"0","0",NULL,NULL
+"1509161931-6d7d","2015-09-16 19:31:47","3","6d7df315-16-09","account","0","7.5","0","27.5","106",NULL,NULL,"Michael Russell",,"411 Riedel Avenue",,"Staten Island","New York","10306","United States",NULL,"0",,"0","0",NULL,NULL
+"1509170401-0284","2015-09-17 04:01:00","3","02849c13-31-03","account","0","8.5","0","34.5","106",NULL,NULL,"David Colbeth",,"21816 113th Street East",,"Bonney Lake","Washington","98391","United States",NULL,"0",,"0","0",NULL,NULL
+"1509170928-03a5","2015-09-17 09:28:01","1","03a5cc15-17-09","guest","0","7.5","0","27.5","106",NULL,NULL,"John Hussey",,"Box 1428","Lance Cove","Bell Island, NL. Canada","Alabama","A0A 2V0","United States",NULL,"0",,"0","0",NULL,NULL
+"1509171021-c47c","2015-09-17 10:21:15","3","c47cbf15-17-09","account","0","7.5","0","27.5","106",NULL,NULL,"David Waggoner",,"2895 Twana dr",,"London","Ohio","43140","United States",NULL,"0",,"0","0",NULL,NULL
+"1509172241-7547","2015-09-17 22:41:09","3","75470215-17-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Terry Pounders",,"3931 County Road 30",,"Florence","Alabama","35634","United States",NULL,"0",,"0","0",NULL,NULL
+"1509181220-47d1","2015-09-18 12:20:30","1","47d1ef15-17-07","account","0","8.5","0","33.5","106",NULL,NULL,"Dieter Hees",,"410 Merion Ave",,"Pine Beach","New Jersey","08741","United States",NULL,"0",,"0","0",NULL,NULL
+"1509181847-306c","2015-09-18 18:47:09","3","306c6115-18-09","guest","0","10.5","0","57.5","106",NULL,NULL,"Armando G. Caceres","Oso Naval Lodge No. 1282 A.F. & A.M.","4202 Aaron Cove",,"Corpus Christi","Texas","78413","United States",NULL,"0",,"0","0",NULL,NULL
+"1509191229-576d","2015-09-19 12:29:56","3","576d6015-19-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Virgil T Larimore",,"1007 Juniper Springs Drive",,"Louisville","Kentucky","40242-7652","United States",NULL,"0",,"0","0",NULL,NULL
+"1509201403-a5ad","2015-09-20 14:03:15","3","a5ad8415-20-09","guest","0","8.5","0","30.5","106",NULL,NULL,"Bruce Dickinson",,"137 Diamond View",,"La Vernia","Texas","78121","United States",NULL,"0",,"0","0",NULL,NULL
+"1509211107-12b6","2015-09-21 11:07:16","3","12b62715-21-09","account","0","7.5","0","27.5","106",NULL,NULL,"Benjamin Polston",,"2859 Bridle Creek Drive SW",,"Conyers","Georgia","30094","United States",NULL,"0",,"0","0",NULL,NULL
+"1509211430-4cf0","2015-09-21 14:30:32","3","4cf0c214-25-08","account","0","7.5","0","30.5","106",NULL,NULL,"Ryan Peterson",,"PO BOX 27","14871 Shady Grove Lane","Norwood","Louisiana","70761","United States",NULL,"0",,"0","0",NULL,NULL
+"1509211456-4cf0","2015-09-21 14:56:02","3","4cf0c214-25-08","account","0","0","0","4","106",NULL,NULL,"Ryan Peterson",,"PO BOX 27","14871 Shady Grove Lane","Norwood","Louisiana","70761","United States",NULL,"0",,"0","0",NULL,NULL
+"1509211623-c397","2015-09-21 16:23:01","1","c3979d15-21-09","account","0","20","0","226","106",NULL,NULL,"J. Michael Atchley","Tucson Scottish Rite","12522 N. Gentle Rain Dr.",,"Marana","Arizona","85658","United States",NULL,"0",,"0","0",NULL,NULL
+"1509221640-1929","2015-09-22 16:40:40","3","1929a015-22-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Marc Newman","Perry Grand Family Friend","2235 Stacy Lane",,"Camarillo","California","93012","United States",NULL,"0",,"0","0",NULL,NULL
+"1509230900-8ca4","2015-09-23 09:00:44","3","8ca4c715-23-09","account","0","0","0","12","0",NULL,NULL,"Marvin Banister","Renu-it, Inc.","3401 Old Dawson Rd",,"Albany","Georgia","31721","United States",NULL,"0",,"0","0",NULL,NULL
+"1509230906-8ca4","2015-09-23 09:06:01","3","8ca4c715-23-09","account","0","7.5","0","27.5","106",NULL,NULL,"Marvin Banister","Renu-it, Inc.","3401 Old Dawson Rd",,"Albany","Georgia","31721","United States",NULL,"0",,"0","0",NULL,NULL
+"1509231150-574f","2015-09-23 11:50:21","3","574f2415-23-09","account","0","0","0","12","0",NULL,NULL,"David Ozvat",,"6641 Spencer Place",,"Ocean Isle Beach","North Carolina","28469","United States",NULL,"0",,"0","0",NULL,NULL
+"1509231217-9cc8","2015-09-23 12:17:29","3","9cc8b215-23-09","guest","0","8.5","0","36.5","106",NULL,NULL,"Wayne Krause",,"12073 State Route 101",,"Caulfield","Missouri","65626","United States",NULL,"0",,"0","0",NULL,NULL
+"1509240053-2894","2015-09-24 00:53:30","3","2894cf15-24-09","account","0","7.5","0","27.5","106",NULL,NULL,"Allen Gibson","Allen Gibson","113 South 39th",,"Van Buren","Arkansas","72956","United States",NULL,"0",,"0","0",NULL,NULL
+"1509241000-d5b5","2015-09-24 10:00:58","1","d5b54f15-24-09","guest","0","20","0","370","106",NULL,NULL,"Thomas Foster","Grand Lodge of A.F. & A.M. of Maryland","304 International Circle",,"Cockeysville","Maryland","21030","United States",NULL,"0",,"0","0",NULL,NULL
+"1509241008-9719","2015-09-24 10:08:55","3","97191e15-24-09","guest","0","20","0","370","106",NULL,NULL,"Thomas Foster","Grand Lodge of A.F. & A.M. of Maryland","304 International Circle",,"Cockeysville","Maryland","21030","United States",NULL,"0",,"0","0",NULL,NULL
+"1509241946-36ed","2015-09-24 19:46:36","3","36edea13-02-04","account","0","7.5","0","27.5","106",NULL,NULL,"Charles Roberts","Charles Roberts","6101 Velonia Drive",,"West Richland","Washington","99353","United States",NULL,"0",,"0","0",NULL,NULL
+"1509271629-56c7","2015-09-27 16:29:10","3","56c73115-27-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Michael Slattery",,"2526 State Rte. 295",,"Canaan","New York","12029","United States",NULL,"0",,"0","0",NULL,NULL
+"1509281237-98bc","2015-09-28 12:37:17","1","98bcbc15-28-09","guest","0","11.5","0","71.5","106",NULL,NULL,"Nathan Zahn",,"2611 Northgate Rd",,"Wilmington","Delaware","19810","United States",NULL,"0",,"0","0",NULL,NULL
+"1509281241-c635","2015-09-28 12:41:47","3","c6356e15-28-09","guest","0","11.5","0","71.5","106",NULL,NULL,"Zahn Nate",,"2611 northgate Rd",,"Wilmington","Delaware","19810","United States",NULL,"0",,"0","0",NULL,NULL
+"1509282040-6100","2015-09-28 20:40:02","3","61003d15-28-09","account","0","8.5","0","36.7","106",NULL,NULL,"Justo Gonzalez-Trapaga",,"PO Box 3007",,"Mayaguez","Armed Forces America","00681","United States",NULL,"0",,"0","0",NULL,NULL
+"1509282051-8755","2015-09-28 20:51:48","3","87554215-28-09","account","0","7.5","0","27.5","106",NULL,NULL,"Larry Schmidt",,"4909 Hoen Avenue",,"Santa Rosa","California","95405-7411","United States",NULL,"0",,"0","0",NULL,NULL
+"1509290826-a677","2015-09-29 08:26:20","1","a677fe13-04-11","account","0","0","0","12","0",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"0","0",NULL,NULL
+"1509291237-aa57","2015-09-29 12:37:33","3","aa57a615-29-09","account","0","15","0","190","106",NULL,NULL,"Lynne Blaylock","Grand Lodge of Washington","4970 Bridgeport Way W",,"University Place","Washington","98467","United States",NULL,"0",,"0","0",NULL,NULL
+"1509300042-866a","2015-09-30 00:42:43","3","866ad815-30-09","account","0","9.5","0","45.5","106",NULL,NULL,"Russ Smith",,"P.O. Box 276","605 Hazel Ave","Arco","Idaho","83213","United States",NULL,"0","send to P.O. Box if possible, otherwise send to physical address.","0","0",NULL,NULL
+"1509301040-d466","2015-09-30 10:40:28","3","d4668715-30-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Steve Pepper",,"112 N. Central Ave","P.O. Box 241","Knox City","Texas","79529","United States",NULL,"0","If by mail use P.O. Box","0","0",NULL,NULL
+"1509301113-09e1","2015-09-30 11:13:07","1","09e1a315-30-09","guest","0","7.5","0","27.5","106",NULL,NULL,"Rick Gunter",,"817 Meadow Point Rd",,"Salisbury","Maryland","21801","United States",NULL,"0",,"0","0",NULL,NULL
+"1509301236-aebd","2015-09-30 12:36:02","3","aebd0e15-30-09","account","0","9.5","0","42.5","106",NULL,NULL,"Bill Jacobs","Bill Jacobs","228 Holiday Circle",,"Savannah","Georgia","31419","United States",NULL,"0",,"0","0",NULL,NULL
+"1509301408-dd30","2015-09-30 14:08:21","3","dd30ef15-30-09","account","0","8.5","0","48","106",NULL,NULL,"Roland Sehne",,"54 Wayne St",,"Hauppauge","New York","11788","United States",NULL,"0",,"0","0",NULL,NULL
+"1510010609-95ba","2015-10-01 06:09:33","3","95ba5e14-31-12","account","0","8.5","0","33.6","106",NULL,NULL,"Ronny D Powell",,"3696 Highway 221 S",,"Laurens","South Carolina","293607442","United States",NULL,"0",,"0","0",NULL,NULL
+"1510021252-584b","2015-10-02 12:52:08","3","584be614-01-05","account","0","7.5","0","125.5","106",NULL,NULL,"Marcy Dupre",,"1503 Canyon Court",,"Port Orchard","Washington","98366","United States",NULL,"0",,"0","0",NULL,NULL
+"1510031932-ad12","2015-10-03 19:32:15","3","ad12fd15-03-10","guest","0","10.5","0","60.5","106",NULL,NULL,"Steven Hessler",,"628 1/2 N SANDUSKY ST",,"BELLEVUE","Ohio","44811-1251","United States",NULL,"0",,"0","0",NULL,NULL
+"1510032114-c580","2015-10-03 21:14:10","3","c5802d15-03-10","account","0","7.5","0","27.5","106",NULL,NULL,"Garry Paris",,"1304 Phyllis Dr",,"Copperas Cove","Texas","76522","United States",NULL,"0",,"0","0",NULL,NULL
+"1510051246-2900","2015-10-05 12:46:56","3","2900eb14-20-08","account","0","20","0","245","106",NULL,NULL,"Monte Bollar","Grand Lodge of Idaho","219 N. 17th St.",,"Boise","Idaho","83702","United States",NULL,"0",,"0","0",NULL,NULL
+"1510081124-c584","2015-10-08 11:24:17","3","c584ae15-08-10","guest","0","7.5","0","27.5","106",NULL,NULL,"Jon Taylor","Dolcito Masonic Lodge","16807 Remlap Drive",,"Remlap","Alabama","35133","United States",NULL,"0",,"0","0",NULL,NULL
+"1510101604-b269","2015-10-10 16:04:48","3","b2694a15-10-10","account","0","4","0","14","106",NULL,NULL,"Brian Work",,"7326 Briella Drive",,"Boynton Beach","Florida","33437","United States",NULL,"0",,"0","0",NULL,NULL
+"1510101614-c724","2015-10-10 16:14:52","3","c724ed15-10-10","guest","0","0","0","12","0",NULL,NULL,"Joel Friedman",,"4226 Wexford Way",,"Eagan","Minnesota","55122","United States",NULL,"0",,"0","0",NULL,NULL
+"1510101708-f8bf","2015-10-10 17:08:16","3","f8bf6215-10-10","guest","0","0","0","16","106",NULL,NULL,"Paul Colley III",,"4281 Sunset Dr.",,"Lockport","New York","14094","United States",NULL,"0",,"0","0",NULL,NULL
+"1510102228-337c","2015-10-10 22:28:14","3","337c6215-10-10","guest","0","0","0","5","106",NULL,NULL,"Kirk Hall",,"450 Mosswood Blvd",,"Indialantic","Florida","32903","United States",NULL,"0",,"0","0",NULL,NULL
+"1510112014-2893","2015-10-11 20:14:48","3","28934f15-13-09","account","0","8.5","0","33.7","106",NULL,NULL,"David Carsno",,"213 Stevers Mill rd",,"Broadalbin","New York","12025","United States",NULL,"0",,"0","0",NULL,NULL
+"1510161639-0660","2015-10-16 16:39:16","3","06606e15-16-10","guest","0","4","0","22","106",NULL,NULL,"Larry Kent",,"529 Sevilla pl",,"The villages","Florida","32159","United States",NULL,"0",,"0","0",NULL,NULL
+"1510161904-08d9","2015-10-16 19:04:21","3","08d9f115-16-10","account","0","0","0","12","0",NULL,NULL,"Roger Quintana",,"75 Cameo Pl",,"Colonia","New Jersey","07067","United States",NULL,"0",,"0","0",NULL,NULL
+"1510171601-f60c","2015-10-17 16:01:40","3","f60cca15-17-10","account","0","7.5","0","27.5","106",NULL,NULL,"Harold Ewing",,"2601 ne 26th terrace",,"Boca Raton","Florida","33431","United States",NULL,"0",,"0","0",NULL,NULL
+"1510181721-6f1c","2015-10-18 17:21:54","3","6f1c8515-18-10","guest","0","0","0","12","0",NULL,NULL,"Donald Weiner",,"156 Hilltop Drive",,"Churchville","Pennsylvania","18966","United States",NULL,"0",,"0","0",NULL,NULL
+"1510191209-84b2","2015-10-19 12:09:09","3","84b22214-28-08","account","0","0","0","12","0",NULL,NULL,"Peter Stein",,"3519 Wallace Dr.",,"Grand Island","New York","14072","United States",NULL,"0",,"0","0",NULL,NULL
+"1510191411-dc67","2015-10-19 14:11:41","3","dc679315-19-10","guest","0","7.5","0","203.5","106",NULL,NULL,"Robert Hobday",,"80 Sycamore Drive","APT 317","Elizabethtown","Pennsylvania","17022","United States",NULL,"0",,"0","0",NULL,NULL
+"1510191553-2bc0","2015-10-19 15:53:28","3","2bc02c13-17-06","account","0","0","0","12","0",NULL,NULL,"Clarence Tucker",,"4 Johnson Road",,"LaGrangeville","New York","12540","United States",NULL,"0",,"0","0",NULL,NULL
+"1510201130-f8cd","2015-10-20 11:30:56","5","f8cd0114-03-10","account","0","0","0","12","0",NULL,NULL,"Keith Wohlfert",,"N2594 County Road A",,"Oxford","Wisconsin","53952","United States",NULL,"0",,"0","0",NULL,NULL
+"1510201134-f8cd","2015-10-20 11:34:43","1","f8cd0114-03-10","account","0","0","0","12","0",NULL,NULL,"Keith Wohlfert",,"N2594 County Road A",,"Oxford","Wisconsin","53952","United States",NULL,"0",,"0","0",NULL,NULL
+"1510210501-2d37","2015-10-21 05:01:56","3","2d375215-21-10","account","0","8.5","0","46.6","106",NULL,NULL,"Dean Fryda",,"7926 336th Ave.",,"Burlington","Wisconsin","53105","United States",NULL,"0",,"0","0",NULL,NULL
+"1510211129-118e","2015-10-21 11:29:50","3","118e8e15-21-10","account","0","15","0","105.2","106",NULL,NULL,"Kenneth Fails",,"8230 Stationhouse Court",,"Lorton","Virginia","22079","United States",NULL,"0",,"0","0",NULL,NULL
+"1510212047-317e","2015-10-21 20:47:21","3","317e4315-21-10","guest","0","0","0","98","0",NULL,NULL,"David Burkus",,"74 Wellington Drive",,"Hampton","Virginia","236662855","United States",NULL,"0",,"0","0",NULL,NULL
+"1510212334-2740","2015-10-21 23:34:01","3","2740a715-28-08","account","0","0","0","12","0",NULL,NULL,"dean adams",,"212 Countrywood Circle",,"Sour Lake","Texas","77659","United States",NULL,"0",,"0","0",NULL,NULL
+"1510221412-d7c6","2015-10-22 14:12:33","3","d7c6c915-22-10","guest","0","7.5","0","27.5","106",NULL,NULL,"Nathan Neff","Esoterika #227","709 SW 15th Ave",,"Portland","Oregon","07205","United States",NULL,"0",,"0","0",NULL,NULL
+"1510230915-77fe","2015-10-23 09:15:39","3","77fe3915-23-10","account","0","8.5","0","33.5","106",NULL,NULL,"Philip Devinsky",,"5 Brentwood Terrace",,"Middletown","New Jersey","07748","United States",NULL,"0",,"0","0",NULL,NULL
+"1510231740-e435","2015-10-23 17:40:17","3","e4353715-23-10","account","0","7.5","0","27.5","106",NULL,NULL,"Andre Tia","TS Productions","3102 Monroe ST NE","washington","District of Columbia","District of Columbia","20018","United States",NULL,"0","I am also looking for a leadership
<br>book call Proven and True and Book call tool box. Would you please a catalogue
<br>
<br>Fraternally,","0","0",NULL,NULL
+"1510241045-a116","2015-10-24 10:45:01","3","a116b015-24-10","guest","0","0","0","12","0",NULL,NULL,"Thomas Pinney",,"1814 Utah St.",,"Sturgeon Bay","Wisconsin","54235","United States",NULL,"0","renewal of sub. to ST","0","0",NULL,NULL
+"1510241458-859c","2015-10-24 14:58:02","1","859c7115-24-10","account","0","9.5","0","58.5","106",NULL,NULL,"Dwight Hollon",,"6214 Orange Blossom Lane",,"Rosenberg","Texas","77471","United States",NULL,"0","Even though I purchased one year of the STB,I was concerned that if wanted 5 years and put in 5, I would get 5 copies. Can consecutive years be ordered?","0","0",NULL,NULL
+"1510261119-faf5","2015-10-26 11:19:31","3","faf5eb15-26-10","guest","0","7.5","0","18.5","106",NULL,NULL,"Neil Welch",,"1032-15th Ave NW",,"Demotte","Indiana","46310-8310","United States",NULL,"0",,"0","0",NULL,NULL
+"1510261150-21fc","2015-10-26 11:50:12","3","21fc1515-26-10","account","0","7.5","0","27.5","106",NULL,NULL,"William Davis",,"11768 Mallard Drive",,"Neosho","Missouri","64850","United States",NULL,"0",,"0","0",NULL,NULL
+"1510270819-07ca","2015-10-27 08:19:52","3","07ca9e14-15-09","account","0","7.5","0","33.5","106",NULL,NULL,"John Pearson",,"7400 Whernside Street",,"Lorton","Virginia","22079","United States",NULL,"0",,"0","0",NULL,NULL
+"1510291933-79b7","2015-10-29 19:33:32","1","79b7c215-29-10","account","0","7.5","0","27.5","106",NULL,NULL,"Wilson Camagan",,"94-176 Kehela Place",,"Waipahu","Hawaii","96797","United States",NULL,"0",,"0","0",NULL,NULL
+"1510301039-44f9","2015-10-30 10:39:32","3","44f92015-30-10","guest","0","7.5","0","27.5","106",NULL,NULL,"al cloke",,"621 neptune way",,"cincinnati","Ohio","45244","United States",NULL,"0",,"0","0",NULL,NULL
+"1510310856-fae9","2015-10-31 08:56:13","3","fae96e15-31-10","guest","0","15","0","161","106",NULL,NULL,"Peter Jones",,"450 Sunlight St",,"Cobbtown","Georgia","30420","United States",NULL,"0",,"0","0",NULL,NULL
+"1510311418-4509","2015-10-31 14:18:07","1","45096715-31-10","account","0","8.5","0","30.1","106",NULL,NULL,"Roger Landry",,"1612 Fairwind Ct",,"Carrollton","Texas","75007","United States",NULL,"0",,"0","0",NULL,NULL
+"1510311605-4509","2015-10-31 16:05:00","1","45096715-31-10","account","0","8.5","0","30.5","106",NULL,NULL,"Roger Landry",,"1612 Fairwind Ct",,"Carrollton","Texas","75007","United States",NULL,"0",,"0","0",NULL,NULL
+"1510311612-4509","2015-10-31 16:12:25","1","45096715-31-10","account","0","8.5","0","30","106",NULL,NULL,"Roger Landry",,"1612 Fairwind Ct",,"Carrollton","Texas","75007","United States",NULL,"0",,"0","0",NULL,NULL
+"1510311616-4509","2015-10-31 16:16:14","1","45096715-31-10","account","0","8.5","0","30.1","106",NULL,NULL,"Roger Landry",,"1612 Fairwind Ct",,"Carrollton","Texas","75007","United States",NULL,"0",,"0","0",NULL,NULL
+"1510311856-4509","2015-10-31 18:56:17","1","45096715-31-10","account","0","8.5","0","30","106",NULL,NULL,"Roger Landry",,"1612 Fairwind Ct",,"Carrollton","Texas","75007","United States",NULL,"0",,"0","0",NULL,NULL
+"1511010934-f7d9","2015-11-01 09:34:12","3","f7d9c815-01-11","guest","0","7.5","0","27.5","106",NULL,,"Fred Palmer",,"33 Sharon's Way",,"Wilmington","Delaware","19808","United States",,"0",,"0","0",NULL,"0"
+"1511011251-00b5","2015-11-01 12:51:25","3","00b58215-01-11","guest","0","0","0","4.1","106",NULL,NULL,"Andre Tia","TS Productions","3102 Monroe ST NE",,"Washington","District of Columbia","20018","United States",NULL,"0",,"0","0",NULL,NULL
+"1511011658-6c2e","2015-11-01 16:58:08","3","6c2e6815-01-11","account","0","7.5","0","27.5","106",NULL,NULL,"Richard Dyck",,"P.O. Box 5005",,"Fresno","California","93755-5005","United States",NULL,"0",,"0","0",NULL,NULL
+"1511011720-a677","2015-11-01 17:20:48","1","a677fe13-04-11","account","0","0","0","4","106",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"0","0",NULL,NULL
+"1511021316-89cc","2015-11-02 13:16:46","3","89cccb15-02-11","guest","0","7.5","0","21.5","106",NULL,NULL,"Russ Charvonia",,"5536 N. Bryn Mawr St.",,"Ventura","California","93003","United States",NULL,"0",,"0","0",NULL,NULL
+"1511021331-dbcc","2015-11-02 13:31:55","3","dbccc515-02-11","account","0","7.5","0","27.5","106",NULL,NULL,"Donald Moyer",,"4429 W. Pyracantha Dr.",,"Tucson","Arizona","85741","United States",NULL,"0",,"0","0",NULL,NULL
+"1511021538-8e55","2015-11-02 15:38:23","1","8e551e15-02-11","guest","0","11.5","0","64.5","106",NULL,NULL,"Charles DeMaio","Scottish Rite Cathedral","650 North Meridian St",,"Indianapolis","Indiana","46204","United States",NULL,"0",,"0","0",NULL,NULL
+"1511021540-8e55","2015-11-02 15:40:30","3","8e551e15-02-11","guest","0","11.5","0","64.5","106",NULL,NULL,"Charles DeMaio","Scottish Rite Cathedral","650 North Meridian St",,"Indianapolis","Indiana","46204","United States",NULL,"0",,"0","0",NULL,NULL
+"1511021738-21eb","2015-11-02 17:38:47","3","21eb3b15-02-11","guest","0","7.5","0","21.5","106",NULL,NULL,"Guenther",,"8301 Old Sauk Road",,"Middleton","Wisconsin","53562","United States",NULL,"0",,"0","0",NULL,NULL
+"1511030906-5842","2015-11-03 09:06:31","3","5842ab15-03-11","account","0","0","0","12","0",NULL,NULL,"Mark Campbell",,"8657 22nd Ave S",,"Bloomington","Minnesota","55425-2107","United States",NULL,"0",,"0","0",NULL,NULL
+"1511031444-a38b","2015-11-03 14:44:40","3","a38b7315-03-11","guest","0","0","0","98","0",NULL,NULL,"Christian Moore",,"PO Box 3",,"Weimar","Texas","78962","United States",NULL,"0",,"0","0",NULL,NULL
+"1511031758-7311","2015-11-03 17:58:35","3","7311ef15-03-11","guest","0","7.5","0","27.5","106",NULL,NULL,"Charles Waller Jr",,"11128 FM 521",,"Rosharon","Texas","77583","United States",NULL,"0",,"0","0",NULL,NULL
+"1511040541-fc0a","2015-11-04 05:41:08","3","fc0a4415-04-11","account","0","0","0","12","0",NULL,NULL,"Bernie davis","Bernie davis","153 gillikin dr",,"marshallberg","North Carolina","28553","United States",NULL,"0",,"0","0",NULL,NULL
+"1511040931-c7e0","2015-11-04 09:31:40","3","c7e0f913-28-02","account","0","0","0","12","0",NULL,NULL,"Donald Combs","Frank F. Baker Lodge#46 F&AM","1262 Meadow Lane SE",,"Darien","Georgia","31305","United States",NULL,"0",,"0","0",NULL,NULL
+"1511041904-8590","2015-11-04 19:04:25","3","8590d015-04-11","account","0","7.5","0","29.6","106",NULL,NULL,"Daniel Nye",,"756 Nichols Road",,"New Haven","Vermont","05472","United States",NULL,"0",,"0","0",NULL,NULL
+"1511051444-8e96","2015-11-05 14:44:53","3","8e963814-06-10","account","0","11.5","0","81.5","106",NULL,NULL,"Jeffrey Chan","UPS Store","297 Kinderkamack Road","Suite #101 Box 232","Oradell","New Jersey","07649","United States",NULL,"0",,"0","0",NULL,NULL
+"1511051614-bbd9","2015-11-05 16:14:54","3","bbd9f115-05-11","guest","0","0","0","12","0",NULL,NULL,"Daniel Confer",,"103A Conway Street",,"Carlisle","Pennsylvania","17013","United States",NULL,"0",,"0","0",NULL,NULL
+"1511051751-4d28","2015-11-05 17:51:50","3","4d28c614-03-10","account","0","0","0","12","0",NULL,NULL,"Secretary","Naval Lodge No. 4","330 Pennsylvania Ave",,"Washington","District of Columbia","20003","United States",NULL,"0",,"0","0",NULL,NULL
+"1511061043-a241","2015-11-06 10:43:03","1","a2412a15-06-11","guest","0","8.5","0","50.1","106",NULL,NULL,"CHARLES VANHEEST",,"33323 E CHESAPEAKE STREET #32",,"LEWES","Delaware","19958","United States",NULL,"0",,"0","0",NULL,NULL
+"1511081356-7a99","2015-11-08 13:56:05","1","7a991314-20-09","account","0","0","0","12","0",NULL,NULL,"Ronald Block",,"1523 Enyart Way #102",,"Annapolis","Maryland","21409-5961","United States",NULL,"0",,"0","0",NULL,NULL
+"1511091008-d91c","2015-11-09 10:08:56","3","d91cfc15-09-11","account","0","0","0","12","0",NULL,NULL,"Jim Boaz",,"9350 E Old Pellegrino Rd",,"Tucson","Arizona","85749-8198","United States",NULL,"0",,"0","0",NULL,NULL
+"1511091436-ff15","2015-11-09 14:36:40","3","ff151415-09-11","account","0","9.5","0","42.5","106",NULL,NULL,"David Lorenc",,"424 Old Main Street",,"Asbury","New Jersey","08802","United States",NULL,"0",,"0","0",NULL,NULL
+"1511091656-7d83","2015-11-09 16:56:01","3","7d837415-09-11","guest","0","4","0","22","106",NULL,NULL,"Richard Pierce",,"7330 Dewey Rd.",,"Thompson","Ohio","44086","United States",NULL,"0",,"0","0",NULL,NULL
+"1511101336-9258","2015-11-10 13:36:41","3","9258f615-10-11","account","0","15","0","95","106",NULL,NULL,"Ralph F Black","Alexander C Garrett Lodge","P O Box 140490",,"Dallas","Texas","75214-0490","United States",NULL,"0",,"0","0",NULL,NULL
+"1511111336-47d1","2015-11-11 13:36:35","1","47d1ef15-17-07","account","0","7.5","0","27.5","106",NULL,NULL,"Dieter Hees",,"410 Merion Ave",,"Pine Beach","New Jersey","08741","United States",NULL,"0",,"0","0",NULL,NULL
+"1511111338-47d1","2015-11-11 13:38:11","3","47d1ef15-17-07","account","0","7.5","0","27.5","106",NULL,NULL,"Dieter Hees",,"410 Merion Ave",,"Pine Beach","New Jersey","08741","United States",NULL,"0",,"0","0",NULL,NULL
+"1511111403-1433","2015-11-11 14:03:31","3","1433b115-11-11","account","0","0","0","12","0",NULL,NULL,"Michael Benson",,"3633 NE 18th Avenue",,"Portland","Oregon","97212","United States",NULL,"0",,"0","0",NULL,NULL
+"1511112107-4509","2015-11-11 21:07:41","1","45096715-31-10","account","0","8.5","0","35.6","106",NULL,NULL,"Roger Landry",,"1612 Fairwind Ct",,"Carrollton","Texas","75007","United States",NULL,"0",,"0","0",NULL,NULL
+"1511120756-ee53","2015-11-12 07:56:37","3","ee532515-12-11","account","0","7.5","0","21.5","106",NULL,NULL,"H F Tull","Fort Worth Scottish Rite","1100 Henderson St.",,"Fort Worth","Texas","76102","United States",NULL,"0",,"0","0",NULL,NULL
+"1511121402-a9b7","2015-11-12 14:02:39","3","a9b79c15-12-11","account","0","8.5","0","32.5","106",NULL,NULL,"Jerry Moore","Jaymo Music","110 Kee Road",,"Newnan","Georgia","30263","United States",NULL,"0",,"0","0",NULL,NULL
+"1511121832-8188","2015-11-12 18:32:51","1","81889015-12-11","account","0","0","0","60","0",NULL,NULL,"Steven C. Jones",,"24 Athens Dr.",,"Essex Junction","Vermont","05452-3114","United States",NULL,"0",,"0","0",NULL,NULL
+"1511121835-8188","2015-11-12 18:35:29","3","81889015-12-11","account","0","0","0","60","0",NULL,NULL,"Steven C. Jones",,"24 Athens Dr.",,"Essex Junction","Vermont","05452-3114","United States",NULL,"0",,"0","0",NULL,NULL
+"1511122356-4509","2015-11-12 23:56:49","3","45096715-31-10","account","0","8.5","0","35.1","106",NULL,NULL,"Roger Landry",,"1612 Fairwind Ct",,"Carrollton","Texas","75007","United States",NULL,"0",,"0","0",NULL,NULL
+"1511130901-2b6b","2015-11-13 09:01:50","3","2b6b8f15-13-11","guest","0","7.5","0","27.5","106",NULL,NULL,"Nicholas Mantello",,"86 Hathaway St.",,"North Adams","Massachusetts","01247","United States",NULL,"0",,"0","0",NULL,NULL
+"1511131219-3278","2015-11-13 12:19:57","3","32780915-13-11","guest","0","8.5","0","38.5","106",NULL,NULL,"Marshall Clowers",,"200 Circle Drive NE",,"Cleveland","Tennessee","37312","United States",NULL,"0",,"0","0",NULL,NULL
+"1511141627-fbd5","2015-11-14 16:27:52","3","fbd50715-14-11","guest","0","0","0","12","0",NULL,NULL,"Aldo Ghirarduzzi",,"1 Edgewater Place",,"Glens Falls","New York","12801","United States",NULL,"0",,"0","0",NULL,NULL
+"1511141636-c79d","2015-11-14 16:36:37","3","c79d9515-14-11","account","0","0","0","12","0",NULL,NULL,"Justin C. Vannis",,"8810 Old Vincennes Rd.",,"Greenville","Indiana","47124","United States",NULL,"0",,"0","0",NULL,NULL
+"1511152152-7046","2015-11-15 21:52:35","3","7046d515-15-11","account","0","0","0","12","0",NULL,NULL,"J. Arthur Carbonaro",,"548 Lisbon Road",,"Canterbury","Connecticut","06331","United States",NULL,"0",,"0","0",NULL,NULL
+"1511171648-09b6","2015-11-17 16:48:45","3","09b6f814-27-02","account","0","0","0","16","106",NULL,NULL,"Stuart Pelcyger",,"158-39 Jewel Ave",,"FRESH MEADOWS","New York","11365","United States",NULL,"0",,"0","0",NULL,NULL
+"1511181010-eebd","2015-11-18 10:10:23","3","eebd3015-18-11","guest","0","0","0","12","0",NULL,NULL,"Phillip Reichner",,"221 Lytham Court",,"Charleston","South Carolina","29414","United States",NULL,"0",,"0","0",NULL,NULL
+"1511181429-5e40","2015-11-18 14:29:22","3","5e40c715-18-11","account","0","7.5","0","33.5","106",NULL,NULL,"Kevin Farrell",,"900 Weeks Landing Rd",,"Cape May","New Jersey","08204","United States",NULL,"0",,"0","0",NULL,NULL
+"1511182303-47d7","2015-11-18 23:03:21","3","47d76815-18-11","account","0","0","0","98","0",NULL,NULL,"Paul Dangreau",,"27 Paradise Park",,"Santa Cruz","California","95060","United States",NULL,"0",,"0","0",NULL,NULL
+"1511191426-b12b","2015-11-19 14:26:16","1","b12bd615-19-11","guest","0","7.5","0","27.5","106",NULL,NULL,"Janet McCans","Janet McCans","P.O. Box 61264",,"Boulder City ","Nevada","89006","United States",NULL,"0","This is a gift for my husband, a master mason in Nevada. Kevin McCans","0","0",NULL,NULL
+"1511191549-b20d","2015-11-19 15:49:04","1","b20dd115-19-11","account","0","7.5","0","21.5","106",NULL,NULL,"Bill Dreckitrah",,"318 North Hunter Streert",,"Berlin","Wisconsin","54923","United States",NULL,"0",,"0","0",NULL,NULL
+"1511191603-b20d","2015-11-19 16:03:15","3","b20dd115-19-11","account","0","7.5","0","21.5","106",NULL,NULL,"Bill Dreckitrah",,"318 North Hunter Streert",,"Berlin","Wisconsin","54923","United States",NULL,"0",,"0","0",NULL,NULL
+"1511202242-bf09","2015-11-20 22:42:19","3","bf093e15-20-11","account","0","4","0","180","106",NULL,NULL,"Kirk Kottschade",,"2853 24TH ST",,"Rochester","Minnesota","55901-0699","United States",NULL,"0",,"0","0",NULL,NULL
+"1511210814-f2f0","2015-11-21 08:14:42","3","f2f05515-21-11","account","0","4","0","14","106",NULL,NULL,"Dempsey Brewer",,"2853 Davis Rd",,"East Bend","North Carolina","27018","United States",NULL,"0",,"0","0",NULL,NULL
+"1511210937-a51a","2015-11-21 09:37:54","3","a51a9e15-21-11","guest","0","7.5","0","27.5","106",NULL,NULL,"Janet powell","Janet L Powell","401 Shande Dr",,"Whitehouse","Texas","757913761","United States",NULL,"0",,"0","0",NULL,NULL
+"1511211423-54e6","2015-11-21 14:23:17","3","54e69d15-21-11","account","0","0","0","170","0",NULL,NULL,"Cecil Conyers",,"209 Plantation Rd.",,"Townville","South Carolina","29689","United States",NULL,"0",,"0","0",NULL,NULL
+"1511221136-9246","2015-11-22 11:36:26","3","92469015-22-11","guest","0","0","0","12","0",NULL,NULL,"Steven Bass",,"25631 Blossom Park St.",,"Lake Forest","California","92630","United States",NULL,"0",,"0","0",NULL,NULL
+"1511221210-b3a0","2015-11-22 12:10:44","3","b3a01b15-22-11","guest","0","8.5","0","35.5","106",NULL,NULL,"Archie Bennett",,"136 Forinash Road",,"Weston","West Virginia","26452","United States",NULL,"0",,"0","0",NULL,NULL
+"1511221236-7046","2015-11-22 12:36:28","3","7046d515-15-11","account","0","9.5","0","49.5","106",NULL,NULL,"J. Arthur Carbonaro",,"548 Lisbon Road",,"Canterbury","Connecticut","06331","United States",NULL,"0",,"0","0",NULL,NULL
+"1511221954-13ba","2015-11-22 19:54:52","3","13baf015-22-11","account","0","0","0","24","0",NULL,NULL,"Tracy Miller PM",,"2137","Masonic Drive","Sewickley","Pennsylvania","15143","United States",NULL,"0",,"0","0",NULL,NULL
+"1511222218-8569","2015-11-22 22:18:21","3","85698415-22-11","guest","0","0","0","12","0",NULL,NULL,"Bruce Graham",,"310 South Delsea Drive",,"Cape May Court House","New Jersey","08210","United States",NULL,"0",,"0","0",NULL,NULL
+"1511230317-548c","2015-11-23 03:17:28","1","548cab15-23-11","account","0","7.5","0","27.5","106",NULL,NULL,"Samuel Wilson","Wilson's Computers","117A East Main St",,"McLeansboro","Illinois","62859","United States",NULL,"0",,"0","0",NULL,NULL
+"1511240753-6c19","2015-11-24 07:53:45","1","6c19ff13-02-05","account","0","0","0","158","0",NULL,NULL,"Col JD Stevens",,"18309 Allora Dr",,"Edmond","Oklahoma","73012","United States",NULL,"0",,"0","0",NULL,NULL
+"1511240920-6c19","2015-11-24 09:20:21","3","6c19ff13-02-05","account","0","0","0","158","0",NULL,NULL,"Col JD Stevens",,"18309 Allora Dr",,"Edmond","Oklahoma","73012","United States",NULL,"0",,"0","0",NULL,NULL
+"1511241327-a984","2015-11-24 13:27:05","1","a984d815-24-11","account","0","0","0","12","0",NULL,NULL,"Thomas Barnhart",,"21962 Brook Drive",,"California","Maryland","20619","United States",NULL,"0",,"0","0",NULL,NULL
+"1511251343-074e","2015-11-25 13:43:11","3","074ec815-25-11","guest","0","0","0","170","0",NULL,NULL,"Stacy Jackson",,"110 S Keechi",,"Fairfield","Texas","75840","United States",NULL,"0",,"0","0",NULL,NULL
+"1511251415-2696","2015-11-25 14:15:39","3","26962115-25-11","guest","0","7.5","0","27.5","106",NULL,NULL,"Jerry McDaniel",,"5801 FLAGSTAFF ST",,"BEL AIRE","Kansas","67220-1858","United States",NULL,"0",,"0","0",NULL,NULL
+"1511260847-177b","2015-11-26 08:47:49","1","177bc215-26-11","guest","0","0","0","12","0",NULL,NULL,"Daniel Kempler",,"423 Academy road",,"Catonsville","Maryland","21228","United States",NULL,"0",,"0","0",NULL,NULL
+"1511261344-a677","2015-11-26 13:44:43","1","a677fe13-04-11","account","0","7.5","0","27.5","106",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"0","0",NULL,NULL
+"1511271308-d3f7","2015-11-27 13:08:49","3","d3f76e15-27-11","account","0","8.5","0","48.5","106",NULL,NULL,"Brian Young",,"1723 Lewis Ln",,"Barnhart","Missouri","63012","United States",NULL,"0",,"0","0",NULL,NULL
+"1511271318-bba4","2015-11-27 13:18:48","3","bba4c315-27-11","guest","0","7.5","0","27.5","106",NULL,NULL,"Barry Hart",,"2555 Porter Lake Drive","#101","Sarasota","Florida","34240","United States",NULL,"0",,"0","0",NULL,NULL
+"1511281519-cb1c","2015-11-28 15:19:52","3","cb1c4015-28-11","guest","0","0","0","4","106",NULL,NULL,"Robert Boyd",,"1784 S Carriage Ter",,"Homosassa","Florida","34448","United States",NULL,"0",,"0","0",NULL,NULL
+"1511282012-a677","2015-11-28 20:12:16","3","a677fe13-04-11","account","0","0","0","170","0",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"0","0",NULL,NULL
+"1511301404-14fd","2015-11-30 14:04:24","3","14fd8815-30-11","account","0","0","0","170","0",NULL,NULL,"Tammy Simmons",,"121 Meadow Crest Drive",,"West Columbia","South Carolina","29172","United States",NULL,"0",,"0","0",NULL,NULL
+"1511301509-a328","2015-11-30 15:09:33","3","a3283315-30-11","account","0","0","0","170","0",NULL,NULL,"Andrew Warianka","Arizona Lodge No. 2","345 W. Monroe St",,"Phoenix","Arizona","85339","United States",NULL,"0",,"0","0",NULL,NULL
+"1512011037-8ca4","2015-12-01 10:37:02","3","8ca4c715-23-09","account","0","7.5","0","39.5","106",NULL,NULL,"David Banister","Renu-it, Inc.","212 Wicklow Dr.",,"Dothan","Alabama","36303","United States",NULL,"0",,"0","0",NULL,NULL
+"1512020003-b7e3","2015-12-02 00:03:42","3","b7e30715-02-12","account","0","0","0","12","0",NULL,NULL,"CHRISTOPHER FORD",,"300 CREEKSIDE DR APT 7",,"Dobson","North Carolina","27017","United States",NULL,"0",,"0","0",NULL,NULL
+"1512020849-2cc0","2015-12-02 08:49:45","3","2cc07115-02-12","account","0","0","0","12","0",NULL,NULL,"Frank Ermalovich","Frank Ermalovich","7447 Wesley Park Drive",,"Circleville","Ohio","43113","United States",NULL,"0",,"0","0",NULL,NULL
+"1512021435-2cc0","2015-12-02 14:35:00","3","2cc07115-02-12","account","0","8.5","0","29.5","106",NULL,NULL,"Frank Ermalovich","Frank Ermalovich","7447 Wesley Park Drive",,"Circleville","Ohio","43113","United States",NULL,"0",,"0","0",NULL,NULL
+"1512021555-2e0c","2015-12-02 15:55:14","3","2e0c6815-02-12","account","0","9.5","0","44.5","106",NULL,NULL,"Robby Roden",,"PO Box 391",,"West Columbia","Texas","77486","United States",NULL,"0",,"0","0",NULL,NULL
+"1512032248-9a6e","2015-12-03 22:48:13","3","9a6e9b15-03-12","guest","0","0","0","170","0",NULL,NULL,"John Haslam Sr",,"20 Harding Ave",,"Kenmore","New York","14217-1408","United States",NULL,"0",,"0","0",NULL,NULL
+"1512041320-eb9d","2015-12-04 13:20:45","3","eb9dfa15-19-11","account","0","7.5","0","27.5","106",NULL,NULL,"Scot Newbury",,"4 Jason Drive",,"Londonderry","New Hampshire","03053","United States",NULL,"0",,"0","0",NULL,NULL
+"1512041607-355c","2015-12-04 16:07:51","1","355cea13-04-12","account","0","7.5","0","36.5","106",NULL,NULL,"R Scott Pless",,"530 Lee Road 960",,"Smiths Station","Alabama","36877-3561","United States",NULL,"0",,"0","0",NULL,NULL
+"1512050813-4b0b","2015-12-05 08:13:17","3","4b0b8a15-21-03","account","0","0","0","12","0",NULL,NULL,"William Miller",,"352 Woolf Road",,"Milford","New Jersey","08848","United States",NULL,"0",,"0","0",NULL,NULL
+"1512051203-1531","2015-12-05 12:03:34","3","1531bb15-05-12","account","0","0","0","12","0",NULL,NULL,"Robert Cross","Monmouth Lodge 172 F&AM","14 East Garfield St.",,"Atlantic Highlands","New Jersey","07716","United States",NULL,"0",,"0","0",NULL,NULL
+"1512051210-1531","2015-12-05 12:10:15","3","1531bb15-05-12","account","0","4","0","12","106",NULL,NULL,"Robert Cross","Monmouth Lodge 172 F&AM","14 East Garfield St.",,"Atlantic Highlands","New Jersey","07716","United States",NULL,"0",,"0","0",NULL,NULL
+"1512052010-7635","2015-12-05 20:10:53","3","76351e15-05-12","guest","0","0","0","170","0",NULL,NULL,"Carra Tilley",,"809 Misty morning ct",,"Ofallon","Missouri","63366","United States",NULL,"0",,"0","0",NULL,NULL
+"1512061145-1cba","2015-12-06 11:45:12","3","1cba2e13-23-02","account","0","0","0","12","0",NULL,NULL,"Philip A. Cole",,"1305 Apollo Dr.",,"Arnold","Missouri","63010","United States",NULL,"0",,"0","0",NULL,NULL
+"1512061818-a41c","2015-12-06 18:18:06","3","a41c7c15-06-12","account","0","7.5","0","27.5","106",NULL,NULL,"Roy Sutton",,"6110 Temple Star Rd",,"Kingsport","Tennessee","37660","United States",NULL,"0",,"0","0",NULL,NULL
+"1512071600-051a","2015-12-07 16:00:21","3","051a1715-07-12","guest","0","0","0","12","0",NULL,NULL,"peter sepich","peter sepich","pob 675",,"harrison","Maine","04040","United States",NULL,"0",,"0","0",NULL,NULL
+"1512081637-81c7","2015-12-08 16:37:30","3","81c70a15-08-12","guest","0","0","0","170","0",NULL,NULL,"Cassandra Tyson-Beers",,"1608 NE Ravenna Blvd",,"Seattle","Washington","98105","United States",NULL,"0",,"0","0",NULL,NULL
+"1512091408-0d35","2015-12-09 14:08:35","3","0d35d614-04-12","account","0","0","0","12","0",NULL,NULL,"Michael P. Pizzola","Jefferson Lodge #15","24655 Dupont Blvd",,"Georgetown","Delaware","19947","United States",NULL,"0",,"0","0",NULL,NULL
+"1512091622-3452","2015-12-09 16:22:10","3","3452d815-09-12","guest","0","0","0","170","0",NULL,NULL,"Wade Smith ",,"811 Mulberry Street",,"Macon","Georgia","31201","United States",NULL,"0",,"0","0",NULL,NULL
+"1512091825-858a","2015-12-09 18:25:50","1","858ae415-09-12","account","0","0","0","170","0",NULL,NULL,"champ king","champ king","1433 alma ave",,"Mulberry","Arkansas","72947","United States",NULL,"0",,"0","0",NULL,NULL
+"1512091855-d2a0","2015-12-09 18:55:39","3","d2a03d15-09-12","guest","0","0","0","12","0",NULL,NULL,"Warren Powell",,"105 E Lee Ave",,"Coalgate","Oklahoma","74538","United States",NULL,"0",,"0","0",NULL,NULL
+"1512091907-9797","2015-12-09 19:07:36","3","97978314-06-11","account","0","0","0","12","0",NULL,NULL,"Mike Nichols",,"310 Clovis Drive",,"Georgetown","Texas","78628","United States",NULL,"0",,"0","0",NULL,NULL
+"1512101044-8cfb","2015-12-10 10:44:17","1","8cfb1815-10-12","guest","0","0","0","12","0",NULL,NULL,"Richard Valentine",,"13 Needle Palm Way",,"Elgin","South Carolina","29045","United States",NULL,"0",,"0","0",NULL,NULL
+"1512101045-9520","2015-12-10 10:45:28","1","95200a15-10-12","guest","0","0","0","12","0",NULL,NULL,"Richard Valentine",,"13 Needle Palm Way",,"Elgin","South Carolina","29045","United States",NULL,"0",,"0","0",NULL,NULL
+"1512101202-0802","2015-12-10 12:02:49","1","08020015-10-12","account","0","0","0","12","0",NULL,NULL,"Frank Foster","Frank Foster","36502 Pebble Dr",,"Millsboro","Delaware","19966","United States",NULL,"0",,"0","0",NULL,NULL
+"1512101222-c91c","2015-12-10 12:22:05","3","c91cd215-10-12","account","0","0","0","12","0",NULL,NULL,"Gerald Houston",,"426 Green Briar St",,"Deridder","Louisiana","70634-2180","United States",NULL,"0",,"0","0",NULL,NULL
+"1512101422-e635","2015-12-10 14:22:02","5","e6355915-10-12","account","0","11.5","0","77.5","106",NULL,NULL,"Charles Waterstreet","Masonic Service Bureau","979 Bay Rd","Suite 2","Webster","New York","14580","United States",NULL,"0",,"0","0",NULL,NULL
+"1512101423-6423","2015-12-10 14:23:50","3","64234315-10-12","guest","0","8.5","0","33.5","106",NULL,NULL,"Curtis Sharpe",,"609 4th Street SW",,"Conover","North Carolina","28613","United States",NULL,"0",,"0","0",NULL,NULL
+"1512101436-e635","2015-12-10 14:36:38","3","e6355915-10-12","account","0","11.5","0","77.5","106",NULL,NULL,"Executive Director","Masonic Service Bureau","979 Bay Rd","Suite 2","Webster","New York","14580","United States",NULL,"0",,"0","0",NULL,NULL
+"1512101818-2d1a","2015-12-10 18:18:24","3","2d1a9715-10-12","account","0","0","0","12","0",NULL,NULL,"Tony Percifield","0419","7852 Hopkins Road",,"Maineville","Ohio","45039","United States",NULL,"0",,"0","0",NULL,NULL
+"1512101920-aa9d","2015-12-10 19:20:10","3","aa9d7815-10-12","guest","0","0","0","36","0",NULL,NULL,"James Ridge",,"176 Blackberry Ln.",,"Minden","Louisiana","71055-7043","United States",NULL,"0",,"0","0",NULL,NULL
+"1512111640-56f5","2015-12-11 16:40:01","3","56f58515-11-12","guest","0","0","0","12","0",NULL,NULL,"Maurice Little","Maurice W. Little","346 Alder Road",,"Dover","Delaware","19904","United States",NULL,"0",,"0","0",NULL,NULL
+"1512111809-491a","2015-12-11 18:09:06","3","491af815-11-12","account","0","11.5","0","63.5","106",NULL,NULL,"David Layman",,"5233 Quail Hollow Cir",,"Roanoke","Virginia","24019","United States",NULL,"0",,"0","0",NULL,NULL
+"1512121548-cddf","2015-12-12 15:48:30","3","cddfa115-12-12","account","0","0","0","12","0",NULL,NULL,"Chris Thomas",,"734 Regent Rd",,"Cincinnati","Ohio","45245","United States",NULL,"0",,"0","0",NULL,NULL
+"1512140019-1362","2015-12-14 00:19:41","3","1362b515-14-12","guest","0","0","0","170","0",NULL,NULL,"Danny Uden",,"27087 155th Rd",,"Arkansas City","Kansas","67005","United States",NULL,"0",,"0","0",NULL,NULL
+"1512140033-5553","2015-12-14 00:33:24","3","55535715-14-12","guest","0","0","0","12","0",NULL,NULL,"Danny Uden",,"27087 155th Rd",,"Arkansas City","Kansas","67005","United States",NULL,"0",,"0","0",NULL,NULL
+"1512140054-0f0a","2015-12-14 00:54:35","3","0f0a0915-14-12","guest","0","0","0","12","0",NULL,NULL,"Jeff Knight",,"220 Devron Circle",,"East Peoria","Illinois","61611","United States",NULL,"0",,"0","0",NULL,NULL
+"1512141037-2cc0","2015-12-14 10:37:49","3","2cc07115-02-12","account","0","7.5","0","19.5","106",NULL,NULL,"Frank Ermalovich","Frank Ermalovich","7447 Wesley Park Drive",,"Circleville","Ohio","43113","United States",NULL,"0",,"0","0",NULL,NULL
+"1512141111-6de3","2015-12-14 11:11:24","3","6de35f13-17-12","account","0","0","0","12","0",NULL,NULL,"Tim Sutton",,"6110 Temple Star Rd",,"Kingsport","Tennessee","37660","United States",NULL,"0","Gift renewal subscription","0","0",NULL,NULL
+"1512141115-6de3","2015-12-14 11:15:56","3","6de35f13-17-12","account","0","0","0","12","0",NULL,NULL,"Bart Rowlette",,"228 Lakeview Circle",,"Kingsport","Tennessee","37660","United States",NULL,"0","Gift Subscription renewal","0","0",NULL,NULL
+"1512141117-6de3","2015-12-14 11:17:57","3","6de35f13-17-12","account","0","0","0","12","0",NULL,NULL,"Dusty Parsons",,"1549 Fairidge",,"Kingsport","Tennessee","37660","United States",NULL,"0",,"0","0",NULL,NULL
+"1512141136-6de3","2015-12-14 11:36:31","3","6de35f13-17-12","account","0","7.5","0","27.5","106",NULL,NULL,"Dusty Parsons",,"1549 Fairidge",,"Kingsport","Tennessee","37660","United States",NULL,"0",,"0","0",NULL,NULL
+"1512141249-f703","2015-12-14 12:49:18","3","f7039c15-31-08","account","0","0","0","12","0",NULL,NULL,"jeff lank",,"346 owls nest drive",,"bear","Delaware","19701","United States",NULL,"0",,"0","0",NULL,NULL
+"1512141249-4178","2015-12-14 12:49:22","3","41782714-22-10","account","0","9.5","0","61.5","106",NULL,NULL,"Mark Rampanelli","Saltcay Enterprises Inc","1070 Middle Country Rd","Ste 7 #102","Selden","New York","11784","United States",NULL,"0",,"0","0",NULL,NULL
+"1512141927-5d95","2015-12-14 19:27:07","3","5d950714-02-12","account","0","0","0","12","0",NULL,NULL,"Michael Richardson",,"1035 Washington Avenue","4S","Brooklyn","New York","11225","United States",NULL,"0",,"0","0",NULL,NULL
+"1512151119-8c12","2015-12-15 11:19:40","3","8c123015-15-12","account","0","15","0","131","106",NULL,NULL,"Ronald Prioux",,"310 Ernest st.",,"New Iberia","Louisiana","70563-2715","United States",NULL,"0",,"0","0",NULL,NULL
+"1512152002-6602","2015-12-15 20:02:28","3","66020015-15-12","guest","0","0","0","12","0",NULL,NULL,"David Husted",,"57 Bremmer Street",,"Richland","Washington","99352","United States",NULL,"0",,"0","0",NULL,NULL
+"1512161504-b772","2015-12-16 15:04:54","3","b7722915-16-12","account","0","0","0","12","0",NULL,NULL,"Leland F Ross",,"18 Elizabeth St",,"Plainville","Massachusetts","02762","United States",NULL,"0",,"0","0",NULL,NULL
+"1512161636-18bc","2015-12-16 16:36:14","3","18bcc615-16-12","guest","0","0","0","12","0",NULL,NULL,"John Warner",,"415 W 11th Avenue",,"Conshohocken","Pennsylvania","19428","United States",NULL,"0",,"0","0",NULL,NULL
+"1512161939-7bbc","2015-12-16 19:39:19","3","7bbcbd15-16-12","account","0","0","0","16","106",NULL,NULL,"Ronald Price",,"13014 Three Oaks Rd",,"Sawyer","Michigan","49125","United States",NULL,"0",,"0","0",NULL,NULL
+"1512171037-f4a1","2015-12-17 10:37:41","3","f4a14f15-17-12","account","0","0","0","36","0",NULL,NULL,"Richard Marko",,"97 West 6th Street",,"Bayonne","New Jersey","07002","United States",NULL,"0",,"0","0",NULL,NULL
+"1512171046-2efc","2015-12-17 10:46:47","5","2efc7f15-17-12","account","0","0","0","182","0",NULL,,"Jason Wilkins",,"230 South Main Street",,"Rawson","Ohio","45881","United States",,"0",,"0","0",NULL,"0"
+"1512171053-2efc","2015-12-17 10:53:31","3","2efc7f15-17-12","account","0","0","0","12","0",NULL,NULL,"Jason Wilkins",,"230 South Main Street",,"Rawson","Ohio","45881","United States",NULL,"0",,"0","0",NULL,NULL
+"1512180011-0ccc","2015-12-18 00:11:40","3","0ccc9315-18-12","account","0","0","0","12","0",NULL,NULL,"Jacob Lewis",,"2021 Edgewood Ave",,"Las Vegas","Nevada","89102-2202","United States",NULL,"0",,"0","0",NULL,NULL
+"1512181041-d057","2015-12-18 10:41:56","3","d057d615-18-12","guest","0","0","0","170","0",NULL,NULL,"Todd M. Williams","Shindler Neff","300 Madison Avenue","12th Floor","Toledo","Ohio","43604","United States",NULL,"0",,"0","0",NULL,NULL
+"1512181205-a331","2015-12-18 12:05:46","3","a331c215-18-12","guest","0","20","0","270","106",NULL,NULL,"DaNiel Wood",,"4325 N. Alaska Avenue",,"Sioux Falls","South Dakota","57107","United States",NULL,"0",,"0","0",NULL,NULL
+"1512191625-946e","2015-12-19 16:25:02","3","946e8314-03-11","account","0","7.5","0","39.5","106",NULL,NULL,"O Carl Anderson",,"1308 Garfield St.",,"Great Bend","Kansas","67530","United States",NULL,"0",,"0","0",NULL,NULL
+"1512191708-c0ed","2015-12-19 17:08:38","3","c0edb014-10-12","account","0","0","0","12","0",NULL,NULL,"Robert Engelbach",,"1211 Michigan Avenue",,"Cumberland","Maryland","21502","United States",NULL,"0",,"0","0",NULL,NULL
+"1512201143-503b","2015-12-20 11:43:15","3","503bf615-20-12","account","0","8.5","0","34.5","106",NULL,NULL,"Arnulfo Garcia",,"1519 s 60th ct",,"cicero","Illinois","60804","United States",NULL,"0",,"0","0",NULL,NULL
+"1512211028-cb6b","2015-12-21 10:28:20","3","cb6b3215-21-12","guest","0","0","0","12","0",NULL,NULL,"Richard Lowrey","Fellowship Lodge #345","P.O. Box 1235",,"Joplin","Missouri","64802","United States",NULL,"0",,"0","0",NULL,NULL
+"1512211327-e03c","2015-12-21 13:27:06","3","e03c7d15-21-12","account","0","0","0","12","0",NULL,NULL,"John Maihos",,"27 Pearl St",,"Beverly","Massachusetts","01915","United States",NULL,"0","This is a renewal. Address label number is 176792-640.","0","0",NULL,NULL
+"1512211733-ed01","2015-12-21 17:33:40","3","ed013015-21-12","guest","0","0","0","98","0",NULL,NULL,"Oscar Orum",,"8607 Azalea Trail",,"Austin","Texas","78759-7501","United States",NULL,"0",,"0","0",NULL,NULL
+"1512212207-8d79","2015-12-21 22:07:12","3","8d79e415-21-12","account","0","4","0","26","106",NULL,NULL,"Garry Krom",,"52 Spruce Street",,"Kingston","New York","12401","United States",NULL,"0",,"0","0",NULL,NULL
+"1512221441-0a3a","2015-12-22 14:41:32","3","0a3a1c15-22-12","guest","0","11.5","0","75.5","106",NULL,NULL,"Ramon Voils",,"866 Lake Wellington Drive",,"Wellington","Florida","33414","United States",NULL,"0",,"0","0",NULL,NULL
+"1512221452-52a5","2015-12-22 14:52:35","3","52a55f15-22-12","account","0","0","0","24","0",NULL,NULL,"C. Walls",,"P.O. Box 912",,"Floral City","Florida","34436","United States",NULL,"0",,"0","0",NULL,NULL
+"1512222138-64c9","2015-12-22 21:38:33","3","64c93915-22-12","guest","0","0","0","170","0",NULL,NULL,"Andrew F. Uglow",,"17 Edgecliff Lane",,"Stafford","Virginia","22554","United States",NULL,"0",,"0","0",NULL,NULL
+"1512231148-7b7c","2015-12-23 11:48:44","3","7b7c6315-23-12","guest","0","0","0","12","0",NULL,NULL,"Theodore Schvimmer",,"9607 SW 71st Loop",,"Ocala","Florida","34481-2527","United States",NULL,"0",,"0","0",NULL,NULL
+"1512231511-b605","2015-12-23 15:11:54","3","b6057c15-23-12","guest","0","0","0","12","0",NULL,NULL,"Russell Humphrey","Humphrey","44 Russell Rd",,"Lonedell","Missouri","63060","United States",NULL,"0",,"0","0",NULL,NULL
+"1512241409-aceb","2015-12-24 14:09:08","3","aceb8a15-24-12","account","0","7.5","0","27.5","106",NULL,NULL,"Robert Dunn",,"3 Osborne Place",,"Towaco","New Jersey","07082","United States",NULL,"0",,"0","0",NULL,NULL
+"1512241625-d13b","2015-12-24 16:25:39","3","d13bca14-12-12","account","0","0","0","12","0",NULL,NULL,"Paul Weikel",,"2342 Starleaf Lane",,"Columbus","Ohio","43235","United States",NULL,"0",,"0","0",NULL,NULL
+"1512241916-c89e","2015-12-24 19:16:53","1","c89e7215-24-12","account","0","0","0","12","0",NULL,NULL,"Stevens Moore",,"27406 Blue Cedar Lane",,"Spring","Texas","77386","United States",NULL,"0",,"0","0",NULL,NULL
+"1512241922-c89e","2015-12-24 19:22:58","3","c89e7215-24-12","account","0","0","0","12","0",NULL,NULL,"Stevens Moore",,"27406 Blue Cedar Lane",,"Spring","Texas","77386","United States",NULL,"0",,"0","0",NULL,NULL
+"1512241927-c89e","2015-12-24 19:27:32","1","c89e7215-24-12","account","0","0","0","12","0",NULL,NULL,"Cornell Manuel",,"2236 Mendez Stret",,"New Orleans","Louisiana","70122","United States",NULL,"0",,"0","0",NULL,NULL
+"1512241929-c89e","2015-12-24 19:29:25","3","c89e7215-24-12","account","0","0","0","12","0",NULL,NULL,"Cornell Manuel",,"2236 Mendez Street",,"New Orleans","Louisiana","70122","United States",NULL,"0",,"0","0",NULL,NULL
+"1512251746-47f4","2015-12-25 17:46:00","3","47f49015-25-12","account","0","7.5","0","39.5","106",NULL,NULL,"Glenn D. Miller M.D.",,"2246 Nashua Road",,"New Castle","Pennsylvania","16105","United States",NULL,"0",,"0","0",NULL,NULL
+"1512261124-18c7","2015-12-26 11:24:56","3","18c71415-26-12","guest","0","0","0","12","0",NULL,NULL,"Bradley Ottum",,"4556 Benderville Rd",,"Green Bay","Wisconsin","54311","United States",NULL,"0",,"0","0",NULL,NULL
+"1512271343-95f3","2015-12-27 13:43:28","3","95f3e915-27-12","guest","0","0","0","12","0",NULL,NULL,"Peter Studley",,"9720 harding road",,"Plainfield","Wisconsin","54966","United States",NULL,"0",,"0","0",NULL,NULL
+"1512271418-5996","2015-12-27 14:18:50","1","59965615-27-12","account","0","7.5","0","33.5","106",NULL,NULL,"Henry Fratz","Henry P. Fratz","230 Park Avenue",,"Marlton, NJ","New Jersey","08053","United States",NULL,"0",,"0","0",NULL,NULL
+"1512280909-fd00","2015-12-28 09:09:18","3","fd00ee15-28-12","account","0","0","0","12","0",NULL,NULL,"Keith Herman","Keith Herman","641 Guilford Road",,"Cherry Hill","New Jersey","08003","United States",NULL,"0",,"0","0",NULL,NULL
+"1512281513-8ca4","2015-12-28 15:13:08","3","8ca4c715-23-09","account","0","7.5","0","33.5","106",NULL,NULL,"Larry Manley",".","1187 Graves Springs Rd",,"Leesburg","Georgia","31763","United States",NULL,"0",,"0","0",NULL,NULL
+"1512301039-8e41","2015-12-30 10:39:00","3","8e41be15-30-12","guest","0","0","0","170","0",NULL,NULL,"m. robert wheatley",,"20425 phillips hill rd",,"millsboro","Delaware","19966","United States",NULL,"0",,"0","0",NULL,NULL
+"1512301139-40b3","2015-12-30 11:39:53","3","40b3ae15-30-12","account","0","7.5","0","27.5","106",NULL,NULL,"Rolf Sorg","Rolf P. Sorg","11812 Meylston Drive",,"Lutherville","Maryland","21093","United States",NULL,"0",,"0","0",NULL,NULL
+"1512301642-51e1","2015-12-30 16:42:17","1","51e12415-30-12","guest","0","0","0","12","0",NULL,NULL,"Phil Walker",,"1782 Rockdale Circle",,"SNELLVILLE","Georgia","30078-3404","United States",NULL,"0",,"0","0",NULL,NULL
+"1512301716-e47a","2015-12-30 17:16:07","3","e47a2d15-30-12","guest","0","0","0","12","0",NULL,NULL,"Phillip Walker",,"1782 Rockdale Circle",,"SNELLVILLE","Georgia","30078-3404","United States",NULL,"0",,"0","0",NULL,NULL
+"1512302225-7d0c","2015-12-30 22:25:28","3","7d0c0013-09-04","account","0","0","0","98","0",NULL,NULL,"Edward J Howard",,"2617 Camino Pl W",,"Kettering","Ohio","45420-3932","United States",NULL,"0",,"0","0",NULL,NULL
+"1512310939-7981","2015-12-31 09:39:20","5","79813715-31-12","account","0","0","0","170","0",NULL,NULL,"Gerald Piepiora",,"35 Antler Lane",,"Sedona","Arizona","86336","United States",NULL,"0",,"0","0",NULL,NULL
+"1512310951-7981","2015-12-31 09:51:04","5","79813715-31-12","account","0","0","0","170","0",NULL,NULL,"Gerald Piepiora",,"35 Antler Lane",,"Sedona","Arizona","86336","United States",NULL,"0",,"0","0",NULL,NULL
+"1601021506-ed21","2016-01-02 15:06:58","3","ed212f16-02-01","guest","0","0","0","158","0",NULL,NULL,"Clint Stevens",,"5502 Pinewood Springs",,"Houston","Texas","77066","United States",NULL,"0",,"0","0",NULL,NULL
+"1601030935-08f4","2016-01-03 09:35:30","3","08f4e013-21-05","account","0","7.5","0","27.5","106",NULL,NULL,"William Chapman",,"77 Pascal Ave.",,"Rockport","Maine","04856","United States",NULL,"0",,"0","0",NULL,NULL
+"1601031613-b868","2016-01-03 16:13:20","3","b868e016-03-01","guest","0","7.5","0","27.5","106",NULL,NULL,"Stephen Blakely",,"335 W 68th St",,"Jacksonville","Florida","32208","United States",NULL,"0",,"0","0",NULL,NULL
+"1601040946-2169","2016-01-04 09:46:16","3","2169b516-04-01","guest","0","7.5","0","39.5","106",NULL,NULL,"Steven Reinhold","VEi Global","1020 36th St SW",,"Fargo","North Dakota","58103","United States",NULL,"0",,"0","0",NULL,NULL
+"1601041230-777e","2016-01-04 12:30:59","1","777ea414-21-12","account","0","0","0","12","0",NULL,NULL,"alvin davis",,"3752 corte bella hills ave",,"north las vegas","Nevada","89081","United States",NULL,"0",,"0","0",NULL,NULL
+"1601041512-e690","2016-01-04 15:12:58","3","e6904016-04-01","account","0","8.5","0","34.5","106",NULL,NULL,"Charles R. Wallace",,"909 Mayfield Road",,"Sharpsville","Pennsylvania","16150","United States",NULL,"0",,"0","0",NULL,NULL
+"1601041541-fe2b","2016-01-04 15:41:53","3","fe2b9916-04-01","account","0","0","0","12","0",NULL,NULL,"Terry Troutt","1957","2261 Garfield",,"Ferndale","Michigan","48220","United States",NULL,"0",,"0","0",NULL,NULL
+"1601051010-2e2f","2016-01-05 10:10:38","3","2e2fc816-05-01","guest","0","11.5","0","76.6","106",NULL,NULL,"daniel wilson",,"POB 310",,"Little Switzerland","North Carolina","28749","United States",NULL,"0",,"0","0",NULL,NULL
+"1601051812-67b3","2016-01-05 18:12:04","1","67b34516-05-01","account","0","9.5","0","42.5","106",NULL,NULL,"Joe Link","Statesville Lodge #27","1006 Wood Street",,"Statesville","North Carolina","28677","United States",NULL,"0",,"0","0",NULL,NULL
+"1601051852-e3db","2016-01-05 18:52:30","1","e3db2316-05-01","guest","0","0","0","12","0",NULL,NULL,"Randy Heine",,"P.O. Box 3050",,"Carlsbad","New Mexico","88221","United States",NULL,"0",,"0","0",NULL,NULL
+"1601051920-ab1c","2016-01-05 19:20:22","3","ab1c9b15-07-09","account","0","0","0","12","0",NULL,NULL,"Rolando A. Cedo",,"2437 Rollingview Court","Virginia Beach","Virginia","Virginia","23456","United States",NULL,"0",,"0","0",NULL,NULL
+"1601061144-4e22","2016-01-06 11:44:42","3","4e220914-18-06","account","0","10.5","0","57.5","106",NULL,NULL,"Rick Giuliani",,"993 Jamesway Pass",,"Hubertus","Wisconsin","53033","United States",NULL,"0",,"0","0",NULL,NULL
+"1601061237-fa9e","2016-01-06 12:37:02","3","fa9e9716-06-01","guest","0","0","0","12","0",NULL,NULL,"Robert Troutman",,"22527 SAxony",,"Eastpointe","Michigan","48021","United States",NULL,"0",,"0","0",NULL,NULL
+"1601061241-c5a0","2016-01-06 12:41:02","3","c5a05316-06-01","account","0","0","0","12","0",NULL,NULL,"George Niessner",,"39 Montclaire Rd",,"Medford","New Jersey","08055","United States",NULL,"0",,"0","0",NULL,NULL
+"1601061951-706f","2016-01-06 19:51:46","3","706f6916-06-01","account","0","8.5","0","36.5","106",NULL,NULL,"David Cassesa",,"46 Wesley Dr",,"Wilder","Kentucky","41076","United States",NULL,"0",,"0","0",NULL,NULL
+"1601070722-19d9","2016-01-07 07:22:41","1","19d99616-07-01","account","0","7.5","0","27.5","106",NULL,NULL,"Fred Messer",,"317 Meadow Road",,"Waitsfield","Vermont","05673","United States",NULL,"0",,"0","0",NULL,NULL
+"1601070732-19d9","2016-01-07 07:32:23","3","19d99616-07-01","account","0","7.5","0","27.5","106",NULL,NULL,"Fred Messer",,"317 Meadow Road",,"Waitsfield","Vermont","05673","United States",NULL,"0",,"0","0",NULL,NULL
+"1601071644-e8e3","2016-01-07 16:44:01","3","e8e3e416-07-01","account","0","8.5","0","49.5","106",NULL,NULL,"Kenneth White",,"341 Ascauga Lake Rd",,"Graniteville","South Carolina","29829","United States",NULL,"0",,"0","0",NULL,NULL
+"1601072219-b73f","2016-01-07 22:19:41","1","b73f9516-07-01","guest","0","0","0","12","0",NULL,NULL,"Lee A. Post","None","910 N. Alameda St.","Carlsbad NM 88220","Carlsbad","New Mexico","88220","United States",NULL,"0",,"0","0",NULL,NULL
+"1601080410-0863","2016-01-08 04:10:00","3","08630f16-08-01","account","0","8.5","0","33.5","106",NULL,NULL,"Bo Buchanan",,"2807 East Dahlia Drive",,"Phoenix","Arizona","85032","United States",NULL,"0",,"0","0",NULL,NULL
+"1601081113-b95b","2016-01-08 11:13:22","3","b95b2114-03-11","account","0","0","0","12","0",NULL,NULL,"F GORDON BERRY",,"3115 SEGER AVE",,"SIOUX CITY","Iowa","51106-3239","United States",NULL,"0",,"0","0",NULL,NULL
+"1601081155-1803","2016-01-08 11:55:07","3","18033616-08-01","account","0","0","0","12","0",NULL,NULL,"Kenneth Nielsen","None","95 Ira Ave.,",,"Colonia","New Jersey","07067-2434","United States",NULL,"0",,"0","0",NULL,NULL
+"1601081452-1c40","2016-01-08 14:52:34","3","1c409716-08-01","guest","0","8.5","0","35.5","106",NULL,NULL,"Bruce Lott","Masonic Homes of KY","3761 Johnson Hall Dr.",,"Masonic Home","Kentucky","40041","United States",NULL,"0",,"0","0",NULL,NULL
+"1601081645-ded6","2016-01-08 16:45:15","3","ded67516-08-01","guest","0","7.5","0","27.5","106",NULL,NULL,"William Rodgers","Clinton Lodge 47","1615 Bramblewood Circle NE",,"Massillon","Ohio","44646","United States",NULL,"0",,"0","0",NULL,NULL
+"1601082250-498b","2016-01-08 22:50:16","1","498be716-08-01","account","0","0","0","12","0",NULL,NULL,"Fabian Trudeau",,"4201 Americana Ln.",,"Mission","Texas","78572","United States",NULL,"0",,"0","0",NULL,NULL
+"1601151034-3e3a","2016-01-15 10:34:56","1","3e3a1716-15-01","account","0","0","0","36","0",NULL,NULL,"Francis Burek",,"7 St. Mary's Ave.",,"Troy ","New York","12180-4525","United States",NULL,"0",,"0","0",NULL,NULL
+"1601141323-e436","2016-01-14 13:23:11","3","e436e616-14-01","account","0","0","0","12","0",NULL,NULL,"John Dickson",,"256 Rebel Cove",,"Milam","Texas","75959","United States",NULL,"0",,"0","0",NULL,NULL
+"1601140927-c0ed","2016-01-14 09:27:23","3","c0edb014-10-12","account","0","7.5","0","27.5","106",NULL,NULL,"Robert Engelbach",,"1211 Michigan Avenue",,"Cumberland","Maryland","21502","United States",NULL,"0",,"0","0",NULL,NULL
+"1601140716-ca52","2016-01-14 07:16:57","1","ca52a216-14-01","guest","0","0","0","12","0",NULL,NULL,"Ronald Seale","The Supreme Council","1733 16th Street NW",,"Washington","District of Columbia","20009","United States",NULL,"0",,"0","0",NULL,NULL
+"1601112133-e2ee","2016-01-11 21:33:33","3","e2ee6416-11-01","account","0","0","0","12","0",NULL,NULL,"Mike Manzella",,"162 Yarmouth Court",,"Holmdel","New Jersey","07733","United States",NULL,"0",,"0","0",NULL,NULL
+"1601131020-2efc","2016-01-13 10:20:09","3","2efc7f15-17-12","account","0","7.5","0","27.5","106",NULL,NULL,"Jason Wilkins",,"230 South Main Street",,"Rawson","Ohio","45881","United States",NULL,"0",,"0","0",NULL,NULL
+"1601151244-7bc5","2016-01-15 12:44:45","3","7bc51116-15-01","account","0","4","0","13","106",NULL,NULL,"Dr. Ralph Hathaway",,"4327 Stonesthrow View",,"Colorado Springs","Colorado","80922","United States",NULL,"0",,"0","0",NULL,NULL
+"1601180017-949e","2016-01-18 00:17:53","3","949e7d16-18-01","guest","0","7.5","0","21.5","106",NULL,NULL,"Joseph Barrow",,"1481 Oak Ridge Rd. ",,"Morgantown","Kentucky","42261","United States",NULL,"0",,"0","0",NULL,NULL
+"1601181005-9378","2016-01-18 10:05:01","3","93789316-18-01","guest","0","0","0","17","106",NULL,NULL,"John Lobley",,"23 Welwyn RD","Plaza 273","Newark","Delaware","19711","United States",NULL,"0",,"0","0",NULL,NULL
+"1601181808-1002","2016-01-18 18:08:58","3","1002ec16-18-01","guest","0","0","0","12","0",NULL,NULL,"Jesse Davey",,"5050 Vines Rd",,"Howell","Michigan","48843","United States",NULL,"0",,"0","0",NULL,NULL
+"1601190938-2052","2016-01-19 09:38:14","3","20527016-19-01","guest","0","15","0","123","106",NULL,NULL,"Robert Hickman",,"14347 Hunter Road",,"Harvest","Alabama","35749","United States",NULL,"0",,"0","0",NULL,NULL
+"1601200942-9ae1","2016-01-20 09:42:23","3","9ae1d316-20-01","guest","0","10.5","0","51.5","106",NULL,NULL,"Dan Kemble",,"1540 St. Clair Street",,"Covington","Kentucky","41011","United States",NULL,"0",,"0","0",NULL,NULL
+"1601201358-46d6","2016-01-20 13:58:19","3","46d6c213-04-11","account","0","0","0","12","0",NULL,NULL,"James Voelkle",,"13510 Zion Rd.",,"Tomball","Texas","77375","United States",NULL,"0",,"0","0",NULL,NULL
+"1601201631-e673","2016-01-20 16:31:59","3","e6730616-20-01","guest","0","0","0","12","0",NULL,NULL,"Richard Valentine",,"13 Needle Palm Way",,"Elgin","South Carolina","29045","United States",NULL,"0",,"0","0",NULL,NULL
+"1601201632-ed49","2016-01-20 16:32:59","3","ed490816-20-01","guest","0","0","0","13","106",NULL,NULL,"Dennis Brassard",,"667 Marsh Hill Rd.",,"Dracut","Massachusetts","01826","United States",NULL,"0",,"0","0",NULL,NULL
+"1601210845-28ad","2016-01-21 08:45:29","3","28ad4116-21-01","guest","0","0","0","12","0",NULL,NULL,"David Sageser",,"1004 14th Avenue",,"Havre","Montana","59501","United States",NULL,"0",,"0","0",NULL,NULL
+"1601211443-29af","2016-01-21 14:43:31","3","29af0716-21-01","guest","0","9.5","0","47.5","106",NULL,NULL,"Martin Jones","Martin Jones","7401 E. Lakeside Dr",,"Tucson","Arizona","85730","United States",NULL,"0",,"0","0",NULL,NULL
+"1601221512-ca65","2016-01-22 15:12:32","3","ca650715-28-02","account","0","0","0","12","0",NULL,NULL,"Jerrick Simbol",,"10550 Haverhill Lane",,"Huntley","Illinois","60142","United States",NULL,"0",,"0","0",NULL,NULL
+"1601231114-48b5","2016-01-23 11:14:29","1","48b50f16-23-01","guest","0","0","0","12","0",NULL,NULL,"William Gurley",,"1608 Forest Fern Circle",,"Virginia Beach","Virginia","23454","United States",NULL,"0",,"0","0",NULL,NULL
+"1601231639-3051","2016-01-23 16:39:08","3","3051fc15-30-04","account","0","7.5","0","39.5","106",NULL,NULL,"Frank During",,"P.O.Box 471",,"Ellsworth","Wisconsin","54011","United States",NULL,"0",,"0","0",NULL,NULL
+"1601251332-2c95","2016-01-25 13:32:36","5","2c956d16-25-01","guest","0","7.5","0","27.5","106",NULL,NULL,"WAYNE LOSEE",,"21 CRESCENT ST.",,"YAPHANK","New York","11980","United States",NULL,"0",,"0","0",NULL,NULL
+"1601261000-bda5","2016-01-26 10:00:25","3","bda52314-19-08","account","0","4","0","21.1","106",NULL,NULL,"Christopher Casey",,"31 Ridgeland Road",,"Shrewsbury","Massachusetts","01545","United States",NULL,"0",,"0","0",NULL,NULL
+"1601262043-6310","2016-01-26 20:43:12","3","63102016-26-01","account","0","0","0","98","0",NULL,NULL,"James Maertens","Lake Harriet Lodge 277","4509 Drew Ave. So.",,"Minneapolis","Minnesota","55410","United States",NULL,"0",,"0","0",NULL,NULL
+"1601290851-a962","2016-01-29 08:51:11","3","a9629616-29-01","account","0","0","0","24","0",NULL,NULL,"John Cannon",,"606 SE 2nd St.",,"Milford","Delaware","19963","United States",NULL,"0",,"0","0",NULL,NULL
+"1601311217-e279","2016-01-31 12:17:42","3","e2796616-31-01","account","0","0","0","12","0",NULL,NULL,"Richard Blankfein","Richard S. Blankfein","11 Lincoln Avenue",,"Glen Head","New York","11545-1521","United States",NULL,"0",,"0","0",NULL,NULL
+"1601311322-2c71","2016-01-31 13:22:54","3","2c715315-15-01","account","0","8.5","0","49.5","106",NULL,NULL,"Michael Thoms",,"1132 16th Avenue",,"Saint Paul Park","Minnesota","55071","United States",NULL,"0",,"0","0",NULL,NULL
+"1601311851-f4ad","2016-01-31 18:51:44","3","f4ad6c16-28-01","account","0","7.5","0","38.5","106",NULL,NULL,"Daniel Brandt",,"618 Lisbeth Road",,"Newark","Delaware","19713","United States",NULL,"0",,"0","0",NULL,NULL
+"1602010615-f2a7","2016-02-01 06:15:33","3","f2a74716-01-02","guest","0","8.5","0","253.5","106",NULL,NULL,"Ralph Frazier","Bankers Title","214 E College St",,"Dickson","Tennessee","37055","United States",NULL,"0",,"0","0",NULL,NULL
+"1602011520-f63e","2016-02-01 15:20:16","3","f63ee116-01-02","guest","0","15","0","135","106",NULL,NULL,"Keith Veitch","Fort Plain Masonic Lodge#433","359 State Highway 80",,"Fort Plain","New York","13339","United States",NULL,"0",,"0","0",NULL,NULL
+"1602021428-957d","2016-02-02 14:28:45","1","957d1716-02-02","guest","0","0","0","12","0",NULL,NULL,"Dave Shealy",,"4155 west hoover rd",,"reva","Virginia","22735","United States",NULL,"0",,"0","0",NULL,NULL
+"1602022207-3649","2016-02-02 22:07:24","3","36495814-25-02","account","0","0","0","12","0",NULL,NULL,"Michael Carpenter",,"6021 Riverbend Blvd",,"Baton Rouge","Louisiana","70820","United States",NULL,"0","My current subscription ends 2/16, so this is a renewal.","0","0",NULL,NULL
+"1602031035-455e","2016-02-03 10:35:29","3","455ef113-03-12","account","0","0","0","12","0",NULL,NULL,"Thomas Winter",,"68 S Conger Avenue",,"Congers","New York","10920","United States",NULL,"0",,"0","0",NULL,NULL
+"1602031618-7c3b","2016-02-03 16:18:22","3","7c3ba316-03-02","guest","0","8.5","0","32.5","106",NULL,NULL,"Timothy Nicely",,"4221 County Road 15",,"South Point","Ohio","45680","United States",NULL,"0",,"0","0",NULL,NULL
+"1602031633-a6a2","2016-02-03 16:33:40","1","a6a24416-03-02","guest","0","15","0","135","106",NULL,NULL,"gary r pilgrim",,"506 East Capitol Drive",,"Hartland","Wisconsin","53029-2204","United States",NULL,"0",,"0","0",NULL,NULL
+"1602031954-c250","2016-02-03 19:54:42","3","c2500c16-03-02","guest","0","0","0","17","106",NULL,NULL,"Michael Bain","Michael Bain","P.O. Box 337",,"Centerville","Iowa","52544","United States",NULL,"0",,"0","0",NULL,NULL
+"1602040433-4535","2016-02-04 04:33:07","3","4535a116-04-02","account","0","7.5","0","39.5","106",NULL,NULL,"Michael Wright",,"827 17th Avenue","Apt. A","Honolulu","Hawaii","96816","United States",NULL,"0",,"0","0",NULL,NULL
+"1602041656-9485","2016-02-04 16:56:07","3","94859b16-04-02","guest","0","7.5","0","27.5","106",NULL,NULL,"Brian Anderson",,"825 hibiscus ave",,"Sandy","Utah","84094","United States",NULL,"0",,"0","0",NULL,NULL
+"1602051302-2ecb","2016-02-05 13:02:09","3","2ecb2a16-05-02","guest","0","4","0","10","106",NULL,NULL,"Thomas girardi",,"40 phelps road",,"barre","Vermont","05641","United States",NULL,"0",,"0","0",NULL,NULL
+"1602052128-ef11","2016-02-05 21:28:02","3","ef11c913-10-08","account","0","0","0","12","0",NULL,NULL,"david saunders",,"1129 bellevue rd",,"halifax","Virginia","24558","United States",NULL,"0",,"0","0",NULL,NULL
+"1602061733-19c7","2016-02-06 17:33:22","3","19c79d16-06-02","account","0","7.5","0","125.5","106",NULL,NULL,"David Emberley",,"17 Sullivan Way","Unit 1","Laconia","New Hampshire","03246","United States",NULL,"0",,"0","0",NULL,NULL
+"1602071137-a560","2016-02-07 11:37:11","3","a560b316-07-02","guest","0","0","0","12","0",NULL,NULL,"Rick Fetzer",,"565 Dishong Mtn Road",,"Johnstown","Pennsylvania","15906","United States",NULL,"0",,"0","0",NULL,NULL
+"1602071313-7532","2016-02-07 13:13:51","3","75323616-07-02","account","0","11.5","0","290.5","106",NULL,NULL,"william Simpson","WB William C. Simpson","134 Mill St",,"Ridgeville","South Carolina","29472","United States",NULL,"0",,"0","0",NULL,NULL
+"1602071813-945d","2016-02-07 18:13:41","1","945d7d16-07-02","guest","0","8.5","0","35.5","106",NULL,NULL,"Gary Hall",,"9016 30th Street East",,"Parrish","Florida","34219","United States",NULL,"0",,"0","0",NULL,NULL
+"1602081319-8810","2016-02-08 13:19:25","3","88105616-08-02","guest","0","0","0","12","0",NULL,NULL,"James Rogerson",,"2310 Little Bear Ct",,"Euless","Texas","76039","United States",NULL,"0","Renewing my subscription","0","0",NULL,NULL
+"1602091242-59b9","2016-02-09 12:42:46","3","59b99f16-09-02","guest","0","8.5","0","38.5","106",NULL,NULL,"JOHN WALLIS",,"5937 SUNDANCE CIR",,"MATHIS","Texas","78368","United States",NULL,"0",,"0","0",NULL,NULL
+"1602091408-3398","2016-02-09 14:08:07","3","33987d16-09-02","account","0","0","0","12","0",NULL,NULL,"John Ream",,"P.O. Box 94",,"Elton","Pennsylvania","15934","United States",NULL,"0",,"0","0",NULL,NULL
+"1602091532-d33d","2016-02-09 15:32:55","3","d33dac16-09-02","guest","0","7.5","0","27.5","106",NULL,NULL,"William Sizemore","Scottish Rite","1733 16th St NW",,"Washington","District of Columbia","20009","United States",NULL,"0",,"0","0",NULL,NULL
+"1602092255-818d","2016-02-09 22:55:59","1","818dd416-09-02","guest","0","0","0","12","0",NULL,NULL,"Michael Miller",,"1305 Bel Aire Road",,"Polk City","Iowa","50226","United States",NULL,"0",,"0","0",NULL,NULL
+"1602101008-eef8","2016-02-10 10:08:14","3","eef80415-17-01","account","0","0","0","24","0",NULL,NULL,"Jeff Bowman",,"2824 S Stoneridge Drive",,"Blue Springs","Missouri","64015-7356","United States",NULL,"0",,"0","0",NULL,NULL
+"1602101442-a3cd","2016-02-10 14:42:58","3","a3cd3216-10-02","guest","0","0","0","12","0",NULL,NULL,"Craig Thighe",,"8655 Red Clover Ct",,"Parker","Colorado","80134","United States",NULL,"0",,"0","0",NULL,NULL
+"1602101616-b33d","2016-02-10 16:16:40","1","b33df314-09-12","account","0","0","0","12","0",NULL,NULL,"Robert Ribbeck","Home","4808 s. cherry ave",,"Tucson","Arizona","85714","United States",NULL,"0",,"0","0",NULL,NULL
+"1602101624-b33d","2016-02-10 16:24:42","1","b33df314-09-12","account","0","0","0","12","0",NULL,NULL,"Robert Ribbeck","Home","4808 s. cherry ave",,"Tucson","Arizona","85714","United States",NULL,"0",,"0","0",NULL,NULL
+"1602101754-e494","2016-02-10 17:54:40","3","e494c616-10-02","account","0","0","0","12","0",NULL,NULL,"Philip Arony",,"5 Crestwood Drive",,"Charlton","New York","12019","United States",NULL,"0",,"0","0",NULL,NULL
+"1602102115-08e9","2016-02-10 21:15:26","3","08e9f816-10-02","guest","0","0","0","12","0",NULL,NULL,"Scott Ford",,"2229 Ironwood Dr. SW",,"Altoona","Iowa","50009","United States",NULL,"0",,"0","0",NULL,NULL
+"1602112144-081b","2016-02-11 21:44:42","3","081b1716-11-02","guest","0","7.5","0","21.5","106",NULL,NULL,"Jesse Riggs",,"729 N. Wickshire Way",,"Brentwood","Tennessee","37027","United States",NULL,"0",,"0","0",NULL,NULL
+"1602121107-1bb5","2016-02-12 11:07:10","3","1bb55e16-12-02","account","0","0","0","12","0",NULL,NULL,"M Ralph Dieter",," 78 Olde Lantern Road",,"Bedford","New Hampshire","03110","United States",NULL,"0",,"0","0",NULL,NULL
+"1602121428-ebf9","2016-02-12 14:28:15","3","ebf92514-29-07","account","0","0","0","12","0",NULL,NULL,"Jorge Filgueira",,"191 Chippewa Street",,"Miami Springs","Florida","33166","United States",NULL,"0",,"0","0",NULL,NULL
+"1602121632-e1a6","2016-02-12 16:32:09","3","e1a6e016-12-02","account","0","0","0","12","0",NULL,NULL,"Earnest Hudson","Joseph Warren-Gothic Lodge No. 934","198-01 67th Avenue, Apt. F",,"Fresh Meadows","New York","11365","United States",NULL,"0","Deliver to back of the building unit has a separate entrance.","0","0",NULL,NULL
+"1602130936-a3ee","2016-02-13 09:36:09","3","a3eeef16-13-02","guest","0","0","0","12","0",NULL,NULL,"Harold Campbell",,"4532 Picasso Dr",,"Virginia Beach","Virginia","23456","United States",NULL,"0",,"0","0",NULL,NULL
+"1602131122-e5ca","2016-02-13 11:22:56","3","e5cac616-13-02","account","0","0","0","12","0",NULL,NULL,"Merle Wade","Clinical Urology Associates","713 Goodyear Ave",,"Gadsden","Alabama","35903","United States",NULL,"0",,"0","0",NULL,NULL
+"1602131220-d9ac","2016-02-13 12:20:55","3","d9ac9416-13-02","account","0","4","0","36","106",NULL,NULL,"Charles Persinger","C E Persinger","68 Aspen Cove",,"West Point","Utah","84015","United States",NULL,"0",,"0","0",NULL,NULL
+"1602140957-629a","2016-02-14 09:57:19","3","629aab16-14-02","account","0","0","0","12","0",NULL,NULL,"Chance Robinson",,"PO Box 1088",,"Marfa","Texas","79843-1088","United States",NULL,"0","Subscriber # 163331 640
<br>Expiration Date: 1/16","0","0",NULL,NULL
+"1602141732-945d","2016-02-14 17:32:11","3","945d7d16-07-02","guest","0","8.5","0","35.5","106",NULL,NULL,"Gary Hall",,"9016 30th Street East",,"Parrish","Florida","34219","United States",NULL,"0",,"0","0",NULL,NULL
+"1602151810-6211","2016-02-15 18:10:34","3","62117516-15-02","guest","0","0","0","12","0",NULL,NULL,"Charlie Babb",,"1300 Jamestown",,"Edmond","Oklahoma","73003","United States",NULL,"0",,"0","0",NULL,NULL
+"1602151948-23ea","2016-02-15 19:48:10","1","23eae216-15-02","account","0","10.5","0","57.5","106",NULL,NULL,"Ryan Engle","Fort Thomas Lodge 808","PO Box 75094",,"Fort Thomas","Kentucky","41075","United States",NULL,"0",,"0","0",NULL,NULL
+"1602152028-310c","2016-02-15 20:28:18","3","310c5414-08-10","account","0","8.5","0","47","106",NULL,NULL,"Richard Frazier",,"15 Schenck Avenue",,"Matawan","New Jersey","07747","United States",NULL,"0",,"0","0",NULL,NULL
+"1602152358-ba7d","2016-02-15 23:58:53","3","ba7de116-15-02","guest","0","4","0","81","106",NULL,NULL,"Chris Tilley",,"809 misty morning ct.",,"St. Paul","Missouri","63366","United States",NULL,"0",,"0","0",NULL,NULL
+"1602162052-3649","2016-02-16 20:52:52","3","36495814-25-02","account","0","0","0","68","0",NULL,NULL,"Michael Carpenter",,"6021 Riverbend Blvd",,"Baton Rouge","Louisiana","70820","United States",NULL,"0",,"0","0",NULL,NULL
+"1602170942-73a1","2016-02-17 09:42:34","3","73a13f15-15-02","account","0","0","0","12","0",NULL,NULL,"Mark Angstrom",,"7636 Mandarin Drive",,"Boca Raton","Florida","33433","United States",NULL,"0",,"0","0",NULL,NULL
+"1602171118-042c","2016-02-17 11:18:10","3","042c3416-17-02","account","0","0","0","12","0",NULL,NULL,"Ronald Murad",,"197 N Martine Ave",,"Fanwood","New Jersey","07023","United States",NULL,"0",,"0","0",NULL,NULL
+"1602180851-3b7a","2016-02-18 08:51:36","3","3b7a2316-18-02","guest","0","0","0","12","0",NULL,NULL,"Gary Sockwell",,"995 Canter Road, N.E.",,"Atlanta","Georgia","30324","United States",NULL,"0",,"0","0",NULL,NULL
+"1602181111-dad9","2016-02-18 11:11:54","3","dad9ce14-15-12","account","0","0","0","12","0",NULL,NULL,"William H Boyd",,"8950 M52",,"Perry","Michigan","48872","United States",NULL,"0",,"0","0",NULL,NULL
+"1602191032-c8a0","2016-02-19 10:32:48","3","c8a08916-19-02","guest","0","0","0","123","0",NULL,NULL,"Chuck Brust",,"421 11th Ave SE",,"Rochester","Minnesota","55904","United States",NULL,"0",,"0","0",NULL,NULL
+"1602191557-9a28","2016-02-19 15:57:39","3","9a28b216-19-02","guest","0","9.5","0","43","106",NULL,NULL,"Timothy Delong",,"1604 Arkansas Creek Rd",,"Martin","Kentucky","41649","United States",NULL,"0",,"0","0",NULL,NULL
+"1602191613-b262","2016-02-19 16:13:31","1","b2621316-19-02","guest","0","0","0","12","0",NULL,NULL,"David Carelli",," 8944 W. Mountain View",,"Peoria","Arizona","85345","United States",NULL,"0",,"0","0",NULL,NULL
+"1602201059-ac9e","2016-02-20 10:59:49","3","ac9e1c16-20-02","account","0","0","0","24","0",NULL,NULL,"Thomas M Connors",,"47 Abbott Road",,"Dedham","Massachusetts","02026-3011","United States",NULL,"0","This is for two years not two subscriptions","0","0",NULL,NULL
+"1602201701-571d","2016-02-20 17:01:28","3","571dec16-20-02","account","0","4","0","21.75","106",NULL,NULL,"Robert Howard",,"863 Harristown Road",,"Glen Rock","New Jersey","07452","United States",NULL,"0",,"0","0",NULL,NULL
+"1602202300-95ea","2016-02-20 23:00:15","3","95ea1c16-20-02","guest","0","0","0","158","0",NULL,NULL,"Gaylord Thomas",,"1403 W. Cleveland Ave",,"Guthrie","Oklahoma","73044","United States",NULL,"0","Please add me to a mailing list with notice of these books... ","0","0",NULL,NULL
+"1602211830-19f1","2016-02-21 18:30:51","1","19f12b16-21-02","guest","0","7.5","0","17.6","106",NULL,NULL,"Joshua Garwood 1103647","C/O HDSP","PO Box 650",,"Indian Springs","Nevada","89070","United States",NULL,"0",,"0","0",NULL,NULL
+"1602211837-cb9d","2016-02-21 18:37:37","1","cb9d4816-21-02","guest","0","7.5","0","17.6","106",NULL,NULL,"Joshua Garwood1103647","C/O HDSP","PO Box 650",,"Indian Springs","Nevada","89070","United States",NULL,"0",,"0","0",NULL,NULL
+"1602221116-c9bc","2016-02-22 11:16:46","3","c9bc3416-22-02","account","0","0","0","12","0",NULL,NULL,"Howard Park, CEO","Wakeman chapter #177 R.A.M.","11817 West Rd",,"Wakeman","Ohio","44889","United States",NULL,"0",,"0","0",NULL,NULL
+"1602221756-11a6","2016-02-22 17:56:45","3","11a6ad16-22-02","account","0","0","0","12","0",NULL,NULL,"TRUMAN HIX","TRUMAN G. HIX","929 N. WASHINGTON ST #1",,"DENVER","Connecticut","80203","United States",NULL,"0",,"0","0",NULL,NULL
+"1602240748-f813","2016-02-24 07:48:15","3","f813ad16-24-02","guest","0","7.5","0","26.6","106",NULL,NULL,"Frank York","Rockport Masonic Lodge","602 Hickory",,"Rockport","Texas","78382","United States",NULL,"0","Please ship ASAP for event 3/3/2016","0","0",NULL,NULL
+"1602241213-1299","2016-02-24 12:13:30","3","12993916-24-02","account","0","15","0","106","106",NULL,NULL,"David Earnest","Grapevine Lodge #288","941 Tealwood Drive",,"Keller","Texas","76248","United States",NULL,"0",,"0","0",NULL,NULL
+"1602241625-7c26","2016-02-24 16:25:20","1","7c261b16-24-02","guest","0","0","0","98","0",NULL,NULL,"Walter Sawicki II",,"4562 Newport Ave.",,"St. Louis","Missouri","63116","United States",NULL,"0",,"0","0",NULL,NULL
+"1602261055-1260","2016-02-26 10:55:05","3","1260a016-26-02","account","0","20","0","245","106",NULL,NULL,"Janice Miller","Grand Lodge of Illinoit","2866 Via Verde",,"Springfield","Illinois","62703","United States",NULL,"0",,"0","0",NULL,NULL
+"1602261113-1b20","2016-02-26 11:13:53","5","1b208113-02-02","account","0","0","0","0.75","106",NULL,NULL,"Brandy Webmaster","King & Associates","PO Box 816",,"Bangor","Maine","04402","United States",NULL,"0","IGNORE THIS -- BRANDY TESTING","0","0",NULL,NULL
+"1602261607-c3dd","2016-02-26 16:07:28","3","c3dd2f16-26-02","guest","0","0","0","68","0",NULL,NULL,"Frank Loui","A&ASR","2850 19th Avenue",,"San Francisco","California","94132","United States",NULL,"0",,"0","0",NULL,NULL
+"1602280626-226c","2016-02-28 06:26:19","3","226cd616-28-02","guest","0","0","0","12","0",NULL,NULL,"James Herring",,"Unit 145",,"Henrico","Virginia","23223","United States",NULL,"0",,"0","0",NULL,NULL
+"1603011507-fc2d","2016-03-01 15:07:13","3","fc2df516-01-03","guest","0","20","0","245.5","106",NULL,NULL,"Thomas Foster","Grand Lodge of A.F. & A.M. of Maryland","304 International Circle",,"Cockeysville","Maryland","21030","United States",NULL,"0",,"0","0",NULL,NULL
+"1603011810-aaf0","2016-03-01 18:10:35","3","aaf0b416-01-03","guest","0","0","0","12","0",NULL,NULL,"phil terrell",,"673 county road 586",,"rogersville","Alabama","35652","United States",NULL,"0",,"0","0",NULL,NULL
+"1603021618-4379","2016-03-02 16:18:17","3","43790d15-13-03","account","0","0","0","12","0",NULL,NULL,"James Cooper",,"190 Talmadge Dr",,"Springfield","Massachusetts","01118","United States",NULL,"0",,"0","0",NULL,NULL
+"1603021709-a440","2016-03-02 17:09:28","1","a4403a16-02-03","account","0","7.5","0","19.5","106",NULL,NULL,"Earl "Gene" Ammerman II",,"8703 W. Tillamook Dr",,"Boise","Idaho","83704","United States",NULL,"0","May I please a Short talk bulletins or is there a way to see a sample one for future order? Thank you.","0","0",NULL,NULL
+"1603031533-530d","2016-03-03 15:33:53","3","530d1016-03-03","guest","0","7.5","0","27.5","106",NULL,NULL,"Robert Dupel","Highlands Golf & Country Club","541 Prestwick Dr.",,"Davenport","Florida","33897-7377","United States",NULL,"0",,"0","0",NULL,NULL
+"1603041133-563a","2016-03-04 11:33:12","3","563af316-04-03","account","0","0","0","17","106",NULL,NULL,"David Grover","David R. Grover","2307 4th. St.","Apt.1","Tillamook","Oregon","97141","United States",NULL,"0","I am the Master of Tillamook Lodge #57 in. Tillamook, OR.97141","0","0",NULL,NULL
+"1603051212-0515","2016-03-05 12:12:03","3","05152913-05-05","account","0","0","0","123","0",NULL,NULL,"James Drury",,"120 Drummond Drive",,"Elizabeth City","North Carolina","27909","United States",NULL,"0",,"0","0",NULL,NULL
+"1603051636-8035","2016-03-05 16:36:44","3","8035fe13-25-03","account","0","0","0","136","0",NULL,NULL,"Olafur Magnusson","Donna ehf","Mohella 2","Hafnarfjordur","ICELAND","Alabama","IS220","United States",NULL,"0","I live in Iceland and it is not possible to change the shipping instruction on your page. It is possible that I will be in US in the fall and you can then ship to my hotel. Kindly inform me when books are ready.","0","0",NULL,NULL
+"1603070925-f8f9","2016-03-07 09:25:44","3","f8f91e14-07-05","account","0","7.5","0","141.85","106",NULL,NULL,"Daniel Rose",,"11196 Chippewa Drive",,"Warren","Michigan","48093-1642","United States",NULL,"0",,"0","0",NULL,NULL
+"1603080711-82d7","2016-03-08 07:11:07","3","82d7dc13-10-07","account","0","0","0","68","0",NULL,NULL,"James Pilson",,"719-A Summer Lane",,"Prattville","Alabama","36066","United States",NULL,"0",,"0","0",NULL,NULL
+"1603091112-9db6","2016-03-09 11:12:55","3","9db68216-09-03","guest","0","7.5","0","21.5","106",NULL,NULL,"John Burnett","Lunar Lodge","PO Box 713",,"Madison","Alabama","35758","United States",NULL,"0",,"0","0",NULL,NULL
+"1603091258-7275","2016-03-09 12:58:25","3","72757a16-09-03","guest","0","8.5","0","35.5","106",NULL,NULL,"Ken Rood","Loren K Rood","10626 Sedco Drive",,"Union","Kentucky","41091","United States",NULL,"0",,"0","0",NULL,NULL
+"1603091805-8db8","2016-03-09 18:05:05","3","8db82516-09-03","account","0","0","0","12","0",NULL,NULL,"Rod Kennedy",,"PO Box 655",,"Evansville","Wyoming","82636","United States",NULL,"0",,"0","0",NULL,NULL
+"1603092152-6cb4","2016-03-09 21:52:11","3","6cb4c916-09-03","guest","0","4","0","13","106",NULL,NULL,"luis lasa",,"117 robertson court",,"north wales","Pennsylvania","19454","United States",NULL,"0",,"0","0",NULL,NULL
+"1603101835-0045","2016-03-10 18:35:28","3","00450c16-10-03","account","0","9.5","0","52.5","106",NULL,NULL,"Jeremy Harris",,"812 N 14th St",,"Bismarck","North Dakota","58501","United States",NULL,"0",,"0","0",NULL,NULL
+"1603111352-bf18","2016-03-11 13:52:18","3","bf18df16-11-03","guest","0","8.5","0","35.5","106",NULL,NULL,"Larry York",,"13643 madison pike",,"Morning view","Kentucky","41063","United States",NULL,"0",,"0","0",NULL,NULL
+"1603111404-5e28","2016-03-11 14:04:41","3","5e282f16-11-03","guest","0","0","0","12","0",NULL,NULL,"Robert Fowler",,"109 Oak Ridge Rd",,"swannan","North Carolina","28778","United States",NULL,"0",,"0","0",NULL,NULL
+"1603131705-d420","2016-03-13 17:05:48","1","d420ae14-16-09","account","0","7.5","0","144.5","106",NULL,NULL,"Jim Kendall","Telebyte NW","900 Sheridan Road","Ste 108","Bremerton","Washington","98310","United States",NULL,"0",,"0","0",NULL,NULL
+"1603132234-9f00","2016-03-13 22:34:41","3","9f004616-13-03","account","0","0","0","110","0",NULL,NULL,"Rick Silva",,"3252 Cedar Ave",,"Long Beach","California","90806","United States",NULL,"0",,"0","0",NULL,NULL
+"1603140824-84c1","2016-03-14 08:24:36","3","84c1aa16-14-03","account","0","8.5","0","38.5","106",NULL,NULL,"Marshall Clowers",,"200 Circle Drive NE",,"Cleveland","Tennessee","37312","United States",NULL,"0",,"0","0",NULL,NULL
+"1603141218-4533","2016-03-14 12:18:03","1","45338f13-28-04","account","0","0","0","123","0",NULL,NULL,"Charles Knapp Jr",,"5 4th Avenue",,"Narrowsburg","New York","12764","United States",NULL,"0",,"0","0",NULL,NULL
+"1603151235-fb86","2016-03-15 12:35:01","3","fb868f16-15-03","account","0","7.5","0","21.5","106",NULL,NULL,"David Carnes","Wilmington Lodge #362","15248 Madison Pike",,"Morning View","Kentucky","41063","United States",NULL,"0",,"0","0",NULL,NULL
+"1603151330-d5b9","2016-03-15 13:30:02","3","d5b92716-15-03","account","0","10.5","0","60.5","106",NULL,NULL,"Beynon St John",,"566 Cliff St",,"Lander","Wyoming","82520","United States",NULL,"0",,"0","0",NULL,NULL
+"1603151544-9102","2016-03-15 15:44:23","3","91029a16-15-03","guest","0","0","0","68","0",NULL,NULL,"Robert Comeau","Robert Comeau","6 Kendall Road",,"Boylston","Massachusetts","01505","United States",NULL,"0",,"0","0",NULL,NULL
+"1603160050-70f8","2016-03-16 00:50:24","3","70f89016-16-03","guest","0","0","0","12","0",NULL,NULL,"Ryan Paul Brulinski",,"1112 Colorado Street",,"Bellevue","Nebraska","68005","United States",NULL,"0",,"0","0",NULL,NULL
+"1603161549-e842","2016-03-16 15:49:26","3","e8428d16-16-03","guest","0","0","0","12","0",NULL,NULL,"Robert Licata","Robert Licata","20 Alma Street",,"Sayville","New York","11782","United States",NULL,"0",,"0","0",NULL,NULL
+"1603162127-b1b6","2016-03-16 21:27:55","3","b1b6ef16-16-03","guest","0","0","0","68","0",NULL,NULL,"August Molitano",,"P.O. Bpx 427",,"Riverton","Connecticut","06065","United States",NULL,"0",,"0","0",NULL,NULL
+"1603171055-2387","2016-03-17 10:55:50","1","2387cf16-17-03","account","0","0","0","68","0",NULL,NULL,"Robert Schlegel","R F Schlegel","4053 SE 39th Circle",,"Ocala","Florida","34480-4954","United States",NULL,"0",,"0","0",NULL,NULL
+"1603171126-aaec","2016-03-17 11:26:18","3","aaec6116-17-03","guest","0","4","0","82","106",NULL,NULL,"Arnold Cobb ",,"2916 Wicker ST",,"Sanford","North Carolina","27330","United States",NULL,"0",,"0","0",NULL,NULL
+"1603171232-6c19","2016-03-17 12:32:47","3","6c19ff13-02-05","account","0","0","0","123","0",NULL,NULL,"Col JD Stevens",,"18309 Allora Dr",,"Edmond","Oklahoma","73012","United States",NULL,"0",,"0","0",NULL,NULL
+"1603180149-bee5","2016-03-18 01:49:27","3","bee52c13-30-08","account","0","0","0","68","0",NULL,NULL,"Don Springler",,"PO Box 73455",,"Metairie","Louisiana","70033-3455","United States",NULL,"0",,"0","0",NULL,NULL
+"1603181104-4d81","2016-03-18 11:04:53","3","4d817316-18-03","account","0","0","0","12","0",NULL,NULL,"Tom Merchant","Tom Merchant","315 Oak View Circle",,"El Lago","Texas","77586","United States",NULL,"0",,"0","0",NULL,NULL
+"1603181142-29e3","2016-03-18 11:42:16","1","29e3a416-18-03","guest","0","0","0","68","0",NULL,NULL,"Benjamin Schroeder","Raven Lodge #303","13701 Joliet road",,"Newark","Illinois","60541","United States",NULL,"0",,"0","0",NULL,NULL
+"1603181503-fe7e","2016-03-18 15:03:07","3","fe7e4a13-01-04","account","0","0","0","123","0",NULL,NULL,"Fred S Kile","AASR, Valley of Columbus","290 Cramer Creek Ct",,"Dublin","Ohio","43017","United States",NULL,"0",,"0","0",NULL,NULL
+"1603181549-a677","2016-03-18 15:49:22","3","a677fe13-04-11","account","0","7.5","0","218.5","106",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"0","0",NULL,NULL
+"1603182250-8013","2016-03-18 22:50:05","3","80130216-18-03","guest","0","4","0","80","106",NULL,NULL,"Eric Gillett",,"15595 East Twp Rd 12",,"Attica","Ohio","44807","United States",NULL,"0",,"0","0",NULL,NULL
+"1603190245-0bc9","2016-03-19 02:45:35","3","0bc91213-10-04","account","0","0","0","123","0",NULL,NULL,"Bruce Vesper",,"1557 Desert Springs Ave",,"Richland","Washington","99352","United States",NULL,"0",,"0","0",NULL,NULL
+"1603191905-ed95","2016-03-19 19:05:38","3","ed955115-11-06","account","0","0","0","68","0",NULL,NULL,"Edward James",,"15831 Easthaven Ct",,"Bowie","Maryland","20716","United States",NULL,"0",,"0","0",NULL,NULL
+"1603201134-e90e","2016-03-20 11:34:24","3","e90e4a16-20-03","account","0","0","0","123","0",NULL,NULL,"Paul Bailey",,"3640 Windjammer Drive",,"Colorado Springs","Colorado","80920","United States",NULL,"0",,"0","0",NULL,NULL
+"1603201426-08cd","2016-03-20 14:26:38","3","08cd9816-20-03","account","0","0","0","68","0",NULL,NULL,"Douglas Russell",,"6528 Sunnyslope Ave",,"Van Nuys","California","91401-1743","United States",NULL,"0",,"0","0",NULL,NULL
+"1603201727-05b3","2016-03-20 17:27:56","3","05b3c413-21-05","account","0","0","0","123","0",NULL,NULL,"Donald MacCormick",,"17000 E. 44th Street",,"Independence","Missouri","64055","United States",NULL,"0",,"0","0",NULL,NULL
+"1603201857-f9fb","2016-03-20 18:57:42","3","f9fb4d14-13-03","account","0","0","0","123","0",NULL,NULL,"David Doan",,"12010 Alderbrook Street",,"Moorpark","California","93021-3130","United States",NULL,"0",,"0","0",NULL,NULL
+"1603210933-a870","2016-03-21 09:33:34","1","a8707216-21-03","guest","0","0","0","68","0",NULL,NULL,"Benjamin Schroeder","Raven Lodge #303","13701 Joliet Road",,"Newark","Illinois","60541","United States",NULL,"0",,"0","0",NULL,NULL
+"1603211248-029f","2016-03-21 12:48:11","3","029ff716-21-03","account","0","0","0","68","0",NULL,NULL,"Secretary","Eugene Lodge 11","513 Pinto Way",,"Eugene","Oregon","97401","United States",NULL,"0",,"0","0",NULL,NULL
+"1603211516-f8eb","2016-03-21 15:16:20","3","f8eb6516-21-03","guest","0","8.5","0","37.5","106",NULL,NULL,"Todd Onesti","Stow Lodge #768","33 Prentiss Street",,"Munroe Falss","Ohio","44262","United States",NULL,"0","We are taking part in an event April 1, 2016. Hope we can get them by then.","0","0",NULL,NULL
+"1603211625-d712","2016-03-21 16:25:12","1","d7125c16-21-03","account","0","0","0","123","0",NULL,NULL,"Michael Watson","Grand Lodge F. & A.M. of Ohio","1 Masonic Drive",,"Springfield","Ohio","45504-3658","United States",NULL,"0",,"0","0",NULL,NULL
+"1603211953-d7e6","2016-03-21 19:53:11","3","d7e6b616-21-03","account","0","8.5","0","37.5","106",NULL,NULL,"Arthur Dickerson",,"1038 Hephzibah-McBean Road",,"Hephzibah","Georgia","30815","United States",NULL,"0",,"0","0",NULL,NULL
+"1603220943-ff22","2016-03-22 09:43:09","3","ff223f16-22-03","account","0","0","0","12","0",NULL,NULL,"Dale Rogers","Retired","117 Hemlock Terrace North",,"Greentown","Pennsylvania","18426","United States",NULL,"0",,"0","0",NULL,NULL
+"1603221113-7ef8","2016-03-22 11:13:10","3","7ef8ca16-22-03","account","0","0","0","68","0",NULL,NULL,"James E. Johnston",,"1616 Edinburgh Ave",,"Port Royal","South Carolina","29935-1808","United States",NULL,"0",,"0","0",NULL,NULL
+"1603221135-fc2d","2016-03-22 11:35:30","1","fc2df516-01-03","account","0","20","0","245.75","106",NULL,NULL,"Thomas Foster","Grand Lodge of A.F. & A.M. of Maryland","304 International Circle",,"Cockeysville","Maryland","21030","United States",NULL,"0",,"0","0",NULL,NULL
+"1603221144-dae1","2016-03-22 11:44:43","1","dae16e16-22-03","guest","0","20","0","245.75","106",NULL,NULL,"Thomas Foster","Grand Lodge of A.F. & A.M. of Maryland","304 International Circle",,"Cockeysville","Maryland","21030","United States",NULL,"0",,"0","0",NULL,NULL
+"1603221149-6bdd","2016-03-22 11:49:21","3","6bdd8416-22-03","guest","0","20","0","245.75","106",NULL,NULL,"Kenneth Taylor","Grand Lodge of A.F. & A.M. of Maryland","304 International Circle",,"Cockeysville","Maryland","21030","United States",NULL,"0",,"0","0",NULL,NULL
+"1603240953-f350","2016-03-24 09:53:35","3","f3507316-24-03","guest","0","0","0","166","0",NULL,NULL,"Dan Kemble",,"1540 St. Clair Street",,"Covington","Kentucky","41011","United States",NULL,"0",,"0","0",NULL,NULL
+"1603241039-c4b1","2016-03-24 10:39:07","3","c4b19c16-24-03","account","0","0","0","12","0",NULL,NULL,"Paul Mertz",,"47 Hawthorne Hill Rd",,"Hopkinton","New Hampshire","03229","United States",NULL,"0",,"0","0",NULL,NULL
+"1603241044-1079","2016-03-24 10:44:13","1","10799316-24-03","guest","0","20","0","235","106",NULL,NULL,"Gwen Olson","Grand Lodge of South Dakota","520 S First Ave",,"Sioux Falls","South Dakota","57104","United States",NULL,"0",,"0","0",NULL,NULL
+"1603241054-fb4d","2016-03-24 10:54:12","3","fb4d5214-13-11","account","0","20","0","240","106",NULL,NULL,"Gwen Olson","Grand Lodge of South Dakota","520 S First Ave",,"Sioux Falls","South Dakota","57104","United States",NULL,"0",,"0","0",NULL,NULL
+"1603241920-8573","2016-03-24 19:20:45","3","85739314-01-04","account","0","0","0","166","0",NULL,NULL,"Jim Gleason",,"5573 Rockpointe Dr",,"Clifton","Virginia","20124","United States",NULL,"0",,"0","0",NULL,NULL
+"1603250122-eb23","2016-03-25 01:22:03","3","eb238b16-25-03","guest","0","7.5","0","27.5","106",NULL,NULL,"Nico Capolongo",,"4001 Pelham RD Unit 397",,"Greer","South Carolina","29650","United States",NULL,"0",,"0","0",NULL,NULL
+"1603250805-ad1f","2016-03-25 08:05:24","3","ad1fdc16-25-03","guest","0","0","0","3.3","106",NULL,NULL,"Robert Fitzgerald",,"476 SW CR 138",,"Ft. White, Fl","Florida","32038","United States",NULL,"0",,"0","0",NULL,NULL
+"1603251136-b4e6","2016-03-25 11:36:43","3","b4e6b516-25-03","account","0","10.5","0","52.5","106",NULL,NULL,"Douglas Tribou","Western Star Masonic Lodge #91, A.F.&A.M.","PO Box 627",,"Rutherfordton","North Carolina","28139","United States",NULL,"0",,"0","0",NULL,NULL
+"1603251137-b92f","2016-03-25 11:37:31","3","b92fc016-25-03","guest","0","7.5","0","21.5","106",NULL,NULL,"John Burnett","Lunar Lodge #918","PO Box 713",,"Madison","Alabama","35758","United States",NULL,"0",,"0","0",NULL,NULL
+"1603251201-2efc","2016-03-25 12:01:55","1","2efc7f15-17-12","account","0","0","0","0.75","106",NULL,NULL,"Jason Wilkins",,"230 South Main Street",,"Rawson","Ohio","45881","United States",NULL,"0",,"0","0",NULL,NULL
+"1603251249-e686","2016-03-25 12:49:57","3","e6866014-23-04","account","0","0","0","68","0",NULL,NULL,"R.S. Watt Jr",,"2027 S. 292nd St",,"Federal Way","Washington","98003","United States",NULL,"0",,"0","0",NULL,NULL
+"1603251345-c62f","2016-03-25 13:45:56","3","c62feb16-25-03","account","0","0","0","123","0",NULL,NULL,"Thomas Farr",,"5535 Downie Road",,"Denair","California","95316-9775","United States",NULL,"0",,"0","0",NULL,NULL
+"1603251455-55a3","2016-03-25 14:55:13","3","55a32413-22-03","account","0","0","0","123","0",NULL,NULL,"William Bangerter",,"3439 Pickett Road",,"Saint Joseph","Missouri","64503-1431","United States",NULL,"0",,"0","0",NULL,NULL
+"1603251512-cb36","2016-03-25 15:12:26","3","cb36f213-13-04","account","0","0","0","68","0",NULL,NULL,"Ridge Smith",,"PO Box 851123",,"Yukon","Oklahoma","73085","United States",NULL,"0",,"0","0",NULL,NULL
+"1603252137-1467","2016-03-25 21:37:48","3","1467a416-25-03","account","0","0","0","68","0",NULL,NULL,"Jack Levitt",,"2570 Fairway Drive",,"Bozeman","Montana","59715","United States",NULL,"0",,"0","0",NULL,NULL
+"1603252245-3b3a","2016-03-25 22:45:25","3","3b3a0c16-25-03","account","0","8.5","0","35.5","106",NULL,NULL,"Joe Pescador",,"7568 Roaring Springs Road",,"Gloucester","Virginia","23061","United States",NULL,"0",,"0","0",NULL,NULL
+"1603260646-3051","2016-03-26 06:46:31","1","3051fc15-30-04","account","0","4","0","12.75","106",NULL,NULL,"Frank During",,"P.O.Box 471",,"Ellsworth","Wisconsin","54011","United States",NULL,"0",,"0","0",NULL,NULL
+"1604111133-fc2d","2016-04-11 11:33:55","3","fc2df516-01-03","account","0","20","0","245","106",NULL,NULL,"Kenneth Taylor","Grand Lodge of A.F. & A.M. of Maryland","304 International Circle",,"Cockeysville","Maryland","21030","United States",NULL,"0",,"0","0",NULL,NULL
+"1603260848-455e","2016-03-26 08:48:17","3","455ef113-03-12","account","0","0","0","68","0",NULL,NULL,"Thomas Winter",,"68 S Conger Avenue",,"Congers","New York","10920","United States",NULL,"0",,"0","0",NULL,NULL
+"1603261000-15ad","2016-03-26 10:00:44","3","15ad1416-26-03","guest","0","0","0","259","0",NULL,NULL,"Richard Maag","Masonic Temple Assoc. Co. of Sandusky","403 Wayne Street",,"Sandusky","Ohio","44870","United States",NULL,"0",,"0","0",NULL,NULL
+"1603261039-562c","2016-03-26 10:39:47","1","562c0c14-21-05","account","0","0","0","68","0",NULL,NULL,"Paul Harbord",,"86 9th Ave",,"Hawthorne","New Jersey","07506-1645","United States",NULL,"0",,"0","0",NULL,NULL
+"1603261804-4260","2016-03-26 18:04:32","3","4260b816-26-03","guest","0","0","0","68","0",NULL,NULL,"T David Jordan",,"1661 HWY 177",,"Russellville","Alabama","35654","United States",NULL,"0",,"0","0",NULL,NULL
+"1603270848-284c","2016-03-27 08:48:21","1","284c5116-20-03","guest","0","7.5","0","23.5","106",NULL,NULL,"Fred Eastman",,"7111 28th Ave. N.W.",,"Seattle","Washington","98117","United States",NULL,"0",,"0","0",NULL,NULL
+"1603270900-a822","2016-03-27 09:00:42","3","a822ee16-27-03","guest","0","7.5","0","23.5","106",NULL,NULL,"Fred Eastman",,"7111 28th Ave. N.W.",,"Seattle","Washington","98117","United States",NULL,"0",,"0","0",NULL,NULL
+"1603271734-1a64","2016-03-27 17:34:18","3","1a64a516-27-03","guest","0","0","0","123","0",NULL,NULL,"Russ Charvonia",,"5536 N. Bryn Mawr St.",,"Ventura","California","93003","United States",NULL,"0",,"0","0",NULL,NULL
+"1603281019-c85f","2016-03-28 10:19:28","3","c85f5c16-28-03","guest","0","15","0","106","106",NULL,NULL,"Robert Kachelhofer","Hoover Lodge #644","2512 Old Rocky Ridge Road",,"Birmingham","Alabama","35216","United States",NULL,"0",,"0","0",NULL,NULL
+"1603290748-e935","2016-03-29 07:48:14","1","e9354215-08-04","account","0","8.5","0","38.5","106",NULL,NULL,"robert gilligan",,"100 geiger drive",,"tewksbury","Massachusetts","01876","United States",NULL,"0",,"0","0",NULL,NULL
+"1603291006-1922","2016-03-29 10:06:20","1","19224016-29-03","account","0","4","0","11.35","106",NULL,NULL,"Gary Gallaway","Lawn Lodge 1230 AF& AM","2538 Over St.",,"Abilene","Texas","79605","United States",NULL,"0",,"0","0",NULL,NULL
+"1603291058-562c","2016-03-29 10:58:23","3","562c0c14-21-05","account","0","0","0","68","0",NULL,NULL,"Paul Harbord",,"86 9th Ave",,"Hawthorne","New Jersey","07506-1645","United States",NULL,"0",,"0","0",NULL,NULL
+"1603291101-2b74","2016-03-29 11:01:51","1","2b74f816-29-03","guest","0","0","0","1.5","106",NULL,NULL,"Andrew Cowley",,"359 overture way",,"centreville","Maryland","21617","United States",NULL,"0",,"0","0",NULL,NULL
+"1603291340-53e7","2016-03-29 13:40:33","3","53e76413-26-11","account","0","0","0","68","0",NULL,NULL,"PJ Bridenstine",,"310 West Main St.",,"Osakis","Minnesota","56360","United States",NULL,"0",,"0","0",NULL,NULL
+"1603291614-a552","2016-03-29 16:14:15","3","a5520416-29-03","guest","0","0","0","68","0",NULL,NULL,"Matthew Appel",,"18229 60th Ave. W",,"Lynnwood","Washington","98037","United States",NULL,"0",,"0","0",NULL,NULL
+"1603292029-9cfb","2016-03-29 20:29:58","3","9cfb4416-29-03","guest","0","7.5","0","23.5","106",NULL,NULL,"Marshall Norcross",,"1210 Brookside Drive`",,"Rochelle","Illinois","61068","United States",NULL,"0",,"0","0",NULL,NULL
+"1603300941-9846","2016-03-30 09:41:26","1","9846b316-30-03","guest","0","0","0","68","0",NULL,NULL,"Brian Dodson",,"2707 Lakeside Village Dr",,"Missouri City","Texas","77459","United States",NULL,"0",,"0","0",NULL,NULL
+"1603300946-34b1","2016-03-30 09:46:45","1","34b12216-30-03","account","0","0","0","68","0",NULL,NULL,"Brian Dodson",,"2707 Lakeside Village Dr",,"Missouri City","Texas","77459","United States",NULL,"0",,"0","0",NULL,NULL
+"1603300949-34b1","2016-03-30 09:49:27","1","34b12216-30-03","account","0","0","0","68","0",NULL,NULL,"Brian Dodson",,"2707 Lakeside Village Dr",,"Missouri City","Texas","77459","United States",NULL,"0",,"0","0",NULL,NULL
+"1603301055-1922","2016-03-30 10:55:09","1","19224016-29-03","account","0","4","0","11.75","106",NULL,NULL,"Gary Gallaway","Lawn Lodge 1230 AF& AM","2538 Over St.",,"Abilene","Texas","79605","United States",NULL,"0",,"0","0",NULL,NULL
+"1603301115-e25e","2016-03-30 11:15:27","3","e25e4914-16-08","account","0","0","0","68","0",NULL,NULL,"Albert Piatt",,"1721 Julian Ridge Road",,"Chattanooga","Tennessee","37421-3321","United States",NULL,"0",,"0","0",NULL,NULL
+"1603301119-1922","2016-03-30 11:19:23","1","19224016-29-03","account","0","7.5","0","21","106",NULL,NULL,"Gary Gallaway","Lawn Lodge 1230 AF& AM","2538 Over St.",,"Abilene","Texas","79605","United States",NULL,"0",,"0","0",NULL,NULL
+"1603301131-34b1","2016-03-30 11:31:23","1","34b12216-30-03","account","0","0","0","68","0",NULL,NULL,"Brian Dodson",,"2707 Lakeside Village Dr",,"Missouri City","Texas","77459","United States",NULL,"0",,"0","0",NULL,NULL
+"1603301145-34b1","2016-03-30 11:45:14","1","34b12216-30-03","account","0","0","0","68","0",NULL,NULL,"Brian Dodson",,"2707 Lakeside Village Dr",,"Missouri City","Texas","77459","United States",NULL,"0",,"0","0",NULL,NULL
+"1603301437-34b1","2016-03-30 14:37:48","1","34b12216-30-03","account","0","0","0","68","0",NULL,NULL,"Brian Dodson",,"2707 Lakeside Village Dr",,"Missouri City","Texas","77459","United States",NULL,"0",,"0","0",NULL,NULL
+"1603301440-34b1","2016-03-30 14:40:51","3","34b12216-30-03","account","0","0","0","68","0",NULL,NULL,"Brian Dodson",,"2707 Lakeside Village Dr",,"Missouri City","Texas","77459","United States",NULL,"0",,"0","0",NULL,NULL
+"1603301453-fbd3","2016-03-30 14:53:40","3","fbd38914-07-04","account","0","0","0","68","0",NULL,NULL,"Marcus Dugger",,"3416 estes Park Dr.",,"Snellville","Georgia","30039-6937","United States",NULL,"0",,"0","0",NULL,NULL
+"1603301816-4beb","2016-03-30 18:16:36","3","4beb6116-30-03","guest","0","0","0","98","0",NULL,NULL,"Walter Sawicki II",,"4562 Newport Ave.",,"St. Louis","Missouri","63116","United States",NULL,"0",,"0","0",NULL,NULL
+"1603301822-7c2d","2016-03-30 18:22:30","3","7c2deb16-30-03","guest","0","0","0","68","0",NULL,NULL,"Walter Sawicki II",,"4562 Newport Ave.",,"St. Louis","Missouri","63116","United States",NULL,"0",,"0","0",NULL,NULL
+"1603302315-3db3","2016-03-30 23:15:24","3","3db32816-30-03","guest","0","0","0","166","0",NULL,NULL,"Ronald Jarrett",,"10349 416th ",,"Britton","South Dakota","57430","United States",NULL,"0",,"0","0",NULL,NULL
+"1603310943-e935","2016-03-31 09:43:38","1","e9354215-08-04","account","0","11.5","0","71","106",NULL,NULL,"robert gilligan",,"100 geiger drive",,"tewksbury","Massachusetts","01876","United States",NULL,"0",,"0","0",NULL,NULL
+"1603311139-9018","2016-03-31 11:39:39","3","90182f16-31-03","guest","0","0","0","98","0",NULL,NULL,"Christopher Henn",,"1125 Audubon Drive",,"Toms River","New Jersey","08753","United States",NULL,"0",,"0","0",NULL,NULL
+"1604011935-0386","2016-04-01 19:35:39","3","0386c916-01-04","guest","0","0","0","68","0",NULL,NULL,"Daniel Mason",,"10790 Toepperwein","Apt 114","Converse","Texas","78109","United States",NULL,"0",,"0","0",NULL,NULL
+"1604012150-e040","2016-04-01 21:50:17","3","e0404c13-14-04","account","0","0","0","68","0",NULL,NULL,"Jose Perez","(personal)","16141 SW 42nd. Ter",,"MIami","Florida","33185-3825","United States",NULL,"0",,"0","0",NULL,NULL
+"1604021720-9e58","2016-04-02 17:20:22","3","9e58dc16-02-04","guest","0","0","0","12","0",NULL,NULL,"Eric Gamble",,"4012 Jasper Street",,"Metairie","Louisiana","70002","United States",NULL,"0",,"0","0",NULL,NULL
+"1604031211-c818","2016-04-03 12:11:29","3","c8181716-03-04","guest","0","0","0","80","0",NULL,NULL,"Daniel Barston",,"15 Clark Street",,"Auburn","Massachusetts","01501-1743","United States",NULL,"0",,"0","0",NULL,NULL
+"1604031439-02ff","2016-04-03 14:39:18","3","02ffeb16-03-04","guest","0","0","0","1.25","106",NULL,NULL,"Hal Smith",,"6290 W Tropical Pkwy",,"Las Vegas","Nevada","89130-1304","United States",NULL,"0",,"0","0",NULL,NULL
+"1604031558-7c82","2016-04-03 15:58:46","3","7c82b214-16-03","account","0","7.5","0","23.5","106",NULL,NULL,"Monte Miller",,"2310 Zenith Ave N",,"Golden Valley","Minnesota","55422","United States",NULL,"0",,"0","0",NULL,NULL
+"1604032215-7835","2016-04-03 22:15:12","3","78355916-03-04","account","0","0","0","16","106",NULL,NULL,"Dallas Carlson",,"851 Mahone Ave",,"Bismarck","North Dakota","58503","United States",NULL,"0",,"0","0",NULL,NULL
+"1604032325-2e97","2016-04-03 23:25:44","3","2e972715-08-03","account","0","0","0","68","0",NULL,NULL,"John Brobst",,"5 West Elm Street",,"Tamaqua","Pennsylvania","18252","United States",NULL,"0",,"0","0",NULL,NULL
+"1604041155-255e","2016-04-04 11:55:53","3","255ec216-04-04","account","0","7.5","0","23.5","106",NULL,NULL,"Ralph Jenkins",,"95","Lake Shore Drive","Montrose","Pennsylvania","18801","United States",NULL,"0",,"0","0",NULL,NULL
+"1604041456-f4b9","2016-04-04 14:56:03","3","f4b9fe16-04-04","account","0","7.5","0","25","106",NULL,NULL,"Loren L. Bower","Highland Lodge #38","P.O. Box 38",,"Hillsboro","Ohio","45133","United States",NULL,"0",,"0","0",NULL,NULL
+"1604051030-8e96","2016-04-05 10:30:32","3","8e963814-06-10","account","0","15","0","107","106",NULL,NULL,"Jeffrey Chan","UPS Store","297 Kinderkamack Road","Suite #101 Box 232","Oradell","New Jersey","07649","United States",NULL,"0",,"0","0",NULL,NULL
+"1604051714-7a5f","2016-04-05 17:14:20","3","7a5f2516-05-04","guest","0","0","0","68","0",NULL,NULL,"John Zabel",,"371 Lyndon Rd",,"Fairport","New York","14450","United States",NULL,"0",,"0","0",NULL,NULL
+"1604052109-0c91","2016-04-05 21:09:50","3","0c912313-31-03","account","0","8.5","0","36.5","106",NULL,NULL,"Raymond Feyes",,"10307 Kirkwren Dr",,"Houston","Texas","77089","United States",NULL,"0",,"0","0",NULL,NULL
+"1604052305-abae","2016-04-05 23:05:53","3","abaed116-05-04","account","0","0","0","68","0",NULL,NULL,"Joyce Lane",,"9252 Dibble Ave NW",,"Seattle","Washington","98117","United States",NULL,"0",,"0","0",NULL,NULL
+"1604060750-9a17","2016-04-06 07:50:34","1","9a17c513-23-08","account","0","0","0","68","0",NULL,NULL,"Chris Morgan",,"38000 Hills Tech Drive",,"Farmington Hills","Michigan","48331","United States",NULL,"0",,"0","0",NULL,NULL
+"1604061017-40a8","2016-04-06 10:17:07","3","40a82216-06-04","account","0","0","0","0.75","106",NULL,NULL,"Larry Lanning",,"102 Shepherd Lane",,"Lawson","Missouri","64062","United States",NULL,"0",,"0","0",NULL,NULL
+"1604061639-20d4","2016-04-06 16:39:52","3","20d45416-06-04","guest","0","0","0","166","0",NULL,NULL,"same","same","same",,"same","Alabama","same","United States",NULL,"0",,"0","0",NULL,NULL
+"1604071619-8a4b","2016-04-07 16:19:48","3","8a4b9316-07-04","guest","0","0","0","68","0",NULL,NULL,"Jeff Slattery",,"45 Carol Lane",,"Athens","Ohio","45701","United States",NULL,"0",,"0","0",NULL,NULL
+"1604071708-7d0c","2016-04-07 17:08:51","3","7d0c0013-09-04","account","0","0","0","68","0",NULL,NULL,"Edward J Howard",,"2617 Camino Pl W",,"Kettering","Ohio","45420-3932","United States",NULL,"0",,"0","0",NULL,NULL
+"1604071822-69c6","2016-04-07 18:22:50","3","69c6c516-07-04","guest","0","7.5","0","27","106",NULL,NULL,"Hal Smith",,"6290 W Tropical Pkwy",,"Las Vegas","Nevada","89130-1304","United States",NULL,"0",,"0","0",NULL,NULL
+"1604081310-840d","2016-04-08 13:10:38","5","840dac16-08-04","guest","0","0","0","12","0",NULL,NULL,"Earl Ferguson",,"PO Box 774",,"Ellabell","Georgia","31308","United States",NULL,"0",,"0","0",NULL,NULL
+"1604081316-1026","2016-04-08 13:16:09","3","10269f16-08-04","account","0","8.5","0","38.5","106",NULL,NULL,"William Powell",,"2466 Woodland Dr",,"Ogden","Utah","84403","United States",NULL,"0",,"0","0",NULL,NULL
+"1604081546-ab9d","2016-04-08 15:46:07","3","ab9dfa16-08-04","account","0","7.5","0","23.5","106",NULL,NULL,"Thomas White",,"2959 Fairbanks Ave.",,"Simi Valley","California","93063","United States",NULL,"0",,"0","0",NULL,NULL
+"1604091423-12d2","2016-04-09 14:23:58","3","12d2fe13-06-05","account","0","0","0","68","0",NULL,NULL,"Michael Fischer","Ameriprise Financial","408 W Mountain St","Suite 101","Kernersville","North Carolina","27284","United States",NULL,"0",,"0","0",NULL,NULL
+"1604091441-5681","2016-04-09 14:41:23","3","56811c14-30-09","account","0","0","0","12","0",NULL,NULL,"Casey Latham",,"1925 W. College Ave. Apt. 234",,"San Bernardino","California","92407","United States",NULL,"0",,"0","0",NULL,NULL
+"1604121307-c74c","2016-04-12 13:07:51","3","c74c0016-12-04","account","0","9.5","0","49.5","106",NULL,NULL,"Hal Smith",,"6290 W Tropical Pkwy",,"Las Vegas","Nevada","89130-1304","United States",NULL,"0",,"0","0",NULL,NULL
+"1604121557-a4c3","2016-04-12 15:57:27","3","a4c31514-24-03","account","0","4","0","92","106",NULL,NULL,"Richard Strich",,"5824 DAVIS FORD RD",,"MANASSAS","Virginia","20112-3039","United States",NULL,"0",,"0","0",NULL,NULL
+"1604122047-5392","2016-04-12 20:47:48","3","53921216-12-04","account","0","0","0","12","0",NULL,NULL,"Ryan Paul Brulinski",,"1112 Colorado Street",,"Bellevue","Nebraska","68005","United States",NULL,"0",,"0","0",NULL,NULL
+"1604131453-4ea1","2016-04-13 14:53:29","3","4ea18a16-13-04","account","0","7.5","0","34.5","106",NULL,NULL,"David Stewart","David Stewart","43 Clearview Court",,"Southington","Connecticut","06489","United States",NULL,"0",,"0","0",NULL,NULL
+"1604141422-3aa1","2016-04-14 14:22:13","3","3aa1db16-14-04","guest","0","8.5","0","36.5","106",NULL,NULL,"Daniel Jones","Nashville Scottish Rite","100 7th Avenue N.",,"Nashville","Tennessee","37203","United States",NULL,"0",,"0","0",NULL,NULL
+"1604141430-a1b5","2016-04-14 14:30:25","1","a1b5f814-09-09","account","0","0","0","68","0",NULL,NULL,"John Perry","Allstate","9931 Corporate Campus Dr Ste 2000",,"Louisville","Kentucky","40223-4034","United States",NULL,"0",,"0","0",NULL,NULL
+"1604141437-a1b5","2016-04-14 14:37:56","1","a1b5f814-09-09","account","0","0","0","68","0",NULL,NULL,"John Perry","Allstate","9931 Corporate Campus Dr Ste 2000",,"Louisville","Kentucky","40223-4034","United States",NULL,"0",,"0","0",NULL,NULL
+"1604141443-a1b5","2016-04-14 14:43:59","3","a1b5f814-09-09","account","0","0","0","68","0",NULL,NULL,"John Perry","Allstate","9931 Corporate Campus Dr Ste 2000",,"Louisville","Kentucky","40223-4034","United States",NULL,"0",,"0","0",NULL,NULL
+"1604150927-3352","2016-04-15 09:27:25","3","33524a15-21-04","account","0","0","0","12","0",NULL,NULL,"Jon Laity",,"1408 State St",,"Cedar Falls","Iowa","50613","United States",NULL,"0",,"0","0",NULL,NULL
+"1604151032-0dd3","2016-04-15 10:32:56","3","0dd38e16-15-04","account","0","7.5","0","21.5","106",NULL,NULL,"Stephen Colton",,"2152 Hoch Dr",,"Cuyahoga Falls","Ohio","44221","United States",NULL,"0",,"0","0",NULL,NULL
+"1604151434-b063","2016-04-15 14:34:23","3","b0633016-15-04","guest","0","7.5","0","21.5","106",NULL,NULL,"Michael Harrison","Michael Harrison & company","752 Leesville rd",,"Lynchburg","Virginia","24502","United States",NULL,"0",,"0","0",NULL,NULL
+"1604151456-e935","2016-04-15 14:56:40","3","e9354215-08-04","account","0","10.5","0","52.5","106",NULL,NULL,"robert gilligan",,"100 geiger drive",,"tewksbury","Massachusetts","01876","United States",NULL,"0",,"0","0",NULL,NULL
+"1604161219-2307","2016-04-16 12:19:44","3","23078d16-16-04","guest","0","0","0","12","0",NULL,NULL,"Roger Rathburn",,"801 Gillaspie Dr. #164",,"Boulder","Colorado","80305","United States",NULL,"0",,"0","0",NULL,NULL
+"1604161426-b3d4","2016-04-16 14:26:47","3","b3d46516-16-04","account","0","0","0","12","0",NULL,NULL,"Ian Berkowitz",,"PO Box 2157",,"Newburgh","New York","12550","United States",NULL,"0",,"0","0",NULL,NULL
+"1604161756-774a","2016-04-16 17:56:40","3","774a9a16-16-04","guest","0","0","0","12","0",NULL,NULL,"Jack Mengel",,"3518 EASTBROOK DR",,"ANN ARBOR","Michigan","48105-9507","United States",NULL,"0",,"0","0",NULL,NULL
+"1604162053-969f","2016-04-16 20:53:39","3","969f7816-16-04","account","0","0","0","12","0",NULL,NULL,"Darrel Davis",,"40 Elgin Drive",,"Greensburg","Pennsylvania","15601","United States",NULL,"0","5518 640 4/16
<br>Subscription Renewal","0","0",NULL,NULL
+"1604162130-a28d","2016-04-16 21:30:27","3","a28d8f13-19-08","account","0","11.5","0","68.5","106",NULL,NULL,"Tom Hancock",,"2801 Collard Road",,"Arlington","Texas","76017","United States",NULL,"0",,"0","0",NULL,NULL
+"1604170105-e985","2016-04-17 01:05:08","3","e985cb16-17-04","account","0","9.5","0","42.5","106",NULL,NULL,"John Corona",,"343 sims ave",,"San Antonio","Texas","78225","United States",NULL,"0",,"0","0",NULL,NULL
+"1604171132-b9ee","2016-04-17 11:32:05","3","b9ee4e15-29-03","account","0","0","0","12","0",NULL,NULL,"Joe Fontana",,"3520 Indiana Ave",,"Baker City","Oregon","97814","United States",NULL,"0",,"0","0",NULL,NULL
+"1604171157-8ae6","2016-04-17 11:57:04","3","8ae64216-17-04","guest","0","7.5","0","47.5","106",NULL,NULL,"Joseph Wertz Jr",,"33 4th Street",,"Shoemakersville","Pennsylvania","19555","United States",NULL,"0",,"0","0",NULL,NULL
+"1604171643-13b0","2016-04-17 16:43:45","3","13b04516-17-04","account","0","0","0","12","0",NULL,NULL,"Richard Werpy",,"1903 Windermere Lane",,"Erie","Colorado","80516","United States",NULL,"0",,"0","0",NULL,NULL
+"1604181133-75c6","2016-04-18 11:33:54","3","75c6f716-18-04","guest","0","8.5","0","38.5","106",NULL,NULL,"Steven Singleton",,"2545 Remington Trace",,"Clarksville","Tennessee","37043","United States",NULL,"0",,"0","0",NULL,NULL
+"1604181314-498b","2016-04-18 13:14:38","3","498be716-08-01","account","0","0","0","31.75","106",NULL,NULL,"Fabian Trudeau",,"4201 Americana Ln.",,"Mission","Texas","78572","United States",NULL,"0",,"0","0",NULL,NULL
+"1604181437-c6eb","2016-04-18 14:37:44","3","c6ebc416-18-04","guest","0","0","0","68","0",NULL,NULL,"David Duke",,"27682 Kingport",,"Splendora","Texas","77372","United States",NULL,"0",,"0","0",NULL,NULL
+"1604191111-d2d2","2016-04-19 11:11:55","3","d2d24716-19-04","guest","0","0","0","15","0",NULL,NULL,"Jim Sicinski",,"522 Alan Dr.",,"New Lenox","Illinois","60451","United States",NULL,"0",,"0","0",NULL,NULL
+"1604191918-87a1","2016-04-19 19:18:07","5","87a15416-19-04","guest","0","0","0","12","0",NULL,NULL,"Richard Hentz",,"31424 N. South Jackson Rd.",,"Elk","Washington","99009","United States",NULL,"0",,"0","0",NULL,NULL
+"1604191932-f9ba","2016-04-19 19:32:25","3","f9ba7216-19-04","guest","0","0","0","12","0",NULL,NULL,"Richard Hentz",,"31424 N South Jackson Rd.",,"Elk","Washington","99009","United States",NULL,"0",,"0","0",NULL,NULL
+"1604201434-8d79","2016-04-20 14:34:57","3","8d79e415-21-12","account","0","0","0","264","0",NULL,NULL,"Garry Krom",,"52 Spruce Street",,"Kingston","New York","12401","United States",NULL,"0",,"0","0",NULL,NULL
+"1604210227-4ebf","2016-04-21 02:27:42","3","4ebf1116-21-04","account","0","4","0","39","106",NULL,NULL,"Bobby McKee",,"660 Willy Vester Rd",,"Van Alstyne","Texas","75495-2806","United States",NULL,"0",,"0","0",NULL,NULL
+"1604211144-83a2","2016-04-21 11:44:32","3","83a29716-21-04","guest","0","0","0","123","0",NULL,NULL,"Russ Charvonia",,"5536 N. Bryn Mawr St",,"Ventura","California","93003","United States",NULL,"0",,"0","0",NULL,NULL
+"1604212203-90c2","2016-04-21 22:03:15","3","90c22014-18-08","account","0","0","0","68","0",NULL,NULL,"Rick Miller",,"2021 Windham St NE",,"Canton","Ohio","44721","United States",NULL,"0",,"0","0",NULL,NULL
+"1604221012-14d7","2016-04-22 10:12:29","3","14d71816-22-04","guest","0","0","0","1.1","106",NULL,NULL,"Brandon Hadley",,"1384 Harmony Dr",,"Wadsworth","Ohio","44281","United States",NULL,"0",,"0","0",NULL,NULL
+"1604221041-ad08","2016-04-22 10:41:47","3","ad089a13-16-02","account","0","0","0","68","0",NULL,NULL,"John LeRoy",,"16161 Point Lookout Rd.",,"Lexington Park","Maryland","20653","United States",NULL,"0",,"0","0",NULL,NULL
+"1604221137-224a","2016-04-22 11:37:19","3","224a3c16-22-04","guest","0","9.5","0","58.5","106",NULL,NULL,"Joseph Fleming","Commonwealth Lodge 325","5599 Barbara Dr.",,"Fitchburg","Wisconsin","53711","United States",NULL,"0",,"0","0",NULL,NULL
+"1604221444-a5b3","2016-04-22 14:44:43","3","a5b30e16-22-04","account","0","0","0","12","0",NULL,NULL,"Trent Thiry",,"6697 WINDMILL LN",,"WEST BLOOMFIELD","Michigan","48324","United States",NULL,"0",,"0","0",NULL,NULL
+"1604231609-8e31","2016-04-23 16:09:29","3","8e31af16-23-04","account","0","0","0","166","0",NULL,NULL,"Edward L Choate",,"2118 E Charles ST",,"Republic","Missouri","65738","United States",NULL,"0",,"0","0",NULL,NULL
+"1604232332-1164","2016-04-23 23:32:14","3","1164c316-23-04","account","0","0","0","24","0",NULL,NULL,"Michael Rodriguez","Midel Trkg. Co.","101 Harper Dr.",,"Anderson","Missouri","64831","United States",NULL,"0","subscription for two years, til 2018","0","0",NULL,NULL
+"1604241908-ccc2","2016-04-24 19:08:59","3","ccc26d16-24-04","account","0","0","0","12","0",NULL,NULL,"James Van Anda",,"5010 Cumberland Ct SE",,"Salem","Oregon","97306","United States",NULL,"0",,"0","0",NULL,NULL
+"1604251143-1382","2016-04-25 11:43:40","3","13823b13-16-07","account","0","4","0","11.5","106",NULL,NULL,"Miguel Banagan","Miguel Banagan","7633 Leesburg Pike","Suite 100","Falls Church","Virginia","22043","United States",NULL,"0",,"0","0",NULL,NULL
+"1604252221-ec62","2016-04-25 22:21:15","3","ec62bf16-25-04","guest","0","8.5","0","35.5","106",NULL,NULL,"joseph roach","jospeh roach","250 jacqueline rd.",,"piedmont","South Carolina","29673","United States",NULL,"0",,"0","0",NULL,NULL
+"1604261321-2678","2016-04-26 13:21:40","1","26782e16-26-04","guest","0","0","0","123","0",NULL,NULL,"Monica Bradley","Washington Masonic Charities","4970 Bridgeport Way W.",,"University Place","Washington","98467","United States",NULL,"0",,"0","0",NULL,NULL
+"1604261323-89b5","2016-04-26 13:23:28","3","89b56a16-26-04","guest","0","0","0","123","0",NULL,NULL,"Monica Bradley","Washington Masonic Charities","4970 Bridgeport Way W.",,"University Place","Washington","98467","United States",NULL,"0",,"0","0",NULL,NULL
+"1604262153-d59e","2016-04-26 21:53:44","3","d59eaf16-26-04","guest","0","4","0","28","106",NULL,NULL,"Robert Ierien",,"134 Post Oak Road",,"La Vernia","Texas","78121","United States",NULL,"0",,"0","0",NULL,NULL
+"1604270627-af1b","2016-04-27 06:27:46","1","af1be213-21-06","account","0","4","0","10.75","106",NULL,NULL,"Stephen Inzer",,"445 Shelmire Rd",,"Downingtown","Pennsylvania","19335","United States",NULL,"0",,"0","0",NULL,NULL
+"1604270629-af1b","2016-04-27 06:29:29","3","af1be213-21-06","account","0","4","0","10.75","106",NULL,NULL,"Stephen Inzer",,"445 Shelmire Rd",,"Downingtown","Pennsylvania","19335","United States",NULL,"0",,"0","0",NULL,NULL
+"1604271306-1a85","2016-04-27 13:06:40","1","1a851016-27-04","guest","0","11.5","0","85.5","106",NULL,NULL,"Rickey Montey","Arlington Masonic Lodge 438","1415 W. Abram",,"Arlington","Texas","76013","United States",NULL,"0",,"0","0",NULL,NULL
+"1604271312-8c94","2016-04-27 13:12:37","3","8c940916-27-04","account","0","11.5","0","85.5","106",NULL,NULL,"Rick Montey","Arlington Masonic Lodge #438","1415 W. Abram St.",,"Arlington","Texas","76013","United States",NULL,"0",,"0","0",NULL,NULL
+"1604291314-fcd3","2016-04-29 13:14:39","3","fcd3a416-29-04","account","0","0","0","12","0",NULL,NULL,"Carl Strievski",,"14 Carrington Drive",,"East Northport","New York","11731","United States",NULL,"0",,"0","0",NULL,NULL
+"1604291355-da83","2016-04-29 13:55:47","3","da838116-29-04","account","0","8.5","0","36.5","106",NULL,NULL,"Bob Worthington","Sacramento Lodge 735","P.O. Box 365",,"Sacramento","Kentucky","42372","United States",NULL,"0",,"0","0",NULL,NULL
+"1604300913-9bc0","2016-04-30 09:13:49","3","9bc09616-30-04","account","0","0","0","12","0",NULL,NULL,"Kraig Krueger",,"N2417 County Road CC",,"Maiden Rock","Wisconsin","54750","United States",NULL,"0",,"0","0",NULL,NULL
+"1604301421-8b72","2016-04-30 14:21:58","3","8b722d16-30-04","guest","0","7.5","0","121","106",NULL,NULL,"Smith Boyd",,"4820A Poplar Springs Drive",,"Meridian","Mississippi","39305","United States",NULL,"0",,"0","0",NULL,NULL
+"1604301648-1da4","2016-04-30 16:48:34","1","1da47e16-30-04","guest","0","0","0","68","0",NULL,NULL,"Roy Simpadian",,"38 East Ridgewood Avneue #179",,"Ridgewood","New Jersey","07450","United States",NULL,"0",,"0","0",NULL,NULL
+"1604301716-ccc8","2016-04-30 17:16:51","3","ccc86e16-30-04","guest","0","0","0","68","0",NULL,NULL,"Roy Simpadian",,"38 E Ridgeowod Ave #179",,"Ridgewood","New Jersey","07450","United States",NULL,"0",,"0","0",NULL,NULL
+"1605011220-2b7a","2016-05-01 12:20:56","3","2b7a1316-01-05","guest","0","7.5","0","23.5","106",NULL,NULL,"David Hanson","Plymouth Lodge #160","5707 W Broadway Ave Ste 1",,"Crystal","Minnesota","55428","United States",NULL,"0",,"0","0",NULL,NULL
+"1605021607-a04f","2016-05-02 16:07:59","1","a04f6316-02-05","account","0","0","0","12","0",NULL,NULL,"Warren Dixon",,"3421 Five Oaks Ct.",,"Arnold","Missouri","63010","United States",NULL,"0",,"0","0",NULL,NULL
+"1605021611-b5f4","2016-05-02 16:11:31","3","b5f45316-02-05","guest","0","7.5","0","21.5","106",NULL,NULL,"Dennis Montey",,"939 Marquette Street",,"Racine","Wisconsin","53404-3111","United States",NULL,"0",,"0","0",NULL,NULL
+"1605021716-2efc","2016-05-02 17:16:39","3","2efc7f15-17-12","account","0","0","0","18","106",NULL,NULL,"Jason Wilkins",,"230 South Main Street",,"Rawson","Ohio","45881","United States",NULL,"0",,"0","0",NULL,NULL
+"1605021752-f0b5","2016-05-02 17:52:00","3","f0b5de16-02-05","account","0","0","0","27","0",NULL,NULL,"james izzell",,"310 Tiffany Cir",,"Garner","North Carolina","27529","United States",NULL,"0",,"0","0",NULL,NULL
+"1605021816-8582","2016-05-02 18:16:25","3","8582e316-02-05","account","0","10.5","0","54.5","106",NULL,NULL,"Thomas Collins","Thomas A Collins","429 West Plum Ln",,"Reno","Nevada","89509","United States",NULL,"0",,"0","0",NULL,NULL
+"1605022236-a8ee","2016-05-02 22:36:48","3","a8ee7816-02-05","guest","0","0","0","20","106",NULL,NULL,"Ernest Cavin","-","2785 Ashton Dr","-","Lebanon","Ohio","45036","United States",NULL,"0",,"0","0",NULL,NULL
+"1605030028-539b","2016-05-03 00:28:53","3","539bd216-03-05","guest","0","11.5","0","93.5","106",NULL,NULL,"Gregory Bodine",,"1100 Clint Dr SE",,"Hartselle","Alabama","35640","United States",NULL,"0",,"0","0",NULL,NULL
+"1605030953-9b9b","2016-05-03 09:53:07","3","9b9bbf16-03-05","guest","0","7.5","0","37.1","106",NULL,NULL,"Daniel K. Berger",,"50 Ivy Meadow Spur",,"Blairsville","Georgia","30512","United States",NULL,"0",,"0","0",NULL,NULL
+"1605030956-8476","2016-05-03 09:56:52","3","8476ea16-03-05","guest","0","0","0","15","0",NULL,NULL,"ROSS BLACK",,"603 BEAVERBROOK DRIVE",,"AKRON","Ohio","44333-2819","United States",NULL,"0",,"0","0",NULL,NULL
+"1605031248-813e","2016-05-03 12:48:01","3","813e9d16-03-05","account","0","0","0","15","0",NULL,NULL,"Ronald Beem","Byron Lodge #274","9857 N Woodgate Ln",,"Byron","Illinois","61010","United States",NULL,"0",,"0","0",NULL,NULL
+"1605041420-a358","2016-05-04 14:20:16","3","a3580a16-04-05","account","0","0","0","68","0",NULL,NULL,"Jason Lang",,"2458 59th street NE",,"Buffalo","Minnesota","55313","United States",NULL,"0",,"0","0",NULL,NULL
+"1605041533-5a8a","2016-05-04 15:33:37","3","5a8a2816-04-05","guest","0","0","0","68","0",NULL,NULL,"Dean Clatterbuck","Dean Clatterbuck","P.O. Box 149",,"New Market","Virginia","22844","United States",NULL,"0",,"0","0",NULL,NULL
+"1605041650-83ac","2016-05-04 16:50:19","3","83ac0416-04-05","account","0","0","0","12","0",NULL,NULL,"Michael Peeler",,"6 Lorraine Dr",,"Travelers Rest","South Carolina","29690","United States",NULL,"0",,"0","0",NULL,NULL
+"1605051812-5354","2016-05-05 18:12:34","3","5354eb16-05-05","account","0","0","0","281","0",NULL,NULL,"Pamela Christensen",,"2517 Providence Road",,"Duluth","Minnesota","55811","United States",NULL,"0",,"0","0",NULL,NULL
+"1605051918-f31c","2016-05-05 19:18:40","3","f31c0a16-05-05","guest","0","0","0","196","0",NULL,NULL,"Charles Bremner",,"892 S. Hillside Ave",,"Elmhurst","Illinois","60126","United States",NULL,"0",,"0","0",NULL,NULL
+"1605081148-301d","2016-05-08 11:48:40","3","301d5815-20-04","account","0","0","0","12","0",NULL,NULL,"William West",,"PO Box 210",,"Palmer","Alaska","99645","United States",NULL,"0",,"0","0",NULL,NULL
+"1605081458-406f","2016-05-08 14:58:36","3","406f3d16-08-05","guest","0","9.5","0","46.5","106",NULL,NULL,"Corry Lindsey",,"1421 McAlpin Road",,"Midlothian","Texas","76065","United States",NULL,"0",,"0","0",NULL,NULL
+"1605081829-800a","2016-05-08 18:29:31","3","800a6516-08-05","account","0","0","0","166","0",NULL,NULL,"Mike Hamrick","Phalanx Lodge #31","P.O. Box 472746",,"Charlotte","North Carolina","28247","United States",NULL,"0",,"0","0",NULL,NULL
+"1605090854-d2d2","2016-05-09 08:54:37","3","d2d29613-19-04","account","0","0","0","12","0",NULL,NULL,"Craig Harm",,"425 Maple St",,"Fontanelle","Iowa","50846","United States",NULL,"0",,"0","0",NULL,NULL
+"1605091052-186b","2016-05-09 10:52:41","3","186bc116-09-05","guest","0","0","0","1.5","106",NULL,NULL,"Leonard James","Leonard James","po box 327",,"Alburgh","Vermont","05440","United States",NULL,"0",,"0","0",NULL,NULL
+"1605101417-36ed","2016-05-10 14:17:11","3","36edea13-02-04","account","0","0","0","12","0",NULL,NULL,"Charles Roberts","Charles Roberts","6101 Velonia Drive",,"West Richland","Washington","99353","United States",NULL,"0",,"0","0",NULL,NULL
+"1605101541-48af","2016-05-10 15:41:40","3","48af4d16-10-05","account","0","0","0","332","0",NULL,NULL,"Steven Aberblatt",,"6820 Horrocks Street",,"Philadelphia","Pennsylvania","19149","United States",NULL,"0",,"0","0",NULL,NULL
+"1605101600-fd8b","2016-05-10 16:00:27","3","fd8b3b16-10-05","guest","0","0","0","30","0",NULL,NULL,"Levy Dean",,"57 Buckhorn Road",,"Baxley","Georgia","31513","United States",NULL,"0",,"0","0",NULL,NULL
+"1605110813-707a","2016-05-11 08:13:02","1","707ad916-11-05","guest","0","20","0","232","106",NULL,NULL,"David Carter","Grand Lodge of Kentucky","300 Masonic Home Drive",,"Masonic Home","Kentucky","40041","United States",NULL,"0",,"0","0",NULL,NULL
+"1605121820-9d3d","2016-05-12 18:20:54","3","9d3db116-12-05","guest","0","0","0","15","0",NULL,NULL,"Brandon Weaver",,"311 Woodvine dr",,"Lawrenceville","Georgia","30044","United States",NULL,"0",,"0","0",NULL,NULL
+"1605130853-4b9a","2016-05-13 08:53:58","3","4b9a9516-13-05","guest","0","0","0","123","0",NULL,NULL,"Michael Watson","Grand Lodge of Ohio","1 Masonic Drive",,"Springfield","Ohio","45504","United States",NULL,"0",,"0","0",NULL,NULL
+"1605131200-3480","2016-05-13 12:00:42","3","3480e816-13-05","account","0","7.5","0","37.5","106",NULL,NULL,"Kenneth Blood",,"2417 E. Cumberland St.",,"Philadelphia","Pennsylvania","19125","United States",NULL,"0",,"0","0",NULL,NULL
+"1605131242-24bd","2016-05-13 12:42:05","1","24bd6114-11-03","account","0","0","0","170","106",NULL,NULL,"Paschal King",,"PO Box 282",,"Rio Grande","Ohio","45674","United States",NULL,"0",,"0","0",NULL,NULL
+"1605131300-cb7f","2016-05-13 13:00:06","1","cb7fd516-13-05","guest","0","0","0","31.5","106",NULL,NULL,"Keith Morgan",,"2601 Tanglewood Drive",,"Durham","North Carolina","27705","United States",NULL,"0",,"0","0",NULL,NULL
+"1605131345-ebf9","2016-05-13 13:45:13","3","ebf92514-29-07","account","0","0","0","68","0",NULL,NULL,"Jorge Filgueira",,"191 Chippewa Street",,"Miami Springs","Florida","33166","United States",NULL,"0",,"0","0",NULL,NULL
+"1605131403-24bd","2016-05-13 14:03:11","3","24bd6114-11-03","account","0","0","0","170","106",NULL,NULL,"Paschal King",,"PO Box 282",,"Rio Grande","Ohio","45674","United States",NULL,"0",,"0","0",NULL,NULL
+"1605131405-a314","2016-05-13 14:05:59","3","a3146316-13-05","guest","0","0","0","68","0",NULL,NULL,"Blake Edwards",,"2115 McFarlin Lane ",,"Milton","Georgia","30004","United States",NULL,"0",,"0","0",NULL,NULL
+"1605140835-8e96","2016-05-14 08:35:18","3","8e963814-06-10","account","0","11.5","0","135.5","106",NULL,NULL,"Jeffrey Chan","UPS Store","297 Kinderkamack Road","Suite #101 Box 232","Oradell","New Jersey","07649","United States",NULL,"0",,"0","0",NULL,NULL
+"1605141757-455a","2016-05-14 17:57:15","3","455a5c16-14-05","account","0","0","0","15","0",NULL,NULL,"Wayne Grindle","Wayne Grindle","4216 High Ridge Road",,"Haymarket","Virginia","20169","United States",NULL,"0",,"0","0",NULL,NULL
+"1605161107-8196","2016-05-16 11:07:39","3","81964b13-20-03","account","0","0","0","123","0",NULL,NULL,"Jeffrey D Maynor",,"16079 Confederate Ave",,"Baton Rouge","Louisiana","70817","United States",NULL,"0",,"0","0",NULL,NULL
+"1605161322-17d9","2016-05-16 13:22:00","3","17d94016-16-05","account","0","0","0","110","0",NULL,NULL,"Donald Reasonover","Donald E Reasonover","1932 West Kirby Ave",,"Orange","Texas","77632","United States",NULL,"0",,"0","0",NULL,NULL
+"1605161532-4041","2016-05-16 15:32:57","3","40412b14-27-05","account","0","4","0","97","106",NULL,NULL,"Raymon Bacchus",,"6009 Raina Drive",,"Centreville","Virginia","20120","United States",NULL,"0",,"0","0",NULL,NULL
+"1605161601-c98f","2016-05-16 16:01:44","3","c98fb816-16-05","guest","0","7.5","0","26.5","106",NULL,NULL,"myles mcmillan",,"6143 Shaw Hwy Se",,"Aumsville","Oregon","97325","United States",NULL,"0",,"0","0",NULL,NULL
+"1605170049-aa2e","2016-05-17 00:49:57","3","aa2ea616-17-05","guest","0","0","0","15","0",NULL,NULL,"Charles Dukehart","1948","6905 Ridge Rd.",,"Marriottsville","Maryland","21104","United States",NULL,"0",,"0","0",NULL,NULL
+"1605171657-64db","2016-05-17 16:57:05","3","64db0b16-17-05","account","0","7.5","0","21.5","106",NULL,NULL,"William Hussell","William Hujssell","PO Box 588","57 Riverside st","Clifton","West Virginia","25260","United States",NULL,"0",,"0","0",NULL,NULL
+"1605171740-388b","2016-05-17 17:40:23","3","388b2e16-17-05","guest","0","0","0","68","0",NULL,NULL,"John Zabel",,"371 Lyndon Rd",,"Fairport","New York","14450-9703","United States",NULL,"0",,"0","0",NULL,NULL
+"1605171947-eb6d","2016-05-17 19:47:11","3","eb6d8316-17-05","guest","0","7.5","0","29.6","106",NULL,NULL,"Jacob Dermott",,"1 Arbor Ct",,"Nappanee","Indiana","46550","United States",NULL,"0",,"0","0",NULL,NULL
+"1605181318-4a56","2016-05-18 13:18:05","3","4a567c16-18-05","guest","0","0","0","15","0",NULL,NULL,"Robert W. Comeau","Robert W. Comeau","6 Kendall",,"Boylston","Massachusetts","01505","United States",NULL,"0",,"0","0",NULL,NULL
+"1605182305-6bd6","2016-05-18 23:05:45","3","6bd65316-18-05","guest","0","0","0","15","0",NULL,NULL,"Gerald Myers",,"1326 SW Looking Glass Loop",,"Oak Harbor","Washington","98277-4564","United States",NULL,"0",,"0","0",NULL,NULL
+"1605191540-b8b2","2016-05-19 15:40:54","3","b8b25616-19-05","account","0","0","0","15","0",NULL,NULL,"Stephen Nichols","Stephen Nichols","409 Hudson Ct",,"Cary","North Carolina","27511-3513","United States",NULL,"0",,"0","0",NULL,NULL
+"1605191710-e18e","2016-05-19 17:10:00","3","e18e2215-07-02","account","0","0","0","15","0",NULL,NULL,"James Robinson","Spearfish Masonic Lodge # 18","3355 E Colorado Blvd",,"Spearfish","South Dakota","57783","United States",NULL,"0",,"0","0",NULL,NULL
+"1605192006-63ff","2016-05-19 20:06:33","3","63ffa116-19-05","guest","0","8.5","0","35.5","106",NULL,NULL,"Robyn Ryan",,"411 East Street N Lot 233",,"Claremont","Minnesota","55924","United States",NULL,"0",,"0","0",NULL,NULL
+"1605192044-d43d","2016-05-19 20:44:30","3","d43dd416-19-05","guest","0","0","0","15","0",NULL,NULL,"Richard Friedman",,"38 Pioneer Drive",,"Fairport","New York","14450","United States",NULL,"0",,"0","0",NULL,NULL
+"1605192215-34f6","2016-05-19 22:15:55","3","34f6b516-19-05","guest","0","0","0","15","0",NULL,NULL,"Charles McDonald",,"702 Jay St",,"Rochester","New York","14611","United States",NULL,"0",,"0","0",NULL,NULL
+"1605200844-29aa","2016-05-20 08:44:17","3","29aa0116-20-05","guest","0","0","0","15","0",NULL,NULL,"Chester King",,"12024 Talitha Lane",,"Orlando","Florida","32827-7254","United States",NULL,"0",,"0","0",NULL,NULL
+"1605200923-f448","2016-05-20 09:23:07","3","f448bd16-20-05","guest","0","0","0","15","0",NULL,NULL,"Thomas Price",,"402 E. Dixon St.",,"Forest","Ohio","45843","United States",NULL,"0",,"0","0",NULL,NULL
+"1605200941-f570","2016-05-20 09:41:21","3","f5701616-20-05","guest","0","0","0","20","106",NULL,NULL,"Ryan Ramplin","BlackBox Biometrics, Inc.","125 Tech Park Drive",,"Rochester","New York","14623","United States",NULL,"0",,"0","0",NULL,NULL
+"1605201125-6637","2016-05-20 11:25:18","3","66373d16-20-05","guest","0","11.5","0","66.5","106",NULL,NULL,"Arthur Sterling","Acme Lodge # 554 F. &A.M. of Ohio","46 N 4th Street",,"Newark","Ohio","43055","United States",NULL,"0",,"0","0",NULL,NULL
+"1605201139-64db","2016-05-20 11:39:56","3","64db0b16-17-05","account","0","7.5","0","21.5","106",NULL,NULL,"William Hussell","William Hujssell","PO Box 588","57 Riverside st","Clifton","West Virginia","25260","United States",NULL,"0",,"0","0",NULL,NULL
+"1605201142-7532","2016-05-20 11:42:07","3","75323616-07-02","account","0","7.5","0","104.5","106",NULL,NULL,"william Simpson","WB William C. Simpson","134 Mill St",,"Ridgeville","South Carolina","29472","United States",NULL,"0",,"0","0",NULL,NULL
+"1605201646-3c49","2016-05-20 16:46:55","3","3c49aa13-19-07","account","0","0","0","15","0",NULL,NULL,"Dennis Block",,"194 Lewis Road",,"Hampstead","North Carolina","28443","United States",NULL,"0",,"0","0",NULL,NULL
+"1605201753-3108","2016-05-20 17:53:49","3","31086c16-20-05","guest","0","0","0","15","0",NULL,NULL,"Douglas Adams",,"30 Woodland Dr.",,"Carmel","New York","10512","United States",NULL,"0",,"0","0",NULL,NULL
+"1605211043-38a0","2016-05-21 10:43:31","1","38a08916-21-05","account","0","0","0","15","0",NULL,NULL,"M. "Les" Burton","Les Burton","2061 Fallon Rd",,"Lexington","Kentucky","40504","United States",NULL,"0",,"0","0",NULL,NULL
+"1605211047-38a0","2016-05-21 10:47:07","3","38a08916-21-05","account","0","0","0","15","0",NULL,NULL,"M. Burton","burtprint","2061 Fallon Rd",,"Lexington","Kentucky","40504","United States",NULL,"0",,"0","0",NULL,NULL
+"1605212312-176e","2016-05-21 23:12:23","3","176ed316-21-05","guest","0","0","0","16","106",NULL,NULL,"Donald Puder",,"128 Myrtle Street",,"Jamestown","New York","14701","United States",NULL,"0",,"0","0",NULL,NULL
+"1605221126-daa9","2016-05-22 11:26:32","3","daa93b16-22-05","account","0","0","0","20","106",NULL,NULL,"John Gramse",,"61 Oneida Trail",,"Malvern","Ohio","44644","United States",NULL,"0","Great site. Thank you!
<br>Brother John","0","0",NULL,NULL
+"1605221259-23be","2016-05-22 12:59:48","3","23be3a15-26-08","account","0","0","0","68","0",NULL,NULL,"Eric Johnson",,"2017 Piper Circle",,"Anacortes","Washington","98221-3125","United States",NULL,"0",,"0","0",NULL,NULL
+"1605240119-62d7","2016-05-24 01:19:39","3","62d7c116-24-05","guest","0","0","0","19","106",NULL,NULL,"Mark Robbins",,"467 Marvin Blvd.",,"North Mankato","Minnesota","56003-3317","United States",NULL,"0",,"0","0",NULL,NULL
+"1605240410-17d9","2016-05-24 04:10:38","3","17d94016-16-05","account","0","0","0","68","0",NULL,NULL,"Donald Reasonover","Donald E Reasonover","1932 West Kirby Ave",,"Orange","Texas","77632","United States",NULL,"0",,"0","0",NULL,NULL
+"1605241107-f37c","2016-05-24 11:07:06","3","f37c7716-24-05","guest","0","0","0","30","0",NULL,NULL,"Jerry Garris","Jerry A. Garris","2901 Lyndell Way",,"Lancaster","Pennsylvania","29720","United States",NULL,"0",,"0","0",NULL,NULL
+"1605241218-d385","2016-05-24 12:18:44","3","d3857b16-24-05","account","0","0","0","15","0",NULL,NULL,"Jerry Hinman","Jerry Hinman","3069 HWY 93",,"Darby","Montana","59829-9706","United States",NULL,"0",,"0","0",NULL,NULL
+"1605250943-e43c","2016-05-25 09:43:22","3","e43c0016-25-05","guest","0","0","0","12","0",NULL,NULL,"STEVEN SETZER",,"319 TALL OAKS TRAIL",,"INMAN","South Carolina","29349","United States",NULL,"0",,"0","0",NULL,NULL
+"1605251333-c72e","2016-05-25 13:33:44","3","c72ec316-25-05","guest","0","0","0","60","0",NULL,NULL,"John Boyer",,"1838 Addison Ave. East",,"Twin Falls","Idaho","83301","United States",NULL,"0",,"0","0",NULL,NULL
+"1605252131-daa9","2016-05-25 21:31:44","3","daa93b16-22-05","account","0","0","0","20","106",NULL,NULL,"John Gramse",,"61 Oneida Trail",,"Malvern","Ohio","44644","United States",NULL,"0","Thanks Donnie for all your support and affection.
<br>Brother Johnny g","0","0",NULL,NULL
+"1605261110-3407","2016-05-26 11:10:14","3","34078416-26-05","account","0","11.5","0","84","106",NULL,NULL,"William Shelley","Unity Lodge","4320 Washington Road",,"Kenosha","Wisconsin","53144-4250","United States",NULL,"0",,"0","0",NULL,NULL
+"1605271345-5401","2016-05-27 13:45:01","1","54014116-27-05","guest","0","7.5","0","21.5","106",NULL,NULL,"Richard Allen","Host Lodge No. 6","45 Decker Rd.",,"Flemington","New Jersey","08822","United States",NULL,"0",,"0","0",NULL,NULL
+"1605271405-f330","2016-05-27 14:05:15","3","f3300a16-27-05","guest","0","7.5","0","21.5","106",NULL,NULL,"Richard Allen","Richard Allen","45 Decker Rd.",,"Flemington","New Jersey","08822","United States",NULL,"0",,"0","0",NULL,NULL
+"1605271802-a422","2016-05-27 18:02:21","3","a422e916-27-05","account","0","0","0","264","0",NULL,NULL,"Dayton Berg",,"53153 Rush Lake Trail",,"Rush City","Minnesota","55069-2670","United States",NULL,"0",,"0","0",NULL,NULL
+"1605281432-4cdc","2016-05-28 14:32:44","3","4cdcf716-28-05","guest","0","0","0","19","106",NULL,NULL,"Bobby Taylor",,"11859 West Lake Dr.",,"MURCHISON","Texas","75778","United States",NULL,"0",,"0","0",NULL,NULL
+"1605281507-ac2a","2016-05-28 15:07:09","3","ac2aad16-28-05","guest","0","0","0","15","0",NULL,NULL,"Robert Hobday",,"80 Sycamore Drive, APT 317",,"Elizabethtown","Pennsylvania","17022","United States",NULL,"0",,"0","0",NULL,NULL
+"1605302240-b262","2016-05-30 22:40:14","3","b2621316-19-02","account","0","4","0","10","106",NULL,NULL,"KEITH COOPER",,"5516 W PUEBLO AVE ",,"PHOENIX","Arizona","85043","United States",NULL,"0",,"0","0",NULL,NULL
+"1605311318-5d4a","2016-05-31 13:18:51","3","5d4aaf14-07-06","account","0","0","0","12","0",NULL,NULL,"matt muller",,"713 Moseley RD",,"Fairport ","New York","14450","United States",NULL,"0",,"0","0",NULL,NULL
+"1605312304-4462","2016-05-31 23:04:20","3","44621016-31-05","guest","0","0","0","15","0",NULL,NULL,"Glenn E. Chandler",,"5360 Redrac Street",,"Jacksonville","Florida","32205-9603","United States",NULL,"0",,"0","0",NULL,NULL
+"1606011014-0a15","2016-06-01 10:14:25","3","0a159416-01-06","guest","0","0","0","15","0",NULL,NULL,"Ronert Knowles",,"7315 Ashlar Vlg",,"Wallingford","Connecticut","06492","United States",NULL,"0",,"0","0",NULL,NULL
+"1606011440-9ddc","2016-06-01 14:40:43","3","9ddc5116-01-06","guest","0","0","0","15","0",NULL,NULL,"Larry Hall",,"9835 Buxhill Dr",,"Dallas","Texas","75238-4309","United States",NULL,"0",,"0","0",NULL,NULL
+"1606011833-7e49","2016-06-01 18:33:09","3","7e49a116-01-06","guest","0","0","0","12","0",NULL,NULL,"William Stewart",,"200 Sumwalt St.",,"Sandston","Virginia","23150","United States",NULL,"0",,"0","0",NULL,NULL
+"1606031249-1056","2016-06-03 12:49:12","1","10563e16-03-06","guest","0","15","0","150","106",NULL,NULL,"James N. Higdon",,"12000 Huebner Road","Suite 200","San Antonio","Texas","78230-1210","United States",NULL,"0",,"0","0",NULL,NULL
+"1606032147-daa9","2016-06-03 21:47:34","3","daa93b16-22-05","account","0","0","0","20","106",NULL,NULL,"John Gramse",,"61 Oneida Trail",,"Malvern","Ohio","44644","United States",NULL,"0",,"0","0",NULL,NULL
+"1606042059-0dc8","2016-06-04 20:59:22","3","0dc83715-02-05","account","0","0","0","83","0",NULL,NULL,"Carl Plants","Carl Plants","6124 NW 6th Street",,"Lincoln","Nebraska","68521","United States",NULL,"0",,"0","0",NULL,NULL
+"1606050132-d965","2016-06-05 01:32:39","3","d9654316-05-06","account","0","0","0","98","0",NULL,NULL,"Christopher Tilley",,"809 Misty morning ct.",,"St. Paul","Missouri","63366","United States",NULL,"0",,"0","0",NULL,NULL
+"1606051126-96f6","2016-06-05 11:26:50","3","96f6b915-21-07","account","0","0","0","60","0",NULL,NULL,"Don Huxford",,"24 Montana Street",,"Rapid City","South Dakota","57701","United States",NULL,"0",,"0","0",NULL,NULL
+"1606061058-8505","2016-06-06 10:58:32","1","8505fd16-06-06","guest","0","8.5","0","37.5","106",NULL,NULL,"James Rogers","James Rogers","146 Hendricks Circle",,"Madison","Indiana","47250","United States",NULL,"0",,"0","0",NULL,NULL
+"1606061239-5143","2016-06-06 12:39:49","3","51434414-28-01","account","0","0","0","17","106",NULL,NULL,"Gerald Tait","Gerald Tait","142 E Hazel St",,"Homeland","Georgia","31537","United States",NULL,"0",,"0","0",NULL,NULL
+"1606062017-97db","2016-06-06 20:17:53","1","97dbce16-06-06","guest","0","15","0","140","106",NULL,NULL,"Jace McFerran",,"6429 Northanna Dr",,"Springfield","Virginia","22150","United States",NULL,"0",,"0","0",NULL,NULL
+"1606070645-d924","2016-06-07 06:45:23","3","d924df16-07-06","guest","0","15","0","140","106",NULL,NULL,"Jace McFerran",,"6429 Northanna Dr",,"Springfield","Virginia","22150","United States",NULL,"0",,"0","0",NULL,NULL
+"1606070905-ab41","2016-06-07 09:05:16","3","ab414816-07-06","account","0","0","0","15","0",NULL,NULL,"Robert Holland",,"4405 Green Acres Pkwy",,"Portsmouth ","Virginia","23703","United States",NULL,"0",,"0","0",NULL,NULL
+"1606070959-24c6","2016-06-07 09:59:14","3","24c61c16-07-06","guest","0","9.5","0","62.5","106",NULL,NULL,"Paul Maglinger",,"901 Dover Ct.",,"Evansville","Indiana","47710","United States",NULL,"0",,"0","0",NULL,NULL
+"1606071421-188f","2016-06-07 14:21:27","3","188f1a16-07-06","guest","0","10.5","0","66.35","106",NULL,NULL,"Mark Arend",,"210 Church Ave",,"Oshkosh","Wisconsin","54901","United States",NULL,"0",,"0","0",NULL,NULL
+"1606080942-c50b","2016-06-08 09:42:41","1","c50bd116-08-06","guest","0","0","0","15","0",NULL,NULL,"W. Richard Dillon","None","943 Farmington Ae.",,"Pottstown","Pennsylvania","19464","United States",NULL,"0",,"0","0",NULL,NULL
+"1606081046-c2f0","2016-06-08 10:46:58","3","c2f06516-08-06","account","0","11.5","0","86.45","106",NULL,NULL,"Fred Shoemaker",,"117 E. North St.",,"Waverly","Ohio","45690","United States",NULL,"0",,"0","0",NULL,NULL
+"1606081717-62c8","2016-06-08 17:17:06","3","62c88c14-01-06","account","0","0","0","12","0",NULL,NULL,"Nathan Mason",,"516 Golf View Drive",,"Peachtree City","Georgia","30269","United States",NULL,"0",,"0","0",NULL,NULL
+"1606091150-40b2","2016-06-09 11:50:07","3","40b28d16-09-06","account","0","0","0","12","0",NULL,NULL,"D.Frank Buchanan,Jr.",,"302 Millbrook Ave.",,"Randolph","New Jersey","07869","United States",NULL,"0",,"0","0",NULL,NULL
+"1606091424-737f","2016-06-09 14:24:20","3","737f3816-09-06","account","0","0","0","98","0",NULL,NULL,"David Collignon","Sparta Lodge No. 296","1600 E. Windridge",,"Ozark","Missouri","65721-7332","United States",NULL,"0",,"0","0",NULL,NULL
+"1606091451-907a","2016-06-09 14:51:33","1","907ae316-09-06","account","0","0","0","15","0",NULL,NULL,"W. Richard Dillon",,"943 Farmington Ave.",,"Pottstown","Pennsylvania","19464","United States",NULL,"0",,"0","0",NULL,NULL
+"1606101358-56a8","2016-06-10 13:58:00","3","56a87913-04-06","account","0","0","0","12","0",NULL,NULL,"Bob Reid",,"13600 Princeton Circle",,"Savage","Minnesota","55378","United States",NULL,"0",,"0","0",NULL,NULL
+"1606101414-7e64","2016-06-10 14:14:41","3","7e641716-10-06","guest","0","0","0","5","106",NULL,NULL,"Robert Baker",,"46 Burnham St.",,"Silver City","New Mexico","88022","United States",NULL,"0",,"0","0",NULL,NULL
+"1606111213-ed05","2016-06-11 12:13:17","1","ed05a916-11-06","account","0","4","0","14","106",NULL,NULL,"tom phipps",,"810 elm st.",,"adrian","Michigan","49221","United States",NULL,"0",,"0","0",NULL,NULL
+"1606111628-214c","2016-06-11 16:28:46","3","214cdc16-11-06","guest","0","0","0","12","0",NULL,NULL,"RICK SANTELLA",,"56 MAYFLOWER DRIVE",,"SICKLERVILLE","New Jersey","08081","United States",NULL,"0",,"0","0",NULL,NULL
+"1606111739-1373","2016-06-11 17:39:12","3","1373f916-11-06","guest","0","0","0","15","0",NULL,NULL,"Victor Stone",,"24 Alpine Dr.",,"Jericho","Vermont","05465","United States",NULL,"0",,"0","0",NULL,NULL
+"1606111825-5199","2016-06-11 18:25:43","1","51991d16-11-06","account","0","0","0","15","0",NULL,NULL,"Jerry Wardrip",,"408 Adams Circle",,"Sterling","Colorado","80751","United States",NULL,"0",,"0","0",NULL,NULL
+"1606121444-9c24","2016-06-12 14:44:53","3","9c24a616-12-06","account","0","0","0","12","0",NULL,NULL,"Joseph Marvian",,"2316 Jamaica Drive",,"Wilmington","Delaware","DE","United States",NULL,"0",,"0","0",NULL,NULL
+"1606121809-1841","2016-06-12 18:09:38","3","1841a116-12-06","guest","0","0","0","123","0",NULL,NULL,"Jason Crowder",,"10606 Ne Skidmore",,"Portland","Oregon","97220","United States",NULL,"0",,"0","0",NULL,NULL
+"1606131710-2900","2016-06-13 17:10:36","3","2900eb14-20-08","account","0","15","0","140","106",NULL,NULL,"Monte Bollar","Grand Lodge of Idaho","219 N. 17th St.",,"Boise","Idaho","83702","United States",NULL,"0",,"0","0",NULL,NULL
+"1606141401-b262","2016-06-14 14:01:13","3","b2621316-19-02","account","0","0","0","12","0",NULL,NULL,"Jason Baxter ",,"11023 W Pierson St",,"PHOENIX","Arizona","85037","United States",NULL,"0",,"0","0",NULL,NULL
+"1606141433-e4c9","2016-06-14 14:33:13","3","e4c9f816-14-06","guest","0","0","0","15","0",NULL,NULL,"Bruce D Mann",,"P O Box 1921",,"Bainbridge","Georgia","39818","United States",NULL,"0",,"0","0",NULL,NULL
+"1606141733-2e4a","2016-06-14 17:33:37","3","2e4ac216-14-06","guest","0","0","0","12","0",NULL,NULL,"Michael Smith","Anaba Publishing LLC","1690 Royalsborough Rd.",,"Durham","Maine","04222","United States",NULL,"0",,"0","0",NULL,NULL
+"1606141844-65c9","2016-06-14 18:44:37","3","65c9c115-12-05","account","0","0","0","12","0",NULL,NULL,"William Weaver",,"39 Joyce Ct.",,"Ringgold","Georgia","30736","United States",NULL,"0",,"0","0",NULL,NULL
+"1606160159-1d97","2016-06-16 01:59:08","3","1d97a716-16-06","guest","0","0","0","15","0",NULL,NULL,"Robert Conrad",,"5002 E 17th Street",,"Tucson","Arizona","85711-4357","United States",NULL,"0",,"0","0",NULL,NULL
+"1606162205-a736","2016-06-16 22:05:20","3","a736f216-16-06","guest","0","0","0","5","106",NULL,NULL,"Pasquale Imbimbo",,"142 Beecher Road",,"Granville","New York","12832","United States",NULL,"0",,"0","0",NULL,NULL
+"1606170936-47d1","2016-06-17 09:36:39","3","47d1ef15-17-07","account","0","0","0","12","0",NULL,NULL,"Dieter Hees",,"410 Merion Ave",,"Pine Beach","New Jersey","08741","United States",NULL,"0",,"0","0",NULL,NULL
+"1606181227-4254","2016-06-18 12:27:21","3","42549a16-18-06","guest","0","0","0","0.75","106",NULL,NULL,"Thomas Elkins",,"20557 Eastwood Ave",,"Torrance","California","90503","United States",NULL,"0",,"0","0",NULL,NULL
+"1606181234-25a3","2016-06-18 12:34:46","3","25a36f16-18-06","guest","0","11.5","0","85.5","106",NULL,NULL,"Vance A. Pascal",,"227 Montpelier Drive",,"Winston-Salem","North Carolina","27103","United States",NULL,"0",,"0","0",NULL,NULL
+"1606201154-81c3","2016-06-20 11:54:49","3","81c32416-20-06","account","0","0","0","12","0",NULL,NULL,"Joseph Helminiak",,"1229 Pecan Station",,"San Antonio","Texas","78258-7843","United States",NULL,"0","This is a renewal.","0","0",NULL,NULL
+"1606211437-7b64","2016-06-21 14:37:08","3","7b64f516-21-06","guest","0","0","0","12","0",NULL,NULL,"John Zabel",,"371 Lyndon Rd",,"Fairport","New York","14450-9703","United States",NULL,"0",,"0","0",NULL,NULL
+"1606211613-50bc","2016-06-21 16:13:55","3","50bcfe16-21-06","guest","0","0","0","12","0",NULL,NULL,"Edward A Magilton",,"5088 State Route 97",,"Narrowsburg","New York","12764","United States",NULL,"0",,"0","0",NULL,NULL
+"1606221622-8e96","2016-06-22 16:22:13","3","8e963814-06-10","account","0","0","0","24","0",NULL,NULL,"Jeffrey Chan","UPS Store","297 Kinderkamack Road","Suite #101 Box 232","Oradell","New Jersey","07649","United States",NULL,"0","renewal
<br>90513 640 7/16","0","0",NULL,NULL
+"1606222227-100d","2016-06-22 22:27:18","3","100df116-22-06","account","0","0","0","12","0",NULL,NULL,"Matthew Lehman",,"31 n. Lebanon st",,"Lebanon ","Pennsylvania","17042","United States",NULL,"0",,"0","0",NULL,NULL
+"1606230844-51c7","2016-06-23 08:44:18","3","51c74316-23-06","account","0","0","0","15","0",NULL,NULL,"Peter Opstrup",,"100 Eastview Rd",,"Cambridge","Vermont","05444","United States",NULL,"0",,"0","0",NULL,NULL
+"1606231333-12d2","2016-06-23 13:33:50","3","12d2fe13-06-05","account","0","0","0","15","0",NULL,NULL,"Michael Fischer","Ameriprise Financial","408 W Mountain St","Suite 101","Kernersville","North Carolina","27284","United States",NULL,"0",,"0","0",NULL,NULL
+"1606232125-cd7e","2016-06-23 21:25:23","3","cd7eed16-23-06","account","0","0","0","0.75","106",NULL,NULL,"Jeffrey Modzelewski",,"2115 Postoffice Street",,"Galveston","Texas","77550-2023","United States",NULL,"0",,"0","0",NULL,NULL
+"1606241240-5f35","2016-06-24 12:40:56","3","5f358115-03-09","account","0","4","0","184.5","106",NULL,NULL,"james Hammond","CITY DRUG STORE","104 E. Belknap",,"Jacksboro","Texas","76458","United States",NULL,"0",,"0","0",NULL,NULL
+"1606241253-5f35","2016-06-24 12:53:13","3","5f358115-03-09","account","0","0","0","123","0",NULL,NULL,"james Hammond","CITY DRUG STORE","104 E. Belknap",,"Jacksboro","Texas","76458","United States",NULL,"0",,"0","0",NULL,NULL
+"1606241847-3334","2016-06-24 18:47:34","3","33348c16-24-06","account","0","20","0","461.6","106",NULL,NULL,"James Roderick",,"14250 North 145th East Avenue",,"Collinsville","Oklahoma","74021","United States",NULL,"0",,"0","0",NULL,NULL
+"1606242234-5929","2016-06-24 22:34:17","3","59293616-24-06","account","0","0","0","196","0",NULL,NULL,"Christopher Hodapp",,"9310 Seascape Drive",,"Indianapolis","Indiana","46256","United States",NULL,"0",,"0","0",NULL,NULL
+"1606250924-ba0f","2016-06-25 09:24:03","1","ba0fb716-25-06","guest","0","7.5","0","23.5","106",NULL,NULL,"Chet Caskey","Audubon Park Lodge #272","C/O Secretary Chet Caskey","818 W 29th Avenue","Spokane","Washington","99203","United States",NULL,"0",,"0","0",NULL,NULL
+"1606251109-fc6d","2016-06-25 11:09:41","3","fc6d1215-27-06","account","0","0","0","135","0",NULL,NULL,"Chad Wagoner",,"1615 Hazel",,"Carthage","Missouri","64836","United States",NULL,"0",,"0","0",NULL,NULL
+"1606251550-3df6","2016-06-25 15:50:33","3","3df65916-25-06","guest","0","0","0","0.75","106",NULL,NULL,"Michael Moran",,"31 Windsor Way",,"Red Lion","Pennsylvania","17356","United States",NULL,"0",,"0","0",NULL,NULL
+"1606251813-1026","2016-06-25 18:13:18","3","10269f16-08-04","account","0","11.5","0","78.5","106",NULL,NULL,"William Powell",,"2466 Woodland Dr",,"Ogden","Utah","84403","United States",NULL,"0",,"0","0",NULL,NULL
+"1606252304-abfd","2016-06-25 23:04:41","3","abfd2916-25-06","guest","0","0","0","20","106",NULL,NULL,"Lisa Algee","West Florida No 210","941 Pinoak Lane",,"Cantonment","Florida","32533","United States",NULL,"0",,"0","0",NULL,NULL
+"1606260932-66ed","2016-06-26 09:32:46","3","66ed5216-26-06","guest","0","0","0","3","106",NULL,NULL,"Andrew Elson",,"6753 N Kendall Dr. ","Apt B-111","Miami","Florida","33156","United States",NULL,"0",,"0","0",NULL,NULL
+"1606261216-2129","2016-06-26 12:16:57","1","21292416-26-06","guest","0","0","0","166","0",NULL,NULL,"Brian Spooner",,"4278 W 223rd St",,"Fairview Park","Ohio","44126","United States",NULL,"0",,"0","0",NULL,NULL
+"1606261525-824a","2016-06-26 15:25:05","3","824a2416-26-06","guest","0","8.5","0","36.5","106",NULL,NULL,"Byron Morgan",,"212 East Long Street","Apt B","Carson City","Nevada","89706","United States",NULL,"0",,"0","0",NULL,NULL
+"1606262156-08ba","2016-06-26 21:56:39","3","08ba8c16-26-06","guest","0","0","0","12","0",NULL,NULL,"thomas frady",,"412 davis rd",,"liberty","South Carolina","29657","United States",NULL,"0",,"0","0",NULL,NULL
+"1606271430-fae4","2016-06-27 14:30:31","3","fae4f116-27-06","guest","0","0","0","3","106",NULL,NULL,"john alsip",,"p.o.box 28",,"loda","Illinois","60948","United States",NULL,"0",,"0","0",NULL,NULL
+"1606271606-994a","2016-06-27 16:06:54","3","994a9716-27-06","guest","0","15","0","140","106",NULL,NULL,"John D. Beringer","Martinez Lodge 41","22 Kilgo Court",,"Pleasant Hill","California","94523","United States",NULL,"0",,"0","0",NULL,NULL
+"1606281755-5704","2016-06-28 17:55:38","3","57043216-28-06","guest","0","0","0","12","0",NULL,NULL,"Phillip Cheek",,"6339 Dr Thomas Walker Rd",,"Rose Hill","Virginia","24281","United States",NULL,"0",,"0","0",NULL,NULL
+"1606290706-d7dc","2016-06-29 07:06:48","3","d7dcaa15-20-05","account","0","0","0","12","0",NULL,NULL,"Richard Roblee",,"2303 Franz Ct",,"richland","Washington","99352","United States",NULL,"0",,"0","0",NULL,NULL
+"1606291950-584b","2016-06-29 19:50:03","3","584be614-01-05","account","0","0","0","68","0",NULL,NULL,"Marcy Dupre",,"1503 Canyon Court",,"Port Orchard","Washington","98366","United States",NULL,"0",,"0","0",NULL,NULL
+"1606300848-f66a","2016-06-30 08:48:45","3","f66adf16-30-06","guest","0","0","0","12","0",NULL,NULL,"Henry Stein",,"2 Spring Valley Drive",,"Florham Park","New Jersey","07932","United States",NULL,"0",,"0","0",NULL,NULL
+"1606301504-6e21","2016-06-30 15:04:01","3","6e216016-30-06","account","0","0","0","12","0",NULL,NULL,"Thomas Royce","Thomas Royce","10029 East Rocky Wash Drive",,"Tucson","Arizona","85748","United States",NULL,"0",,"0","0",NULL,NULL
+"1607011029-3777","2016-07-01 10:29:31","3","3777e416-01-07","guest","0","0","0","80","0",NULL,NULL,"Andrew Martinez",,"307 Candlewood Ct.",,"Millersville","Maryland","21108","United States",NULL,"0",,"0","0",NULL,NULL
+"1607011549-60a5","2016-07-01 15:49:18","3","60a5d116-01-07","guest","0","0","0","15","0",NULL,NULL,"William Inghram","William V. Inghram","144 Mayfair Court",,"Sanford","Florida","32771","United States",NULL,"0",,"0","0",NULL,NULL
+"1607020058-2893","2016-07-02 00:58:32","1","28934f15-13-09","account","0","0","0","12.75","106",NULL,NULL,"David Carsno",,"213 Stevers Mill rd",,"Broadalbin","New York","12025","United States",NULL,"0",,"0","0",NULL,NULL
+"1607051006-53d3","2016-07-05 10:06:57","3","53d30216-05-07","account","0","15","0","120","106",NULL,NULL,"Anthony De Angelo",,"14909 PELICAN POINT PL",,"TAMPA","Florida","33625-1501","United States",NULL,"0",,"0","0",NULL,NULL
+"1607052004-393a","2016-07-05 20:04:02","1","393a9f16-05-07","account","0","0","0","12","0",NULL,NULL,"Fred Koeck",,"135 Hillside Ct.",,"Stroudsburg","Pennsylvania","18360","United States",NULL,"0",,"0","0",NULL,NULL
+"1607061309-abe0","2016-07-06 13:09:27","3","abe01e16-06-07","guest","0","0","0","68","0",NULL,NULL,"Robert Hobday","Robert Hobday","80 Sycamore Drive","APT 317","Elizabethtown","Pennsylvania","17022","United States",NULL,"0",,"0","0",NULL,NULL
+"1607071218-b5ae","2016-07-07 12:18:52","3","b5aed916-07-07","guest","0","4","0","12.2","106",NULL,NULL,"Roy Jacobs",,"2926 River Bend Dr.",,"Rosenberg","Texas","77471","United States",NULL,"0",,"0","0",NULL,NULL
+"1607090911-eb55","2016-07-09 09:11:13","3","eb553315-07-02","account","0","0","0","12","0",NULL,NULL,"Shelton Lattimore",,"161 Explorer Dr.",,"Cope","South Carolina","29038","United States",NULL,"0",,"0","0",NULL,NULL
+"1607090943-907a","2016-07-09 09:43:15","3","907ae316-09-06","account","0","0","0","15","0",NULL,NULL,"W. Richard Dillon",,"943 Farmington Ave.",,"Pottstown","Pennsylvania","19464","United States",NULL,"0",,"0","0",NULL,NULL
+"1607091517-ef0f","2016-07-09 15:17:58","3","ef0fd016-09-07","account","0","4","0","40","106",NULL,NULL,"Michael Zabrowski",,"6804 Glenmont St",,"Falls Church","Virginia","22042","United States",NULL,"0",,"0","0",NULL,NULL
+"1607101501-d0e1","2016-07-10 15:01:07","3","d0e1ec16-10-07","guest","0","7.5","0","39.5","106",NULL,NULL,"Paul Schlehr",,"2200 Van Diest Road",,"Winnemucca","Nevada","89445","United States",NULL,"0",,"0","0",NULL,NULL
+"1607101544-b2d4","2016-07-10 15:44:39","3","b2d4e116-10-07","guest","0","4","0","9.75","106",NULL,NULL,"Dale Kubichek",,"3417 W. MAson Rd",,"Sidney","Ohio","45365","United States",NULL,"0",,"0","0",NULL,NULL
+"1607101800-0196","2016-07-10 18:00:28","3","0196b516-10-07","guest","0","8.5","0","38.5","106",NULL,NULL,"Thomas Kuhn",,"P. O. Box 515197",,"St. Louis","Missouri","63151-5197","United States",NULL,"0",,"0","0",NULL,NULL
+"1607102023-8745","2016-07-10 20:23:13","3","87455716-10-07","guest","0","0","0","12","0",NULL,NULL,"Robert Bianchi",,"4 Rainbow Dr",,"Nashua","New Hampshire","03062","United States",NULL,"0",,"0","0",NULL,NULL
+"1607110950-e6ab","2016-07-11 09:50:55","3","e6ab1b14-06-05","account","0","0","0","12","0",NULL,NULL,"Matthew Sanders",,"58 Boileau Ct",,"Middletown","Maryland","21769","United States",NULL,"0",,"0","0",NULL,NULL
+"1607111606-a440","2016-07-11 16:06:24","1","a4403a16-02-03","account","0","4","0","26","106",NULL,NULL,"Earl "Gene" Ammerman II",,"8703 W. Tillamook Dr",,"Boise","Idaho","83704","United States",NULL,"0",,"0","0",NULL,NULL
+"1607131837-8472","2016-07-13 18:37:32","3","84720e13-20-08","account","0","0","0","12","0",NULL,NULL,"James Earle",,"1762 Crown Point Road","Unit 586, Lot 803DN","West Deptford","New Jersey","08086","United States",NULL,"0",,"0","0",NULL,NULL
+"1607141140-4a40","2016-07-14 11:40:09","1","4a409416-14-07","guest","0","4","0","22","106",NULL,NULL,"Ralph Baron",,"82 Whitford Drive",,"Burlington","New Jersey","08016","United States",NULL,"0",,"0","0",NULL,NULL
+"1607141340-c0a3","2016-07-14 13:40:02","3","c0a3c616-14-07","guest","0","0","0","12","0",NULL,NULL,"Joshua Hiers",,"1806 Gilpin Ave",,"Wilmington","Delaware","19806","United States",NULL,"0",,"0","0",NULL,NULL
+"1607151037-116a","2016-07-15 10:37:52","3","116acd16-15-07","account","0","0","0","20","106",NULL,NULL,"Jeffrey","Collinsworth","317 Palmetto Tyrone Rd.",,"Newnan","Georgia","30265","United States",NULL,"0",,"0","0",NULL,NULL
+"1607171729-892c","2016-07-17 17:29:16","3","892c0014-11-03","account","0","0","0","12","0",NULL,NULL,"James E Acton",,"PO Box 862",,"League City","Texas","77574","United States",NULL,"0",,"0","0",NULL,NULL
+"1607172343-089e","2016-07-17 23:43:29","3","089eb016-17-07","account","0","0","0","12","0",NULL,NULL,"Fred Duncan","Fred Duncan","336 Roundup Ave, #334",,"Newcastle","Wyoming","82701","United States",NULL,"0",,"0","0",NULL,NULL
+"1607181418-0278","2016-07-18 14:18:56","3","0278ec16-18-07","account","0","11.5","0","75.5","106",NULL,NULL,"Ronald Runion",,"42450 Smith road",,"Wellington","Ohio","44090-9671","United States",NULL,"0",,"0","0",NULL,NULL
+"1607181525-393a","2016-07-18 15:25:55","3","393a9f16-05-07","account","0","0","0","12","0",NULL,NULL,"Fred Koeck",,"135 Hillside Ct.",,"Stroudsburg","Pennsylvania","18360","United States",NULL,"0",,"0","0",NULL,NULL
+"1607191030-f9a1","2016-07-19 10:30:11","3","f9a1b316-19-07","guest","0","0","0","166","0",NULL,NULL,"Chris Cochrane ",,"4172 Westview Lane",,"Oshkosh","Wisconsin","54904","United States",NULL,"0",,"0","0",NULL,NULL
+"1607191645-dbdd","2016-07-19 16:45:15","3","dbddff16-19-07","guest","0","0","0","12","0",NULL,NULL,"Tony Lenard",,"560 Overhill Dr",,"Kerrville","Texas","78028","United States",NULL,"0",,"0","0",NULL,NULL
+"1607210726-8472","2016-07-21 07:26:30","3","84720e13-20-08","account","0","0","0","83","0",NULL,NULL,"James Earle",,"1762 Crown Point Road","Unit 586, Lot 803DN","West Deptford","New Jersey","08086","United States",NULL,"0",,"0","0",NULL,NULL
+"1607211013-47f9","2016-07-21 10:13:43","1","47f9b116-21-07","guest","0","9.5","0","46.25","106",NULL,NULL,"Gary Donovan",,"5366 State rte. 31",,"Verona","New York","13478","United States",NULL,"0",,"0","0",NULL,NULL
+"1607211021-ab02","2016-07-21 10:21:32","3","ab028f16-21-07","guest","0","9.5","0","45.1","106",NULL,NULL,"Gary Donovan",,"5366 State rte. 31",,"Verona","New York","13478","United States",NULL,"0",,"0","0",NULL,NULL
+"1607211508-d3a4","2016-07-21 15:08:18","3","d3a41416-21-07","guest","0","0","0","0.75","106",NULL,NULL,"Kenneth Gorgen",,"535 Quinlan Drive",,"Pewaukee","Wisconsin","53072","United States",NULL,"0",,"0","0",NULL,NULL
+"1607211523-4de5","2016-07-21 15:23:02","3","4de52116-21-07","guest","0","0","0","0.75","106",NULL,NULL,"Patriick Cholka",,"9034 W. Lapham Street",,"West Allis","Wisconsin","53214","United States",NULL,"0",,"0","0",NULL,NULL
+"1607220840-c62f","2016-07-22 08:40:07","3","c62feb16-25-03","account","0","0","0","123","0",NULL,NULL,"Thomas Farr",,"5535 Downie Road",,"Denair","California","95316-9775","United States",NULL,"0",,"0","0",NULL,NULL
+"1607221005-21b5","2016-07-22 10:05:15","3","21b57916-22-07","account","0","4","0","13","106",NULL,NULL,"Ronald Jackson",,"21 Pine Hill Road",,"South Hadley","Massachusetts","01075","United States",NULL,"0",,"0","0",NULL,NULL
+"1607221312-4a53","2016-07-22 13:12:00","1","4a533f13-16-07","account","0","0","0","123","0",NULL,NULL,"Kurt Gazow",,"4223 Northridge Way",,"Bellingham","Washington","98226","United States",NULL,"0",,"0","0",NULL,NULL
+"1607221332-4a53","2016-07-22 13:32:53","5","4a533f13-16-07","account","0","0","0","123","0",NULL,NULL,"Kurt Gazow",,"4223 Northridge Way",,"Bellingham","Washington","98226","United States",NULL,"0",,"0","0",NULL,NULL
+"1607221346-4a53","2016-07-22 13:46:54","3","4a533f13-16-07","account","0","0","0","123","0",NULL,NULL,"Kurt Gazow",,"4223 Northridge Way",,"Bellingham","Washington","98226","United States",NULL,"0",,"0","0",NULL,NULL
+"1607221534-4111","2016-07-22 15:34:12","3","41114715-31-08","account","0","15","0","160","106",NULL,NULL,"Ernie Shoup","San Juan No 25","906 Mountain View Dr.",,"Aztec","New Mexico","87410","United States",NULL,"0",,"0","0",NULL,NULL
+"1607221657-7bc0","2016-07-22 16:57:15","3","7bc0d716-22-07","guest","0","7.5","0","23.5","106",NULL,NULL,"Gerald Myers",,"1326 SW Looking Glass Loop",,"Oak Harbor","Washington","98277-4564","United States",NULL,"0",,"0","0",NULL,NULL
+"1607222146-cb5c","2016-07-22 21:46:23","3","cb5cf613-13-07","account","0","0","0","191","0",NULL,NULL,"Rodger Ellingwood",,"4461 Summerlin Place",,"Rock Hill","South Carolina","29732","United States",NULL,"0",,"0","0",NULL,NULL
+"1607222209-eecb","2016-07-22 22:09:31","3","eecb8214-30-03","account","0","0","0","12","0",NULL,NULL,"KENNETH KINSER",,"44 GEORGE BROWN STREET",,"BILLERICA","Massachusetts","01821-2223","United States",NULL,"0",,"0","0",NULL,NULL
+"1607230918-0887","2016-07-23 09:18:14","1","08874716-23-07","account","0","9.5","0","44.5","106",NULL,NULL,"Ronald Murphy","Ronald Murphy","po box 6093",,"Hermon","Maine","04402","United States",NULL,"0",,"0","0",NULL,NULL
+"1607230926-0887","2016-07-23 09:26:05","1","08874716-23-07","account","0","8.5","0","53.5","106",NULL,NULL,"Ronald Murphy","Ronald Murphy","po box 6093",,"Hermon","Maine","04402","United States",NULL,"0",,"0","0",NULL,NULL
+"1607230946-30cf","2016-07-23 09:46:26","3","30cfc816-23-07","guest","0","0","0","68","0",NULL,NULL,"John Zabel",,"371 Lyndon Rd",,"Fairport","New York","14450-9703","United States",NULL,"0",,"0","0",NULL,NULL
+"1607240847-44a3","2016-07-24 08:47:03","3","44a35813-12-05","account","0","0","0","68","0",NULL,NULL,"James Loudermilk",,"9416 Chatham Street",,"Manassas","Virginia","20110-3604","United States",NULL,"0",,"0","0",NULL,NULL
+"1607240948-29b7","2016-07-24 09:48:27","3","29b71e16-24-07","guest","0","0","0","12","0",NULL,NULL,"Eugene Fratz",,"2431 Ellwood Avenue",,"Atco","New Jersey","08004","United States",NULL,"0",,"0","0",NULL,NULL
+"1607250909-2832","2016-07-25 09:09:45","3","28320616-25-07","guest","0","0","0","123","0",NULL,NULL,"Zach Holmes","Notasulga Lodge #119","PO box 34",,"Loachapoka","Alabama","36865","United States",NULL,"0",,"0","0",NULL,NULL
+"1607251231-2b50","2016-07-25 12:31:35","3","2b508a16-25-07","guest","0","7.5","0","91.5","106",NULL,NULL,"Oscar Orum",,"8607 Azalea Trail",,"Austin","Texas","78759","United States",NULL,"0",,"0","0",NULL,NULL
+"1607251233-35dc","2016-07-25 12:33:35","3","35dce616-25-07","account","0","20","0","461.6","106",NULL,NULL,"Stephen Cross","Stephen Cross","P. O. Box 3375",,"Borger","Texas","79008","United States",NULL,"0",,"0","0",NULL,NULL
+"1607251238-2cab","2016-07-25 12:38:41","3","2cab5f16-25-07","account","0","0","0","123","0",NULL,NULL,"John Logan","MCFOK","PO Box 2406",,"Edmond","Oklahoma","73083-2406","United States",NULL,"0",,"0","0",NULL,NULL
+"1607251400-f9fb","2016-07-25 14:00:10","3","f9fb4d14-13-03","account","0","0","0","123","0",NULL,NULL,"David Doan",,"12010 Alderbrook Street",,"Moorpark","California","93021-3130","United States",NULL,"0",,"0","0",NULL,NULL
+"1607260852-567a","2016-07-26 08:52:19","3","567a1616-26-07","account","0","8.5","0","35.5","106",NULL,NULL,"DENNIS GEORGE",,"70 JENNESS ROAD",,"EPPING","New Hampshire","03042","United States",NULL,"0",,"0","0",NULL,NULL
+"1607261544-c887","2016-07-26 15:44:39","3","c8875716-26-07","guest","0","7.5","0","22.25","106",NULL,NULL,"Floyd McGuirt","Stone Mtn. Lodge #449","5924 Millstone Lane",,"Stone Mountain","Georgia","30087","United States",NULL,"0",,"0","0",NULL,NULL
+"1607261644-3200","2016-07-26 16:44:21","3","3200d916-26-07","account","0","4","0","27","106",NULL,NULL,"robert yonaitis",,"34 FRANKLIN STREET",,"CONCORD","New Hampshire","03301","United States",NULL,"0",,"0","0",NULL,NULL
+"1607262202-3eae","2016-07-26 22:02:39","3","3eae7416-26-07","guest","0","0","0","15","0",NULL,NULL,"Brent Myers",,"901 Rosewood Dr.",,"Lincoln","Nebraska","68510","United States",NULL,"0",,"0","0",NULL,NULL
+"1607271118-be44","2016-07-27 11:18:07","3","be44a016-27-07","guest","0","0","0","12","0",NULL,NULL,"Eric Lineberger",,"118 colt thornburg rd",,"dallas","North Carolina","28034","United States",NULL,"0",,"0","0",NULL,NULL
+"1607271548-b384","2016-07-27 15:48:38","3","b3848816-27-07","account","0","0","0","98","0",NULL,NULL,"James Maertens","Lake Harriet Lodge #277","4519 France Ave S",,"Minneapolis","Minnesota","55410","United States",NULL,"0",,"0","0",NULL,NULL
+"1607280736-b2f1","2016-07-28 07:36:59","3","b2f10a14-04-08","account","0","0","0","80","0",NULL,NULL,"Nathan Giesenschlag",,"9095 FM 2039",,"Somerville","Texas","77879","United States",NULL,"0",,"0","0",NULL,NULL
+"1607311009-e040","2016-07-31 10:09:02","3","e0404c13-14-04","account","0","0","0","68","0",NULL,NULL,"Jose Perez","(personal)","16141 SW 42nd. Ter",,"MIami","Florida","33185-3825","United States",NULL,"0",,"0","0",NULL,NULL
+"1607311100-565f","2016-07-31 11:00:26","3","565f1b16-31-07","guest","0","0","0","68","0",NULL,NULL,"Patricia Bradbury",,"5874 Lexington Drive",,"Pipersville","Pennsylvania","18947","United States",NULL,"0",,"0","0",NULL,NULL
+"1607312029-fe57","2016-07-31 20:29:53","3","fe574f16-31-07","account","0","7.5","0","22.25","106",NULL,NULL,"Michael L Askew","Michael L Askew","8274 Fayette Street",,"Philadelphia","Pennsylvania","19150","United States",NULL,"0",,"0","0",NULL,NULL
+"1608010347-e0c5","2016-08-01 03:47:35","3","e0c5bd16-01-08","guest","0","7.5","0","19.5","106",NULL,NULL,"George Morris","Unique lodge 85","5806 Vernedale Rd",,"Charlotte","North Carolina","28212","United States",NULL,"0",,"0","0",NULL,NULL
+"1608011303-aa57","2016-08-01 13:03:23","1","aa57a615-29-09","account","0","20","0","195","106",NULL,NULL,"Lynne Blaylock","Grand Lodge of Washington","4970 Bridgeport Way W",,"University Place","Washington","98467","United States",NULL,"0",,"0","0",NULL,NULL
+"1608011810-62f8","2016-08-01 18:10:02","3","62f81316-01-08","account","0","7.5","0","23.5","106",NULL,NULL,"James LaSalle","James LaSalle","51 Bock Lane",,"Baden","Pennsylvania","15005","United States",NULL,"0",,"0","0",NULL,NULL
+"1608031024-5ee6","2016-08-03 10:24:05","3","5ee61616-03-08","guest","0","0","0","16","106",NULL,NULL,"Howard Dalton",,"18455 Plantation Court Drive",,"Prairieville","Louisiana","70769-3726","United States",NULL,"0",,"0","0",NULL,NULL
+"1608031027-6a29","2016-08-03 10:27:17","3","6a295716-03-08","guest","0","7.5","0","21.5","106",NULL,NULL,"Dan Kemble",,"1540 St. Clair Street",,"Covington","Kansas","41011","United States",NULL,"0",,"0","0",NULL,NULL
+"1608031216-66e5","2016-08-03 12:16:16","3","66e5ed16-03-08","guest","0","0","0","186","106",NULL,NULL,"Jeremy Vaughn",,"1409 Lauren Ln",,"Filer","Idaho","83328","United States",NULL,"0",,"0","0",NULL,NULL
+"1608032131-a677","2016-08-03 21:31:19","3","a677fe13-04-11","account","0","4","0","13","106",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"0","0",NULL,NULL
+"1608051011-0887","2016-08-05 10:11:05","3","08874716-23-07","account","0","9.5","0","43.5","106",NULL,NULL,"Ronald Murphy","Ronald Murphy","po box 6093",,"Hermon","Maine","04402","United States",NULL,"0",,"0","0",NULL,NULL
+"1608051235-f095","2016-08-05 12:35:55","3","f0953e16-05-08","guest","0","20","0","145","106",NULL,NULL,"Christopher Tecklenburg","AASR Valley of Reading","430 S Seventh Ave",,"West Reading","Pennsylvania","19611","United States",NULL,"0",,"0","0",NULL,NULL
+"1608051406-f7a3","2016-08-05 14:06:49","3","f7a39214-27-06","account","0","0","0","135","0",NULL,NULL,"Daniel Enyart",,"CMR 473 Box 281",,"APO","Armed Forces Europe","09606-0003","United States",NULL,"0",,"0","0",NULL,NULL
+"1608051407-a6ab","2016-08-05 14:07:08","3","a6ab5d16-05-08","guest","0","0","0","136","0",NULL,NULL,"Gene Maples","Southern Pines Lodge 484","280 Pee Dee Road",,"Southern Pines","North Carolina","28387","United States",NULL,"0",,"0","0",NULL,NULL
+"1608051811-f6db","2016-08-05 18:11:46","3","f6dbae16-05-08","account","0","20","0","211.5","106",NULL,NULL,"Gene Maples","Southern Pines Lodge 484","280 Pee Dee Road",,"Southern Pines","North Carolina","28387","United States",NULL,"0",,"0","0",NULL,NULL
+"1608071251-2178","2016-08-07 12:51:24","3","2178e614-16-05","account","0","9.5","0","42.5","106",NULL,NULL,"Chuck Springer",,"6305 St James Pl",,"Denton","Texas","76210","United States",NULL,"0",,"0","0",NULL,NULL
+"1608071839-da77","2016-08-07 18:39:52","3","da77e514-01-06","account","0","0","0","166","0",NULL,NULL,"Rex Hasty",,"244 JC Bryant Rd",,"Hattiesburg","Mississippi","39401","United States",NULL,"0",,"0","0",NULL,NULL
+"1608071853-d402","2016-08-07 18:53:38","3","d4026116-07-08","account","0","0","0","15","0",NULL,NULL,"David R. Barkstedt",,"235 W. Saugerties Rd.",,"Saugerties","New York","12477","United States",NULL,"0",,"0","0",NULL,NULL
+"1608082001-7a5f","2016-08-08 20:01:31","3","7a5f0f14-25-03","account","0","0","0","12","0",NULL,NULL,"KIRBY MARCHAND",,"3402 Fieldcrest Drive",,"North Versailles","Pennsylvania","15137","United States",NULL,"0",,"0","0",NULL,NULL
+"1608090830-a995","2016-08-09 08:30:59","3","a9955b16-09-08","guest","0","9.5","0","46.5","106",NULL,NULL,"William Gilbert","William Gilbert","7301 Token Valley Road",,"Manassas","Virginia","20112","United States",NULL,"0",,"0","0",NULL,NULL
+"1608100958-a5ed","2016-08-10 09:58:48","3","a5edb216-10-08","guest","0","20","0","137","106",NULL,NULL,"William Mollica",,"803 Meadow Lane",,"Manawa","Wisconsin","54949","United States",NULL,"0",,"0","0",NULL,NULL
+"1608101446-92bf","2016-08-10 14:46:45","3","92bf2216-10-08","guest","0","0","0","4","106",NULL,NULL,"Gary Pilgrim","Oconomowoc-Hartland Lodge No. 42","506 East Capitol Drive",,"Hartland","Wisconsin","53029","United States",NULL,"0",,"0","0",NULL,NULL
+"1608101450-6340","2016-08-10 14:50:36","3","63406b16-10-08","guest","0","20","0","136","106",NULL,NULL,"Gary Pilgrim","Oconomowoc-Hartland Lodge No. 42","506 East Capitol Drive",,"Hartland","Wisconsin","53029","United States",NULL,"0",,"0","0",NULL,NULL
+"1608101642-b870","2016-08-10 16:42:42","1","b8700013-22-07","account","0","0","0","123","0",NULL,NULL,"William R. Clark, Jr.","Herrick, Langdon & Langdon","666 Walnut Street","Suite 1550","DES MOINES","Iowa","50309-3972","United States",NULL,"0",,"0","0",NULL,NULL
+"1608101652-d690","2016-08-10 16:52:46","1","d690e716-10-08","guest","0","0","0","123","0",NULL,NULL,"William CLARK","Herrick, Langdon & Langdon","666 Walnut Street","Suite 1550","DES MOINES","Iowa","50309-3972","United States",NULL,"0",,"0","0",NULL,NULL
+"1608101700-86ad","2016-08-10 17:00:19","3","86ad5916-10-08","guest","0","0","0","123","0",NULL,NULL,"William CLARK","Herrick, Langdon & Langdon","666 Walnut St., Ste. 1550",,"Des Moines","Iowa","50309-3972","United States",NULL,"0",,"0","0",NULL,NULL
+"1608101935-d909","2016-08-10 19:35:03","3","d9097216-10-08","guest","0","11.5","0","71.5","106",NULL,NULL,"William West","Belpre Masonic #609","1977 Bender Rd.",,"Marietta","Ohio","45750","United States",NULL,"0",,"0","0",NULL,NULL
+"1608111052-c2f4","2016-08-11 10:52:00","3","c2f44816-11-08","guest","0","0","0","68","0",NULL,NULL,"Cecil Conyers",,"209 Plantation Rd.",,"Townville","South Carolina","29689","United States",NULL,"0",,"0","0",NULL,NULL
+"1608111217-44a3","2016-08-11 12:17:18","3","44a35813-12-05","account","0","0","0","12","0",NULL,NULL,"James Loudermilk",,"9416 Chatham Street",,"Manassas","Virginia","20110-3604","United States",NULL,"0",,"0","0",NULL,NULL
+"1608112037-015f","2016-08-11 20:37:03","3","015f6316-11-08","guest","0","0","0","4","106",NULL,NULL,"Stephen Tharaldsen",,"PO Box 75",,"Gouverneur","New York","13642","United States",NULL,"0",,"0","0",NULL,NULL
+"1608131505-b285","2016-08-13 15:05:14","3","b2852516-13-08","account","0","0","0","12","0",NULL,NULL,"Michael Jaffee",,"621 NE 5th Terr",,"Gainesville","Florida","32601","United States",NULL,"0",,"0","0",NULL,NULL
+"1608151313-a6a5","2016-08-15 13:13:26","3","a6a59016-15-08","guest","0","4","0","14","106",NULL,NULL,"George Morris","Unique lodge 85","5806 Vernedale Rd",,"Charlotte","North Carolina","28212","United States",NULL,"0",,"0","0",NULL,NULL
+"1608161020-8b57","2016-08-16 10:20:48","3","8b570f16-16-08","account","0","8.5","0","36.5","106",NULL,NULL,"Frank R Herbst",,"PO Box 5 ","1268 CR 29 ","Olmstedville","New York","12857","United States",NULL,"0",,"0","0",NULL,NULL
+"1608161351-8159","2016-08-16 13:51:48","3","8159f616-16-08","account","0","20","0","127","106",NULL,NULL,"Norman McKee",,"3194 Warren Road",,"Indiana","Pennsylvania","15701","United States",NULL,"0",,"0","0",NULL,NULL
+"1608191133-5d9c","2016-08-19 11:33:55","3","5d9ca216-19-08","guest","0","0","0","166","0",NULL,NULL,"Ken Nagel","Liberty Lodge #299","2131 Briarwood Dr",,"Santa Clara","California","95051-1944","United States",NULL,"0","Leave on Porch if not at home","0","0",NULL,NULL
+"1608211101-1aab","2016-08-21 11:01:01","3","1aab7813-28-07","account","0","0","0","68","0",NULL,NULL,"Michael Simmons",,"17 Aldrich St",,"Shortsville","New York","14548-9302","United States",NULL,"0",,"0","0",NULL,NULL
+"1608211748-ad21","2016-08-21 17:48:03","3","ad219616-21-08","guest","0","0","0","68","0",NULL,NULL,"Donald Crews",,"2724 Willard Ave",,"Cincinnati","Ohio","45209","United States",NULL,"0",,"0","0",NULL,NULL
+"1608220710-e935","2016-08-22 07:10:42","1","e9354215-08-04","account","0","11.5","0","525.5","106",NULL,NULL,"robert gilligan",,"100 geiger drive",,"tewksbury","Massachusetts","01876","United States",NULL,"0",,"0","0",NULL,NULL
+"1608221819-819e","2016-08-22 18:19:51","3","819e3116-22-08","account","0","0","0","12","0",NULL,NULL,"Bert J Reinink",,"2102 Avalanche Dr",,"Holt","Michigan","48842","United States",NULL,"0",,"0","0",NULL,NULL
+"1608231033-40a3","2016-08-23 10:33:58","3","40a3a416-23-08","guest","0","0","0","31","106",NULL,NULL,"R. J. Hughes ",,"2404 Hemlock St",,"Natrona Heights","Pennsylvania","15065","United States",NULL,"0",,"0","0",NULL,NULL
+"1608251030-19ae","2016-08-25 10:30:44","3","19ae2416-25-08","guest","0","0","0","15.1","106",NULL,NULL,"Ken Smith",,"20 Field Rd",,"Silver Bay","Minnesota","55614","United States",NULL,"0",,"0","0",NULL,NULL
+"1608260842-6d6b","2016-08-26 08:42:11","3","6d6b9513-05-04","account","0","0","0","123","0",NULL,NULL,"William R. Fuzia",,"2115 Fulton Street",,"Bluefield","West Virginia","24701","United States",NULL,"0",,"0","0",NULL,NULL
+"1608261020-c26d","2016-08-26 10:20:51","3","c26d8913-16-05","account","0","0","0","123","0",NULL,NULL,"Robert Drzewucki","Robert Drzewucki","118 Brockmoore Drive",,"East Amherst","New York","14051","United States",NULL,"0",,"0","0",NULL,NULL
+"1608261103-a254","2016-08-26 11:03:03","3","a2541f16-26-08","account","0","7.5","0","21.5","106",NULL,NULL,"James Greely","Nellis Lodge No. 46","2200 W. Mesquite Ave.","Suite # 115","Las Vegas, ","Nevada","89106","United States",NULL,"0",,"0","0",NULL,NULL
+"1608271017-b777","2016-08-27 10:17:35","3","b7775813-17-06","account","0","0","0","68","0",NULL,NULL,"William Sexton","Secretary, Etowah Masonic Lodge #222","Dawsonville","United States","GEORGIA","Georgia","30534","United States",NULL,"0",,"0","0",NULL,NULL
+"1608271306-e1d3","2016-08-27 13:06:58","3","e1d3d616-27-08","guest","0","0","0","123","0",NULL,NULL,"Ryan Tyler",,"4630 Newark Rd",,"Cochranville","Pennsylvania","19330","United States",NULL,"0",,"0","0",NULL,NULL
+"1608290108-668c","2016-08-29 01:08:16","3","668c5016-29-08","guest","0","0","0","68","0",NULL,NULL,"Skip Smith","Skip Smith","127 Melody Lane",,"Monett","Missouri","65708","United States",NULL,"0",,"0","0",NULL,NULL
+"1608291032-09b6","2016-08-29 10:32:41","3","09b6f814-27-02","account","0","4","0","38","106",NULL,NULL,"Stuart Pelcyger",,"9074 NW 6th Court",,"Plantation","Florida","33324-1173","United States",NULL,"0",,"0","0",NULL,NULL
+"1608291127-f91a","2016-08-29 11:27:15","3","f91aeb16-29-08","guest","0","0","0","68","0",NULL,NULL,"Gerald Piepiora","Gerald Piepiora","35 Antler Lane",,"Sedona","Arizona","86336","United States",NULL,"0",,"0","0",NULL,NULL
+"1608292106-db37","2016-08-29 21:06:22","3","db37b616-29-08","guest","0","0","0","12","0",NULL,NULL,"Forrest Lykins",,"6617 Kingbury Ave.",,"Richland Hills","Texas","76118","United States",NULL,"0",,"0","0",NULL,NULL
+"1609021328-9343","2016-09-02 13:28:20","3","93437214-21-12","account","0","0","0","123","0",NULL,NULL,"Robert M. Saverance",,"PO Box 283",,"Lamar","South Carolina","29069","United States",NULL,"0",,"0","0",NULL,NULL
+"1609032312-2ed4","2016-09-03 23:12:18","3","2ed49616-03-09","account","0","0","0","16.1","106",NULL,NULL,"Howard Kurtz",,"114 N. Ruby Lane",,"Fairview Heights","Illinois","62208","United States",NULL,"0",,"0","0",NULL,NULL
+"1609032339-d3e0","2016-09-03 23:39:23","3","d3e0bb16-03-09","account","0","0","0","166","0",NULL,NULL,"Jeff Schaefer",,"5507 Hinton St",,"Springfield","Virginia","22151","United States",NULL,"0",,"0","0",NULL,NULL
+"1609041215-d391","2016-09-04 12:15:08","3","d391b816-04-09","guest","0","0","0","12","0",NULL,NULL,"Eugene Mackey",,"537 Wells AVE. N.",,"Renton","Washington","98057","United States",NULL,"0",,"0","0",NULL,NULL
+"1609041227-1313","2016-09-04 12:27:59","3","1313ef16-04-09","guest","0","0","0","5","106",NULL,NULL,"Eugene Mackey",,"537 Wells AVE. N.",,"Renton","Washington","98057","United States",NULL,"0",,"0","0",NULL,NULL
+"1609051123-a26e","2016-09-05 11:23:28","1","a26ea416-05-09","guest","0","20","0","128","106",NULL,NULL,"Riley Miller",,"PO Box 311284",,"New Braunfels","Texas","78131","United States",NULL,"0",,"0","0",NULL,NULL
+"1609061027-f6db","2016-09-06 10:27:35","3","f6dbae16-05-08","account","0","0","0","136","0",NULL,NULL,"Gene Maples","Southern Pines Lodge 484","280 Pee Dee Road",,"Southern Pines","North Carolina","28387","United States",NULL,"0",,"0","0",NULL,NULL
+"1609061334-93be","2016-09-06 13:34:40","3","93be7216-06-09","account","0","10.5","0","51.5","106",NULL,NULL,"Dudley Raine, Jr.","D. A. Raine, Jr","581 Christian Springs Road",,"Amherst","Virginia","24521","United States",NULL,"0",,"0","0",NULL,NULL
+"1609081028-6dc4","2016-09-08 10:28:34","1","6dc4fe16-08-09","account","0","0","0","12","0",NULL,NULL,"seemee","aducator","bannu","non","bannu","New York","non","United States",NULL,"0","who are you
<br>","0","0",NULL,NULL
+"1609081350-557e","2016-09-08 13:50:20","3","557ee716-08-09","account","0","0","0","68","0",NULL,NULL,"Tyler Vanice",,"801 15th St. South","Apt. 102","arlington","Virginia","22202","United States",NULL,"0",,"0","0",NULL,NULL
+"1609081635-2893","2016-09-08 16:35:59","3","28934f15-13-09","account","0","9.5","0","61.25","106",NULL,NULL,"David Carsno",,"213 Stevers Mill rd",,"Broadalbin","New York","12025","United States",NULL,"0",,"0","0",NULL,NULL
+"1609102325-65b4","2016-09-10 23:25:28","3","65b4e916-10-09","guest","0","0","0","3.5","106",NULL,NULL,"robert suite",,"239 hobbitts lane ",,"westminster ","Maryland","21158","United States",NULL,"0",,"0","0",NULL,NULL
+"1609102328-85fc","2016-09-10 23:28:38","3","85fc0116-10-09","guest","0","0","0","4","106",NULL,NULL,"robert suite",,"239 hobbitts lane",,"westminster","Maryland","21158","United States",NULL,"0",,"0","0",NULL,NULL
+"1609130114-f021","2016-09-13 01:14:57","1","f0219016-13-09","guest","0","0","0","264","0",NULL,NULL,"Michael Day",,"3360 Broadstone Way",,"Apex","North Carolina","27502","United States",NULL,"0",,"0","0",NULL,NULL
+"1609130909-e76b","2016-09-13 09:09:30","3","e76b3716-13-09","account","0","7.5","0","21.6","106",NULL,NULL,"Keith Parker",,"P.O. Box 730",,"Dayton","Tennessee","37321","United States",NULL,"0",,"0","0",NULL,NULL
+"1609131237-3a37","2016-09-13 12:37:53","3","3a37a616-13-09","account","0","10.5","0","57.5","106",NULL,NULL,"Maurice Ward","Maurice Ward","270 Oak Creek Circle",,"Luling","Texas","78648","United States",NULL,"0",,"0","0",NULL,NULL
+"1609131646-42f8","2016-09-13 16:46:11","3","42f8b316-13-09","guest","0","8.5","0","35.5","106",NULL,NULL,"Charles Holloway",,"651 Four Points Rd",,"Jackson","Georgia","30233-4266","United States",NULL,"0",,"0","0",NULL,NULL
+"1609140123-e269","2016-09-14 01:23:14","3","e2695b16-14-09","guest","0","4","0","37","106",NULL,NULL,"Robert Baer","Dickinson Famiy Counseling Center","11 2nd Ave E","Suit B","Dickinson","North Dakota","58601","United States",NULL,"0",,"0","0",NULL,NULL
+"1609140823-e20a","2016-09-14 08:23:32","1","e20aa815-10-09","account","0","15","0","101","106",NULL,NULL,"Thomas Lowe","Grand Lodge of NH","PO Box 486","30 Mont Vernon St","Milford ","New Hampshire","03055-0486","United States",NULL,"0",,"0","0",NULL,NULL
+"1609140826-e20a","2016-09-14 08:26:03","1","e20aa815-10-09","account","0","15","0","101","106",NULL,NULL,"Thomas Lowe","Grand Lodge of NH","PO Box 486","30 Mont Vernon St","Milford ","New Hampshire","03055-0486","United States",NULL,"0",,"0","0",NULL,NULL
+"1609141830-e935","2016-09-14 18:30:43","3","e9354215-08-04","account","0","7.5","0","474.5","106",NULL,NULL,"robert gilligan",,"100 geiger drive",,"tewksbury","Massachusetts","01876","United States",NULL,"0",,"0","0",NULL,NULL
+"1609142249-8b10","2016-09-14 22:49:49","3","8b106b16-14-09","guest","0","11.5","0","62.5","106",NULL,NULL,"Glenn Palmertree ","Bethel Lodge # 107","2065 Attala Rd 3028",,"Kosciusko ","Mississippi","39090","United States",NULL,"0",,"0","0",NULL,NULL
+"1609150857-8521","2016-09-15 08:57:01","3","8521da16-15-09","account","0","15","0","106","106",NULL,NULL,"Charlie Veach","19th Masonic District","2163 Krause Rd.",,"Centerburg","Ohio","43011","United States",NULL,"0",,"0","0",NULL,NULL
+"1609151227-91c2","2016-09-15 12:27:01","3","91c2a016-15-09","guest","0","0","0","68","0",NULL,NULL,"Charles Bremner",,"925 Grey Avenue",,"Evanston","Illinois","60202","United States",NULL,"0",,"0","0",NULL,NULL
+"1609151336-65e5","2016-09-15 13:36:57","3","65e59f16-15-09","account","0","8.5","0","38.5","106",NULL,NULL,"Kenneth Gorgen",,"535 Quinlan Drive",,"Pewaukee","Wisconsin","53072","United States",NULL,"0",,"0","0",NULL,NULL
+"1609181710-3752","2016-09-18 17:10:23","3","3752f316-18-09","guest","0","0","0","12","0",NULL,NULL,"Richard Littlefield",,"14465 Holland Ct.",,"Apple Valley","Minnesota","55124","United States",NULL,"0",,"0","0",NULL,NULL
+"1609191222-dd22","2016-09-19 12:22:35","3","dd22d316-19-09","guest","0","0","0","12","0",NULL,NULL,"John Gordy",,"3114 Harbor Pointe",,"Rowlett","Texas","75088","United States",NULL,"0",,"0","0",NULL,NULL
+"1609191954-296d","2016-09-19 19:54:21","3","296d6116-19-09","account","0","0","0","12","0",NULL,NULL,"Gerald Frey",,"118 Towne Square Drive",,"Newport News","Virginia","23607","United States",NULL,"0",,"0","0",NULL,NULL
+"1609192325-f7d8","2016-09-19 23:25:45","1","f7d80716-19-09","guest","0","0","0","12","0",NULL,NULL,"Danilo Diego",,"1101 EDGE BROOK CT",,"VIRGINIA BEACH","Virginia","234545774","United States",NULL,"0",,"0","0",NULL,NULL
+"1609192327-cf03","2016-09-19 23:27:55","3","cf035016-19-09","guest","0","0","0","12","0",NULL,NULL,"Danilo Diego",,"1101 EDGE BROOK CT",,"VIRGINIA BEACH","Virginia","234545774","United States",NULL,"0",,"0","0",NULL,NULL
+"1609201418-1e3c","2016-09-20 14:18:55","1","1e3ccf16-20-09","account","0","0","0","12","0",NULL,NULL,"THOMAS CLARK",,"1300 AVE D","APT 410","PLATTSMOUTH","Nebraska","68048","United States",NULL,"0",,"0","0",NULL,NULL
+"1609201434-8d16","2016-09-20 14:34:18","1","8d16c816-20-09","guest","0","0","0","98","0",NULL,NULL,"Michael Stein",,"1288 Paddington Road",,"Mahwah","New Jersey","07430","United States",NULL,"0",,"0","0",NULL,NULL
+"1609201708-bccb","2016-09-20 17:08:54","3","bccb5216-20-09","account","0","4","0","25","106",NULL,NULL,"samuel laucks",,"40 holly hill drive",,"dallastown","Pennsylvania","17313","United States",NULL,"0",,"0","0",NULL,NULL
+"1609201954-12d2","2016-09-20 19:54:42","3","12d2fe13-06-05","account","0","0","0","12","0",NULL,NULL,"Michael Fischer",,"135 Amersham Ct",,"Kernersville","North Carolina","27284","United States",NULL,"0",,"0","0",NULL,NULL
+"1609211003-799a","2016-09-21 10:03:01","3","799a3c16-21-09","guest","0","8.5","0","35.5","106",NULL,NULL,"Marcus Monk",,"5665 Aven Road",,"Marietta","Georgia","30068","United States",NULL,"0",,"0","0",NULL,NULL
+"1609211021-03cc","2016-09-21 10:21:42","3","03cc8b16-21-09","guest","0","0","0","12","0",NULL,NULL,"Robert Holland","Robert Holland","4405 Green Acres Pkwy",,"Portsmouth","Virginia","23703","United States",NULL,"0",,"0","0",NULL,NULL
+"1609211327-3494","2016-09-21 13:27:03","3","34942c16-21-09","guest","0","0","0","12","0",NULL,NULL,"Richard Hutchison",,"92 Endeavor Dr",,"Clyde","North Carolina","28721","United States",NULL,"0",,"0","0",NULL,NULL
+"1609211421-df07","2016-09-21 14:21:53","3","df076a16-21-09","guest","0","10.5","0","67.25","106",NULL,NULL,"Lester Hanson","Salem Lodge 125 F.A.M.","110 N. Van Ness St.,",,"West Salem","Wisconsin","54669-1603","United States",NULL,"0",,"0","0",NULL,NULL
+"1609211633-f36a","2016-09-21 16:33:32","3","f36ae816-21-09","guest","0","7.5","0","18.1","106",NULL,NULL,"Roy Thompson",,"2723 ILSE PL",,"San Antonio","Texas","78217","United States",NULL,"0",,"0","0",NULL,NULL
+"1609212004-c1db","2016-09-21 20:04:59","1","c1db8116-21-09","account","0","0","0","12","0",NULL,NULL,"ronald swank",,"2420east","1300 south","romney","Indiana","47981","United States",NULL,"0",,"0","0",NULL,NULL
+"1609212109-42f3","2016-09-21 21:09:42","3","42f31d16-21-09","guest","0","0","0","12","0",NULL,NULL,"Gary Hanson",,"3725 NE Chapel Dr.",,"Lee's Summit","Missouri","64064-1928","United States",NULL,"0",,"0","0",NULL,NULL
+"1609230108-c213","2016-09-23 01:08:02","3","c213af16-23-09","account","0","0","0","12","0",NULL,NULL,"Josef Pronnet",,"4570 Imperial Dr.",,"Brookfield","Wisconsin","53045","United States",NULL,"0",,"0","0",NULL,NULL
+"1609230154-55a3","2016-09-23 01:54:49","3","55a32413-22-03","account","0","0","0","12","0",NULL,NULL,"William Bangerter",,"3439 Pickett Road",,"Saint Joseph","Missouri","64503-1431","United States",NULL,"0",,"0","0",NULL,NULL
+"1609230939-651c","2016-09-23 09:39:32","3","651c4416-23-09","account","0","0","0","95","0",NULL,NULL,"Timothy Nicely",,"4221 County Road 15",,"South Point","Ohio","45680","United States",NULL,"0",,"0","0",NULL,NULL
+"1609231331-4ab0","2016-09-23 13:31:30","3","4ab0af13-29-08","account","0","0","0","196","0",NULL,NULL,"Mark Anderson",,"11220 Windrow Dr",,"Eden Prairie","Minnesota","55344","United States",NULL,"0",,"0","0",NULL,NULL
+"1609231901-986d","2016-09-23 19:01:13","1","986d9a16-23-09","guest","0","0","0","98","0",NULL,NULL,"Michael Stein",,"1288 Paddington Road",,"Mahwah","New Jersey","07430","United States",NULL,"0",,"0","0",NULL,NULL
+"1609241600-35b2","2016-09-24 16:00:35","3","35b2c716-24-09","account","0","11.5","0","83.5","106",NULL,NULL,"Don Carnes",,"5063 Hawk Eye Dr",,"Bulverde","Texas","78163","United States",NULL,"0",,"0","0",NULL,NULL
+"1609241826-64b9","2016-09-24 18:26:58","3","64b99f16-24-09","account","0","0","0","12","0",NULL,NULL,"Robert Helmic","R.Helmic","1525 N. Fairviwe",,"Lansing","Michigan","48912","United States",NULL,"0",,"0","0",NULL,NULL
+"1609241827-11a6","2016-09-24 18:27:55","3","11a6ad16-22-02","account","0","0","0","12","0",NULL,NULL,"TRUMAN HIX","TRUMAN G. HIX","929 N. WASHINGTON ST #1",,"DENVER","Colorado","80203","United States",NULL,"0",,"0","0",NULL,NULL
+"1609242311-91f1","2016-09-24 23:11:43","3","91f1d616-24-09","account","0","0","0","12","0",NULL,NULL,"William Feuer",,"117 Highshire Court",,"Dundalk","Maryland","21222","United States",NULL,"0",,"0","0",NULL,NULL
+"1609251220-c1f9","2016-09-25 12:20:00","1","c1f96716-25-09","guest","0","0","0","12","0",NULL,NULL,"Dennis Noahubi",,"PO Box 51",,"Connerville","Oklahoma","74836","United States",NULL,"0",,"0","0",NULL,NULL
+"1609251231-4e50","2016-09-25 12:31:59","3","4e501516-25-09","guest","0","0","0","12","0",NULL,NULL,"Stephney Noahubi",,"PO Box 51",,"Connerville","Oklahoma","74836","United States",NULL,"0",,"0","0",NULL,NULL
+"1609261321-fed6","2016-09-26 13:21:43","3","fed6d516-26-09","account","0","0","0","12","0",NULL,NULL,"Howard Harris",,"5 Chesterfield Drive North",,"Beaufort","South Carolina","299069907","United States",NULL,"0",,"0","0",NULL,NULL
+"1609271232-ed2d","2016-09-27 12:32:41","3","ed2dbc16-27-09","account","0","0","0","27.75","106",NULL,NULL,"Richard Schmidt",,"23852 Samuel Adams Circle",,"Millsboro","Delaware","19966","United States",NULL,"0",,"0","0",NULL,NULL
+"1609271747-5022","2016-09-27 17:47:43","3","5022cc16-27-09","guest","0","0","0","15","0",NULL,NULL,"Rob Moore","Detroit Masonic Temple Library","1430 W.Farnum",,"Royal Oak","Michigan","48067","United States",NULL,"0",,"0","0",NULL,NULL
+"1609271757-d9d2","2016-09-27 17:57:13","3","d9d2d316-27-09","guest","0","7.5","0","18.85","106",NULL,NULL,"Robert Tripp",,"26857 Lyndon",,"Redford","Michigan","48239","United States",NULL,"0",,"0","0",NULL,NULL
+"1609281537-ad08","2016-09-28 15:37:11","3","ad089a13-16-02","account","0","0","0","16","106",NULL,NULL,"John LeRoy",,"16161 Point Lookout Rd.",,"Lexington Park","Maryland","20653","United States",NULL,"0",,"0","0",NULL,NULL
+"1609282306-79ae","2016-09-28 23:06:08","3","79aefa16-28-09","guest","0","0","0","12","0",NULL,NULL,"Robert S. Gilbert",,"1300 Ave C",,"Denton","Texas","76205","United States",NULL,"0",,"0","0",NULL,NULL
+"1609292305-1656","2016-09-29 23:05:20","1","16565716-29-09","guest","0","4","0","22","106",NULL,NULL,"Mike Tipton",,"31269 S 200 Rd",,"Henryetta","Oklahoma","74437","United States",NULL,"0",,"0","0",NULL,NULL
+"1609300935-82f4","2016-09-30 09:35:04","3","82f45b16-30-09","account","0","0","0","12","0",NULL,NULL,"Bernard Frost","Bernard Frost","28 Lacroix Road",,"Peru","Maine","04290","United States",NULL,"0",,"0","0",NULL,NULL
+"1609301347-40c5","2016-09-30 13:47:21","3","40c5a116-30-09","guest","0","0","0","12","0",NULL,NULL,"Willard Lynch","Myrtle Grove Lodge 352, F&AM","7101 Wymart Rd.",,"Pensacola","Florida","325263903","United States",NULL,"0",,"0","0",NULL,NULL
+"1609301946-f2df","2016-09-30 19:46:52","3","f2df2716-30-09","guest","0","0","0","12","0",NULL,NULL,"Wayne Grindle","Wayne Grindle","4216 High Ridge Road",,"Haymarket","Virginia","20169","United States",NULL,"0",,"0","0",NULL,NULL
+"1610141155-f29c","2016-10-14 11:55:26","1","f29c5e16-14-10","guest","0","8.5","0","35.5","106",NULL,NULL,"D'Layne Rhynsburger",,"126 Grandview Ave",,"New Braunfels","Texas","78130","United States",NULL,"0",,"0","0",NULL,NULL
+"1609302106-6932","2016-09-30 21:06:36","3","69323f16-30-09","guest","0","7.5","0","52","106",NULL,NULL,"Stanley Reith","Stanley A. Reith","221 N Ruch ST",,"Coplay","Pennsylvania","18037-1711","United States",NULL,"0",,"0","0",NULL,NULL
+"1610011429-2bc0","2016-10-01 14:29:56","3","2bc02c13-17-06","account","0","0","0","24","0",NULL,NULL,"Clarence Tucker",,"4 Johnson Road",,"LaGrangeville","New York","12540-5708","United States",NULL,"0","2 year subscription.","0","0",NULL,NULL
+"1610011505-063d","2016-10-01 15:05:53","1","063d3816-01-10","account","0","8.5","0","29.5","106",NULL,NULL,"Robert Welch","Holland Lodge No. 1","4911 Montrose Blvd",,"Houston","Texas","77006-1338","United States",NULL,"0",,"0","0",NULL,NULL
+"1610011521-063d","2016-10-01 15:21:00","3","063d3816-01-10","account","0","8.5","0","29.5","106",NULL,NULL,"Robert Welch","Holland Lodge No. 1","4911 Montrose Blvd",,"Houston","Texas","77006-6530","United States",NULL,"0",,"0","0",NULL,NULL
+"1610012032-ebf0","2016-10-01 20:32:30","3","ebf04e13-07-08","account","0","7.5","0","133.5","106",NULL,NULL,"Rex Hasty",,"244 JC Bryant Rd",,"Hattiesburg","Mississippi","39401","United States",NULL,"0",,"0","0",NULL,NULL
+"1610031016-84b2","2016-10-03 10:16:22","3","84b22214-28-08","account","0","0","0","12","0",NULL,NULL,"Peter Stein",,"3519 Wallace Dr.",,"Grand Island","New York","14072","United States",NULL,"0",,"0","0",NULL,NULL
+"1610031107-9b84","2016-10-03 11:07:02","3","9b84e814-15-08","account","0","0","0","12","0",NULL,NULL,"Barbara L Thames",,"P O Box 728",,"Reidsville","Georgia","30453","United States",NULL,"0","Subscription # 126606","0","0",NULL,NULL
+"1610031147-1570","2016-10-03 11:47:58","3","15704416-03-10","account","0","0","0","60","0",NULL,NULL,"Richard Wesner",,"108 Morton Circle",,"Myrtle Beach","South Carolina","29579-7124","United States",NULL,"0","Please continue my current subscription for another 5 years. Thank you!","0","0",NULL,NULL
+"1610031359-84af","2016-10-03 13:59:43","1","84af5216-03-10","account","0","0","0","25","106",NULL,NULL,"Kenton Wolfe",,"32100 SW Cypress Pt",,"Wilsonville","Oregon","97070-6478","United States",NULL,"0","one short talk subscription is for me the other for Neal Wolfe, Hotel Faribault Apts #507, 429 Central Ave N, Faribault,MN 55021-5261, both are renewals","0","0",NULL,NULL
+"1610031432-56dc","2016-10-03 14:32:36","3","56dc1916-03-10","account","0","0","0","12","0",NULL,NULL,"Bill Edwards",,"28 Kathrene Court",,"Webster","New York","14580","United States",NULL,"0",,"0","0",NULL,NULL
+"1610031658-1b43","2016-10-03 16:58:10","1","1b439614-14-05","account","0","0","0","125","0",NULL,NULL,"William Gerhardt",,"3102 Old Elm Way",,"SanAntonio","Texas","78230","United States",NULL,"0",,"0","0",NULL,NULL
+"1610031701-1b43","2016-10-03 17:01:03","3","1b439614-14-05","account","0","0","0","125","0",NULL,NULL,"William Gerhardt",,"3102 Old Elm Way",,"SanAntonio","Texas","78230","United States",NULL,"0",,"0","0",NULL,NULL
+"1610031850-f50d","2016-10-03 18:50:48","3","f50d1d14-30-03","account","0","0","0","12","0",NULL,NULL,"John Blake",,"PO BOX 48",,"Weiser","Idaho","83672","United States",NULL,"0",,"0","0",NULL,NULL
+"1610031946-33d0","2016-10-03 19:46:30","3","33d0a615-28-08","account","0","0","0","12","0",NULL,NULL,"Kenneth Littler",,"124 Combs dr. ",,"Aiken ","South Carolina","29801","United States",NULL,"0",,"0","0",NULL,NULL
+"1610041957-a10b","2016-10-04 19:57:12","3","a10b4e15-15-06","account","0","0","0","24","0",NULL,NULL,"Richard Kasza",,"4345 South 36th Street",,"Greenfield","Wisconsin","53221","United States",NULL,"0",,"0","0",NULL,NULL
+"1610042043-0060","2016-10-04 20:43:44","1","00608116-04-10","guest","0","0","0","12","0",NULL,NULL,"Jerome Greenberg",,"220 N. Clermont Ave",,"Margate City","New Jersey","08402","United States",NULL,"0",,"0","0",NULL,NULL
+"1610051031-3f07","2016-10-05 10:31:14","3","3f074816-05-10","guest","0","0","0","31","106",NULL,NULL,"Carl Turner",,"1188 Main St",,"Long Lake","New York","12847-2204","United States",NULL,"0",,"0","0",NULL,NULL
+"1610051559-d6b8","2016-10-05 15:59:45","3","d6b8b716-05-10","guest","0","0","0","12","0",NULL,NULL,"Nelson Bryant",,"7305 Kenneth Drive",,"Henrico","Virginia","23228","United States",NULL,"0",,"0","0",NULL,NULL
+"1610061052-0ed9","2016-10-06 10:52:34","1","0ed99016-06-10","account","0","0","0","12","0",NULL,NULL,"Stanley N McIrvin","personal","291 Indian Paintbrush","Unit H","Casper","Wyoming","82604","United States",NULL,"0",,"0","0",NULL,NULL
+"1610061152-13c2","2016-10-06 11:52:59","3","13c29f16-06-10","guest","0","11.5","0","64.5","106",NULL,NULL,"Thomas Jenkins","Omar N. Bradley Lodge","10612 Galatea Pl",,"El Paso","Texas","79924","United States",NULL,"0",,"0","0",NULL,NULL
+"1610061416-6474","2016-10-06 14:16:08","3","6474e916-06-10","account","0","11.5","0","63.5","106",NULL,NULL,"MIchael McCleary",,"216 Peale Court",,"Cibolo","Texas","78108","United States",NULL,"0",,"0","0",NULL,NULL
+"1610061551-08f4","2016-10-06 15:51:33","3","08f4e013-21-05","account","0","0","0","98","0",NULL,NULL,"William Chapman",,"77 Pascal Ave.",,"Rockport","Maine","04856","United States",NULL,"0",,"0","0",NULL,NULL
+"1610061609-d5c7","2016-10-06 16:09:26","3","d5c7fa16-06-10","guest","0","0","0","24","0",NULL,NULL,"Jerome Greenberg",,"220 N. Clermont Ave",,"Margate","New Jersey","08402","United States",NULL,"0",,"0","0",NULL,NULL
+"1610070923-a2d4","2016-10-07 09:23:03","3","a2d49316-07-10","account","0","7.5","0","21.5","106",NULL,NULL,"Paul Timothy Green",,"5978 N. State Hwy 289",,"Sherman","Texas","75092","United States",NULL,"0",,"0","0",NULL,NULL
+"1610071626-2c19","2016-10-07 16:26:07","3","2c197114-04-05","account","0","0","0","12","0",NULL,NULL,"Eric Kuntz",,"56 Harmony Way",,"Ellsworth","Maine","04605","United States",NULL,"0",,"0","0",NULL,NULL
+"1610080911-5774","2016-10-08 09:11:01","3","5774dc16-08-10","account","0","9.5","0","42","106",NULL,NULL,"Randy Carter","Randal Carter","11026 Wynfield Springs Dr",,"Richmond","Texas","77406","United States",NULL,"0",,"0","0",NULL,NULL
+"1610082309-8692","2016-10-08 23:09:23","3","8692d916-08-10","account","0","0","0","12","0",NULL,NULL,"Stephen Tharaldsen","Stephen Tharaldsen","PO Box 75",,"Gouverneur","New York","13642","United States",NULL,"0",,"0","0",NULL,NULL
+"1610100935-d91c","2016-10-10 09:35:07","3","d91cfc15-09-11","account","0","0","0","12","0",NULL,NULL,"Jim Boaz",,"9350 E Old Pellegrino Rd",,"Tucson","Arizona","85749-8198","United States",NULL,"0",,"0","0",NULL,NULL
+"1610101423-f8cd","2016-10-10 14:23:20","3","f8cd0114-03-10","account","0","0","0","12","0",NULL,NULL,"Keith Wohlfert",,"N2594 County Road A",,"Oxford","Wisconsin","53952","United States",NULL,"0",,"0","0",NULL,NULL
+"1610111419-79eb","2016-10-11 14:19:13","3","79eba516-11-10","account","0","0","0","12","0",NULL,NULL,"Frank Lincoln","Frank Lincoln","P.O. Box 106","3074 E. Pinzon St.","Tuscola","Illinois","61953","United States",NULL,"0",,"0","0",NULL,NULL
+"1610111544-0e9e","2016-10-11 15:44:19","3","0e9e6f16-11-10","guest","0","0","0","12","0",NULL,NULL,"Edward Hooper",,"po box 280",,"Whitwell","Tennessee","37397","United States",NULL,"0",,"0","0",NULL,NULL
+"1610111752-4e6e","2016-10-11 17:52:24","3","4e6ef116-11-10","guest","0","0","0","12","0",NULL,NULL,"Carl Jeffries","Mr.","510 Valley Circle Rd",,"Hagerman","Idaho","83332","United States",NULL,"0",,"0","0",NULL,NULL
+"1610121506-9797","2016-10-12 15:06:11","3","97978314-06-11","account","0","0","0","12","0",NULL,NULL,"Mike Nichols",,"310 Clovis Drive",,"Georgetown","Texas","78628","United States",NULL,"0",,"0","0",NULL,NULL
+"1610121941-e82c","2016-10-12 19:41:19","3","e82c0e16-12-10","guest","0","0","0","12","0",NULL,NULL,"RICHARD MULLARD",,"832 RIEDEL AVE",,"Fullerton","California","92831","United States",NULL,"0",,"0","0",NULL,NULL
+"1610122150-4bcb","2016-10-12 21:50:10","3","4bcbd416-12-10","guest","0","0","0","43","106",NULL,NULL,"Zachary Johnson",,"2218 Chelsea Ridge Court",,"Katy","Texas","77450","United States",NULL,"0",,"0","0",NULL,NULL
+"1610131000-eb88","2016-10-13 10:00:34","3","eb882916-13-10","account","0","0","0","32","106",NULL,NULL,"Larry Thomas",,"1703 Elaine Street",,"Scottsboro","Alabama","35769","United States",NULL,"0",,"0","0",NULL,NULL
+"1610131228-93f9","2016-10-13 12:28:23","3","93f9a916-13-10","guest","0","0","0","12","0",NULL,NULL,"James Camper","Peninsula Masonic Lodge #168","10 Birch St. #207",,"Redwood City","California","94062-1444","United States",NULL,"0",,"0","0",NULL,NULL
+"1610131238-f274","2016-10-13 12:38:33","3","f2744216-13-10","guest","0","0","0","48","0",NULL,NULL,"Thomas White","Thomas G. White, PM,HA","2959 Fairbanks Ave.",,"Simi Valley","California","93063","United States",NULL,"0",,"0","0",NULL,NULL
+"1610131520-1b02","2016-10-13 15:20:03","3","1b025e16-13-10","guest","0","7.5","0","26.5","106",NULL,NULL,"JARED GROCE",,"2413 cr 337",,"gainesville","Texas","76240","United States",NULL,"0",,"0","0",NULL,NULL
+"1610131712-fa2d","2016-10-13 17:12:17","3","fa2da616-13-10","account","0","0","0","12","0",NULL,NULL,"Patricia King","Patricia King","PO Box 56","1447 State Route 63 South","Dansville","New York","14437","United States",NULL,"0",,"0","0",NULL,NULL
+"1610132048-fbf6","2016-10-13 20:48:10","3","fbf64416-13-10","guest","0","0","0","12","0",NULL,NULL,"Gene Ulrich",,"8726 126th Ave NE",,"Kirkland","Washington","98033","United States",NULL,"0",,"0","0",NULL,NULL
+"1610132105-199b","2016-10-13 21:05:37","3","199ba916-13-10","guest","0","9.5","0","58","106",NULL,NULL,"Hubert Urruttia",,"3 Rea Court",,"Monroe","New York","10950","United States",NULL,"0",,"0","0",NULL,NULL
+"1610140928-9b26","2016-10-14 09:28:32","3","9b269a16-14-10","guest","0","8.5","0","30","106",NULL,NULL,"Arjit Mahal",,"954 Florida Grove Rd",,"Perth Amboy","New Jersey","08861","United States",NULL,"0",,"0","0",NULL,NULL
+"1610141118-e10e","2016-10-14 11:18:22","3","e10ec516-14-10","guest","0","0","0","15","0",NULL,NULL,"Robert Dorr",,"96 Windsor",,"Waterbury","Connecticut","06708","United States",NULL,"0",,"0","0",NULL,NULL
+"1610141745-089e","2016-10-14 17:45:57","3","089eb016-17-07","account","0","0","0","12","0",NULL,NULL,"Fred Duncan","Fred Duncan","336 Roundup Ave, #334",,"Newcastle","Wyoming","82701","United States",NULL,"0",,"0","0",NULL,NULL
+"1610141847-d30e","2016-10-14 18:47:11","3","d30e2b16-14-10","account","0","0","0","12","0",NULL,NULL,"Harry Clark","Harry Clark","2664 FM 36 S.",,"Caddo Mills","Texas","75135","United States",NULL,"0",,"0","0",NULL,NULL
+"1610151328-a717","2016-10-15 13:28:45","1","a7173c16-15-10","guest","0","0","0","24","0",NULL,NULL,"Richard Beecher",,"7033 SW 42nd Ave",,"Amarillo","Texas","79109","United States",NULL,"0",,"0","0",NULL,NULL
+"1610171015-907a","2016-10-17 10:15:07","3","907ae316-09-06","account","0","0","0","12","0",NULL,NULL,"W. Richard Dillon",,"943 Farmington Ave.",,"Pottstown","Pennsylvania","19464","United States",NULL,"0",,"0","0",NULL,NULL
+"1610171300-2f01","2016-10-17 13:00:26","3","2f012616-17-10","guest","0","0","0","36","0",NULL,NULL,"Clarence Vranish",,"1912 West Anderson ST",,"Evanston","Wyoming","82930","United States",NULL,"0",,"0","0",NULL,NULL
+"1610171335-c2f0","2016-10-17 13:35:29","3","c2f06516-08-06","account","0","0","0","36.6","106",NULL,NULL,"Fred Shoemaker",,"117 E. North St.",,"Waverly","Ohio","45690","United States",NULL,"0",,"0","0",NULL,NULL
+"1610171529-24f5","2016-10-17 15:29:58","3","24f50316-17-10","account","0","0","0","12","0",NULL,NULL,"JOHN DEGNAN","JOHN DEGNAN","10100 BURNT STORE RD","UNIT#24","PUNTA GORDA","Florida","33950","United States",NULL,"0",,"0","0",NULL,NULL
+"1610171554-d99e","2016-10-17 15:54:20","3","d99e5c16-17-10","account","0","0","0","12","0",NULL,NULL,"Dennis Anderson",,"405 N Date Suite 1","PO Box 206","T or C","New Mexico","87901","United States",NULL,"0",,"0","0",NULL,NULL
+"1610171701-f377","2016-10-17 17:01:53","1","f3776c16-17-10","account","0","0","0","48","0",NULL,NULL,"James Beimly",,"1041 Furnas Road",,"Vandalia","Ohio","45377-9791","United States",NULL,"0","Please note that the STB subscription is a RENEWAL.
<br>My current subscription expires 1/18 ","0","0",NULL,NULL
+"1610171711-242b","2016-10-17 17:11:42","3","242b7914-01-04","account","0","7.5","0","23.5","106",NULL,NULL,"DOUG JEROME",,"1346 SW LESCHI DR",,"OAK HARBOR","Washington","98277","United States",NULL,"0",,"0","0",NULL,NULL
+"1610171715-ed07","2016-10-17 17:15:56","3","ed074816-17-10","guest","0","0","0","48","0",NULL,NULL,"James Beimly",,"1041 Furnas Road",,"Vandalia","Ohio","45377-9791","United States",NULL,"0","Please note that the STB subscription in a RENEWAL. My current subscription expires 1/18","0","0",NULL,NULL
+"1610171834-521f","2016-10-17 18:34:36","3","521fac16-17-10","account","0","8.5","0","36.5","106",NULL,NULL,"James Brown",,"PO Box 2089",,"Red Lodge","Montana","59068","United States",NULL,"0",,"0","0",NULL,NULL
+"1610171932-ad6a","2016-10-17 19:32:49","3","ad6a4c15-09-07","account","0","0","0","12","0",NULL,NULL,"Donald Enz",,"1775 Midway Road",,"De Pere","Wisconsin","54115","United States",NULL,"0",,"0","0",NULL,NULL
+"1610191424-5623","2016-10-19 14:24:40","3","56239616-19-10","account","0","0","0","12.75","106",NULL,NULL,"Brad Fowler",,"506 SE Brentwood Drive",,"Lee's Summit","Missouri","64063","United States",NULL,"0",,"0","0",NULL,NULL
+"1610201242-bead","2016-10-20 12:42:14","3","bead9f16-20-10","guest","0","0","0","250","0",NULL,NULL,"J Humphrey",,"44 Russell Rd",,"Lonedell","Missouri","63060","United States",NULL,"0",,"0","0",NULL,NULL
+"1610202149-21ce","2016-10-20 21:49:41","3","21ceff16-20-10","guest","0","0","0","12","0",NULL,NULL,"Robert Bianchi",,"4 Rainbow Dr",,"Nashua","New Hampshire","03062","United States",NULL,"0",,"0","0",NULL,NULL
+"1610211436-ee97","2016-10-21 14:36:46","1","ee97c213-05-04","account","0","0","0","250","0",NULL,NULL,"Mark Genung","ASBI.com","8247 Indy Court",,"Indianapolis","Indiana","46214","United States",NULL,"0",,"0","0",NULL,NULL
+"1610211606-c9f1","2016-10-21 16:06:50","1","c9f14516-21-10","account","0","0","0","12","0",NULL,NULL,"Joel Berg","Dr. Joel Berg","3054 Canal Walk Road",,"Henderson","Nevada","89052","United States",NULL,"0",,"0","0",NULL,NULL
+"1610222305-d9af","2016-10-22 23:05:23","3","d9af2c16-22-10","account","0","0","0","12","0",NULL,NULL,"Leon Rackley",,"246 Westover Dr","Apt 150","Hattiesburg","Mississippi","39402","United States",NULL,"0",,"0","0",NULL,NULL
+"1610241325-89fc","2016-10-24 13:25:06","3","89fc4416-24-10","guest","0","0","0","265","0",NULL,NULL,"Charles Carmichael",,"3011 Solstice Lane",,"Annapolis","Maryland","21401","United States",NULL,"0",,"0","0",NULL,NULL
+"1610241901-530c","2016-10-24 19:01:03","3","530c9516-24-10","account","0","7.5","0","41.5","106",NULL,NULL,"Franklin C. Boner","Center 86","46 n 4th Street",,"Newark","Ohio","43055-5025","United States",NULL,"0",,"0","0",NULL,NULL
+"1610250025-9297","2016-10-25 00:25:20","3","9297ca16-25-10","account","0","0","0","12","0",NULL,NULL,"Shawn Niemann",,"N3427 County Road AB",,"Luxemburg","Wisconsin","54217","United States",NULL,"0",,"0","0",NULL,NULL
+"1610250739-7c2f","2016-10-25 07:39:58","3","7c2f2e16-25-10","guest","0","0","0","98","0",NULL,NULL,"Chris Morgan",,"101 Beechmont St",,"Dearborn","Michigan","48124","United States",NULL,"0",,"0","0",NULL,NULL
+"1610251824-5ac7","2016-10-25 18:24:06","3","5ac7a816-25-10","account","0","11.5","0","70.5","106",NULL,NULL,"Mark Anderson","Minnesota Masonic Heritage Center","11411 Masonic Home Drive",,"Bloomington","Minnesota","55437","United States",NULL,"0",,"0","0",NULL,NULL
+"1610252030-7457","2016-10-25 20:30:08","3","7457cc16-25-10","guest","0","0","0","12","0",NULL,NULL,"Robert Budlow",,"5320 Wind Point Road",,"Racine","Wisconsin","53402","United States",NULL,"0",,"0","0",NULL,NULL
+"1610260908-3b40","2016-10-26 09:08:34","1","3b404516-26-10","account","0","8.5","0","36.5","106",NULL,NULL,"Wayne Cornelius",,"21590 Hwy 5",,"Lynn","Alabama","35575","United States",NULL,"0",,"0","0",NULL,NULL
+"1610261734-bd73","2016-10-26 17:34:13","3","bd736316-26-10","guest","0","11.5","0","85.5","106",NULL,NULL,"Vance Pascal",,"227 Montpelier Drive",,"Winston-Salem","North Carolina","27103","United States",NULL,"0",,"0","0",NULL,NULL
+"1610262331-2906","2016-10-26 23:31:55","3","2906f816-26-10","account","0","0","0","12","0",NULL,NULL,"Gary Fehl",,"3471 Yorkshire Rd",,"Green Bay","Wisconsin","54311","United States",NULL,"0",,"0","0",NULL,NULL
+"1610280932-7ac8","2016-10-28 09:32:18","3","7ac89d16-28-10","account","0","0","0","250","0",NULL,NULL,"Edward L. King","Acadia Hearing Center","18 High Street",,"Ellsworth","Maine","04605-1727","United States",NULL,"0",,"0","0",NULL,NULL
+"1610281110-eb69","2016-10-28 11:10:09","3","eb697916-28-10","account","0","0","0","12","0",NULL,NULL,"Gerald McNeil","Gerald McNeil","5317 Delia Ter",,"East Stroudsburg","Pennsylvania","18301","United States",NULL,"0",,"0","0",NULL,NULL
+"1610281536-da77","2016-10-28 15:36:24","3","da77e514-01-06","account","0","7.5","0","21.5","106",NULL,NULL,"Rex Hasty",,"244 JC Bryant Rd",,"Hattiesburg","Mississippi","39401","United States",NULL,"0",,"0","0",NULL,NULL
+"1610291615-8c02","2016-10-29 16:15:13","3","8c02af16-29-10","guest","0","0","0","12","0",NULL,NULL,"Don Weiner","Don Weiner","156 Hilltop DR",,"Churchville","Pennsylvania","18966","United States",NULL,"0",,"0","0",NULL,NULL
+"1610291855-7046","2016-10-29 18:55:21","3","7046d515-15-11","account","0","0","0","12","0",NULL,NULL,"J. Arthur Carbonaro",,"548 Lisbon Road",,"Canterbury","Connecticut","06331","United States",NULL,"0",,"0","0",NULL,NULL
+"1611011534-fecd","2016-11-01 15:34:13","3","fecdbc16-01-11","account","0","8.5","0","50.5","106",NULL,NULL,"Bill Luth","A-A-Parrots & Toys","10450 Co. Rd. 2450",,"Terrell","Texas","75160-8603","United States",NULL,"0",,"0","0",NULL,NULL
+"1611021442-62bd","2016-11-02 14:42:54","3","62bd2f14-11-03","account","0","0","0","12","0",NULL,NULL,"Jack Weber",,"7005 Fallen Timbers Dr.",,"Dublin","Ohio","43017","United States",NULL,"0",,"0","0",NULL,NULL
+"1611031254-3407","2016-11-03 12:54:26","3","34078416-26-05","account","0","4","0","10","106",NULL,NULL,"William Shelley",,"2926 94th Street",,"Sturtevant","Wisconsin","53177","United States",NULL,"0",,"0","0",NULL,NULL
+"1611051145-1a50","2016-11-05 11:45:41","3","1a509216-05-11","guest","0","0","0","36","0",NULL,NULL,"Gary Gresh","Gary Gresh","1061 Crest Drive",,"Crescent","Pennsylvania","15046","United States",NULL,"0",,"0","0",NULL,NULL
+"1611071807-dd30","2016-11-07 18:07:43","3","dd30ef15-30-09","account","0","0","0","12","0",NULL,NULL,"Roland Sehne",,"54 Wayne St",,"Hauppauge","New York","11788","United States",NULL,"0",,"0","0",NULL,NULL
+"1611072120-ada8","2016-11-07 21:20:47","3","ada81116-07-11","guest","0","0","0","12","0",NULL,NULL,"Jesse Ruch",,"105 Mill Drive",,"Mastic Beach","New York","11951","United States",NULL,"0",,"0","0",NULL,NULL
+"1611081751-4b75","2016-11-08 17:51:35","3","4b754616-08-11","account","0","0","0","12","0",NULL,NULL,"Jeff Honeycutt ",,"218 Lewis dr",,"Wellford","South Carolina","29385","United States",NULL,"0",,"0","0",NULL,NULL
+"1611092326-0840","2016-11-09 23:26:43","3","08401113-28-04","account","0","0","0","170","0",NULL,NULL,"Donald Poling",,"1210 NW 43 Street",,"Fort Lauderdale","Florida","33309","United States",NULL,"0",,"0","0",NULL,NULL
+"1611101017-ce36","2016-11-10 10:17:43","1","ce360816-10-11","account","0","0","0","12","0",NULL,NULL,"Larry Senderhauf","LMS 33 LLC","12087 E. Sand Hills Rd",,"Scottsdale","Arizona","85255","United States",NULL,"0","Please Bill me the old fashion way as I still write checks. Thanking you in advance, Larry","0","0",NULL,NULL
+"1611111239-1d6b","2016-11-11 12:39:57","3","1d6bed16-11-11","account","0","50","0","276.35","106",NULL,NULL,"Robert Potts","Zelmar Grotto","1237 E Weisgarber Rd # 52713",,"Knoxville","Tennessee","37950","United States",NULL,"0",,"0","0",NULL,NULL
+"1611112310-3c34","2016-11-11 23:10:59","3","3c349e16-11-11","account","0","9.5","0","47.5","106",NULL,NULL,"Jerry Norman Stuart",,"24 Pineridge Rd.",,"Purvis ","Mississippi","39475","United States",NULL,"0",,"0","0",NULL,NULL
+"1611120909-4bc1","2016-11-12 09:09:18","3","4bc1d516-12-11","account","0","0","0","12","0",NULL,NULL,"Todd Tubby",,"8 Mohican place",,"Lake Hiawatha","New Jersey","07034","United States",NULL,"0",,"0","0",NULL,NULL
+"1611131240-1c4e","2016-11-13 12:40:52","3","1c4e6a15-04-04","account","0","0","0","12","0",NULL,NULL,"Edward L Savage",,"8 Chase Rd #2B",,"N Brookfield","Massachusetts","01535-1846","United States",NULL,"0","Thank You for a good publication, my Brothers!
<br>RW Eddie Savage
<br>MSANA #170545","0","0",NULL,NULL
+"1611172210-e102","2016-11-17 22:10:11","3","e1025916-17-11","account","0","0","0","12","0",NULL,NULL,"Glenn Cantor","Ocean Lodge #89","8 Weasel Creek Court",,"Howell","New Jersey","07731","United States",NULL,"0",,"0","0",NULL,NULL
+"1611180953-8573","2016-11-18 09:53:19","3","85739314-01-04","account","0","0","0","98","0",NULL,NULL,"Jim Gleason",,"5573 Rockpointe Dr",,"Clifton","Virginia","20124","United States",NULL,"0",,"0","0",NULL,NULL
+"1611181013-02fa","2016-11-18 10:13:01","3","02faea16-18-11","account","0","7.5","0","21.5","106",NULL,NULL,"Charles Baskerville #281",,"P. O. Box 882",,"Fayette","Alabama","35555","United States",NULL,"0",,"0","0",NULL,NULL
+"1611191005-a677","2016-11-19 10:05:24","3","a677fe13-04-11","account","0","11.5","0","85.5","106",NULL,NULL,"James VanDeHey",,"3197 Primrose Ln",,"Green Bay","Wisconsin","54313","United States",NULL,"0",,"0","0",NULL,NULL
+"1611211340-8590","2016-11-21 13:40:05","3","8590d015-04-11","account","0","0","0","12","0",NULL,NULL,"Daniel Nye",,"756 Nichols Road",,"New Haven","Vermont","05472","United States",NULL,"0",,"0","0",NULL,NULL
+"1611211536-b2d4","2016-11-21 15:36:58","3","b2d40216-21-11","account","0","0","0","182","0",NULL,NULL,"Robert Hagon",,"169 Woolf Road",,"Milford","New Jersey","08848","United States",NULL,"0",,"0","0",NULL,NULL
+"1611211619-5659","2016-11-21 16:19:51","3","56590914-17-08","account","0","0","0","12","0",NULL,NULL,"Michael Whitescarver",,"3216 W. Winchester",,"Springfield","Missouri","65807","United States",NULL,"0",,"0","0",NULL,NULL
+"1611211705-f347","2016-11-21 17:05:27","1","f3476016-21-11","guest","0","0","0","12","0",NULL,NULL,"Maurice Little","Maurice W Little","346 Alder Road",,"Dover","Delaware","19904","United States",NULL,"0",,"0","0",NULL,NULL
+"1611221332-f34c","2016-11-22 13:32:53","3","f34c3416-22-11","account","0","0","0","12","0",NULL,NULL,"Chester King",,"12024 Talitha Lane",,"Orlando","Florida","32827","United States",NULL,"0",,"0","0",NULL,NULL
+"1611221403-09b6","2016-11-22 14:03:22","3","09b6f814-27-02","account","0","0","0","12","0",NULL,NULL,"Stuart Pelcyger",,"9074 NW 6th Court",,"Plantation","Florida","33324-1173","United States",NULL,"0",,"0","0",NULL,NULL
+"1611221821-fe26","2016-11-22 18:21:54","3","fe265016-22-11","account","0","0","0","0.75","106",NULL,NULL,"cody presley",,"12676 NS 3665",,"wewoka","Oklahoma","74884","United States",NULL,"0",,"0","0",NULL,NULL
+"1611230804-f703","2016-11-23 08:04:47","3","f7039c15-31-08","account","0","0","0","12","0",NULL,NULL,"jeff lank",,"346 owls nest drive",,"bear","Delaware","19701","United States",NULL,"0",,"0","0",NULL,NULL
+"1611230853-e71e","2016-11-23 08:53:33","3","e71e9b16-23-11","guest","0","0","0","12","0",NULL,NULL,"Harry Joe Brooks",,"c/o ManorCare","1070 Stouffer Ave","Chambersburg","Pennsylvania","17201","United States",NULL,"0","Please ensure full name - Harry Joe Brooks - is included on the ship to. ManorCare will reject the mailing otherwise.","0","0",NULL,NULL
+"1611230855-663c","2016-11-23 08:55:43","3","663ce916-23-11","guest","0","0","0","12","0",NULL,NULL,"Philip B Brooks",,"405 Greear Place",,"Herndon","Virginia","20170","United States",NULL,"0",,"0","0",NULL,NULL
+"1611230921-f5dc","2016-11-23 09:21:47","3","f5dca916-23-11","guest","0","0","0","12","0",NULL,NULL,"Richard Lowrey","Fellowship Lodge #345","P.O. Box 1235",,"Joplin","Missouri","64802","United States",NULL,"0",,"0","0",NULL,NULL
+"1611231058-f166","2016-11-23 10:58:16","3","f1663016-23-11","account","0","0","0","12","0",NULL,NULL,"James Murphy","Evolution for Success","10840 Bedfordtown Drive",,"Raleigh","North Carolina","27614","United States",NULL,"0",,"0","0",NULL,NULL
+"1611231232-c0ed","2016-11-23 12:32:37","3","c0edb014-10-12","account","0","0","0","12","0",NULL,NULL,"Robert Engelbach",,"1211 Michigan Avenue",,"Cumberland","Maryland","21502","United States",NULL,"0",,"0","0",NULL,NULL
diff --git a/perl/cw_orders_no_customers.pl b/perl/cw_orders_no_customers.pl new file mode 100644 index 0000000..a31a809 --- /dev/null +++ b/perl/cw_orders_no_customers.pl @@ -0,0 +1,96 @@ +#!/usr/bin/perl + +use Text::CSV; +use Data::Dumper; + +# cw_products +# 0 id 1 sku 2 product_name + +# cw_skus +# 0 sku_id 1 sku 2 product_id + +# cw_orders +# 0 order_id 1 date 2 status 3 customer_id + +# cw_order_skus +# 0 id 1 order_id 2 sku_id + +# cw_customers +# 0 customer_id 1 customer_type 2 date_added 3 date_modified 4 first_name 5 last_name +# 6 7 8 9 10 = address + +@products = load_csv("cw_products.csv"); +@skus = load_csv("cw_skus.csv"); +@orders = load_csv("cw_orders.csv"); +@order_skus = load_csv("cw_order_skus.csv"); +@customers = load_csv("cw_customers.csv"); +@order_status = load_csv("cw_order_status.csv"); + +$product_name_lookup = {}; +for $product (@products) { + $sku_name = $product->[1]; + $product_name = $product->[2]; + $product_name_lookup->{ $sku_name } = $product_name; +} + +$customer_name_lookup = {}; +for $customer (@customers) { + $id = $customer->[0]; + $name = $customer->[5] . " " . $customer->[4]; + $customer_name_lookup->{ $id } = $name; +} + +$customer_lookup = {}; +for $customer (@customers) { + $id = $customer->[0]; + $customer_name_lookup->{ $id } = $customer; +} + +$order_status_lookup = {}; +for $os (@order_status) { + $id = $os->[0]; + $name = $os->[1]; + $order_status_lookup->{ $id } = $name; +} + +$sku_id_lookup = {}; +for $sku (@skus) { + $sku_id = $sku->[0]; + $sku_name = $sku->[1]; + # $product_name = $product_name_lookup->{ $sku_name }; + $sku_id_lookup->{ $sku_id } = $sku_name; +} + +$order_customer_lookup = {}; +for $order (@orders) { + $order_id = $order->[0]; + $customer_id = $order->[3]; + print $customer_id . "\n"; + # $customer_name = $customer_name_lookup->{ $customer_id }; + $order_customer_lookup->{ $order_id } = $customer_id; +} + + + + + + + + + + +sub load_csv () { + my $filename = shift; + my @rows; + my $csv = Text::CSV->new ( { binary => 1 } ) # should set binary attribute. + or die "Cannot use CSV: ".Text::CSV->error_diag (); + + open my $fh, "<:encoding(utf8)", $filename or die "$filename: $!"; + while ( my $row = $csv->getline( $fh ) ) { + push @rows, $row; + } + $csv->eof or $csv->error_diag(); + close $fh; + return @rows; +} + diff --git a/perl/cw_product_names.pl b/perl/cw_product_names.pl new file mode 100644 index 0000000..1e66bc0 --- /dev/null +++ b/perl/cw_product_names.pl @@ -0,0 +1,70 @@ +#!/usr/bin/perl + +use Text::CSV; +use Data::Dumper; + +# cw_products +# 0 id 1 sku 2 product_name + +# cw_skus +# 0 sku_id 1 sku 2 product_id + +# cw_orders +# 0 order_id 1 date 2 status 3 customer_id + +# cw_order_skus +# 0 id 1 order_id 2 sku_id + +# cw_customers +# 0 customer_id 1 customer_type 2 date_added 3 date_modified 4 first_name 5 last_name +# 6 7 8 9 10 = address + +@products = load_csv("cw_products.csv"); +@skus = load_csv("cw_skus.csv"); +@orders = load_csv("cw_orders.csv"); +@order_skus = load_csv("cw_order_skus.csv"); +@customers = load_csv("cw_customers.csv"); +@order_status = load_csv("cw_order_status.csv"); + +$product_name_lookup = {}; +for $product (@products) { + $sku_name = $product->[1]; + $product_name = $product->[2]; + $product_name_lookup->{ $sku_name } = $product_name; +} + +$sku_id_lookup = {}; +for $sku (@skus) { + $sku_id = $sku->[0]; + $sku_name = $sku->[1]; + $product_name = $product_name_lookup->{ $sku_name }; + $sku_id_lookup->{ $sku_id } = $sku_name; + print $sku_name . "\t" . $product_name . "\n"; +} + + + + + + + + + + + + +sub load_csv () { + my $filename = shift; + my @rows; + my $csv = Text::CSV->new ( { binary => 1 } ) # should set binary attribute. + or die "Cannot use CSV: ".Text::CSV->error_diag (); + + open my $fh, "<:encoding(utf8)", $filename or die "$filename: $!"; + while ( my $row = $csv->getline( $fh ) ) { + push @rows, $row; + } + $csv->eof or $csv->error_diag(); + close $fh; + return @rows; +} + diff --git a/perl/cw_products.csv b/perl/cw_products.csv new file mode 100644 index 0000000..4d4c777 --- /dev/null +++ b/perl/cw_products.csv @@ -0,0 +1,182 @@ +"1","BRO2012","What Has Masonry Done for the World? 50 Copies in the Package","<p>Key historical trends, which were either initiated or advanced by Masonry, are described in a new brochure published by the Masonic Information Center. “What Has Masonry Done for the World?” is aimed at both Masons and non-Masons.</p>
+<p>The societal innovations influenced by Masonry include Individualism, Democracy, Human Rights, the Rights of Workers, the Arts and Architecture, Public Education, Health, and Personal Development and Fulfillment.</p>
+<p>The pamphlet is an excellent tool to build pride and respect for the Fraternity in the heart of any Mason, regardless of the length of their time in the Craft.</p>
+<p>“What Has Masonry Done for the World?” also is perfect for reading by families and friends of Masons, or for handing to non-Masons who may show an interest in Masonry. It is great for giving to visitors at open houses, fairs, and other public events.</p>
+<p>The brochure was written by noted Masonic author James Tresner, of Oklahoma. MIC gives thanks to the Grand Lodge of Oklahoma for permitting adaptation of its previous pamphlet.</p>","<p>Key historical trends, which were either initiated or advanced by Masonry, are described in a new brochure published by the Masonic Information Center. Aimed at both Masons and non-Masons. Sold in packages of 50 brochures.</p>","0.000","0","1","1","0","2014-12-31 13:05:28","<p>Sold in packages of 50 brochures. Discounts available for mulitple packages.</p>","Featured ",,
+"2","STBSUB","Short Talk Bulletin Annual Subscription","<p>Annual Subscription to the Short Talk Bulletins</p>","<p>Annual Subscription to the Short Talk Bulletins</p>","0.000","0","0","0","0","2014-12-31 13:00:59",,"Featured ",,
+"3","TEST","TEST","<p>TEST</p>","<p>TEST</p>","0.000","0","1","1","0","2012-11-23 13:18:12",,,,
+"4","STBSet","Short Talk Bulletin Complete Set","<p><strong>Complete Set of Short Talk Bulletins from 1923 through 2013</strong></p>","<p>Complete set of Short Talk Bulletins from 1923 through 2013</p>","0.000","0","0","1","0","2014-12-31 13:02:06",,"Popular",,
+"5","BR2-11-","Facts About Freemasonry","<p>Brochure answering many of the most frequently asked questions about the Fraternity.</p>","<p>Brochure answering many of the most frequently asked questions about the Fraternity.</p>","0.000","1","1","1","0","2013-01-14 18:52:03",,,,
+"6","BR120","A Response to Critics of Freemasonry","<p>A brochure responding to several of the alleged points of conflict between Freemasonry and Christian theology.</p>","<p>A brochure responding to several of the alleged points of conflict between Freemasonry and Christian theology.</p>","0.000","0","1","1","0","2014-12-31 12:53:54",,"Popular",,
+"7","BR130","Who Are the Masons? 50 Copies in the Package","<p>An attractive easy to read introduction to Freemasonry.</p>","<p>An attractive easy to read introduction to Freemasonry. Sold in packages of 50 brochures.</p>","0.000","0","0","1","0","2014-12-31 13:08:27","<p>Sold in packages of 50 brochures only. Discounts available for quantity purchases.</p>","Popular",,"Popular"
+"8","BR-20110 ","Facts About Freemasonry","<p>Brochure answering many of the most frequently asked questions about the Fraternity.</p>","<p>Brochure answering many of the most frequently asked questions about the Fraternity.</p>","0.000","0","0","1","0","2014-12-31 12:56:07",,"Popular",,
+"9","BL203","Get a Life","<p><strong>Get a Life: Thoughts on Freemasonry and Religion</strong> - 12 page booklet discussing the relationship between Freemasonry and the religious community. </p>","<p><strong>Get a Life: Thoughts on Freemasonry and Religion</strong> - 12 page booklet discussing the relationship between Freemasonry and the religious community. </p>","0.000","0","1","1","0","2014-02-25 11:01:27","<p>Booklet is also available in packages of 50 booklets at a discounted price. Please see Related Products for quantity product.</p>","Popular",,
+"10","BL202","What's a Mason","<p>16 page booklet describing the Masonic Fraternity and its purposes. Explains what happens in Lodge meetings and answers many frequently asked questions about the Fraternity.</p>","<p>16 page booklet describing the Masonic Fraternity and its purposes. Explains what happens in Lodge meetings and answers many frequently asked questions about the Fraternity.</p>","0.000","0","0","1","0","2014-12-31 13:06:05","<p>Booklet is also available in packages of 50 booklets at a discounted price. Please see Related Products for quantity product.</p>","Popular",,
+"11","BL203Lot","Get a Life - Package of 50 Brochures","<p><strong>Get a Life: Thoughts on Freemasonry and Religion</strong> - 12 page booklet discussing the relationship between Freemasonry and the religious community.</p>
+<p>Discounted price for bulk purchases.</p>","<p><strong>Get a Life: Thoughts on Freemasonry and Religion</strong> - Discounted price for bulk purchases.</p>","0.000","0","1","1","0","2014-02-25 11:01:44","<p>Sold in packages of 50 brochures only. See Related items to purchase a single copy.</p>",,,
+"13","DON-GRENV","Green Envelope Appeal","<p>The name is somewhat misleading. The Masonic Hospital Visitation Program is, without a doubt, the finest public relations program ever undertaken by the Masonic fraternity. The Masonic Service Association of North America deems this program their major relief work. </p>
+<p>It is much more than merely ""visitations"" to the disabled and lonely patients in V.A. Hospitals, State Veterans Homes and Extended Care Facilities. It is the rendering of personal services to all our sons and brothers, Masons and Non-Masons alike, who now need someone to turn to for encouragement and to make life a little more pleasant.</p>
+<p><em>Little things mean a lot.</em> A friendly smile, a warm handclasp, an embrace and a kind word can do wonders for those who are lonely and depressed in a hospital or a nursing home. </p>","<p>Support for the Hospital Visitation Program</p>","0.000","0","1","0","0","2013-01-30 15:34:30","<p>Enter the dollar amount you wish to donate in the quantity field.</p>
+<p>For example, enter 10 for a $10.00 dollar donation.</p>",,,
+"12","DL-AboutTime","It's About Time","<p>It's About Time! </p>","<p>It's About Time! </p>","0.000","0","1","1","0","2013-01-23 11:46:10",,"Featured ",,
+"14","BL202Lot","What's a Mason - Package of 50 Brochures","<p>16 page booklet describing the Masonic Fraternity and its purposes. Explains what happens in Lodge meetings and answers many frequently asked questions about the Fraternity.</p>
+<p>Discounted price for bulk purchases.</p>","<p>16 page booklet describing the Masonic Fraternity and its purposes. Discounted price for bulk purchases.</p>","0.000","0","0","1","0","2014-12-31 13:07:02","<p>Sold in packages of 50 brochures only. See Related items to purchase a single copy.</p>","Popular",,
+"15","DIG188","Bible Quotations for Masonic Speakers","<p>Seventh Printing, 1991, 31 pages</p>
+<p>Discount when you buy 3 or 5 items from the Bargains Items.</p>","<p>Seventh Printing, 1991, 31 pages. Discount when you buy 3 or 5 items from the Bargains Items.</p>","0.000","0","0","1","0","2014-12-31 12:54:26",,"Bargain",,
+"16","DIG122","Masonic Membership of the General Officers of the Continental Army","<p>By Ronald E. Heaton. A careful study of the evidence showing which <em>of </em>Washing­ton’s generals were Masons, which may have been, and which were not. Illustrated. Reprinted 1993, 56 pages. </p>","<p>Reprinted 1993, 56 pages. Discount when you buy 3 or 5 items from the Bargains Items.</p>","0.000","0","1","1","0","2014-02-24 14:13:24","<p>Discount when you buy 3 or 5 items from the Bargains Items.</p>","Bargain",,
+"17","DIG242","Vistas of Masonry in Language, Symbolism and History","<p>by Pease. Introduces readers to the historic significance of Masonic language and links Masonic ritual to the great moral tradition of Western civilization. #242 </p>","<p>Introduces readers to the historic significance of Masonic language and links Masonic ritual to the great moral tradition of Western civilization. Discount when you buy 3 or 5 items from the Bargains Items.</p>","0.000","0","0","1","0","2014-12-31 13:03:39","<p>Discount when you buy 3 or 5 items from the Bargains Items.</p>","Bagain",,
+"18","DIG243","The Truth is Stranger than Fiction","<p>by Alphonse Cerza. A collec­tion of “believe it or not” items about Masons and Masonry.</p>","<p>A collec­tion of “believe it or not” items about Masons and Masonry. Discount when you buy 3 or 5 items from the Bargains Items.</p>","0.000","1","1","1","0","2013-02-01 19:42:24","<p>Discount when you buy 3 or 5 items from the Bargains Items.</p>","Bargain",,
+"19","DIG259","Washington's Home and Fraternal Life","<p>20 pages crammed with information. Original 1932 edition written by Carl Claudy; reissued 1982. </p>","<p>20 pages crammed with information. Original 1932 edition written by Carl Claudy; reissued 1982. Discount when you buy 3 or 5 items from the Bargains Items.</p>","0.000","0","0","1","0","2014-12-31 13:04:18","<p>Discount when you buy 3 or 5 items from the Bargains Items.</p>","Bargain",,
+"20","STBVOL1","Short Talk Bulletins Bound Set Vol. I, 1923-1937 ","<p>1<sup>st</sup> of 5 projected volumes. Available in two editions:</p>
+<ul>
+<li><strong>Master Mason Edition</strong>: bound in linen fabric with sewn signatures</li>
+<li><strong>Grand Master Edition</strong>: bonded leather bindings, gilt edges, satin book marks. GM Edition is OUT OF STOCK</li>
+</ul>
+<p>S. Brent Morris is editor of this Volume, which is perfect for any individual or Masonic library. See sample chapter at <a href=""http://www.msana.com/downloads"">www.msana.com /downloads</a>.</p>","<p>Edited by S. Brent Morris, with a choice of 2 editions</p>","0.000","0","0","1","0","2014-12-31 13:03:04",,,,
+"21","DIG192","One Hundred One Questions About Freemasonry","<p>Questions most commonly asked about Freemasonry and brief but complete answers.</p>","<p>Questions most commonly asked and brief but complete answers.</p>","0.000","0","0","1","0","2014-12-31 12:59:08",,"Featured",,
+"22","DIG222","Masonic Membership of the General Officers of the Continental Army","<p>By Ronald E. Heaton. A careful study of the evidence showing which <em>of </em>Washing­ton’s generals were Masons, which may have been, and which were not. Illustrated. Reprinted 1993, 56 pages. </p>","<p>Reprinted 1993, 56 pages. Discount when you buy 3 or 5 items from the Bargains Items.</p>","0.000","0","1","1","0","2014-02-24 14:15:03","<p>Discount when you buy 3 or 5 items from the Bargains Items.</p>","Bargain",,
+"23","DIG238","Masonic Membership of the Founding Fathers","<p>Examination of the evidence of Masonic membership of 241 Revolutionary patriots. 1974 revision of the 1965 publication by Heaton, fifth printing.</p>","<p>Examination of the evidence of Masonic membership of 241 Revolutionary patriots.</p>","0.000","0","0","1","0","2014-12-31 12:57:10",,"Featured",,
+"25","ONS1","Two Volume Special: Dwight L. Smith","<p>Two volumes: ""Whither Are We Traveling?"" and ""Why this Confusion in the Temple""</p>
+<p>Dwight L. Smith was one of the most influential and well-read Masonic writers during the middle of the 20<sup>th</sup> Century. He was a Past Grand Master and Past Grand Secretary of the Grand Lodge of Indiana, and a long time Editor of the <em>Indiana Freemason</em>.</p>
+<p>In the 1960s, the Masonic Service Association published the two writings of M.W. Brother Smith listed above. Because of their appeal, several reprints were necessary over the years.</p>
+<p>Today, he writes about numerous issues that remain topics for improving Freemasonry today, and his insight is just as valuable as it was 50 years.</p>
+<p>Get both volumes for $5.00 (regular price is $7.00), plus $3.00 for shipping and handling</p>","<p>Two volumes: ""Whither Are We Traveling?""(40 pages) and ""Why this Confusion in the Temple"" (65 pages) by Dwight L. Smith, one of the most influential and well-read Masonic writers during the middle of the 20<sup>th</sup>Century. </p>","0.000","1","0","1","0","2014-01-02 10:14:38",,,,
+"26","STBVOL2","Short Talk Bulletins Bound Set Vol. II, 1938-1952","<p><sup>2nd</sup> of 5 projected volumes. Available in two editions:</p>
+<ul>
+<li><strong>Master Mason Edition</strong>: bound in linen fabric with sewn signatures</li>
+<li><strong>Grand Master Edition</strong>: bonded leather bindings, gilt edges, satin book marks</li>
+</ul>
+<p>S. Brent Morris is editor of this Volume, which is perfect for any individual or Masonic library. See sample chapter at <a href=""http://www.msana.com/downloads"">www.msana.com /downloads</a>.</p>","<p>Edited by S. Brent Morris, with a choice of 2 editions</p>","0.000","0","1","1","0","2016-02-13 15:33:00",,"Featured",,
+"36","310SB","Short Talk Bulletin Complete Set","<p><strong>Complete Set of Short Talk Bulletins from 1923 through 2014</strong></p>","<p>Complete set of Short Talk Bulletins from 1923 through 2014</p>","0.000","1","0","1","0","2014-12-31 13:02:43",,"Popular",,
+"27","DIG235","Whither are We Traveling?","<p>Dwight L. Smith was one of the most influential and well-read Masonic writers during the middle of the 20<sup>th</sup> Century. He was a Past Grand Master and Past Grand Secretary of the Grand Lodge of Indiana, and a long time Editor of the <em>Indiana Freemason</em>.</p>
+<p>Today, he writes about numerous issues that remain topics for improving Freemasonry today, and his insight is just as valuable as it was 50 years.</p>","<p>Written by Dwight L. Smith, PGM. Today, he writes about numerous issues that remain topics for improving Freemasonry today, and his insight is just as valuable as it was 50 years.</p>","0.000","0","0","1","0","2014-12-31 13:07:23",," ",,
+"28","DIG264","Why This Confusion in the Temple?","<div class=""CWproductDescription"">
+<p>Dwight L. Smith was one of the most influential and well-read Masonic writers during the middle of the 20<sup>th</sup> Century. He was a Past Grand Master and Past Grand Secretary of the Grand Lodge of Indiana, and a long time Editor of the <em>Indiana Freemason</em>.</p>
+<p>Today, he writes about numerous issues that remain topics for improving Freemasonry today, and his insight is just as valuable as it was 50 years.</p>
+</div>","<p>Written by Dwight L. Smith, PGM. Today, he writes about numerous issues that remain topics for improving Freemasonry today, and his insight is just as valuable as it was 50 years.</p>","0.000","0","0","1","0","2014-12-31 13:11:18",,,,
+"29","DIG270","Masonic Membership of the Signers of the Constitution of the U.S.","<p>By Ronald E. Heaton. A study of the 39 individuals who signed the U.S. Constitution and which ones were Masons. Illustrated. Originally published 1962; reprinted 1986. 35 pages</p>","<p>Reprinted 1986, 35 pages. Discount when you buy 3 or 5. Published as a reference for the Bicentennial of the Constitution.</p>","0.000","0","0","1","0","2014-12-31 12:58:03","<p>Discount when you buy 3 or 5 items from the Bargains Items.</p>","Bargain",,
+"30","BRO710","Open Letter Concerning Masonic Funeral Services","<p>A new version of this venerable brochure is now available and it is aimed at clergy of all faiths. It promotes understanding of Masonic funeral practices. </p>
+<p>The brochure is also great for education of Masons, whether new members or those seeking more information regarding the Masonic funeral procedure.</p>
+<p>This newly designed and edited version become a more contemporary communication tool, but with the same traditional understanding of our Fraternity’s views of the subject.</p>","<p>A new version of this venerable brochure is now available and it is aimed at clergy of all faiths. It promotes understanding of Masonic funeral practices. </p>","0.000","0","0","1","0","2014-12-31 13:00:15",,"Featured",,
+"31","DIG290","Further Light ... Helpful Information for New Master Masons ","<p>By Jim Tresner</p>
+<p>A concise, enjoyable, 50-page explanation of the Fraternity, its meaning and purpose. (Illustrated) It covers such subjects as the Ritual and its Evolution, an explanation of Obligations and Penalties, further explanation of the Three Degrees, how to respond to questions about the Craft, information on Concordant Bodies, and more.</p>","<p>The perfect handbook and guide for the new Master Mason - offering a wealth of helpful information in an easy-to-read format on many Masonic subjects.</p>","0.000","0","0","1","0","2014-12-31 12:56:36",,,,
+"32","BL207","Cornerstones: A Masonic Tradition of Dedication ... That Makes Sense Today","<p>By Jim Tresner.</p>
+<p>A 16-page bookle that,was originally prepared for the Grand Lodge of Oklahoma and edited for general use, is offered by permission by the MSA’s Masonic Information Center. </p>","<p>A 16-page bookle that,was originally prepared for the Grand Lodge of Oklahoma and edited for general use, is offered by permission by the MSA’s Masonic Information Center. </p>","0.000","0","0","1","0","2014-12-31 12:55:06","<p>This is the single copy price. For a discount on bundles of 50 copies, please see related items.</p>",,,
+"33","BL207-50","Cornerstones: A Masonic Tradition of Dedication ... Bundle of 50 Copies","<p>By Jim Tresner.</p>
+<p>A 16-page bookle that,was originally prepared for the Grand Lodge of Oklahoma and edited for general use, is offered by permission by the MSA’s Masonic Information Center. </p>","<p>A 16-page booklet that,was originally prepared for the Grand Lodge of Oklahoma and edited for general use, is offered by permission by the MSA’s Masonic Information Center. </p>","0.000","0","0","1","0","2014-12-31 12:54:55","<p>Bundle of 50 copies of the booklet.</p>",,,
+"55","147CT","Why This Confusion in the Temple?","<div class=""CWproductDescription"">
+<p>Dwight L. Smith was one of the most influential and well-read Masonic writers during the middle of the 20<sup>th</sup> Century. He was a Past Grand Master and Past Grand Secretary of the Grand Lodge of Indiana, and a long time Editor of the <em>Indiana Freemason</em>.</p>
+<p>Today, he writes about numerous issues that remain topics for improving Freemasonry today, and his insight is just as valuable as it was 50 years.</p>
+</div>","<p>Written by Dwight L. Smith, PGM. Today, he writes about numerous issues that remain topics for improving Freemasonry today, and his insight is just as valuable as it was 50 years.</p>","0.000","1","0","1","0","2014-12-31 13:09:52",,,,
+"34","OL-LodgePkg","Lodge Officer's Package","<p>Preparing to preside over your Lodge? Getting ready for more responsibility as a Lodge officer? This collection of 9 booklets is for you!</p>
+<p>Published by the Masonic Service Association, these digests – individually – have been helping Lodge officers for years prepare for their duties. Now, they are available in a package at a great cost savings. Normal price is $31.50 and the package is available for $20.00 plus shipping and handling.</p>
+<h2>Lodge Officer’s Package</h2>
+<ul>
+<li>The Hat & Gavel (Guide for Worshipful Masters) 64 pages</li>
+<li>Think Tank For Junior Wardens 52 pages</li>
+<li>Leadership 38 pages</li>
+<li>Tried and Proven – A Lodge System of Masonic Instruction 59 pages</li>
+<li>Masonic Feasts, Banquets, and Table Lodges 28 pages</li>
+<li>Trestleboard Tidbits (by Alphonse Cerza) 67 pages</li>
+<li>Program Notebook for Worshipful Masters 53 pages</li>
+<li>The Worshipful Master’s Workbook 25 pages</li>
+<li>At the Sound of the Gavel (10 Programs) 108 pages</li>
+</ul>
+<p> </p>","<p>A collection of 9 digests, which – individually -- have been helping Lodge officers for years to prepare for their duties, is now available – together in one package – for a substantial savings.</p>","0.000","1","1","1","0","2014-07-28 10:47:19",,,,
+"35","SP01","Lodge Officer's Package","<p>Preparing to preside over your Lodge? Getting ready for more responsibility as a Lodge officer? This collection of 9 booklets is for you!</p>
+<p>Published by the Masonic Service Association, these digests – individually – have been helping Lodge officers for years prepare for their duties. Now, they are available in a package at a great cost savings. Normal price is $31.50 and the package is available for $20.00 plus shipping and handling.</p>
+<h2>Lodge Officer’s Package</h2>
+<ul>
+<li>The Hat & Gavel (Guide for Worshipful Masters) 64 pages</li>
+<li>Think Tank For Junior Wardens 52 pages</li>
+<li>Leadership 38 pages</li>
+<li>Tried and Proven – A Lodge System of Masonic Instruction 59 pages</li>
+<li>Masonic Feasts, Banquets, and Table Lodges 28 pages</li>
+<li>Trestleboard Tidbits (by Alphonse Cerza) 67 pages</li>
+<li>Program Notebook for Worshipful Masters 53 pages</li>
+<li>The Worshipful Master’s Workbook 25 pages</li>
+<li>At the Sound of the Gavel (10 Programs) 108 pages</li>
+</ul>
+<p> </p>","<p>A collection of 9 digests, which – individually -- have been helping Lodge officers for years to prepare for their duties, is now available – together in one package – for a substantial savings.</p>","0.000","0","0","1","0","2015-07-09 11:55:29",,,,
+"37","301MM","Short Talk Bulletins Bound Set Vol. I, 1923-1937 ","<p>1<sup>st</sup> of 5 projected volumes. Available in two editions:</p>
+<ul>
+<li><strong>Master Mason Edition</strong>: bound in linen fabric with sewn signatures</li>
+<li><strong>Grand Master Edition</strong>: bonded leather bindings, gilt edges, satin book marks. GM Edition is OUT OF STOCK</li>
+</ul>
+<p>S. Brent Morris is editor of this Volume, which is perfect for any individual or Masonic library. See sample chapter at <a href=""http://www.msana.com/downloads"">www.msana.com /downloads</a>.</p>","<p>Edited by S. Brent Morris, with a choice of 2 editions</p>","0.000","0","0","1","0","2015-02-12 10:54:18",,,,
+"38","303MM","Short Talk Bulletins Bound Set Vol. II, 1938-1952","<p><sup>2nd</sup> of 5 projected volumes. Available in two editions:</p>
+<ul>
+<li><strong>Master Mason Edition</strong>: bound in linen fabric with sewn signatures</li>
+<li><strong>Grand Master Edition</strong>: bonded leather bindings, gilt edges, satin book marks</li>
+</ul>
+<p>S. Brent Morris is editor of this Volume, which is perfect for any individual or Masonic library. See sample chapter at <a href=""http://www.msana.com/downloads"">www.msana.com /downloads</a>.</p>","<p>Edited by S. Brent Morris, with a choice of 2 editions</p>","0.000","1","0","0","0","2016-02-13 15:32:08",,"Featured",,
+"39","203WA","Who Are the Masons? ","<p>An attractive easy to read introduction to Freemasonry.</p>","<p>An attractive easy to read introduction to Freemasonry.</p>","0.000","1","0","1","0","2014-12-31 13:08:13",,"Popular",,"Popular"
+"40","204WO","What Has Masonry Done for the World?","<p>Key historical trends, which were either initiated or advanced by Masonry, are described in a new brochure published by the Masonic Information Center. “What Has Masonry Done for the World?” is aimed at both Masons and non-Masons.</p>
+<p>The societal innovations influenced by Masonry include Individualism, Democracy, Human Rights, the Rights of Workers, the Arts and Architecture, Public Education, Health, and Personal Development and Fulfillment.</p>
+<p>The pamphlet is an excellent tool to build pride and respect for the Fraternity in the heart of any Mason, regardless of the length of their time in the Craft.</p>
+<p>“What Has Masonry Done for the World?” also is perfect for reading by families and friends of Masons, or for handing to non-Masons who may show an interest in Masonry. It is great for giving to visitors at open houses, fairs, and other public events.</p>
+<p>The brochure was written by noted Masonic author James Tresner, of Oklahoma. MIC gives thanks to the Grand Lodge of Oklahoma for permitting adaptation of its previous pamphlet.</p>","<p>Key historical trends, which were either initiated or advanced by Masonry, are described in a new brochure published by the Masonic Information Center. Aimed at both Masons and non-Masons.</p>","0.000","1","0","1","0","2014-12-31 13:05:11",,"Featured ",,
+"41","205CO","Cornerstones: A Masonic Tradition of Dedication ... That Makes Sense Today","<p>By Jim Tresner.</p>
+<p>A 16-page bookle that,was originally prepared for the Grand Lodge of Oklahoma and edited for general use, is offered by permission by the MSA’s Masonic Information Center. </p>","<p>A 16-page bookle that,was originally prepared for the Grand Lodge of Oklahoma and edited for general use, is offered by permission by the MSA’s Masonic Information Center. </p>","0.000","1","0","1","0","2014-12-31 12:55:21",,,,
+"42","202FA","Facts About Freemasonry","<p>Brochure answering many of the most frequently asked questions about the Fraternity.</p>","<p>Brochure answering many of the most frequently asked questions about the Fraternity.</p>","0.000","1","0","1","0","2014-12-31 12:56:21",,"Popular",,
+"43","201RC","A Response to Critics of Freemasonry","<p>A brochure responding to several of the alleged points of conflict between Freemasonry and Christian theology.</p>","<p>A brochure responding to several of the alleged points of conflict between Freemasonry and Christian theology.</p>","0.000","1","0","1","0","2014-12-31 12:54:10",,"Popular",,
+"44","175SB","Short Talk Bulletin Annual Subscription","<p>Annual Subscription to the Short Talk Bulletins</p>","<p>Annual Subscription to the Short Talk Bulletins</p>","0.000","1","0","0","0","2014-12-31 13:01:24",,"Featured ",,
+"45","208WM","What's a Mason","<p>16 page booklet describing the Masonic Fraternity and its purposes. Explains what happens in Lodge meetings and answers many frequently asked questions about the Fraternity.</p>","<p>16 page booklet describing the Masonic Fraternity and its purposes. Explains what happens in Lodge meetings and answers many frequently asked questions about the Fraternity.</p>","0.000","1","0","1","0","2014-12-31 13:06:40",,"Popular",,
+"46","107BQ","Bible Quotations for Masonic Speakers","<p>Seventh Printing, 1991, 31 pages</p>","<p>Seventh Printing, 1991, 31 pages.</p>","0.000","1","0","1","0","2014-12-31 12:54:39",,,,
+"47","120FL","Further Light ... Helpful Information for New Master Masons ","<p>By Jim Tresner</p>
+<p>A concise, enjoyable, 50-page explanation of the Fraternity, its meaning and purpose. (Illustrated) It covers such subjects as the Ritual and its Evolution, an explanation of Obligations and Penalties, further explanation of the Three Degrees, how to respond to questions about the Craft, information on Concordant Bodies, and more.</p>","<p>The perfect handbook and guide for the new Master Mason - offering a wealth of helpful information in an easy-to-read format on many Masonic subjects.</p>","0.000","1","0","1","0","2014-12-31 12:56:49",,,,
+"48","132FF","Masonic Membership of the Founding Fathers","<p>Examination of the evidence of Masonic membership of 241 Revolutionary patriots. 1974 revision of the 1965 publication by Heaton, fifth printing.</p>","<p>Examination of the evidence of Masonic membership of 241 Revolutionary patriots.</p>","0.000","1","0","1","0","2014-12-31 12:57:24",,"Featured",,
+"49","153OH","One Hundred One Questions About Freemasonry","<p>Questions most commonly asked about Freemasonry and brief but complete answers.</p>","<p>Questions most commonly asked and brief but complete answers.</p>","0.000","1","0","1","0","2014-12-31 12:59:53",,"Featured",,
+"50","159FL","Open Letter Concerning Masonic Funeral Services","<p>A new version of this venerable brochure is now available and it is aimed at clergy of all faiths. It promotes understanding of Masonic funeral practices. </p>
+<p>The brochure is also great for education of Masons, whether new members or those seeking more information regarding the Masonic funeral procedure.</p>
+<p>This newly designed and edited version become a more contemporary communication tool, but with the same traditional understanding of our Fraternity’s views of the subject.</p>","<p>A new version of this venerable brochure is now available and it is aimed at clergy of all faiths. It promotes understanding of Masonic funeral practices. </p>","0.000","1","0","1","0","2014-12-31 13:00:40",,"Featured",,
+"51","127SC","Masonic Membership of the Signers of the Constitution of the U.S.","<p>By Ronald E. Heaton. A study of the 39 individuals who signed the U.S. Constitution and which ones were Masons. Illustrated. Originally published 1962; reprinted 1986. 35 pages</p>","<p>Reprinted 1986, 35 pages. Published as a reference for the Bicentennial of the Constitution.</p>","0.000","1","0","1","0","2014-12-31 12:58:19",," ",,
+"52","142VM","Vistas of Masonry in Language, Symbolism and History","<p>by Pease. Introduces readers to the historic significance of Masonic language and links Masonic ritual to the great moral tradition of Western civilization. #242 </p>","<p>Introduces readers to the historic significance of Masonic language and links Masonic ritual to the great moral tradition of Western civilization. </p>","0.000","1","0","1","0","2014-12-31 13:14:36",," ",,
+"56","330MM","Short Talk Bulletins Bound Set Vol. III 1953-1967","<p><sup>3rd</sup> of 5 projected volumes. Available in two editions:</p>
+<ul>
+<li><strong>Master Mason Edition</strong>: bound in linen fabric with sewn signatures</li>
+<li><strong>Grand Master Edition</strong>: bonded leather bindings, gilt edges, satin book marks</li>
+</ul>
+<p>S. Brent Morris is editor of this Volume, which is perfect for any individual or Masonic library. See sample chapter at <a href=""http://www.msana.com/downloads"">www.msana.com /downloads</a>.</p>","<p>Edited by S. Brent Morris, with a choice of 2 editions</p>","0.000","1","0","0","0","2016-02-13 15:22:29","<p>Book will be published and shipped in late 2015.</p>","Featured",,
+"53","143WH","Washington's Home and Fraternal Life","<p>20 pages crammed with information. Original 1932 edition written by Carl Claudy; reissued 1982. </p>","<p>20 pages crammed with information. Original 1932 edition written by Carl Claudy; reissued 1982. </p>","0.000","1","0","1","0","2014-12-31 13:04:44",,,,
+"54","146WT","Whither are We Traveling?","<p>Dwight L. Smith was one of the most influential and well-read Masonic writers during the middle of the 20<sup>th</sup> Century. He was a Past Grand Master and Past Grand Secretary of the Grand Lodge of Indiana, and a long time Editor of the <em>Indiana Freemason</em>.</p>
+<p>Today, he writes about numerous issues that remain topics for improving Freemasonry today, and his insight is just as valuable as it was 50 years.</p>","<p>Written by Dwight L. Smith, PGM. Today, he writes about numerous issues that remain topics for improving Freemasonry today, and his insight is just as valuable as it was 50 years.</p>","0.000","1","0","1","0","2014-12-31 13:07:54",," ",,
+"59","SPSTBV","STB Holiday Special","<p class=""Default""><strong>STB Vol. II and III Master Mason Edition</strong></p>
+<p class=""Default"">These are the re-edited, re-typeset, and indexed Short Talk Bulletins in bound volumes, each containing approximately 15 years of MSA’s monthly publication, and well-over 700 pages of outstanding reading in each volume.</p>
+<p class=""Default"">These two volumes are still available for sale individually at $98 each (includes shipping), but you can save by buying these two volumes together through the Holiday Special! Volumes II and III, Master Mason Edition, are priced as a packaged Special for $170.00, which includes shipping -- U.S. only. This is a savings of $26.</p>","<p>MSA is offering a special bundle of Volumes II and III (clothbound Master Mason Edition ONLY) of the Short Talk Bulletin Collection.</p>","0.000","0","1","0","0","2016-01-01 10:01:39","<p>Offer ends December 31, 2015.</p>",,,
+"57","139WT","Trestleboard Tidbits","<p>Compiled by Alphonse Cerza, this digest contains a host of interesting tidbits on Freemasonry under such headings as, Capsules of Masonic History, The Nature of Freemasonry, Masonic Symbolism, Masonic Law, and even Masonic Humor.</p>","<p>By Alphonse Cerza. Information, quotations, and excerpts for lodge publications.</p>","0.000","1","0","1","0","2015-05-01 13:44:37",,,,
+"58","SPMSK","Masonic Speakers Kit","<p>The Masonic Speakers Kit includes:</p>
+<ul>
+<li>Dress Up Your Speech: Quotations For Masonic Speakers, 65 pages</li>
+<li>Bible Quotations For Masonic Speakers, 31 pages</li>
+<li>Masonic Vocabulary, 56 pages</li>
+<li>Pocket Masonic Dictionary, 32 pages</li>
+<li>Pocket Encyclopedia Of Masonic Symbols, 58 pages</li>
+<li>Language Landmarks, 20 pages</li>
+<li>And Give Them Proper Instruction, 40 pages</li>
+<li>Trestleboard Tidbits, 67 pages</li>
+</ul>
+<p><br />Total Listed Price (8 @ $4.00 each) $32.00<br />Special Kit Discount -$12.00<br />Masonic Speaker Kit Price $20.00</p>
+<p>Plus shipping and handling</p>","<p>Writing a speech can be a challenging assignment. For many, a Masonic speech can be even more difficult. Let us help you be a successful Masonic speaker!<br /><br />Published by the Masonic Service Association, these digests provide a fount of knowledge to help assure that every speaking opportunity will be successful!<br /><br /></p>","0.000","0","1","1","0","2016-03-25 11:56:01",,,,
+"60","209MM","Masonic Mentoring","<p><em>Masonic Mentoring</em> explains:</p>
+<ul>
+<li>Who should be a mentor,</li>
+<li>What a mentor does,</li>
+<li>What new members expect, and</li>
+<li>Tips for being successful.</li>
+</ul>
+<p>It is perfect to assist any Lodge candidate-counseling program, or any new member orientation effort. It is good for members of a candidate committee, or for any individual who may be working with a new member.</p>","<p>It is perfect to assist any Lodge candidate-counseling program, or any new member orientation effort. It is good for members of a candidate committee, or for any individual who may be working with a new member.</p>","0.000","1","0","1","0","2016-02-13 15:09:02","<p>Thanks to Bert Bouma, of Montana, author, and to the Grand Lodge of Montana, for permission to republish this material.</p>","Popular",,
+"61","340MM","Short Talk Bulletins Bound Set Vol. IV 1968-1982","<p><sup>4th</sup> of 5 projected volumes. Available in two editions:</p>
+<ul>
+<li><strong>Master Mason Edition</strong>: bound in linen fabric with sewn signatures</li>
+<li><strong>Grand Master Edition</strong>: bonded leather bindings, gilt edges, satin book marks</li>
+</ul>
+<p>S. Brent Morris is editor of this Volume, which is perfect for any individual or Masonic library. See sample chapter at <a href=""http://www.msana.com/downloads"">www.msana.com /downloads</a>.</p>","<p>Edited by S. Brent Morris, with a choice of 2 editions</p>","0.000","1","0","0","0","2016-02-13 15:31:04","<p>Estimated publication date is December 2016</p>","Featured",,
+"62","SPRP","Regius & Friends – Oldest Masonic Document, Plus Companion Manuscripts","<p>The Packet includes 2 Digests, 2 historical <em>Short Talk Bulletins</em>, and 2 copies of other saved documents from MSA’s archives, all of which try to explain and translate what our Masonic forefathers considered important.</p>","<p>The Packet includes 2 Digests, 2 historical <em>Short Talk Bulletins</em>, and 2 copies of other saved documents from MSA’s archives, all of which try to explain and translate what our Masonic forefathers considered important.</p>","0.000","1","0","0","0","2016-04-22 19:54:21",,,,
+"63","SPCF","Cornerstones - book and brochure","<p>Perhaps the best description of the Masonic tradition of Cornerstone Laying is found in the book, <strong><em>Cornerstones of Freedom</em></strong>, written by S. Brent Morris, and originally published by the Southern Jurisdiction of Scottish Rite. It contains 195 pages of enjoyable reading and great pictures.</p>
+<p>Also, a brochure, <strong><em>Cornerstones – a Masonic Tradition of Dedication . . . That Makes Sense Today</em></strong>, examines more recent Grand Lodge ceremonies and their significance. The brochure, written by James Tresner for the Grand Lodge of Oklahoma, was subsequently published by MSA’s Masonic Information Center.</p>
+<p>Price includes S&H.</p>","<p>Book by Brent Morris <em>Cornerstones of Freedom</em> and brochure <em>Cornerstones - a Masonic Tradition of Dedication</em> by James Tresner.</p>","0.000","0","0","0","0","2016-10-18 17:27:40","<p>Author Brent Morris will autograph all copies of <strong><em>Cornerstones of Freedom</em></strong> purchased as part of this offer.</p>",,,
+"64","SPSTB","STB 2016 Holiday Special","<p>MSA is offering a special bundle of Volumes II, III, and IV (clothbound Master Mason Edition ONLY) of the Short Talk Bulletin Collection.</p>
+<p>These are the re-edited, re-typeset, and indexed Short Talk Bulletins in bound volumes, each containing approximately 15 years of MSA’s monthly publication, and well-over 700 pages of outstanding reading in each volume.</p>
+<p>All three volumes are still available for sale for $98 each (including shipping). But you can save by buying two or three volumes together through this Holiday Special!</p>
+<p>Buy any 3 Volumes for the special price of $250 – a savings of $44, or buy any 2 Volumes for $170 – a savings of $26.</p>","<p>Holiday Special! MSA is offering a special bundle of Master Mason Edition only bound Short Talk Bulletins. Buy 2 or 3 and save.</p>","0.000","1","0","0","0","2016-10-17 13:34:52","<p>Offer ends December 31, 2016</p>",,,
diff --git a/perl/cw_skus.csv b/perl/cw_skus.csv new file mode 100644 index 0000000..90b2508 --- /dev/null +++ b/perl/cw_skus.csv @@ -0,0 +1,99 @@ +"1","BRO2012","1","13.5","1","733","1","1.000","0","0",,,NULL,"3"
+"2","STBSUB","2","12","0","9604","1","1.000","0","0",,,NULL,"3"
+"3","TEST1","3","0","0","111111","0","1.000","0","0",,,NULL,"3"
+"4","STBSet","4","432","2","9988","1","1.000","0","0",,,,"3"
+"5","BR20110","5","0.1","0.1","10000","1","1.000","0","0",,,NULL,"3"
+"6","BR120","6","0.1","0","6453","1","1.000","0","0",,,NULL,"3"
+"7","BR130","7","13.5","0","9720","1","1.000","0","0",,,NULL,"3"
+"8","BR-20110","8","0.1","0","92900","1","1.000","0","0",,,NULL,"3"
+"9","BL203","9","0.6","0","0","1","1.000","0","0",,,NULL,"3"
+"10","BL202","10","0.5","0","9170","1","1.000","0","0",,,NULL,"3"
+"11","BL203Lot","11","30","0","984","1","1.000","0","0",,,NULL,"3"
+"12","DL-AboutTime","12","0","0","10000","1","1.000","0","0",,"06cbaf9e9ad690b4b4cb421f750f1b4d.pdf",NULL,"3"
+"13","DON-GRENV","13","1","0","10000","1","1.000","0","0",,,NULL,"3"
+"14","BL202Lot","14","25","0","9875","1","1.000","0","0",,,,"3"
+"15","DIG188","15","3.5","0","9804","1","1.000","0","0",,,NULL,"3"
+"16","DIG122","16","3.5","0","0","1","1.000","0","0",,,NULL,"3"
+"17","DIG242","17","3.5","0","9777","1","1.000","0","0",,,NULL,"3"
+"18","DIG259","19","3.5","0","9842","1","1.000","0","0",,,NULL,"3"
+"19","DIG243","18","3.5","0","9763","1","1.000","0","0",,,NULL,"3"
+"20","STBMM","20","90","0","4778","1","1.000","0","0",,,,"3"
+"21","STBGM","20","150","0","0","1","1.000","0","0",,,,"3"
+"22","DIG-192","21","3.5","0","99709","1","1.000","0","0",NULL,NULL,NULL,"0"
+"23","DIG222","22","3.5","0","0","1","1.000","0","0",NULL,NULL,NULL,"0"
+"24","DIG238","23","9","0","9920","1","1.000","0","0",NULL,NULL,NULL,"0"
+"26","ONS1","25","5","0","9600","1","1.000","0","0",NULL,NULL,NULL,"0"
+"27","STBVOL2","26","150","0","9965","1","1.000","0","0",NULL,NULL,NULL,"0"
+"28","STBVOLMM","26","90","0","9875","1","1.000","0","0",NULL,NULL,NULL,"0"
+"32","BRO-711","30","14","0","9980","1","1.000","0","0",NULL,NULL,NULL,"0"
+"29","DIG235","27","3.5","0","9996","1","1.000","0","0",NULL,NULL,NULL,"0"
+"30","DIG264","28","3.5","0","9996","1","1.000","0","0",NULL,NULL,NULL,"0"
+"31","DIG270","29","3.5","0","9943","1","1.000","0","0",NULL,NULL,NULL,"0"
+"33","BRO-711-100","30","27","0","9995","1","1.000","0","0",NULL,NULL,NULL,"0"
+"34","DIG-290","31","5.5","0","9892","1","1.000","0","0",NULL,NULL,NULL,"0"
+"35","BL-205","32","0.5","0","9938","1","1.000","0","0",NULL,NULL,NULL,"0"
+"36","BL205-50","33","15","0","9996","1","1.000","0","0",NULL,NULL,NULL,"0"
+"37","OLPackage","34","20","0","9999","1","1.000","0","0",NULL,NULL,NULL,"0"
+"38","SP-01","35","20","0","9650","1","1.000","0","0",NULL,NULL,NULL,"0"
+"39","310SB","36","441.6","0","9996","1","1.000","0","0",NULL,NULL,NULL,"0"
+"40","301MM","37","98","0","9997","1","1.000","0","0",NULL,NULL,NULL,"0"
+"44","303MM","38","98","0","9973","1","1.000","0","0",NULL,NULL,NULL,"0"
+"43","304GM","38","158","0","9986","1","1.000","0","0",NULL,NULL,NULL,"0"
+"45","203WA","39","14","0","9917","1","1.000","0","0",NULL,NULL,NULL,"0"
+"46","203C","39","27","0","9916","1","2.000","0","0",NULL,NULL,NULL,"0"
+"47","203D","39","125","0","9984","1","3.000","0","0",NULL,NULL,NULL,"0"
+"48","203M","39","225","0","9994","1","4.000","0","0",NULL,NULL,NULL,"0"
+"49","204WO","40","14","0","9937","1","1.000","0","0",NULL,NULL,NULL,"0"
+"50","204C","40","27","0","9928","1","2.000","0","0",NULL,NULL,NULL,"0"
+"51","204D","40","125","0","0","1","3.000","0","0",NULL,NULL,NULL,"0"
+"52","204M","40","225","0","9993","1","4.000","0","0",NULL,NULL,NULL,"0"
+"53","205CO","41","0.5","0","9972","1","1.000","0","0",NULL,NULL,NULL,"0"
+"54","205L","41","14","0","9992","1","2.000","0","0",NULL,NULL,NULL,"0"
+"55","205C","41","27","0","9996","1","3.000","0","0",NULL,NULL,NULL,"0"
+"56","205D","41","125","0","10000","1","4.000","0","0",NULL,NULL,NULL,"0"
+"57","304M","41","225","0","10000","1","4.000","0","0",NULL,NULL,NULL,"0"
+"58","202FA","42","0.1","0","581","1","1.000","0","0",NULL,NULL,NULL,"0"
+"59","201RC","43","0.1","0","7685","1","1.000","0","0",NULL,NULL,NULL,"0"
+"60","175SB","44","12","0","9403","1","1.000","0","0",NULL,NULL,NULL,"0"
+"61","208WM","45","0.5","0","9901","1","1.000","0","0",NULL,NULL,NULL,"0"
+"62","208L","45","14","0","9946","1","2.000","0","0",NULL,NULL,NULL,"0"
+"63","208C","45","27","0","9959","1","3.000","0","0",NULL,NULL,NULL,"0"
+"64","208D","45","125","0","9999","1","4.000","0","0",NULL,NULL,NULL,"0"
+"65","208M","45","225","0","10000","1","5.000","0","0",NULL,NULL,NULL,"0"
+"66","107BQ","46","4","0","9977","1","1.000","0","0",NULL,NULL,NULL,"0"
+"67","120FL","47","6","0","9612","1","1.000","0","0",NULL,NULL,NULL,"0"
+"68","132FF","48","9","0","9973","1","1.000","0","0",NULL,NULL,NULL,"0"
+"69","153OH","49","4","0","9816","1","1.000","0","0",NULL,NULL,NULL,"0"
+"70","159FL","50","1","0","9934","1","1.000","0","0",NULL,NULL,NULL,"0"
+"71","159L","50","14","0","9991","1","1.000","0","0",NULL,NULL,NULL,"0"
+"72","159C","50","27","0","9999","1","1.000","0","0",NULL,NULL,NULL,"0"
+"73","127SC","51","4","0","9974","1","1.000","0","0",NULL,NULL,NULL,"0"
+"74","127SC-50","51","120","0","10000","1","1.000","0","0",NULL,NULL,NULL,"0"
+"75","142VM","52","4","0","9979","1","1.000","0","0",NULL,NULL,NULL,"0"
+"76","142VM-50","52","120","0","10000","1","1.000","0","0",NULL,NULL,NULL,"0"
+"77","143WH","53","4","0","9979","1","1.000","0","0",NULL,NULL,NULL,"0"
+"78","143WH-50","53","120","0","10000","1","1.000","0","0",NULL,NULL,NULL,"0"
+"79","146WT","54","4","0","9977","1","1.000","0","0",NULL,NULL,NULL,"0"
+"80","146WT-50","54","120","0","10000","1","1.000","0","0",NULL,NULL,NULL,"0"
+"81","107BQ-50","46","120","0","10000","1","1.000","0","0",NULL,NULL,NULL,"0"
+"82","147CT","55","4","0","9983","1","1.000","0","0",NULL,NULL,NULL,"0"
+"83","147CT-50","55","120","0","10000","1","1.000","0","0",NULL,NULL,NULL,"0"
+"84","331GM","56","158","0","9956","1","1.000","0","0",NULL,NULL,NULL,"0"
+"85","330MM","56","98","0","9868","1","1.000","0","0",NULL,NULL,NULL,"0"
+"87","139-WT","57","4","0","9929","1","1.000","0","0",NULL,NULL,NULL,"0"
+"88","139WT-50","57","120","0","10000","1","1.000","0","0",NULL,NULL,NULL,"0"
+"89","SPMSK-01","58","20","0","9804","1","1.000","0","0",NULL,NULL,NULL,"0"
+"90","SPSTBV","59","170","0","9981","1","1.000","0","0",NULL,NULL,NULL,"0"
+"91","209MM","60","0.75","0","9852","1","1.000","0","0",NULL,NULL,NULL,"0"
+"98","209D","60","225","0","9999","1","5.000","0","0",NULL,NULL,NULL,"0"
+"93","209X","60","16","0","978","1","2.000","0","0",NULL,NULL,NULL,"0"
+"97","209C","60","55","0","9997","1","4.000","0","0",NULL,NULL,NULL,"0"
+"96","209L","60","30","0","9990","1","3.000","0","0",NULL,NULL,NULL,"0"
+"99","340MM","61","98","0","9880","1","2.000","0","0",NULL,NULL,NULL,"0"
+"100","341GM","61","158","0","9956","1","1.000","0","0",NULL,NULL,NULL,"0"
+"101","SPRP","62","15","0","9903","1","1.000","0","0",NULL,NULL,NULL,"0"
+"102","SPCF","63","12","0","9942","1","1.000","0","0",NULL,NULL,NULL,"0"
+"104","Volumes 2 & 3","64","170","0","10000","1","1.000","0","0",NULL,NULL,NULL,"0"
+"105","Volumes 2 & 4","64","170","0","10000","1","2.000","0","0",NULL,NULL,NULL,"0"
+"106","Volumes 3 & 4","64","170","0","9998","1","3.000","0","0",NULL,NULL,NULL,"0"
+"107","Volumes 2, 3 & 4","64","250","0","9996","1","4.000","0","0",NULL,NULL,NULL,"0"
|
