Merge remote-tracking branch 'rob/CRM-16367-46' into CRM-16367
authorkurund <kurund@civicrm.org>
Sun, 10 May 2015 10:37:03 +0000 (06:37 -0400)
committerkurund <kurund@civicrm.org>
Sun, 10 May 2015 10:37:03 +0000 (06:37 -0400)
Conflicts:
CRM/Upgrade/Incremental/sql/4.6.3.mysql.tpl
sql/civicrm_generated.mysql

1  2 
CRM/Upgrade/Incremental/sql/4.6.3.mysql.tpl
sql/civicrm_generated.mysql

index cc24ad9930b2f78ae180f29fd837e0f2c533a74d,e486339c5707d3686af6ba5e536076b3d1c629bb..433d9561fbb4107566ee8cc4b4686c7fd4566ca2
@@@ -1,34 -1,33 +1,66 @@@
  {* file to handle db changes in 4.6.3 during upgrade *}
 +-- CRM-16307 fix CRM-15578 typo - Require access CiviMail permission for A/B Testing feature
 +UPDATE civicrm_navigation
 +SET permission = 'access CiviMail', permission_operator = ''
 +WHERE name = 'New A/B Test' OR name = 'Manage A/B Tests';
 +
 +--CRM-16320
 +{include file='../CRM/Upgrade/4.6.3.msg_template/civicrm_msg_template.tpl'}
 +
 +-- CRM-16452 Missing administrative divisions for Georgia
 +SELECT @country_id := id from civicrm_country where name = 'Georgia' AND iso_code = 'GE';
 +INSERT INTO civicrm_state_province (country_id, abbreviation, name)
 +  VALUES
 +    (@country_id, "AB", "Abkhazia"),
 +    (@country_id, "AJ", "Adjara"),
 +    (@country_id, "TB", "Tbilisi"),
 +    (@country_id, "GU", "Guria"),
 +    (@country_id, "IM", "Imereti"),
 +    (@country_id, "KA", "Kakheti"),
 +    (@country_id, "KK", "Kvemo Kartli"),
 +    (@country_id, "MM", "Mtskheta-Mtianeti"),
 +    (@country_id, "RL", "Racha-Lechkhumi and Kvemo Svaneti"),
 +    (@country_id, "SZ", "Samegrelo-Zemo Svaneti"),
 +    (@country_id, "SJ", "Samtskhe-Javakheti"),
 +    (@country_id, "SK", "Shida Kartli");
 +
 +--CRM-16391 and CRM-16392
 +UPDATE civicrm_uf_field
 +SET {localize field="label"}label = '{ts escape="sql"}Financial Type{/ts}'{/localize}
 +WHERE field_type = 'Contribution' AND field_name='financial_type';
 +
 +UPDATE civicrm_uf_field
 +SET {localize field="label"}label = '{ts escape="sql"}Membership Type{/ts}'{/localize}
 +WHERE field_type = 'Membership' AND field_name='membership_type';
+ --  CRM-16367: adding the shared payment token table
+ CREATE TABLE IF NOT EXISTS `civicrm_payment_token` (
+      `id` int unsigned NOT NULL AUTO_INCREMENT  COMMENT 'Payment Token ID',
+      `contact_id` int unsigned NOT NULL   COMMENT 'FK to Contact ID for the owner of the token',
+      `payment_processor_id` int unsigned NOT NULL   ,
+      `token` varchar(255) NOT NULL   COMMENT 'Externally provided token string',
+      `created_date` timestamp   DEFAULT CURRENT_TIMESTAMP COMMENT 'Date created',
+      `created_id` int unsigned    COMMENT 'Contact ID of token creator',
+      `expiry_date` datetime    COMMENT 'Date this token expires',
+      `email` varchar(255)    COMMENT 'Email at the time of token creation. Useful for fraud forensics',
+      `billing_first_name` varchar(255)    COMMENT 'Billing first name at the time of token creation. Useful for fraud forensics',
+      `billing_middle_name` varchar(255)    COMMENT 'Billing middle name at the time of token creation. Useful for fraud forensics',
+      `billing_last_name` varchar(255)    COMMENT 'Billing last name at the time of token creation. Useful for fraud forensics',
+      `masked_account_number` varchar(255)    COMMENT 'Holds the part of the card number or account details that may be retained or displayed',
+      `ip_address` varchar(255)    COMMENT 'IP used when creating the token. Useful for fraud forensics' ,
+     PRIMARY KEY ( `id` ),
+     CONSTRAINT FK_civicrm_payment_token_contact_id FOREIGN KEY (`contact_id`)
+       REFERENCES `civicrm_contact`(`id`) ON DELETE CASCADE,
+     CONSTRAINT FK_civicrm_payment_token_payment_processor_id FOREIGN KEY (`payment_processor_id`)
+       REFERENCES `civicrm_payment_processor`(`id`) ON DELETE RESTRICT,
+     CONSTRAINT FK_civicrm_payment_token_created_id FOREIGN KEY (`created_id`)
+       REFERENCES `civicrm_contact`(`id`) ON DELETE SET NULL
+ )
+ ENGINE=InnoDB DEFAULT
+ CHARACTER SET utf8
+ COLLATE utf8_unicode_ci;
+ --  CRM-16367: adding a reference to the token table to the recurring contributions table.
+ ALTER TABLE civicrm_contribution_recur
+   ADD COLUMN `payment_token_id` int(10) unsigned DEFAULT NULL COMMENT 'Optionally used to store a link to a payment token used for this recurring contribution.',
+   ADD CONSTRAINT `FK_civicrm_contribution_recur_payment_token_id` FOREIGN KEY (`payment_token_id`) REFERENCES `civicrm_payment_token` (`id`) ON DELETE SET NULL;
index 35fe9e0638d0b85858cbb0c80c2770fe7a9decec,c5ca926f62b75989378e055395def3927df07ef8..2dd334159320e224932fa9733165933a4ba82a7f
@@@ -1,8 -1,8 +1,8 @@@
- -- MySQL dump 10.13  Distrib 5.5.41, for debian-linux-gnu (x86_64)
 --- MySQL dump 10.13  Distrib 5.6.19, for debian-linux-gnu (x86_64)
++-- MySQL dump 10.13  Distrib 5.5.38, for osx10.6 (i386)
  --
- -- Host: localhost    Database: civimain_civi
 --- Host: 127.0.0.1    Database: masterblas_amh3f
++-- Host: localhost    Database: d46civi_67wom
  -- ------------------------------------------------------
- -- Server version     5.5.41-0ubuntu0.14.04.1
 --- Server version     5.6.19-0ubuntu0.14.04.1
++-- Server version     5.5.38
  
  /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
@@@ -87,7 -87,7 +87,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_activity` WRITE;
  /*!40000 ALTER TABLE `civicrm_activity` DISABLE KEYS */;
- INSERT INTO `civicrm_activity` (`id`, `source_record_id`, `activity_type_id`, `subject`, `activity_date_time`, `duration`, `location`, `phone_id`, `phone_number`, `details`, `status_id`, `priority_id`, `parent_id`, `is_test`, `medium_id`, `is_auto`, `relationship_id`, `is_current_revision`, `original_id`, `result`, `is_deleted`, `campaign_id`, `engagement_level`, `weight`) VALUES (1,NULL,9,'Subject for Tell a Friend','2014-11-29 06:05:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(2,NULL,10,'Subject for Pledge Acknowledgment','2014-11-18 05:46:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(3,NULL,9,'Subject for Tell a Friend','2014-10-06 12:55:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(4,NULL,9,'Subject for Tell a Friend','2014-12-07 02:49:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(5,NULL,9,'Subject for Tell a Friend','2014-12-03 04:46:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(6,NULL,9,'Subject for Tell a Friend','2015-01-04 07:23:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(7,NULL,9,'Subject for Tell a Friend','2014-08-29 04:12:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(8,NULL,9,'Subject for Tell a Friend','2014-06-15 04:19:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(9,NULL,9,'Subject for Tell a Friend','2015-04-01 10:55:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(10,NULL,10,'Subject for Pledge Acknowledgment','2014-09-08 12:46:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(11,NULL,10,'Subject for Pledge Acknowledgment','2015-01-16 03:08:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(12,NULL,10,'Subject for Pledge Acknowledgment','2014-10-21 06:21:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(13,NULL,10,'Subject for Pledge Acknowledgment','2015-03-11 07:19:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(14,NULL,10,'Subject for Pledge Acknowledgment','2014-07-30 01:29:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(15,NULL,9,'Subject for Tell a Friend','2014-05-28 04:50:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(16,NULL,9,'Subject for Tell a Friend','2014-06-26 05:15:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(17,NULL,10,'Subject for Pledge Acknowledgment','2014-05-31 11:01:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(18,NULL,10,'Subject for Pledge Acknowledgment','2014-06-02 12:19:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(19,NULL,9,'Subject for Tell a Friend','2014-11-08 10:24:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(20,NULL,10,'Subject for Pledge Acknowledgment','2014-11-10 07:44:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(21,NULL,9,'Subject for Tell a Friend','2014-09-07 03:26:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(22,NULL,10,'Subject for Pledge Acknowledgment','2014-12-03 04:48:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(23,NULL,9,'Subject for Tell a Friend','2014-09-20 02:30:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(24,NULL,9,'Subject for Tell a Friend','2014-10-31 11:29:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(25,NULL,9,'Subject for Tell a Friend','2014-05-23 03:26:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(26,NULL,10,'Subject for Pledge Acknowledgment','2014-10-12 04:49:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(27,NULL,9,'Subject for Tell a Friend','2014-09-08 12:24:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(28,NULL,10,'Subject for Pledge Acknowledgment','2014-06-10 02:45:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(29,NULL,9,'Subject for Tell a Friend','2015-01-30 05:35:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(30,NULL,10,'Subject for Pledge Acknowledgment','2014-12-04 11:42:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(31,NULL,9,'Subject for Tell a Friend','2014-09-09 03:57:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(32,NULL,9,'Subject for Tell a Friend','2014-08-13 09:58:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(33,NULL,10,'Subject for Pledge Acknowledgment','2014-08-09 10:31:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(34,NULL,10,'Subject for Pledge Acknowledgment','2014-11-16 11:43:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(35,NULL,9,'Subject for Tell a Friend','2014-08-30 07:46:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(36,NULL,10,'Subject for Pledge Acknowledgment','2014-08-01 09:39:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(37,NULL,9,'Subject for Tell a Friend','2015-04-27 08:18:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(38,NULL,10,'Subject for Pledge Acknowledgment','2014-06-19 12:50:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(39,NULL,9,'Subject for Tell a Friend','2014-09-26 11:41:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(40,NULL,9,'Subject for Tell a Friend','2014-11-16 12:40:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(41,NULL,9,'Subject for Tell a Friend','2015-04-07 01:43:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(42,NULL,10,'Subject for Pledge Acknowledgment','2014-08-13 08:13:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(43,NULL,10,'Subject for Pledge Acknowledgment','2015-01-29 02:56:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(44,NULL,10,'Subject for Pledge Acknowledgment','2014-12-27 09:15:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(45,NULL,9,'Subject for Tell a Friend','2014-10-30 05:58:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(46,NULL,10,'Subject for Pledge Acknowledgment','2014-05-27 05:51:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(47,NULL,10,'Subject for Pledge Acknowledgment','2014-09-01 06:44:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(48,NULL,9,'Subject for Tell a Friend','2014-07-06 07:48:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(49,NULL,10,'Subject for Pledge Acknowledgment','2014-07-02 07:14:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(50,NULL,10,'Subject for Pledge Acknowledgment','2015-01-02 06:13:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(51,NULL,10,'Subject for Pledge Acknowledgment','2015-02-23 05:40:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(52,NULL,9,'Subject for Tell a Friend','2014-07-08 07:20:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(53,NULL,9,'Subject for Tell a Friend','2014-05-20 11:47:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(54,NULL,10,'Subject for Pledge Acknowledgment','2014-06-04 01:34:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(55,NULL,10,'Subject for Pledge Acknowledgment','2015-01-04 08:41:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(56,NULL,10,'Subject for Pledge Acknowledgment','2014-07-08 08:35:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(57,NULL,10,'Subject for Pledge Acknowledgment','2014-09-08 01:44:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(58,NULL,9,'Subject for Tell a Friend','2015-02-21 01:22:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(59,NULL,10,'Subject for Pledge Acknowledgment','2014-08-05 02:17:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(60,NULL,9,'Subject for Tell a Friend','2014-07-09 02:53:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(61,NULL,10,'Subject for Pledge Acknowledgment','2014-06-29 03:29:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(62,NULL,9,'Subject for Tell a Friend','2014-11-10 04:32:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(63,NULL,9,'Subject for Tell a Friend','2015-04-14 01:09:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(64,NULL,10,'Subject for Pledge Acknowledgment','2014-08-09 12:45:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(65,NULL,9,'Subject for Tell a Friend','2014-10-19 10:40:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(66,NULL,9,'Subject for Tell a Friend','2015-02-05 05:21:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(67,NULL,9,'Subject for Tell a Friend','2014-09-05 08:20:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(68,NULL,9,'Subject for Tell a Friend','2014-12-30 02:23:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(69,NULL,9,'Subject for Tell a Friend','2014-07-05 12:53:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(70,NULL,9,'Subject for Tell a Friend','2014-10-05 03:41:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(71,NULL,9,'Subject for Tell a Friend','2015-03-01 02:36:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(72,NULL,9,'Subject for Tell a Friend','2014-09-25 03:06:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(73,NULL,9,'Subject for Tell a Friend','2015-01-08 06:06:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(74,NULL,10,'Subject for Pledge Acknowledgment','2015-02-13 05:34:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(75,NULL,10,'Subject for Pledge Acknowledgment','2014-12-06 01:47:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(76,NULL,10,'Subject for Pledge Acknowledgment','2014-10-30 04:49:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(77,NULL,10,'Subject for Pledge Acknowledgment','2014-12-10 12:24:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(78,NULL,9,'Subject for Tell a Friend','2014-06-01 10:23:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(79,NULL,9,'Subject for Tell a Friend','2015-04-04 09:59:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(80,NULL,10,'Subject for Pledge Acknowledgment','2014-05-23 08:53:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(81,NULL,10,'Subject for Pledge Acknowledgment','2014-12-20 02:23:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(82,NULL,9,'Subject for Tell a Friend','2015-04-21 11:55:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(83,NULL,10,'Subject for Pledge Acknowledgment','2014-11-17 11:57:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(84,NULL,9,'Subject for Tell a Friend','2014-11-13 02:00:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(85,NULL,10,'Subject for Pledge Acknowledgment','2014-10-24 05:25:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(86,NULL,9,'Subject for Tell a Friend','2014-12-17 06:53:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(87,NULL,9,'Subject for Tell a Friend','2014-09-26 09:52:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(88,NULL,10,'Subject for Pledge Acknowledgment','2014-07-04 03:52:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(89,NULL,10,'Subject for Pledge Acknowledgment','2014-12-25 09:37:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(90,NULL,10,'Subject for Pledge Acknowledgment','2014-08-16 01:52:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(91,NULL,9,'Subject for Tell a Friend','2014-05-10 02:30:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(92,NULL,10,'Subject for Pledge Acknowledgment','2014-06-15 01:13:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(93,NULL,10,'Subject for Pledge Acknowledgment','2015-01-20 04:04:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(94,NULL,9,'Subject for Tell a Friend','2014-06-29 03:29:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(95,NULL,9,'Subject for Tell a Friend','2015-04-20 01:43:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(96,NULL,9,'Subject for Tell a Friend','2014-05-23 07:42:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(97,NULL,10,'Subject for Pledge Acknowledgment','2014-06-25 03:28:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(98,NULL,10,'Subject for Pledge Acknowledgment','2014-05-19 02:50:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(99,NULL,9,'Subject for Tell a Friend','2015-02-24 07:41:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(100,NULL,9,'Subject for Tell a Friend','2014-09-27 01:26:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(101,NULL,9,'Subject for Tell a Friend','2014-08-28 01:33:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(102,NULL,10,'Subject for Pledge Acknowledgment','2015-02-25 03:18:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(103,NULL,9,'Subject for Tell a Friend','2014-10-07 04:53:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(104,NULL,9,'Subject for Tell a Friend','2014-08-29 09:03:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(105,NULL,9,'Subject for Tell a Friend','2015-04-08 06:02:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(106,NULL,9,'Subject for Tell a Friend','2014-06-05 04:53:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(107,NULL,10,'Subject for Pledge Acknowledgment','2014-10-09 01:24:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(108,NULL,10,'Subject for Pledge Acknowledgment','2014-11-13 04:24:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(109,NULL,9,'Subject for Tell a Friend','2015-03-31 07:12:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(110,NULL,9,'Subject for Tell a Friend','2015-01-04 07:18:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(111,NULL,9,'Subject for Tell a Friend','2014-12-25 12:57:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(112,NULL,9,'Subject for Tell a Friend','2015-02-11 03:23:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(113,NULL,10,'Subject for Pledge Acknowledgment','2015-05-03 08:40:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(114,NULL,9,'Subject for Tell a Friend','2015-05-06 04:52:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(115,NULL,10,'Subject for Pledge Acknowledgment','2014-05-27 10:31:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(116,NULL,9,'Subject for Tell a Friend','2015-04-23 05:21:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(117,NULL,10,'Subject for Pledge Acknowledgment','2015-03-20 10:08:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(118,NULL,9,'Subject for Tell a Friend','2014-12-13 03:36:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(119,NULL,10,'Subject for Pledge Acknowledgment','2014-05-14 12:13:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(120,NULL,10,'Subject for Pledge Acknowledgment','2014-12-14 04:34:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(121,NULL,9,'Subject for Tell a Friend','2015-05-07 01:58:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(122,NULL,9,'Subject for Tell a Friend','2014-06-15 06:00:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(123,NULL,10,'Subject for Pledge Acknowledgment','2014-10-06 07:12:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(124,NULL,10,'Subject for Pledge Acknowledgment','2014-06-07 08:10:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(125,NULL,10,'Subject for Pledge Acknowledgment','2014-05-11 09:02:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(126,NULL,9,'Subject for Tell a Friend','2015-02-10 08:26:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(127,NULL,9,'Subject for Tell a Friend','2014-06-22 05:51:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(128,NULL,10,'Subject for Pledge Acknowledgment','2015-04-01 07:18:32',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(129,NULL,10,'Subject for Pledge Acknowledgment','2014-08-05 04:55:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(130,NULL,10,'Subject for Pledge Acknowledgment','2015-01-13 01:57:45',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(131,NULL,9,'Subject for Tell a Friend','2014-07-01 11:44:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(132,NULL,9,'Subject for Tell a Friend','2015-04-18 11:48:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(133,NULL,10,'Subject for Pledge Acknowledgment','2015-04-10 04:53:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(134,NULL,9,'Subject for Tell a Friend','2014-06-23 11:08:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(135,NULL,9,'Subject for Tell a Friend','2015-03-30 01:54:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(136,NULL,10,'Subject for Pledge Acknowledgment','2014-08-01 11:12:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(137,NULL,9,'Subject for Tell a Friend','2015-03-31 12:44:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(138,NULL,10,'Subject for Pledge Acknowledgment','2014-06-01 05:11:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(139,NULL,10,'Subject for Pledge Acknowledgment','2015-05-05 09:09:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(140,NULL,9,'Subject for Tell a Friend','2015-02-02 05:21:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(141,NULL,9,'Subject for Tell a Friend','2014-08-09 11:34:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(142,NULL,9,'Subject for Tell a Friend','2014-08-31 01:22:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(143,NULL,10,'Subject for Pledge Acknowledgment','2014-07-13 03:15:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(144,NULL,10,'Subject for Pledge Acknowledgment','2014-11-15 08:04:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(145,NULL,9,'Subject for Tell a Friend','2014-11-19 04:28:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(146,NULL,10,'Subject for Pledge Acknowledgment','2014-07-31 05:20:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(147,NULL,10,'Subject for Pledge Acknowledgment','2015-03-22 11:00:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(148,NULL,10,'Subject for Pledge Acknowledgment','2015-02-08 06:43:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(149,NULL,10,'Subject for Pledge Acknowledgment','2014-09-01 04:47:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(150,NULL,9,'Subject for Tell a Friend','2014-10-08 01:43:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(151,NULL,9,'Subject for Tell a Friend','2014-11-27 09:07:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(152,NULL,9,'Subject for Tell a Friend','2014-08-05 10:09:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(153,NULL,9,'Subject for Tell a Friend','2014-06-30 07:06:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(154,NULL,9,'Subject for Tell a Friend','2014-08-21 05:49:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(155,NULL,10,'Subject for Pledge Acknowledgment','2014-09-13 04:27:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(156,NULL,9,'Subject for Tell a Friend','2015-03-02 01:05:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(157,NULL,10,'Subject for Pledge Acknowledgment','2015-02-04 02:11:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(158,NULL,9,'Subject for Tell a Friend','2014-11-25 12:16:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(159,NULL,9,'Subject for Tell a Friend','2015-03-29 11:19:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(160,NULL,10,'Subject for Pledge Acknowledgment','2014-10-01 04:38:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(161,NULL,9,'Subject for Tell a Friend','2015-01-10 04:56:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(162,NULL,9,'Subject for Tell a Friend','2014-06-08 07:47:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(163,NULL,10,'Subject for Pledge Acknowledgment','2015-01-16 10:04:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(164,NULL,10,'Subject for Pledge Acknowledgment','2015-01-31 08:43:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(165,NULL,9,'Subject for Tell a Friend','2014-07-10 06:33:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(166,NULL,10,'Subject for Pledge Acknowledgment','2014-07-06 01:13:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(167,NULL,10,'Subject for Pledge Acknowledgment','2015-04-09 05:43:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(168,NULL,9,'Subject for Tell a Friend','2014-05-15 02:58:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(169,NULL,10,'Subject for Pledge Acknowledgment','2015-04-06 07:50:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(170,NULL,10,'Subject for Pledge Acknowledgment','2014-05-18 05:45:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(171,NULL,10,'Subject for Pledge Acknowledgment','2014-12-09 12:37:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(172,NULL,10,'Subject for Pledge Acknowledgment','2015-02-24 03:57:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(173,NULL,9,'Subject for Tell a Friend','2014-09-09 02:06:52',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(174,NULL,10,'Subject for Pledge Acknowledgment','2014-11-24 05:09:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(175,NULL,9,'Subject for Tell a Friend','2014-10-30 09:25:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(176,NULL,9,'Subject for Tell a Friend','2015-04-30 01:13:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(177,NULL,9,'Subject for Tell a Friend','2015-04-04 08:11:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(178,NULL,9,'Subject for Tell a Friend','2015-05-04 10:24:13',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(179,NULL,10,'Subject for Pledge Acknowledgment','2014-08-17 10:55:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(180,NULL,10,'Subject for Pledge Acknowledgment','2014-07-07 10:40:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(181,NULL,10,'Subject for Pledge Acknowledgment','2014-07-15 10:31:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(182,NULL,10,'Subject for Pledge Acknowledgment','2015-05-04 09:02:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(183,NULL,10,'Subject for Pledge Acknowledgment','2014-06-05 09:02:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(184,NULL,9,'Subject for Tell a Friend','2015-04-18 09:04:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(185,NULL,9,'Subject for Tell a Friend','2014-12-01 10:48:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(186,NULL,9,'Subject for Tell a Friend','2015-02-15 09:39:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(187,NULL,10,'Subject for Pledge Acknowledgment','2015-01-27 12:31:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(188,NULL,10,'Subject for Pledge Acknowledgment','2014-09-10 04:17:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(189,NULL,9,'Subject for Tell a Friend','2015-02-08 10:23:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(190,NULL,9,'Subject for Tell a Friend','2015-02-18 08:26:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(191,NULL,10,'Subject for Pledge Acknowledgment','2014-10-27 11:49:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(192,NULL,9,'Subject for Tell a Friend','2015-02-01 05:36:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(193,NULL,9,'Subject for Tell a Friend','2014-08-08 01:14:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(194,NULL,9,'Subject for Tell a Friend','2014-12-04 05:37:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(195,NULL,10,'Subject for Pledge Acknowledgment','2015-03-10 11:22:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(196,NULL,9,'Subject for Tell a Friend','2014-11-08 10:47:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(197,NULL,10,'Subject for Pledge Acknowledgment','2014-09-22 12:54:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(198,NULL,9,'Subject for Tell a Friend','2014-12-22 08:42:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(199,NULL,9,'Subject for Tell a Friend','2014-11-23 03:27:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(200,NULL,9,'Subject for Tell a Friend','2014-08-01 03:43:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(201,NULL,10,'Subject for Pledge Acknowledgment','2014-11-27 09:27:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(202,NULL,10,'Subject for Pledge Acknowledgment','2015-04-16 08:58:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(203,NULL,10,'Subject for Pledge Acknowledgment','2014-05-18 05:07:08',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(204,NULL,9,'Subject for Tell a Friend','2015-01-05 02:39:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(205,NULL,9,'Subject for Tell a Friend','2015-04-13 02:13:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(206,NULL,10,'Subject for Pledge Acknowledgment','2015-04-04 10:02:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(207,NULL,10,'Subject for Pledge Acknowledgment','2014-12-08 12:40:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(208,NULL,10,'Subject for Pledge Acknowledgment','2014-12-09 07:39:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(209,NULL,10,'Subject for Pledge Acknowledgment','2015-02-06 10:14:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(210,NULL,9,'Subject for Tell a Friend','2014-10-19 11:33:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(211,NULL,10,'Subject for Pledge Acknowledgment','2014-09-16 06:54:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(212,NULL,10,'Subject for Pledge Acknowledgment','2014-06-23 09:23:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(213,NULL,10,'Subject for Pledge Acknowledgment','2015-04-08 01:35:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(214,NULL,10,'Subject for Pledge Acknowledgment','2015-01-15 03:54:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(215,NULL,9,'Subject for Tell a Friend','2014-12-24 07:50:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(216,NULL,10,'Subject for Pledge Acknowledgment','2015-04-25 10:10:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(217,NULL,10,'Subject for Pledge Acknowledgment','2014-10-30 08:20:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(218,NULL,9,'Subject for Tell a Friend','2015-02-04 08:07:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(219,NULL,9,'Subject for Tell a Friend','2014-12-03 04:23:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(220,NULL,10,'Subject for Pledge Acknowledgment','2014-06-08 06:39:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(221,NULL,10,'Subject for Pledge Acknowledgment','2015-05-06 07:51:27',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(222,NULL,9,'Subject for Tell a Friend','2014-12-08 04:30:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(223,NULL,9,'Subject for Tell a Friend','2014-11-26 09:55:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(224,NULL,9,'Subject for Tell a Friend','2015-03-16 10:47:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(225,NULL,9,'Subject for Tell a Friend','2014-11-20 04:34:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(226,NULL,10,'Subject for Pledge Acknowledgment','2014-07-21 11:02:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(227,NULL,9,'Subject for Tell a Friend','2014-08-15 10:20:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(228,NULL,9,'Subject for Tell a Friend','2014-07-18 11:09:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(229,NULL,9,'Subject for Tell a Friend','2015-04-22 04:09:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(230,NULL,10,'Subject for Pledge Acknowledgment','2014-09-28 03:20:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(231,NULL,9,'Subject for Tell a Friend','2015-04-06 10:21:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(232,NULL,9,'Subject for Tell a Friend','2015-05-04 01:39:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(233,NULL,9,'Subject for Tell a Friend','2014-12-16 07:10:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(234,NULL,9,'Subject for Tell a Friend','2014-10-06 08:42:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(235,NULL,10,'Subject for Pledge Acknowledgment','2015-02-15 09:27:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(236,NULL,10,'Subject for Pledge Acknowledgment','2014-12-05 06:21:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(237,NULL,10,'Subject for Pledge Acknowledgment','2014-05-13 01:37:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(238,NULL,9,'Subject for Tell a Friend','2014-06-25 01:30:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(239,NULL,10,'Subject for Pledge Acknowledgment','2015-03-20 07:08:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(240,NULL,9,'Subject for Tell a Friend','2014-12-30 06:42:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(241,NULL,10,'Subject for Pledge Acknowledgment','2015-03-16 01:39:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(242,NULL,10,'Subject for Pledge Acknowledgment','2014-07-29 01:15:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(243,NULL,10,'Subject for Pledge Acknowledgment','2014-12-31 04:51:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(244,NULL,10,'Subject for Pledge Acknowledgment','2014-05-26 01:53:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(245,NULL,9,'Subject for Tell a Friend','2014-12-05 10:48:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(246,NULL,10,'Subject for Pledge Acknowledgment','2014-08-11 06:20:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(247,NULL,9,'Subject for Tell a Friend','2014-06-16 09:31:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(248,NULL,10,'Subject for Pledge Acknowledgment','2014-06-26 06:44:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(249,NULL,9,'Subject for Tell a Friend','2014-07-10 05:29:14',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(250,NULL,9,'Subject for Tell a Friend','2015-03-02 04:02:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(251,NULL,10,'Subject for Pledge Acknowledgment','2014-12-01 09:20:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(252,NULL,10,'Subject for Pledge Acknowledgment','2014-06-12 08:32:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(253,NULL,9,'Subject for Tell a Friend','2014-09-22 08:57:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(254,NULL,9,'Subject for Tell a Friend','2014-07-14 07:34:00',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(255,NULL,10,'Subject for Pledge Acknowledgment','2014-12-11 04:03:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(256,NULL,9,'Subject for Tell a Friend','2014-05-19 10:53:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(257,NULL,10,'Subject for Pledge Acknowledgment','2014-12-16 04:59:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(258,NULL,9,'Subject for Tell a Friend','2014-06-10 10:35:17',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(259,NULL,9,'Subject for Tell a Friend','2014-08-25 01:52:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(260,NULL,10,'Subject for Pledge Acknowledgment','2014-09-17 12:32:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(261,NULL,10,'Subject for Pledge Acknowledgment','2014-11-24 03:56:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(262,NULL,10,'Subject for Pledge Acknowledgment','2014-08-31 09:22:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(263,NULL,9,'Subject for Tell a Friend','2015-02-07 06:32:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(264,NULL,10,'Subject for Pledge Acknowledgment','2014-07-09 02:33:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(265,NULL,9,'Subject for Tell a Friend','2015-01-07 12:14:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(266,NULL,10,'Subject for Pledge Acknowledgment','2014-08-01 12:10:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(267,NULL,10,'Subject for Pledge Acknowledgment','2014-12-11 09:44:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(268,NULL,10,'Subject for Pledge Acknowledgment','2015-04-14 12:04:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(269,NULL,10,'Subject for Pledge Acknowledgment','2014-10-06 07:25:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(270,NULL,9,'Subject for Tell a Friend','2014-12-02 11:08:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(271,NULL,9,'Subject for Tell a Friend','2014-06-26 04:33:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(272,NULL,10,'Subject for Pledge Acknowledgment','2015-01-03 05:47:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(273,NULL,10,'Subject for Pledge Acknowledgment','2014-12-01 09:47:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(274,NULL,10,'Subject for Pledge Acknowledgment','2015-01-16 12:19:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(275,NULL,9,'Subject for Tell a Friend','2014-08-16 02:20:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(276,NULL,9,'Subject for Tell a Friend','2014-07-07 06:20:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(277,NULL,9,'Subject for Tell a Friend','2014-08-26 04:41:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(278,NULL,10,'Subject for Pledge Acknowledgment','2014-11-04 10:53:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(279,NULL,10,'Subject for Pledge Acknowledgment','2014-10-29 07:43:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(280,NULL,9,'Subject for Tell a Friend','2014-10-23 09:22:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(281,NULL,10,'Subject for Pledge Acknowledgment','2015-01-13 11:00:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(282,NULL,9,'Subject for Tell a Friend','2015-03-06 04:39:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(283,NULL,10,'Subject for Pledge Acknowledgment','2015-01-11 01:15:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(284,NULL,10,'Subject for Pledge Acknowledgment','2014-05-22 01:29:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(285,NULL,9,'Subject for Tell a Friend','2014-09-22 04:46:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(286,NULL,9,'Subject for Tell a Friend','2015-01-10 08:09:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(287,NULL,10,'Subject for Pledge Acknowledgment','2015-05-02 06:10:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(288,NULL,9,'Subject for Tell a Friend','2014-11-25 01:52:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(289,NULL,10,'Subject for Pledge Acknowledgment','2014-11-08 08:32:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(290,NULL,9,'Subject for Tell a Friend','2014-08-13 05:45:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(291,NULL,9,'Subject for Tell a Friend','2014-07-19 11:40:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(292,NULL,10,'Subject for Pledge Acknowledgment','2014-07-26 09:39:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(293,NULL,9,'Subject for Tell a Friend','2014-10-13 09:42:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(294,NULL,9,'Subject for Tell a Friend','2014-09-30 12:46:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(295,NULL,9,'Subject for Tell a Friend','2014-12-13 08:17:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(296,NULL,10,'Subject for Pledge Acknowledgment','2015-01-22 05:59:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(297,NULL,10,'Subject for Pledge Acknowledgment','2014-11-12 08:36:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(298,NULL,10,'Subject for Pledge Acknowledgment','2014-09-15 07:19:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(299,NULL,10,'Subject for Pledge Acknowledgment','2015-02-07 03:30:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(300,NULL,9,'Subject for Tell a Friend','2014-05-31 10:07:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(301,NULL,10,'Subject for Pledge Acknowledgment','2014-07-24 05:04:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(302,NULL,10,'Subject for Pledge Acknowledgment','2015-02-09 09:15:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(303,NULL,9,'Subject for Tell a Friend','2015-04-22 11:37:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(304,NULL,10,'Subject for Pledge Acknowledgment','2015-01-26 12:07:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(305,NULL,10,'Subject for Pledge Acknowledgment','2014-06-07 07:42:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(306,NULL,10,'Subject for Pledge Acknowledgment','2014-09-07 04:34:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(307,NULL,10,'Subject for Pledge Acknowledgment','2014-10-25 10:34:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(308,NULL,9,'Subject for Tell a Friend','2014-07-27 09:29:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(309,NULL,10,'Subject for Pledge Acknowledgment','2014-12-03 09:22:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(310,NULL,9,'Subject for Tell a Friend','2014-06-18 05:54:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(311,NULL,9,'Subject for Tell a Friend','2014-10-11 03:45:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(312,NULL,10,'Subject for Pledge Acknowledgment','2014-05-29 09:55:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(313,NULL,10,'Subject for Pledge Acknowledgment','2014-06-12 01:46:29',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(314,NULL,9,'Subject for Tell a Friend','2015-01-27 05:58:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(315,NULL,9,'Subject for Tell a Friend','2014-06-21 07:55:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(316,NULL,10,'Subject for Pledge Acknowledgment','2015-04-04 10:48:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(317,NULL,9,'Subject for Tell a Friend','2014-10-10 01:18:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(318,NULL,10,'Subject for Pledge Acknowledgment','2015-02-27 01:59:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(319,NULL,9,'Subject for Tell a Friend','2015-01-29 05:19:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(320,NULL,9,'Subject for Tell a Friend','2014-05-13 12:47:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(321,NULL,10,'Subject for Pledge Acknowledgment','2014-11-12 04:40:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(322,NULL,9,'Subject for Tell a Friend','2014-07-29 07:17:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(323,NULL,10,'Subject for Pledge Acknowledgment','2015-02-14 12:40:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(324,NULL,10,'Subject for Pledge Acknowledgment','2014-11-12 03:17:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(325,NULL,9,'Subject for Tell a Friend','2014-12-30 08:00:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(326,NULL,9,'Subject for Tell a Friend','2014-10-25 01:08:09',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(327,NULL,9,'Subject for Tell a Friend','2015-02-13 06:20:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(328,NULL,9,'Subject for Tell a Friend','2015-03-31 07:01:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(329,NULL,10,'Subject for Pledge Acknowledgment','2014-09-27 03:07:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(330,NULL,10,'Subject for Pledge Acknowledgment','2014-10-04 03:45:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(331,NULL,10,'Subject for Pledge Acknowledgment','2014-08-30 09:03:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(332,NULL,9,'Subject for Tell a Friend','2014-09-25 01:54:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(333,NULL,10,'Subject for Pledge Acknowledgment','2014-10-06 10:03:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(334,NULL,10,'Subject for Pledge Acknowledgment','2014-07-03 06:55:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(335,NULL,10,'Subject for Pledge Acknowledgment','2015-02-02 12:06:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(336,NULL,9,'Subject for Tell a Friend','2014-09-27 03:30:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(337,NULL,10,'Subject for Pledge Acknowledgment','2015-02-09 11:11:52',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(338,NULL,9,'Subject for Tell a Friend','2014-06-14 11:03:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(339,NULL,10,'Subject for Pledge Acknowledgment','2014-11-07 05:32:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(340,NULL,9,'Subject for Tell a Friend','2014-07-25 05:20:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(341,NULL,10,'Subject for Pledge Acknowledgment','2014-11-20 07:42:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(342,NULL,9,'Subject for Tell a Friend','2015-02-26 08:09:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(343,NULL,9,'Subject for Tell a Friend','2015-01-22 02:19:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(344,NULL,10,'Subject for Pledge Acknowledgment','2014-11-15 05:43:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(345,NULL,10,'Subject for Pledge Acknowledgment','2014-06-23 12:04:50',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(346,NULL,9,'Subject for Tell a Friend','2014-08-12 02:03:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(347,NULL,10,'Subject for Pledge Acknowledgment','2014-07-10 06:13:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(348,NULL,9,'Subject for Tell a Friend','2014-08-27 07:28:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(349,NULL,9,'Subject for Tell a Friend','2014-07-19 12:08:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(350,NULL,10,'Subject for Pledge Acknowledgment','2014-12-17 02:09:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(351,NULL,9,'Subject for Tell a Friend','2014-11-10 07:10:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(352,NULL,10,'Subject for Pledge Acknowledgment','2014-07-11 10:26:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(353,NULL,9,'Subject for Tell a Friend','2014-09-03 12:57:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(354,NULL,9,'Subject for Tell a Friend','2015-04-17 07:35:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(355,NULL,9,'Subject for Tell a Friend','2014-09-26 09:27:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(356,NULL,10,'Subject for Pledge Acknowledgment','2014-08-21 02:33:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(357,NULL,10,'Subject for Pledge Acknowledgment','2014-08-15 08:33:58',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(358,NULL,9,'Subject for Tell a Friend','2014-09-20 05:52:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(359,NULL,9,'Subject for Tell a Friend','2014-08-10 09:01:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(360,NULL,10,'Subject for Pledge Acknowledgment','2015-02-20 07:25:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(361,NULL,10,'Subject for Pledge Acknowledgment','2014-10-24 07:51:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(362,NULL,10,'Subject for Pledge Acknowledgment','2015-03-10 05:54:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(363,NULL,9,'Subject for Tell a Friend','2014-10-17 05:46:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(364,NULL,10,'Subject for Pledge Acknowledgment','2014-11-09 11:24:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(365,NULL,10,'Subject for Pledge Acknowledgment','2014-12-04 02:53:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(366,NULL,9,'Subject for Tell a Friend','2014-08-28 07:09:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(367,NULL,9,'Subject for Tell a Friend','2015-03-23 07:55:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(368,NULL,9,'Subject for Tell a Friend','2014-09-30 09:13:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(369,NULL,10,'Subject for Pledge Acknowledgment','2014-07-31 04:25:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(370,NULL,10,'Subject for Pledge Acknowledgment','2014-09-09 02:23:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(371,NULL,9,'Subject for Tell a Friend','2015-02-11 05:27:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(372,NULL,9,'Subject for Tell a Friend','2015-03-15 01:36:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(373,NULL,9,'Subject for Tell a Friend','2015-04-29 09:53:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(374,NULL,9,'Subject for Tell a Friend','2014-12-19 09:59:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(375,NULL,9,'Subject for Tell a Friend','2014-12-15 11:08:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(376,NULL,9,'Subject for Tell a Friend','2014-11-19 11:22:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(377,NULL,10,'Subject for Pledge Acknowledgment','2015-03-27 12:34:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(378,NULL,9,'Subject for Tell a Friend','2014-07-23 12:12:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(379,NULL,9,'Subject for Tell a Friend','2014-07-07 11:36:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(380,NULL,10,'Subject for Pledge Acknowledgment','2014-07-18 05:54:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(381,NULL,9,'Subject for Tell a Friend','2014-06-03 01:41:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(382,NULL,10,'Subject for Pledge Acknowledgment','2014-06-11 01:46:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(383,NULL,9,'Subject for Tell a Friend','2015-01-21 07:40:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(384,NULL,10,'Subject for Pledge Acknowledgment','2015-01-12 04:33:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(385,NULL,10,'Subject for Pledge Acknowledgment','2015-01-26 02:42:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(386,NULL,10,'Subject for Pledge Acknowledgment','2015-03-12 03:43:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(387,NULL,9,'Subject for Tell a Friend','2014-12-24 09:08:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(388,NULL,9,'Subject for Tell a Friend','2015-01-26 06:03:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(389,NULL,10,'Subject for Pledge Acknowledgment','2014-12-19 08:56:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(390,NULL,10,'Subject for Pledge Acknowledgment','2014-06-21 05:01:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(391,NULL,10,'Subject for Pledge Acknowledgment','2014-09-06 02:24:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(392,NULL,10,'Subject for Pledge Acknowledgment','2015-02-16 10:43:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(393,NULL,10,'Subject for Pledge Acknowledgment','2014-10-11 10:56:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(394,NULL,9,'Subject for Tell a Friend','2014-07-27 01:23:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(395,NULL,9,'Subject for Tell a Friend','2015-02-11 09:13:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(396,NULL,9,'Subject for Tell a Friend','2015-04-06 05:55:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(397,NULL,9,'Subject for Tell a Friend','2015-03-30 01:36:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(398,NULL,9,'Subject for Tell a Friend','2014-11-25 06:06:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(399,NULL,9,'Subject for Tell a Friend','2014-07-08 03:34:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(400,NULL,9,'Subject for Tell a Friend','2015-04-11 02:32:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(401,NULL,9,'Subject for Tell a Friend','2015-04-12 02:21:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(402,NULL,9,'Subject for Tell a Friend','2015-01-10 10:10:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(403,NULL,10,'Subject for Pledge Acknowledgment','2015-04-03 01:02:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(404,NULL,9,'Subject for Tell a Friend','2014-11-15 03:08:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(405,NULL,10,'Subject for Pledge Acknowledgment','2015-01-19 06:49:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(406,NULL,10,'Subject for Pledge Acknowledgment','2015-04-11 08:32:15',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(407,NULL,9,'Subject for Tell a Friend','2014-08-09 07:26:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(408,NULL,9,'Subject for Tell a Friend','2014-06-16 11:47:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(409,NULL,10,'Subject for Pledge Acknowledgment','2014-08-26 07:10:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(410,NULL,9,'Subject for Tell a Friend','2014-07-28 01:27:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(411,NULL,10,'Subject for Pledge Acknowledgment','2014-11-18 12:15:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(412,NULL,10,'Subject for Pledge Acknowledgment','2014-08-18 11:12:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(413,NULL,10,'Subject for Pledge Acknowledgment','2015-01-31 01:16:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(414,NULL,10,'Subject for Pledge Acknowledgment','2014-12-11 11:15:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(415,NULL,9,'Subject for Tell a Friend','2015-03-13 11:01:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(416,NULL,10,'Subject for Pledge Acknowledgment','2014-09-05 04:55:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(417,NULL,10,'Subject for Pledge Acknowledgment','2015-05-03 05:06:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(418,NULL,9,'Subject for Tell a Friend','2015-01-27 07:25:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(419,NULL,10,'Subject for Pledge Acknowledgment','2014-11-13 12:08:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(420,NULL,9,'Subject for Tell a Friend','2014-05-17 06:43:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(421,NULL,9,'Subject for Tell a Friend','2014-05-19 04:46:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(422,NULL,10,'Subject for Pledge Acknowledgment','2015-03-31 06:17:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(423,NULL,9,'Subject for Tell a Friend','2014-12-24 02:27:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(424,NULL,10,'Subject for Pledge Acknowledgment','2014-09-09 06:42:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(425,NULL,9,'Subject for Tell a Friend','2014-12-01 09:53:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(426,NULL,10,'Subject for Pledge Acknowledgment','2014-09-18 05:31:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(427,NULL,10,'Subject for Pledge Acknowledgment','2014-07-15 11:47:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(428,NULL,9,'Subject for Tell a Friend','2014-11-07 09:48:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(429,NULL,9,'Subject for Tell a Friend','2015-03-31 02:06:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(430,NULL,9,'Subject for Tell a Friend','2015-04-08 01:20:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(431,NULL,10,'Subject for Pledge Acknowledgment','2014-06-22 07:30:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(432,NULL,9,'Subject for Tell a Friend','2014-12-16 08:42:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(433,NULL,10,'Subject for Pledge Acknowledgment','2014-10-23 01:33:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(434,NULL,10,'Subject for Pledge Acknowledgment','2015-04-05 06:28:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(435,NULL,10,'Subject for Pledge Acknowledgment','2015-04-04 11:46:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(436,NULL,9,'Subject for Tell a Friend','2015-03-09 02:56:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(437,NULL,10,'Subject for Pledge Acknowledgment','2014-06-11 12:39:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(438,NULL,9,'Subject for Tell a Friend','2014-08-31 12:12:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(439,NULL,10,'Subject for Pledge Acknowledgment','2015-04-06 08:00:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(440,NULL,10,'Subject for Pledge Acknowledgment','2014-09-16 07:04:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(441,NULL,9,'Subject for Tell a Friend','2014-06-21 09:23:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(442,NULL,9,'Subject for Tell a Friend','2014-06-10 03:58:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(443,NULL,9,'Subject for Tell a Friend','2015-01-07 03:08:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(444,NULL,10,'Subject for Pledge Acknowledgment','2014-07-02 09:06:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(445,NULL,10,'Subject for Pledge Acknowledgment','2015-03-20 10:25:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(446,NULL,10,'Subject for Pledge Acknowledgment','2014-10-07 02:14:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(447,NULL,10,'Subject for Pledge Acknowledgment','2015-03-13 06:39:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(448,NULL,9,'Subject for Tell a Friend','2015-04-15 03:57:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(449,NULL,10,'Subject for Pledge Acknowledgment','2014-07-29 07:51:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(450,NULL,10,'Subject for Pledge Acknowledgment','2015-04-28 03:34:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(451,1,6,'$ 125.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(452,2,6,'$ 50.00-Online: Save the Penguins','2010-03-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(453,3,6,'$ 25.00-Apr 2007 Mailer 1','2010-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(454,4,6,'$ 50.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(455,5,6,'$ 500.00-Apr 2007 Mailer 1','2010-04-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(456,6,6,'$ 175.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(457,7,6,'$ 50.00-Online: Save the Penguins','2010-03-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(458,8,6,'$ 10.00-Online: Save the Penguins','2010-03-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(459,9,6,'$ 250.00-Online: Save the Penguins','2010-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(460,10,6,NULL,'2009-07-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(461,11,6,NULL,'2009-07-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(462,12,6,NULL,'2009-10-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(463,13,6,NULL,'2009-12-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(464,1,7,'General','2015-05-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(465,2,7,'Student','2015-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(466,3,7,'General','2015-05-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(467,4,7,'Student','2015-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(468,5,7,'Student','2014-05-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(469,6,7,'Student','2015-05-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(470,7,7,'General','2015-05-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(471,8,7,'Student','2015-05-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(472,9,7,'General','2015-04-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(473,10,7,'Student','2014-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(474,11,7,'Lifetime','2015-04-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(475,12,7,'Student','2015-04-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(476,13,7,'General','2015-04-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(477,14,7,'Student','2015-04-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(478,15,7,'Student','2014-04-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(479,16,7,'Student','2015-04-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(480,17,7,'General','2015-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(481,18,7,'Student','2015-04-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(482,19,7,'General','2015-04-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(483,20,7,'General','2012-12-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(484,21,7,'General','2015-04-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(485,22,7,'Lifetime','2015-04-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(486,23,7,'General','2015-04-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(487,24,7,'Student','2015-04-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(488,25,7,'Student','2014-04-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(489,26,7,'Student','2015-04-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(490,27,7,'General','2015-04-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(491,28,7,'Student','2015-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(492,29,7,'General','2015-04-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(493,30,7,'Student','2014-04-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(494,14,6,'$ 100.00 - General Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(495,15,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(496,16,6,'$ 100.00 - General Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(497,17,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(498,18,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(499,19,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(500,20,6,'$ 100.00 - General Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(501,21,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(502,22,6,'$ 100.00 - General Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(503,23,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(504,24,6,'$ 1200.00 - Lifetime Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(505,25,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(506,26,6,'$ 100.00 - General Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(507,27,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(508,28,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(509,29,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(510,30,6,'$ 100.00 - General Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(511,31,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(512,32,6,'$ 100.00 - General Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(513,33,6,'$ 100.00 - General Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(514,34,6,'$ 100.00 - General Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(515,35,6,'$ 1200.00 - Lifetime Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(516,36,6,'$ 100.00 - General Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(517,37,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(518,38,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(519,39,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(520,40,6,'$ 100.00 - General Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(521,41,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(522,42,6,'$ 100.00 - General Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(523,43,6,'$ 50.00 - Student Membership: Offline signup','2015-05-08 12:26:23',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(525,1,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(526,2,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(527,3,5,'NULL','2008-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(528,4,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(529,5,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(530,6,5,'NULL','2008-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(531,7,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(532,8,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(533,9,5,'NULL','2008-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(534,10,5,'NULL','2008-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(535,11,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(536,12,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(537,13,5,'NULL','2008-06-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(538,14,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(539,15,5,'NULL','2008-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(540,16,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(541,17,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(542,18,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(543,19,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(544,20,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(545,21,5,'NULL','2008-03-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(546,22,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(547,23,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(548,24,5,'NULL','2008-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(549,25,5,'NULL','2008-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(550,26,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(551,27,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(552,28,5,'NULL','2009-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(553,29,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(554,30,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(555,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(556,32,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(557,33,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(558,34,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(559,35,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(560,36,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(561,37,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(562,38,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(563,39,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(564,40,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(565,41,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(566,42,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(567,43,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(568,44,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(569,45,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(570,46,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(571,47,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(572,48,5,'NULL','2009-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(573,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(574,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(575,45,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(576,46,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(577,47,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(578,48,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(579,49,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(580,50,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(581,51,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(582,52,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(583,53,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(584,54,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(585,55,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(586,56,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(587,57,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(588,58,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(589,59,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(590,60,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(591,61,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(592,62,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(593,63,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(594,64,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(595,65,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(596,66,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(597,67,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(598,68,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(599,69,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(600,70,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(601,71,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(602,72,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(603,73,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(604,74,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(605,75,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(606,76,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(607,77,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(608,78,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(609,79,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(610,80,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(611,81,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(612,82,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(613,83,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(614,84,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(615,85,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(616,86,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(617,87,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(618,88,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(619,89,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(620,90,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(621,91,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(622,92,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(623,93,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(624,94,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-08 12:26:27',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL);
 -INSERT INTO `civicrm_activity` (`id`, `source_record_id`, `activity_type_id`, `subject`, `activity_date_time`, `duration`, `location`, `phone_id`, `phone_number`, `details`, `status_id`, `priority_id`, `parent_id`, `is_test`, `medium_id`, `is_auto`, `relationship_id`, `is_current_revision`, `original_id`, `result`, `is_deleted`, `campaign_id`, `engagement_level`, `weight`) VALUES (1,NULL,9,'Subject for Tell a Friend','2015-04-01 07:01:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(2,NULL,9,'Subject for Tell a Friend','2015-02-20 06:23:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(3,NULL,10,'Subject for Pledge Acknowledgment','2015-01-31 06:44:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(4,NULL,9,'Subject for Tell a Friend','2014-12-11 06:07:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(5,NULL,9,'Subject for Tell a Friend','2014-09-23 01:46:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(6,NULL,10,'Subject for Pledge Acknowledgment','2014-08-12 01:28:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(7,NULL,10,'Subject for Pledge Acknowledgment','2014-08-29 08:33:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(8,NULL,10,'Subject for Pledge Acknowledgment','2015-04-27 07:21:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(9,NULL,9,'Subject for Tell a Friend','2014-10-13 10:06:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(10,NULL,10,'Subject for Pledge Acknowledgment','2014-12-16 12:14:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(11,NULL,9,'Subject for Tell a Friend','2014-09-17 11:03:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(12,NULL,9,'Subject for Tell a Friend','2014-07-11 02:10:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(13,NULL,10,'Subject for Pledge Acknowledgment','2014-12-18 08:30:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(14,NULL,10,'Subject for Pledge Acknowledgment','2015-04-21 07:10:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(15,NULL,10,'Subject for Pledge Acknowledgment','2014-07-27 02:49:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(16,NULL,10,'Subject for Pledge Acknowledgment','2014-07-06 04:38:54',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(17,NULL,9,'Subject for Tell a Friend','2014-11-18 01:16:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(18,NULL,10,'Subject for Pledge Acknowledgment','2015-03-29 09:22:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(19,NULL,10,'Subject for Pledge Acknowledgment','2015-01-31 02:14:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(20,NULL,9,'Subject for Tell a Friend','2014-06-20 04:18:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(21,NULL,9,'Subject for Tell a Friend','2015-03-01 07:23:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(22,NULL,9,'Subject for Tell a Friend','2014-12-12 12:33:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(23,NULL,9,'Subject for Tell a Friend','2015-02-09 12:33:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(24,NULL,10,'Subject for Pledge Acknowledgment','2014-08-21 06:23:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(25,NULL,10,'Subject for Pledge Acknowledgment','2014-06-09 05:56:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(26,NULL,9,'Subject for Tell a Friend','2015-02-09 07:47:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(27,NULL,9,'Subject for Tell a Friend','2014-11-15 07:32:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(28,NULL,10,'Subject for Pledge Acknowledgment','2015-02-22 02:04:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(29,NULL,10,'Subject for Pledge Acknowledgment','2014-12-29 02:01:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(30,NULL,9,'Subject for Tell a Friend','2015-03-23 08:00:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(31,NULL,9,'Subject for Tell a Friend','2014-12-23 01:47:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(32,NULL,10,'Subject for Pledge Acknowledgment','2014-05-15 02:53:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(33,NULL,9,'Subject for Tell a Friend','2014-07-08 07:09:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(34,NULL,9,'Subject for Tell a Friend','2014-12-01 02:10:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(35,NULL,9,'Subject for Tell a Friend','2014-11-05 03:51:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(36,NULL,10,'Subject for Pledge Acknowledgment','2015-02-14 03:05:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(37,NULL,9,'Subject for Tell a Friend','2014-07-23 08:49:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(38,NULL,10,'Subject for Pledge Acknowledgment','2015-04-25 06:10:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(39,NULL,10,'Subject for Pledge Acknowledgment','2014-07-20 01:19:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(40,NULL,10,'Subject for Pledge Acknowledgment','2015-03-12 04:01:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(41,NULL,10,'Subject for Pledge Acknowledgment','2015-02-17 11:05:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(42,NULL,10,'Subject for Pledge Acknowledgment','2015-03-08 12:04:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(43,NULL,9,'Subject for Tell a Friend','2015-04-23 03:04:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(44,NULL,9,'Subject for Tell a Friend','2014-07-06 08:48:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(45,NULL,9,'Subject for Tell a Friend','2014-12-03 06:56:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(46,NULL,10,'Subject for Pledge Acknowledgment','2014-07-29 09:37:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(47,NULL,10,'Subject for Pledge Acknowledgment','2014-12-04 05:04:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(48,NULL,9,'Subject for Tell a Friend','2014-07-21 03:43:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(49,NULL,10,'Subject for Pledge Acknowledgment','2014-11-08 10:44:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(50,NULL,10,'Subject for Pledge Acknowledgment','2015-04-02 12:42:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(51,NULL,9,'Subject for Tell a Friend','2015-02-18 05:14:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(52,NULL,10,'Subject for Pledge Acknowledgment','2014-08-02 01:26:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(53,NULL,9,'Subject for Tell a Friend','2015-03-21 07:56:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(54,NULL,10,'Subject for Pledge Acknowledgment','2014-12-30 06:53:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(55,NULL,10,'Subject for Pledge Acknowledgment','2015-03-14 05:18:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(56,NULL,10,'Subject for Pledge Acknowledgment','2014-07-11 04:13:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(57,NULL,9,'Subject for Tell a Friend','2014-05-03 10:56:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(58,NULL,9,'Subject for Tell a Friend','2015-03-03 09:03:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(59,NULL,10,'Subject for Pledge Acknowledgment','2015-02-10 06:39:14',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(60,NULL,10,'Subject for Pledge Acknowledgment','2015-03-24 01:56:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(61,NULL,10,'Subject for Pledge Acknowledgment','2014-09-01 06:55:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(62,NULL,9,'Subject for Tell a Friend','2014-05-11 07:20:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(63,NULL,10,'Subject for Pledge Acknowledgment','2014-11-17 05:18:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(64,NULL,10,'Subject for Pledge Acknowledgment','2015-04-28 03:26:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(65,NULL,9,'Subject for Tell a Friend','2014-08-17 11:29:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(66,NULL,9,'Subject for Tell a Friend','2014-10-20 11:35:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(67,NULL,9,'Subject for Tell a Friend','2014-05-27 07:09:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(68,NULL,9,'Subject for Tell a Friend','2014-11-18 08:35:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(69,NULL,10,'Subject for Pledge Acknowledgment','2014-12-15 06:45:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(70,NULL,9,'Subject for Tell a Friend','2014-08-30 01:32:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(71,NULL,9,'Subject for Tell a Friend','2014-06-10 05:55:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(72,NULL,9,'Subject for Tell a Friend','2014-08-30 07:04:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(73,NULL,9,'Subject for Tell a Friend','2015-02-17 04:35:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(74,NULL,10,'Subject for Pledge Acknowledgment','2014-11-28 12:59:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(75,NULL,10,'Subject for Pledge Acknowledgment','2014-12-21 03:57:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(76,NULL,9,'Subject for Tell a Friend','2014-07-09 10:16:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(77,NULL,10,'Subject for Pledge Acknowledgment','2014-06-05 05:19:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(78,NULL,9,'Subject for Tell a Friend','2014-06-02 09:25:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(79,NULL,10,'Subject for Pledge Acknowledgment','2014-11-28 03:27:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(80,NULL,9,'Subject for Tell a Friend','2014-05-15 09:03:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(81,NULL,10,'Subject for Pledge Acknowledgment','2015-02-24 08:47:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(82,NULL,10,'Subject for Pledge Acknowledgment','2015-03-06 05:41:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(83,NULL,9,'Subject for Tell a Friend','2014-05-29 01:26:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(84,NULL,9,'Subject for Tell a Friend','2014-12-01 02:40:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(85,NULL,10,'Subject for Pledge Acknowledgment','2014-07-01 10:47:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(86,NULL,10,'Subject for Pledge Acknowledgment','2014-06-02 03:00:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(87,NULL,9,'Subject for Tell a Friend','2014-09-03 08:55:46',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(88,NULL,9,'Subject for Tell a Friend','2015-04-12 08:20:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(89,NULL,10,'Subject for Pledge Acknowledgment','2014-12-29 11:54:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(90,NULL,10,'Subject for Pledge Acknowledgment','2014-12-10 10:39:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(91,NULL,10,'Subject for Pledge Acknowledgment','2015-02-02 02:14:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(92,NULL,9,'Subject for Tell a Friend','2014-11-11 03:49:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(93,NULL,10,'Subject for Pledge Acknowledgment','2014-06-16 12:01:35',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(94,NULL,9,'Subject for Tell a Friend','2014-12-07 11:15:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(95,NULL,10,'Subject for Pledge Acknowledgment','2014-12-30 11:17:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(96,NULL,10,'Subject for Pledge Acknowledgment','2014-08-25 06:08:55',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(97,NULL,10,'Subject for Pledge Acknowledgment','2015-02-12 04:38:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(98,NULL,9,'Subject for Tell a Friend','2015-04-19 01:14:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(99,NULL,10,'Subject for Pledge Acknowledgment','2014-07-06 05:11:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(100,NULL,10,'Subject for Pledge Acknowledgment','2014-12-20 08:56:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(101,NULL,9,'Subject for Tell a Friend','2014-08-13 06:21:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(102,NULL,10,'Subject for Pledge Acknowledgment','2015-04-19 10:01:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(103,NULL,9,'Subject for Tell a Friend','2014-10-30 08:39:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(104,NULL,10,'Subject for Pledge Acknowledgment','2014-11-11 11:27:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(105,NULL,9,'Subject for Tell a Friend','2015-04-02 01:09:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(106,NULL,9,'Subject for Tell a Friend','2015-01-04 09:15:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(107,NULL,10,'Subject for Pledge Acknowledgment','2014-08-19 06:56:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(108,NULL,9,'Subject for Tell a Friend','2015-03-17 09:01:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(109,NULL,9,'Subject for Tell a Friend','2014-12-19 08:00:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(110,NULL,9,'Subject for Tell a Friend','2014-07-02 01:59:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(111,NULL,10,'Subject for Pledge Acknowledgment','2014-05-13 02:11:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(112,NULL,9,'Subject for Tell a Friend','2014-07-23 11:08:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(113,NULL,9,'Subject for Tell a Friend','2015-01-06 08:05:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(114,NULL,9,'Subject for Tell a Friend','2014-09-06 06:55:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(115,NULL,9,'Subject for Tell a Friend','2014-08-15 10:18:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(116,NULL,10,'Subject for Pledge Acknowledgment','2014-11-28 05:15:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(117,NULL,10,'Subject for Pledge Acknowledgment','2014-12-15 09:49:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(118,NULL,9,'Subject for Tell a Friend','2014-05-28 06:49:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(119,NULL,9,'Subject for Tell a Friend','2014-11-09 05:50:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(120,NULL,9,'Subject for Tell a Friend','2015-02-14 12:45:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(121,NULL,9,'Subject for Tell a Friend','2014-06-13 12:50:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(122,NULL,9,'Subject for Tell a Friend','2014-12-03 08:41:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(123,NULL,9,'Subject for Tell a Friend','2014-12-26 05:13:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(124,NULL,10,'Subject for Pledge Acknowledgment','2015-02-19 03:53:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(125,NULL,10,'Subject for Pledge Acknowledgment','2015-04-19 08:46:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(126,NULL,10,'Subject for Pledge Acknowledgment','2014-05-17 01:20:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(127,NULL,10,'Subject for Pledge Acknowledgment','2015-04-24 08:05:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(128,NULL,9,'Subject for Tell a Friend','2015-04-03 03:42:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(129,NULL,9,'Subject for Tell a Friend','2015-02-20 06:31:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(130,NULL,10,'Subject for Pledge Acknowledgment','2014-10-07 06:51:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(131,NULL,9,'Subject for Tell a Friend','2015-03-10 06:15:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(132,NULL,9,'Subject for Tell a Friend','2014-12-22 02:38:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(133,NULL,10,'Subject for Pledge Acknowledgment','2015-02-16 03:10:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(134,NULL,10,'Subject for Pledge Acknowledgment','2014-11-11 05:22:43',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(135,NULL,9,'Subject for Tell a Friend','2014-08-12 11:25:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(136,NULL,9,'Subject for Tell a Friend','2015-03-31 05:20:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(137,NULL,10,'Subject for Pledge Acknowledgment','2014-11-19 10:18:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(138,NULL,9,'Subject for Tell a Friend','2015-03-27 11:01:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(139,NULL,9,'Subject for Tell a Friend','2014-12-13 08:58:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(140,NULL,10,'Subject for Pledge Acknowledgment','2014-11-25 10:35:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(141,NULL,10,'Subject for Pledge Acknowledgment','2014-10-09 09:55:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(142,NULL,9,'Subject for Tell a Friend','2014-11-23 02:46:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(143,NULL,10,'Subject for Pledge Acknowledgment','2014-10-02 07:27:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(144,NULL,9,'Subject for Tell a Friend','2014-12-23 02:37:34',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(145,NULL,9,'Subject for Tell a Friend','2014-12-11 08:57:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(146,NULL,9,'Subject for Tell a Friend','2014-08-01 01:51:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(147,NULL,10,'Subject for Pledge Acknowledgment','2014-07-02 07:23:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(148,NULL,9,'Subject for Tell a Friend','2014-11-25 11:11:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(149,NULL,10,'Subject for Pledge Acknowledgment','2014-09-15 01:01:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(150,NULL,10,'Subject for Pledge Acknowledgment','2014-10-18 10:18:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(151,NULL,9,'Subject for Tell a Friend','2015-03-01 02:00:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(152,NULL,10,'Subject for Pledge Acknowledgment','2015-01-23 09:04:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(153,NULL,9,'Subject for Tell a Friend','2014-07-15 07:53:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(154,NULL,9,'Subject for Tell a Friend','2014-08-20 06:02:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(155,NULL,10,'Subject for Pledge Acknowledgment','2014-08-29 03:30:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(156,NULL,10,'Subject for Pledge Acknowledgment','2014-10-01 08:17:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(157,NULL,9,'Subject for Tell a Friend','2014-12-09 02:50:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(158,NULL,9,'Subject for Tell a Friend','2014-09-16 04:19:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(159,NULL,10,'Subject for Pledge Acknowledgment','2014-05-24 03:44:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(160,NULL,9,'Subject for Tell a Friend','2014-11-25 04:22:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(161,NULL,10,'Subject for Pledge Acknowledgment','2015-04-13 10:10:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(162,NULL,10,'Subject for Pledge Acknowledgment','2014-12-11 01:06:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(163,NULL,9,'Subject for Tell a Friend','2014-06-02 04:00:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(164,NULL,10,'Subject for Pledge Acknowledgment','2015-01-18 09:54:07',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(165,NULL,9,'Subject for Tell a Friend','2015-01-06 09:37:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(166,NULL,10,'Subject for Pledge Acknowledgment','2014-11-28 10:51:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(167,NULL,9,'Subject for Tell a Friend','2015-02-17 01:47:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(168,NULL,10,'Subject for Pledge Acknowledgment','2015-04-28 07:17:53',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(169,NULL,10,'Subject for Pledge Acknowledgment','2014-08-14 05:48:36',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(170,NULL,10,'Subject for Pledge Acknowledgment','2014-06-26 06:48:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(171,NULL,9,'Subject for Tell a Friend','2014-12-05 03:08:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(172,NULL,9,'Subject for Tell a Friend','2015-01-27 04:56:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(173,NULL,9,'Subject for Tell a Friend','2014-09-15 01:44:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(174,NULL,10,'Subject for Pledge Acknowledgment','2014-07-21 06:29:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(175,NULL,9,'Subject for Tell a Friend','2015-02-03 03:48:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(176,NULL,10,'Subject for Pledge Acknowledgment','2014-12-11 04:46:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(177,NULL,9,'Subject for Tell a Friend','2015-01-07 05:23:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(178,NULL,9,'Subject for Tell a Friend','2014-11-13 12:49:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(179,NULL,9,'Subject for Tell a Friend','2014-07-22 07:18:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(180,NULL,9,'Subject for Tell a Friend','2014-11-25 07:47:03',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(181,NULL,10,'Subject for Pledge Acknowledgment','2014-08-24 04:52:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(182,NULL,10,'Subject for Pledge Acknowledgment','2014-05-01 05:57:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(183,NULL,10,'Subject for Pledge Acknowledgment','2014-09-01 08:30:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(184,NULL,9,'Subject for Tell a Friend','2014-11-16 06:28:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(185,NULL,9,'Subject for Tell a Friend','2014-06-28 08:27:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(186,NULL,10,'Subject for Pledge Acknowledgment','2014-09-15 06:23:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(187,NULL,9,'Subject for Tell a Friend','2014-05-31 07:17:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(188,NULL,9,'Subject for Tell a Friend','2015-02-15 12:02:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(189,NULL,9,'Subject for Tell a Friend','2015-02-17 12:26:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(190,NULL,9,'Subject for Tell a Friend','2014-08-09 07:09:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(191,NULL,9,'Subject for Tell a Friend','2014-08-07 02:25:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(192,NULL,9,'Subject for Tell a Friend','2015-02-18 11:54:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(193,NULL,9,'Subject for Tell a Friend','2015-01-17 07:21:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(194,NULL,10,'Subject for Pledge Acknowledgment','2014-05-21 07:20:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(195,NULL,10,'Subject for Pledge Acknowledgment','2014-11-29 09:30:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(196,NULL,9,'Subject for Tell a Friend','2014-05-24 10:52:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(197,NULL,9,'Subject for Tell a Friend','2014-06-23 07:27:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(198,NULL,9,'Subject for Tell a Friend','2014-10-21 02:18:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(199,NULL,10,'Subject for Pledge Acknowledgment','2014-07-08 01:58:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(200,NULL,9,'Subject for Tell a Friend','2014-10-30 11:17:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(201,NULL,10,'Subject for Pledge Acknowledgment','2014-07-13 08:44:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(202,NULL,9,'Subject for Tell a Friend','2014-06-19 03:18:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(203,NULL,9,'Subject for Tell a Friend','2015-02-15 10:17:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(204,NULL,10,'Subject for Pledge Acknowledgment','2014-06-21 11:39:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(205,NULL,10,'Subject for Pledge Acknowledgment','2015-01-27 07:39:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(206,NULL,10,'Subject for Pledge Acknowledgment','2015-02-28 09:29:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(207,NULL,9,'Subject for Tell a Friend','2014-05-27 03:56:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(208,NULL,9,'Subject for Tell a Friend','2014-08-04 10:50:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(209,NULL,10,'Subject for Pledge Acknowledgment','2015-04-27 10:42:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(210,NULL,9,'Subject for Tell a Friend','2014-07-19 07:56:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(211,NULL,10,'Subject for Pledge Acknowledgment','2014-11-02 06:02:26',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(212,NULL,10,'Subject for Pledge Acknowledgment','2014-10-05 06:32:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(213,NULL,10,'Subject for Pledge Acknowledgment','2014-10-07 09:38:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(214,NULL,10,'Subject for Pledge Acknowledgment','2014-10-22 12:08:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(215,NULL,10,'Subject for Pledge Acknowledgment','2014-09-22 03:07:20',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(216,NULL,10,'Subject for Pledge Acknowledgment','2015-03-03 02:01:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(217,NULL,10,'Subject for Pledge Acknowledgment','2015-04-12 05:44:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(218,NULL,9,'Subject for Tell a Friend','2014-08-19 08:55:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(219,NULL,10,'Subject for Pledge Acknowledgment','2015-02-25 04:40:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(220,NULL,10,'Subject for Pledge Acknowledgment','2015-04-22 07:19:16',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(221,NULL,9,'Subject for Tell a Friend','2015-02-20 11:43:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(222,NULL,9,'Subject for Tell a Friend','2014-05-27 08:00:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(223,NULL,9,'Subject for Tell a Friend','2014-11-18 08:50:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(224,NULL,9,'Subject for Tell a Friend','2014-08-14 11:29:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(225,NULL,10,'Subject for Pledge Acknowledgment','2014-06-13 07:18:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(226,NULL,10,'Subject for Pledge Acknowledgment','2015-04-26 06:26:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(227,NULL,9,'Subject for Tell a Friend','2015-02-07 02:58:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(228,NULL,9,'Subject for Tell a Friend','2014-12-21 08:26:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(229,NULL,9,'Subject for Tell a Friend','2014-06-28 04:10:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(230,NULL,10,'Subject for Pledge Acknowledgment','2015-02-07 09:41:18',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(231,NULL,9,'Subject for Tell a Friend','2014-05-13 02:41:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(232,NULL,9,'Subject for Tell a Friend','2014-09-03 07:31:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(233,NULL,9,'Subject for Tell a Friend','2014-05-23 04:31:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(234,NULL,10,'Subject for Pledge Acknowledgment','2014-09-05 07:37:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(235,NULL,10,'Subject for Pledge Acknowledgment','2014-08-30 10:51:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(236,NULL,10,'Subject for Pledge Acknowledgment','2014-11-19 03:46:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(237,NULL,10,'Subject for Pledge Acknowledgment','2015-04-25 06:11:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(238,NULL,10,'Subject for Pledge Acknowledgment','2014-10-21 04:23:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(239,NULL,9,'Subject for Tell a Friend','2014-10-14 03:45:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(240,NULL,9,'Subject for Tell a Friend','2015-02-19 09:34:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(241,NULL,9,'Subject for Tell a Friend','2014-05-13 09:03:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(242,NULL,10,'Subject for Pledge Acknowledgment','2014-06-03 02:52:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(243,NULL,9,'Subject for Tell a Friend','2014-12-01 11:08:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(244,NULL,9,'Subject for Tell a Friend','2014-06-14 05:52:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(245,NULL,10,'Subject for Pledge Acknowledgment','2014-06-30 02:30:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(246,NULL,9,'Subject for Tell a Friend','2015-02-10 04:26:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(247,NULL,10,'Subject for Pledge Acknowledgment','2014-09-17 08:26:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(248,NULL,10,'Subject for Pledge Acknowledgment','2015-04-06 09:52:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(249,NULL,10,'Subject for Pledge Acknowledgment','2014-05-23 12:12:21',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(250,NULL,10,'Subject for Pledge Acknowledgment','2014-05-15 03:34:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(251,NULL,9,'Subject for Tell a Friend','2014-05-05 05:27:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(252,NULL,10,'Subject for Pledge Acknowledgment','2014-05-26 09:13:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(253,NULL,9,'Subject for Tell a Friend','2014-12-14 09:22:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(254,NULL,10,'Subject for Pledge Acknowledgment','2014-05-09 10:21:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(255,NULL,9,'Subject for Tell a Friend','2014-09-19 10:12:13',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(256,NULL,9,'Subject for Tell a Friend','2014-08-29 03:49:56',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(257,NULL,10,'Subject for Pledge Acknowledgment','2014-11-02 05:14:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(258,NULL,9,'Subject for Tell a Friend','2014-07-12 03:04:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(259,NULL,9,'Subject for Tell a Friend','2014-12-10 05:46:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(260,NULL,9,'Subject for Tell a Friend','2014-07-18 07:04:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(261,NULL,9,'Subject for Tell a Friend','2015-01-19 07:35:40',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(262,NULL,9,'Subject for Tell a Friend','2014-06-07 04:45:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(263,NULL,10,'Subject for Pledge Acknowledgment','2014-08-07 11:07:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(264,NULL,10,'Subject for Pledge Acknowledgment','2014-12-23 12:21:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(265,NULL,9,'Subject for Tell a Friend','2015-04-19 05:13:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(266,NULL,10,'Subject for Pledge Acknowledgment','2014-07-22 05:13:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(267,NULL,10,'Subject for Pledge Acknowledgment','2014-05-10 10:32:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(268,NULL,10,'Subject for Pledge Acknowledgment','2014-11-22 03:03:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(269,NULL,10,'Subject for Pledge Acknowledgment','2014-12-31 01:57:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(270,NULL,9,'Subject for Tell a Friend','2014-09-12 11:33:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(271,NULL,9,'Subject for Tell a Friend','2014-10-05 08:28:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(272,NULL,10,'Subject for Pledge Acknowledgment','2014-11-20 01:37:29',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(273,NULL,10,'Subject for Pledge Acknowledgment','2015-04-22 07:11:33',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(274,NULL,9,'Subject for Tell a Friend','2014-09-11 10:44:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(275,NULL,9,'Subject for Tell a Friend','2014-07-17 08:19:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(276,NULL,9,'Subject for Tell a Friend','2014-08-30 10:17:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(277,NULL,10,'Subject for Pledge Acknowledgment','2015-04-11 12:05:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(278,NULL,10,'Subject for Pledge Acknowledgment','2014-12-06 05:20:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(279,NULL,10,'Subject for Pledge Acknowledgment','2015-01-17 09:21:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(280,NULL,10,'Subject for Pledge Acknowledgment','2014-12-22 04:46:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(281,NULL,9,'Subject for Tell a Friend','2014-12-16 06:03:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(282,NULL,9,'Subject for Tell a Friend','2015-02-01 04:52:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(283,NULL,10,'Subject for Pledge Acknowledgment','2015-03-28 05:45:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(284,NULL,9,'Subject for Tell a Friend','2015-03-09 01:03:28',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(285,NULL,9,'Subject for Tell a Friend','2014-12-29 12:35:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(286,NULL,10,'Subject for Pledge Acknowledgment','2014-06-17 09:03:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(287,NULL,10,'Subject for Pledge Acknowledgment','2015-01-31 04:04:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(288,NULL,9,'Subject for Tell a Friend','2014-10-31 11:21:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(289,NULL,9,'Subject for Tell a Friend','2014-06-25 11:25:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(290,NULL,10,'Subject for Pledge Acknowledgment','2014-10-17 05:29:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(291,NULL,9,'Subject for Tell a Friend','2014-05-22 11:48:06',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(292,NULL,10,'Subject for Pledge Acknowledgment','2015-02-10 11:32:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(293,NULL,10,'Subject for Pledge Acknowledgment','2014-07-11 10:48:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(294,NULL,10,'Subject for Pledge Acknowledgment','2014-06-11 05:06:32',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(295,NULL,10,'Subject for Pledge Acknowledgment','2014-11-10 10:51:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(296,NULL,10,'Subject for Pledge Acknowledgment','2015-01-07 03:06:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(297,NULL,9,'Subject for Tell a Friend','2014-08-18 06:58:09',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(298,NULL,9,'Subject for Tell a Friend','2014-12-03 06:54:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(299,NULL,9,'Subject for Tell a Friend','2015-04-05 04:44:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(300,NULL,9,'Subject for Tell a Friend','2015-02-21 03:03:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(301,NULL,9,'Subject for Tell a Friend','2015-02-24 06:02:45',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(302,NULL,9,'Subject for Tell a Friend','2014-06-12 08:14:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(303,NULL,9,'Subject for Tell a Friend','2014-11-03 05:21:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(304,NULL,9,'Subject for Tell a Friend','2015-01-14 12:28:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(305,NULL,9,'Subject for Tell a Friend','2014-11-16 08:02:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(306,NULL,10,'Subject for Pledge Acknowledgment','2014-10-08 10:23:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(307,NULL,10,'Subject for Pledge Acknowledgment','2014-12-08 09:31:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(308,NULL,10,'Subject for Pledge Acknowledgment','2014-11-06 10:24:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(309,NULL,10,'Subject for Pledge Acknowledgment','2015-01-24 06:26:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(310,NULL,10,'Subject for Pledge Acknowledgment','2014-07-30 12:00:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(311,NULL,9,'Subject for Tell a Friend','2014-07-22 03:50:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(312,NULL,9,'Subject for Tell a Friend','2014-12-12 01:23:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(313,NULL,9,'Subject for Tell a Friend','2014-11-03 09:33:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(314,NULL,10,'Subject for Pledge Acknowledgment','2015-03-08 10:00:34',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(315,NULL,9,'Subject for Tell a Friend','2014-10-14 08:38:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(316,NULL,10,'Subject for Pledge Acknowledgment','2014-06-17 04:44:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(317,NULL,10,'Subject for Pledge Acknowledgment','2014-07-17 05:22:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(318,NULL,10,'Subject for Pledge Acknowledgment','2014-07-08 10:48:37',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(319,NULL,10,'Subject for Pledge Acknowledgment','2014-09-04 11:24:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(320,NULL,9,'Subject for Tell a Friend','2014-12-27 06:30:21',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(321,NULL,9,'Subject for Tell a Friend','2014-11-05 08:50:26',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(322,NULL,9,'Subject for Tell a Friend','2014-06-17 03:28:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(323,NULL,10,'Subject for Pledge Acknowledgment','2014-11-12 12:51:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(324,NULL,10,'Subject for Pledge Acknowledgment','2014-05-12 06:56:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(325,NULL,9,'Subject for Tell a Friend','2014-09-01 03:32:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(326,NULL,9,'Subject for Tell a Friend','2015-02-27 11:12:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(327,NULL,10,'Subject for Pledge Acknowledgment','2014-11-14 12:10:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(328,NULL,10,'Subject for Pledge Acknowledgment','2015-04-25 03:40:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(329,NULL,9,'Subject for Tell a Friend','2014-07-02 07:05:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(330,NULL,10,'Subject for Pledge Acknowledgment','2014-08-04 03:20:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(331,NULL,10,'Subject for Pledge Acknowledgment','2014-06-15 09:25:34',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(332,NULL,10,'Subject for Pledge Acknowledgment','2015-01-12 05:39:30',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(333,NULL,9,'Subject for Tell a Friend','2014-12-21 03:49:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(334,NULL,9,'Subject for Tell a Friend','2014-06-11 07:23:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(335,NULL,10,'Subject for Pledge Acknowledgment','2015-03-25 05:05:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(336,NULL,9,'Subject for Tell a Friend','2014-05-26 03:27:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(337,NULL,10,'Subject for Pledge Acknowledgment','2015-02-12 10:01:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(338,NULL,9,'Subject for Tell a Friend','2015-03-13 06:05:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(339,NULL,10,'Subject for Pledge Acknowledgment','2014-10-03 02:06:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(340,NULL,9,'Subject for Tell a Friend','2014-07-30 03:48:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(341,NULL,10,'Subject for Pledge Acknowledgment','2015-02-11 05:44:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(342,NULL,9,'Subject for Tell a Friend','2015-02-19 06:58:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(343,NULL,9,'Subject for Tell a Friend','2014-06-23 01:23:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(344,NULL,10,'Subject for Pledge Acknowledgment','2014-11-08 07:35:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(345,NULL,9,'Subject for Tell a Friend','2014-07-20 06:17:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(346,NULL,10,'Subject for Pledge Acknowledgment','2014-10-04 10:56:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(347,NULL,9,'Subject for Tell a Friend','2015-01-15 06:29:09',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(348,NULL,10,'Subject for Pledge Acknowledgment','2014-08-04 09:58:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(349,NULL,9,'Subject for Tell a Friend','2014-11-14 06:26:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(350,NULL,10,'Subject for Pledge Acknowledgment','2014-10-04 05:37:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(351,NULL,10,'Subject for Pledge Acknowledgment','2014-05-25 04:20:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(352,NULL,9,'Subject for Tell a Friend','2015-04-17 11:32:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(353,NULL,9,'Subject for Tell a Friend','2014-12-01 12:34:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(354,NULL,9,'Subject for Tell a Friend','2014-11-11 11:26:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(355,NULL,10,'Subject for Pledge Acknowledgment','2015-01-28 08:00:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(356,NULL,9,'Subject for Tell a Friend','2015-02-25 10:31:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(357,NULL,9,'Subject for Tell a Friend','2015-02-15 10:40:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(358,NULL,9,'Subject for Tell a Friend','2014-07-31 02:32:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(359,NULL,9,'Subject for Tell a Friend','2015-02-22 12:55:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(360,NULL,9,'Subject for Tell a Friend','2014-09-30 11:01:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(361,NULL,9,'Subject for Tell a Friend','2014-07-20 04:34:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(362,NULL,9,'Subject for Tell a Friend','2015-03-19 01:30:39',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(363,NULL,9,'Subject for Tell a Friend','2014-06-23 05:03:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(364,NULL,9,'Subject for Tell a Friend','2015-04-06 04:53:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(365,NULL,10,'Subject for Pledge Acknowledgment','2014-05-19 11:54:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(366,NULL,9,'Subject for Tell a Friend','2014-05-31 05:43:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(367,NULL,9,'Subject for Tell a Friend','2014-08-02 07:28:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(368,NULL,10,'Subject for Pledge Acknowledgment','2014-05-08 09:58:52',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(369,NULL,9,'Subject for Tell a Friend','2015-03-04 04:53:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(370,NULL,9,'Subject for Tell a Friend','2014-08-27 01:18:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(371,NULL,10,'Subject for Pledge Acknowledgment','2014-06-16 05:31:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(372,NULL,9,'Subject for Tell a Friend','2014-10-09 07:08:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(373,NULL,10,'Subject for Pledge Acknowledgment','2014-09-25 06:37:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(374,NULL,9,'Subject for Tell a Friend','2014-06-06 03:36:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(375,NULL,10,'Subject for Pledge Acknowledgment','2014-06-09 09:40:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(376,NULL,10,'Subject for Pledge Acknowledgment','2015-02-28 04:50:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(377,NULL,9,'Subject for Tell a Friend','2014-12-02 10:57:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(378,NULL,9,'Subject for Tell a Friend','2014-07-29 04:29:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(379,NULL,10,'Subject for Pledge Acknowledgment','2015-03-16 03:20:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(380,NULL,10,'Subject for Pledge Acknowledgment','2014-09-02 07:21:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(381,NULL,9,'Subject for Tell a Friend','2015-04-12 11:55:23',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(382,NULL,9,'Subject for Tell a Friend','2015-02-24 05:10:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(383,NULL,9,'Subject for Tell a Friend','2015-03-09 08:43:45',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(384,NULL,10,'Subject for Pledge Acknowledgment','2014-11-22 09:56:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(385,NULL,9,'Subject for Tell a Friend','2014-05-07 02:03:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(386,NULL,10,'Subject for Pledge Acknowledgment','2014-12-16 02:40:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(387,NULL,10,'Subject for Pledge Acknowledgment','2015-04-19 08:37:06',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(388,NULL,9,'Subject for Tell a Friend','2015-03-19 08:48:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(389,NULL,9,'Subject for Tell a Friend','2015-03-27 12:17:43',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(390,NULL,9,'Subject for Tell a Friend','2015-02-02 01:42:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(391,NULL,10,'Subject for Pledge Acknowledgment','2014-10-05 12:53:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(392,NULL,10,'Subject for Pledge Acknowledgment','2015-01-01 07:55:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(393,NULL,9,'Subject for Tell a Friend','2015-03-03 07:11:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(394,NULL,10,'Subject for Pledge Acknowledgment','2014-06-23 10:47:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(395,NULL,10,'Subject for Pledge Acknowledgment','2015-04-28 11:44:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(396,NULL,10,'Subject for Pledge Acknowledgment','2015-01-22 08:59:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(397,NULL,10,'Subject for Pledge Acknowledgment','2015-01-18 09:16:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(398,NULL,9,'Subject for Tell a Friend','2014-12-15 04:47:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(399,NULL,9,'Subject for Tell a Friend','2015-02-25 03:00:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(400,NULL,9,'Subject for Tell a Friend','2014-10-29 06:02:45',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(401,NULL,10,'Subject for Pledge Acknowledgment','2014-10-09 03:21:57',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(402,NULL,10,'Subject for Pledge Acknowledgment','2014-10-17 11:44:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(403,NULL,10,'Subject for Pledge Acknowledgment','2014-05-17 06:42:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(404,NULL,9,'Subject for Tell a Friend','2014-05-13 03:32:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(405,NULL,9,'Subject for Tell a Friend','2014-10-23 06:38:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(406,NULL,10,'Subject for Pledge Acknowledgment','2014-09-25 03:10:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(407,NULL,10,'Subject for Pledge Acknowledgment','2015-04-13 12:12:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(408,NULL,10,'Subject for Pledge Acknowledgment','2014-09-03 12:40:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(409,NULL,9,'Subject for Tell a Friend','2014-08-16 01:27:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(410,NULL,9,'Subject for Tell a Friend','2014-11-18 04:03:04',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(411,NULL,9,'Subject for Tell a Friend','2014-10-23 01:04:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(412,NULL,9,'Subject for Tell a Friend','2014-07-26 06:09:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(413,NULL,9,'Subject for Tell a Friend','2014-09-01 11:59:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(414,NULL,10,'Subject for Pledge Acknowledgment','2015-03-12 10:25:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(415,NULL,9,'Subject for Tell a Friend','2014-09-05 08:04:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(416,NULL,9,'Subject for Tell a Friend','2015-04-27 04:59:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(417,NULL,9,'Subject for Tell a Friend','2014-07-16 03:57:18',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(418,NULL,9,'Subject for Tell a Friend','2015-02-19 07:46:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(419,NULL,10,'Subject for Pledge Acknowledgment','2014-07-25 04:19:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(420,NULL,9,'Subject for Tell a Friend','2015-02-17 11:28:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(421,NULL,10,'Subject for Pledge Acknowledgment','2014-09-25 05:14:29',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(422,NULL,9,'Subject for Tell a Friend','2014-11-13 04:53:56',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(423,NULL,10,'Subject for Pledge Acknowledgment','2014-12-21 02:17:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(424,NULL,10,'Subject for Pledge Acknowledgment','2014-09-01 06:11:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(425,NULL,10,'Subject for Pledge Acknowledgment','2014-08-28 06:48:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(426,NULL,9,'Subject for Tell a Friend','2014-10-28 03:01:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(427,NULL,9,'Subject for Tell a Friend','2014-10-18 05:26:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(428,NULL,9,'Subject for Tell a Friend','2015-01-15 11:26:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(429,NULL,10,'Subject for Pledge Acknowledgment','2014-12-27 12:57:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(430,NULL,9,'Subject for Tell a Friend','2015-04-15 11:30:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(431,NULL,9,'Subject for Tell a Friend','2015-04-08 03:23:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(432,NULL,9,'Subject for Tell a Friend','2014-11-02 03:37:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(433,NULL,9,'Subject for Tell a Friend','2014-08-23 11:43:44',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(434,NULL,10,'Subject for Pledge Acknowledgment','2015-03-12 04:10:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(435,NULL,10,'Subject for Pledge Acknowledgment','2015-01-16 12:57:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(436,NULL,9,'Subject for Tell a Friend','2015-03-04 12:36:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(437,NULL,9,'Subject for Tell a Friend','2014-10-07 04:56:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(438,NULL,10,'Subject for Pledge Acknowledgment','2014-08-18 10:06:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(439,NULL,10,'Subject for Pledge Acknowledgment','2014-10-23 06:59:12',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(440,NULL,9,'Subject for Tell a Friend','2014-10-20 04:20:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(441,NULL,10,'Subject for Pledge Acknowledgment','2015-03-08 08:11:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(442,NULL,9,'Subject for Tell a Friend','2014-08-07 01:44:59',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(443,NULL,10,'Subject for Pledge Acknowledgment','2014-05-20 10:38:47',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(444,NULL,10,'Subject for Pledge Acknowledgment','2014-12-17 10:01:24',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(445,NULL,9,'Subject for Tell a Friend','2015-01-24 04:12:11',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(446,NULL,10,'Subject for Pledge Acknowledgment','2014-11-02 03:29:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(447,NULL,9,'Subject for Tell a Friend','2014-09-08 08:47:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(448,NULL,9,'Subject for Tell a Friend','2014-06-09 02:19:14',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(449,NULL,9,'Subject for Tell a Friend','2015-04-12 12:41:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(450,NULL,9,'Subject for Tell a Friend','2014-12-10 08:34:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(451,1,6,'$ 125.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(452,2,6,'$ 50.00-Online: Save the Penguins','2010-03-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(453,3,6,'$ 25.00-Apr 2007 Mailer 1','2010-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(454,4,6,'$ 50.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(455,5,6,'$ 500.00-Apr 2007 Mailer 1','2010-04-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(456,6,6,'$ 175.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(457,7,6,'$ 50.00-Online: Save the Penguins','2010-03-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(458,8,6,'$ 10.00-Online: Save the Penguins','2010-03-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(459,9,6,'$ 250.00-Online: Save the Penguins','2010-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(460,10,6,NULL,'2009-07-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(461,11,6,NULL,'2009-07-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(462,12,6,NULL,'2009-10-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(463,13,6,NULL,'2009-12-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(464,1,7,'General','2015-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(465,2,7,'Student','2015-04-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(466,3,7,'General','2015-04-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(467,4,7,'Student','2015-04-26 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(468,5,7,'General','2013-03-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(469,6,7,'Student','2015-04-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(470,7,7,'General','2015-04-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(471,8,7,'Student','2015-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(472,9,7,'General','2015-04-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(473,10,7,'Student','2014-04-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(474,11,7,'Lifetime','2015-04-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(475,12,7,'Student','2015-04-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(476,13,7,'General','2015-04-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(477,14,7,'Student','2015-04-16 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(478,15,7,'Student','2014-04-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(479,16,7,'Student','2015-04-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(480,17,7,'General','2015-04-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(481,18,7,'Student','2015-04-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(482,19,7,'General','2015-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(483,20,7,'Student','2014-04-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(484,21,7,'General','2015-04-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(485,22,7,'Lifetime','2015-04-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(486,23,7,'General','2015-04-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(487,24,7,'Student','2015-04-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(488,25,7,'General','2012-10-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(489,26,7,'Student','2015-04-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(490,27,7,'General','2015-04-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(491,28,7,'Student','2015-04-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(492,29,7,'General','2015-04-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(493,30,7,'Student','2014-03-31 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(494,14,6,'$ 100.00 - General Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(495,15,6,'$ 100.00 - General Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(496,16,6,'$ 100.00 - General Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(497,17,6,'$ 100.00 - General Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(498,18,6,'$ 100.00 - General Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(499,19,6,'$ 100.00 - General Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(500,20,6,'$ 100.00 - General Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(501,21,6,'$ 100.00 - General Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(502,22,6,'$ 100.00 - General Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(503,23,6,'$ 100.00 - General Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(504,24,6,'$ 100.00 - General Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(505,25,6,'$ 100.00 - General Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(506,26,6,'$ 100.00 - General Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(507,27,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(508,28,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(509,29,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(510,30,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(511,31,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(512,32,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(513,33,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(514,34,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(515,35,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(516,36,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(517,37,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(518,38,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(519,39,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(520,40,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(521,41,6,'$ 50.00 - Student Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(522,42,6,'$ 1200.00 - Lifetime Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(523,43,6,'$ 1200.00 - Lifetime Membership: Offline signup','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(525,1,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(526,2,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(527,3,5,'NULL','2008-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(528,4,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(529,5,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(530,6,5,'NULL','2008-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(531,7,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(532,8,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(533,9,5,'NULL','2008-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(534,10,5,'NULL','2008-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(535,11,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(536,12,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(537,13,5,'NULL','2008-06-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(538,14,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(539,15,5,'NULL','2008-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(540,16,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(541,17,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(542,18,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(543,19,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(544,20,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(545,21,5,'NULL','2008-03-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(546,22,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(547,23,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(548,24,5,'NULL','2008-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(549,25,5,'NULL','2008-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(550,26,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(551,27,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(552,28,5,'NULL','2009-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(553,29,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(554,30,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(555,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(556,32,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(557,33,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(558,34,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(559,35,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(560,36,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(561,37,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(562,38,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(563,39,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(564,40,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(565,41,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(566,42,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(567,43,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(568,44,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(569,45,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(570,46,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(571,47,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(572,48,5,'NULL','2009-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(573,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(574,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(575,45,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(576,46,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(577,47,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(578,48,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(579,49,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(580,50,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(581,51,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(582,52,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(583,53,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(584,54,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(585,55,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(586,56,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(587,57,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(588,58,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(589,59,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(590,60,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(591,61,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(592,62,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(593,63,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(594,64,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(595,65,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(596,66,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(597,67,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(598,68,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(599,69,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(600,70,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(601,71,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(602,72,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(603,73,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(604,74,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(605,75,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(606,76,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(607,77,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(608,78,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(609,79,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(610,80,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(611,81,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(612,82,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(613,83,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(614,84,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(615,85,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(616,86,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(617,87,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(618,88,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(619,89,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(620,90,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(621,91,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(622,92,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(623,93,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(624,94,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-04-29 03:27:40',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL);
++INSERT INTO `civicrm_activity` (`id`, `source_record_id`, `activity_type_id`, `subject`, `activity_date_time`, `duration`, `location`, `phone_id`, `phone_number`, `details`, `status_id`, `priority_id`, `parent_id`, `is_test`, `medium_id`, `is_auto`, `relationship_id`, `is_current_revision`, `original_id`, `result`, `is_deleted`, `campaign_id`, `engagement_level`, `weight`) VALUES (1,NULL,10,'Subject for Pledge Acknowledgment','2014-11-29 05:42:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(2,NULL,10,'Subject for Pledge Acknowledgment','2014-06-17 12:53:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(3,NULL,10,'Subject for Pledge Acknowledgment','2014-10-28 01:56:27',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(4,NULL,9,'Subject for Tell a Friend','2014-08-31 10:29:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(5,NULL,9,'Subject for Tell a Friend','2014-08-27 06:57:52',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(6,NULL,9,'Subject for Tell a Friend','2015-01-05 12:06:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(7,NULL,10,'Subject for Pledge Acknowledgment','2014-10-19 11:45:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(8,NULL,10,'Subject for Pledge Acknowledgment','2014-12-25 12:06:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(9,NULL,9,'Subject for Tell a Friend','2014-07-07 08:06:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(10,NULL,9,'Subject for Tell a Friend','2015-01-28 12:13:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(11,NULL,9,'Subject for Tell a Friend','2014-11-04 01:26:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(12,NULL,10,'Subject for Pledge Acknowledgment','2014-11-30 03:48:23',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(13,NULL,9,'Subject for Tell a Friend','2014-08-06 02:54:25',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(14,NULL,10,'Subject for Pledge Acknowledgment','2014-12-01 09:22:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(15,NULL,10,'Subject for Pledge Acknowledgment','2014-11-06 02:10:30',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(16,NULL,9,'Subject for Tell a Friend','2014-09-23 11:55:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(17,NULL,10,'Subject for Pledge Acknowledgment','2014-08-07 02:44:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(18,NULL,10,'Subject for Pledge Acknowledgment','2015-02-15 02:52:03',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(19,NULL,9,'Subject for Tell a Friend','2014-06-14 01:01:02',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(20,NULL,10,'Subject for Pledge Acknowledgment','2014-11-30 06:15:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(21,NULL,9,'Subject for Tell a Friend','2015-01-12 10:00:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(22,NULL,10,'Subject for Pledge Acknowledgment','2014-10-19 02:50:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(23,NULL,9,'Subject for Tell a Friend','2015-05-01 04:26:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(24,NULL,9,'Subject for Tell a Friend','2015-05-09 07:44:04',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(25,NULL,9,'Subject for Tell a Friend','2014-12-10 01:06:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(26,NULL,10,'Subject for Pledge Acknowledgment','2014-12-08 11:49:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(27,NULL,10,'Subject for Pledge Acknowledgment','2015-04-10 11:34:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(28,NULL,10,'Subject for Pledge Acknowledgment','2014-07-09 07:33:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(29,NULL,9,'Subject for Tell a Friend','2014-06-08 11:53:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(30,NULL,10,'Subject for Pledge Acknowledgment','2014-08-23 07:51:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(31,NULL,10,'Subject for Pledge Acknowledgment','2014-06-02 03:59:08',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(32,NULL,10,'Subject for Pledge Acknowledgment','2014-10-02 03:59:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(33,NULL,9,'Subject for Tell a Friend','2014-10-13 03:50:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(34,NULL,9,'Subject for Tell a Friend','2014-07-13 03:27:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(35,NULL,10,'Subject for Pledge Acknowledgment','2014-05-16 01:59:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(36,NULL,10,'Subject for Pledge Acknowledgment','2015-01-06 05:23:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(37,NULL,10,'Subject for Pledge Acknowledgment','2014-09-22 03:02:56',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(38,NULL,10,'Subject for Pledge Acknowledgment','2015-03-05 09:16:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(39,NULL,10,'Subject for Pledge Acknowledgment','2015-03-17 06:14:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(40,NULL,9,'Subject for Tell a Friend','2014-06-12 07:29:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(41,NULL,10,'Subject for Pledge Acknowledgment','2015-02-07 10:11:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(42,NULL,9,'Subject for Tell a Friend','2015-04-06 11:44:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(43,NULL,9,'Subject for Tell a Friend','2014-07-29 07:08:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(44,NULL,10,'Subject for Pledge Acknowledgment','2014-09-16 07:47:59',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(45,NULL,10,'Subject for Pledge Acknowledgment','2015-03-28 06:52:35',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(46,NULL,10,'Subject for Pledge Acknowledgment','2015-02-17 09:48:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(47,NULL,9,'Subject for Tell a Friend','2015-01-10 03:04:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(48,NULL,9,'Subject for Tell a Friend','2014-06-21 09:45:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(49,NULL,10,'Subject for Pledge Acknowledgment','2014-10-03 01:53:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(50,NULL,10,'Subject for Pledge Acknowledgment','2015-03-15 11:05:39',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(51,NULL,10,'Subject for Pledge Acknowledgment','2015-04-11 07:56:41',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(52,NULL,9,'Subject for Tell a Friend','2015-04-09 07:01:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(53,NULL,9,'Subject for Tell a Friend','2014-06-24 05:08:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(54,NULL,9,'Subject for Tell a Friend','2014-09-25 02:04:37',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(55,NULL,9,'Subject for Tell a Friend','2014-06-07 04:00:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(56,NULL,10,'Subject for Pledge Acknowledgment','2014-08-14 01:39:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(57,NULL,10,'Subject for Pledge Acknowledgment','2015-02-24 11:23:24',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(58,NULL,10,'Subject for Pledge Acknowledgment','2015-03-15 08:01:42',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(59,NULL,10,'Subject for Pledge Acknowledgment','2014-09-01 08:15:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(60,NULL,10,'Subject for Pledge Acknowledgment','2014-07-14 03:47:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(61,NULL,9,'Subject for Tell a Friend','2014-07-11 05:19:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(62,NULL,9,'Subject for Tell a Friend','2014-08-10 05:16:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(63,NULL,10,'Subject for Pledge Acknowledgment','2014-12-01 10:33:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(64,NULL,10,'Subject for Pledge Acknowledgment','2015-01-06 09:46:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(65,NULL,10,'Subject for Pledge Acknowledgment','2014-10-12 02:47:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(66,NULL,10,'Subject for Pledge Acknowledgment','2014-09-23 08:45:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(67,NULL,9,'Subject for Tell a Friend','2014-11-25 11:20:54',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(68,NULL,9,'Subject for Tell a Friend','2014-12-14 01:17:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(69,NULL,9,'Subject for Tell a Friend','2014-06-15 04:12:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(70,NULL,9,'Subject for Tell a Friend','2015-03-14 05:00:49',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(71,NULL,10,'Subject for Pledge Acknowledgment','2014-05-18 08:14:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(72,NULL,10,'Subject for Pledge Acknowledgment','2014-09-28 03:21:55',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(73,NULL,9,'Subject for Tell a Friend','2014-12-02 06:44:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(74,NULL,9,'Subject for Tell a Friend','2015-01-08 02:23:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(75,NULL,9,'Subject for Tell a Friend','2014-05-26 03:32:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(76,NULL,10,'Subject for Pledge Acknowledgment','2015-05-07 09:16:17',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(77,NULL,9,'Subject for Tell a Friend','2014-07-24 09:47:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(78,NULL,10,'Subject for Pledge Acknowledgment','2015-04-02 07:29:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(79,NULL,9,'Subject for Tell a Friend','2014-10-18 05:56:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(80,NULL,10,'Subject for Pledge Acknowledgment','2014-11-04 11:51:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(81,NULL,9,'Subject for Tell a Friend','2015-01-24 08:54:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(82,NULL,9,'Subject for Tell a Friend','2015-04-30 07:34:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(83,NULL,10,'Subject for Pledge Acknowledgment','2015-01-04 08:37:30',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(84,NULL,10,'Subject for Pledge Acknowledgment','2015-01-29 02:14:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(85,NULL,9,'Subject for Tell a Friend','2014-10-02 07:17:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(86,NULL,9,'Subject for Tell a Friend','2014-08-20 06:14:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(87,NULL,10,'Subject for Pledge Acknowledgment','2015-04-12 03:32:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(88,NULL,10,'Subject for Pledge Acknowledgment','2014-08-04 06:39:12',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(89,NULL,9,'Subject for Tell a Friend','2014-07-01 01:43:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(90,NULL,9,'Subject for Tell a Friend','2014-10-20 06:46:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(91,NULL,9,'Subject for Tell a Friend','2014-05-10 06:29:32',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(92,NULL,9,'Subject for Tell a Friend','2015-02-08 11:03:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(93,NULL,9,'Subject for Tell a Friend','2015-03-09 11:48:49',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(94,NULL,10,'Subject for Pledge Acknowledgment','2014-10-31 08:10:05',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(95,NULL,9,'Subject for Tell a Friend','2014-06-23 11:28:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(96,NULL,10,'Subject for Pledge Acknowledgment','2014-06-21 07:48:42',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(97,NULL,10,'Subject for Pledge Acknowledgment','2014-07-26 01:56:25',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(98,NULL,9,'Subject for Tell a Friend','2014-11-01 12:58:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(99,NULL,10,'Subject for Pledge Acknowledgment','2014-10-13 12:21:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(100,NULL,10,'Subject for Pledge Acknowledgment','2014-10-01 05:39:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(101,NULL,9,'Subject for Tell a Friend','2014-07-27 07:54:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(102,NULL,9,'Subject for Tell a Friend','2015-03-06 06:18:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(103,NULL,10,'Subject for Pledge Acknowledgment','2014-10-22 01:11:15',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(104,NULL,10,'Subject for Pledge Acknowledgment','2014-11-11 04:48:19',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(105,NULL,9,'Subject for Tell a Friend','2014-07-20 04:04:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(106,NULL,9,'Subject for Tell a Friend','2014-06-13 02:23:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(107,NULL,9,'Subject for Tell a Friend','2014-08-18 07:11:49',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(108,NULL,10,'Subject for Pledge Acknowledgment','2014-08-27 09:30:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(109,NULL,10,'Subject for Pledge Acknowledgment','2015-03-10 09:07:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(110,NULL,9,'Subject for Tell a Friend','2014-11-02 10:05:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(111,NULL,9,'Subject for Tell a Friend','2014-07-22 02:30:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(112,NULL,10,'Subject for Pledge Acknowledgment','2014-11-25 02:12:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(113,NULL,9,'Subject for Tell a Friend','2014-07-06 04:43:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(114,NULL,10,'Subject for Pledge Acknowledgment','2015-04-21 06:36:26',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(115,NULL,10,'Subject for Pledge Acknowledgment','2015-03-29 01:41:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(116,NULL,9,'Subject for Tell a Friend','2015-02-14 09:42:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(117,NULL,9,'Subject for Tell a Friend','2015-04-12 06:02:44',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(118,NULL,10,'Subject for Pledge Acknowledgment','2014-09-22 05:13:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(119,NULL,9,'Subject for Tell a Friend','2014-07-01 05:23:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(120,NULL,9,'Subject for Tell a Friend','2015-04-16 03:33:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(121,NULL,9,'Subject for Tell a Friend','2015-03-17 08:55:16',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(122,NULL,9,'Subject for Tell a Friend','2015-04-03 08:38:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(123,NULL,9,'Subject for Tell a Friend','2014-07-03 12:30:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(124,NULL,10,'Subject for Pledge Acknowledgment','2014-11-22 11:12:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(125,NULL,9,'Subject for Tell a Friend','2014-08-08 08:02:00',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(126,NULL,9,'Subject for Tell a Friend','2014-08-18 01:42:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(127,NULL,10,'Subject for Pledge Acknowledgment','2014-10-15 10:43:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(128,NULL,9,'Subject for Tell a Friend','2015-03-12 01:12:37',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(129,NULL,9,'Subject for Tell a Friend','2014-08-26 11:56:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(130,NULL,10,'Subject for Pledge Acknowledgment','2014-07-21 04:39:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(131,NULL,9,'Subject for Tell a Friend','2014-08-13 07:29:35',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(132,NULL,9,'Subject for Tell a Friend','2015-03-10 10:31:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(133,NULL,9,'Subject for Tell a Friend','2015-02-25 04:48:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(134,NULL,9,'Subject for Tell a Friend','2014-09-08 08:58:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(135,NULL,9,'Subject for Tell a Friend','2014-11-03 09:26:28',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(136,NULL,10,'Subject for Pledge Acknowledgment','2015-02-18 05:32:58',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(137,NULL,10,'Subject for Pledge Acknowledgment','2014-05-16 05:07:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(138,NULL,9,'Subject for Tell a Friend','2014-11-09 02:35:41',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(139,NULL,9,'Subject for Tell a Friend','2014-11-19 07:25:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(140,NULL,10,'Subject for Pledge Acknowledgment','2015-02-24 09:55:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(141,NULL,10,'Subject for Pledge Acknowledgment','2014-10-01 02:49:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(142,NULL,9,'Subject for Tell a Friend','2015-05-04 03:25:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(143,NULL,10,'Subject for Pledge Acknowledgment','2014-12-20 04:31:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(144,NULL,10,'Subject for Pledge Acknowledgment','2015-05-03 06:22:47',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(145,NULL,10,'Subject for Pledge Acknowledgment','2014-08-22 08:24:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(146,NULL,9,'Subject for Tell a Friend','2014-07-03 08:28:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(147,NULL,10,'Subject for Pledge Acknowledgment','2014-06-21 04:56:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(148,NULL,9,'Subject for Tell a Friend','2014-07-31 03:00:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(149,NULL,9,'Subject for Tell a Friend','2014-12-02 03:28:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(150,NULL,10,'Subject for Pledge Acknowledgment','2014-12-20 11:31:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(151,NULL,10,'Subject for Pledge Acknowledgment','2014-08-20 01:07:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(152,NULL,10,'Subject for Pledge Acknowledgment','2014-05-16 04:06:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(153,NULL,10,'Subject for Pledge Acknowledgment','2015-02-03 05:30:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(154,NULL,9,'Subject for Tell a Friend','2014-10-13 02:24:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(155,NULL,10,'Subject for Pledge Acknowledgment','2014-06-11 07:53:39',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(156,NULL,9,'Subject for Tell a Friend','2014-06-07 06:21:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(157,NULL,9,'Subject for Tell a Friend','2014-12-08 04:25:15',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(158,NULL,9,'Subject for Tell a Friend','2014-10-04 11:35:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(159,NULL,10,'Subject for Pledge Acknowledgment','2014-10-27 01:15:46',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(160,NULL,9,'Subject for Tell a Friend','2015-03-25 04:42:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(161,NULL,9,'Subject for Tell a Friend','2014-11-23 09:40:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(162,NULL,10,'Subject for Pledge Acknowledgment','2014-08-04 10:31:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(163,NULL,9,'Subject for Tell a Friend','2014-10-28 02:12:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(164,NULL,9,'Subject for Tell a Friend','2015-04-26 09:20:53',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(165,NULL,9,'Subject for Tell a Friend','2015-04-20 01:54:40',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(166,NULL,9,'Subject for Tell a Friend','2014-11-10 08:18:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(167,NULL,10,'Subject for Pledge Acknowledgment','2014-06-14 10:37:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(168,NULL,9,'Subject for Tell a Friend','2014-11-24 08:29:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(169,NULL,10,'Subject for Pledge Acknowledgment','2014-12-25 05:07:18',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(170,NULL,9,'Subject for Tell a Friend','2014-12-30 06:05:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(171,NULL,10,'Subject for Pledge Acknowledgment','2014-11-18 06:05:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(172,NULL,10,'Subject for Pledge Acknowledgment','2014-10-30 11:28:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(173,NULL,9,'Subject for Tell a Friend','2014-08-28 09:22:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(174,NULL,10,'Subject for Pledge Acknowledgment','2014-05-22 07:36:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(175,NULL,10,'Subject for Pledge Acknowledgment','2014-09-19 09:23:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(176,NULL,10,'Subject for Pledge Acknowledgment','2015-01-16 07:30:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(177,NULL,10,'Subject for Pledge Acknowledgment','2015-02-21 10:45:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(178,NULL,9,'Subject for Tell a Friend','2014-10-17 05:04:17',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(179,NULL,10,'Subject for Pledge Acknowledgment','2014-05-13 12:54:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(180,NULL,9,'Subject for Tell a Friend','2014-06-17 11:19:24',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(181,NULL,9,'Subject for Tell a Friend','2015-04-25 05:11:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(182,NULL,10,'Subject for Pledge Acknowledgment','2014-08-17 01:24:50',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(183,NULL,10,'Subject for Pledge Acknowledgment','2015-03-02 11:10:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(184,NULL,10,'Subject for Pledge Acknowledgment','2015-02-16 04:34:15',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(185,NULL,9,'Subject for Tell a Friend','2015-04-30 05:59:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(186,NULL,10,'Subject for Pledge Acknowledgment','2014-10-13 04:54:12',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(187,NULL,10,'Subject for Pledge Acknowledgment','2014-08-17 11:07:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(188,NULL,10,'Subject for Pledge Acknowledgment','2014-11-12 11:46:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(189,NULL,9,'Subject for Tell a Friend','2015-02-18 01:38:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(190,NULL,9,'Subject for Tell a Friend','2014-06-25 08:27:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(191,NULL,10,'Subject for Pledge Acknowledgment','2015-01-29 09:29:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(192,NULL,9,'Subject for Tell a Friend','2015-04-04 11:52:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(193,NULL,9,'Subject for Tell a Friend','2015-04-08 12:47:20',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(194,NULL,10,'Subject for Pledge Acknowledgment','2015-04-27 01:10:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(195,NULL,10,'Subject for Pledge Acknowledgment','2015-01-10 07:06:40',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(196,NULL,10,'Subject for Pledge Acknowledgment','2014-07-02 06:42:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(197,NULL,10,'Subject for Pledge Acknowledgment','2014-11-25 07:13:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(198,NULL,10,'Subject for Pledge Acknowledgment','2014-11-09 09:08:19',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(199,NULL,9,'Subject for Tell a Friend','2014-11-23 06:59:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(200,NULL,9,'Subject for Tell a Friend','2014-08-06 05:04:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(201,NULL,9,'Subject for Tell a Friend','2015-03-16 08:02:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(202,NULL,9,'Subject for Tell a Friend','2014-07-31 07:41:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(203,NULL,9,'Subject for Tell a Friend','2015-04-09 11:49:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(204,NULL,9,'Subject for Tell a Friend','2014-08-06 12:15:04',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(205,NULL,9,'Subject for Tell a Friend','2015-01-17 05:42:01',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(206,NULL,9,'Subject for Tell a Friend','2014-12-13 05:46:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(207,NULL,9,'Subject for Tell a Friend','2014-12-16 10:27:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(208,NULL,10,'Subject for Pledge Acknowledgment','2014-07-30 08:36:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(209,NULL,10,'Subject for Pledge Acknowledgment','2015-04-12 12:20:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(210,NULL,10,'Subject for Pledge Acknowledgment','2015-01-03 01:57:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(211,NULL,9,'Subject for Tell a Friend','2014-09-27 08:05:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(212,NULL,10,'Subject for Pledge Acknowledgment','2014-07-28 04:18:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(213,NULL,10,'Subject for Pledge Acknowledgment','2014-05-14 05:31:40',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(214,NULL,10,'Subject for Pledge Acknowledgment','2014-09-28 05:20:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(215,NULL,10,'Subject for Pledge Acknowledgment','2015-02-21 03:30:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(216,NULL,9,'Subject for Tell a Friend','2014-05-20 08:10:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(217,NULL,9,'Subject for Tell a Friend','2015-03-26 09:05:24',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(218,NULL,9,'Subject for Tell a Friend','2014-11-16 05:08:31',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(219,NULL,9,'Subject for Tell a Friend','2014-05-28 04:23:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(220,NULL,9,'Subject for Tell a Friend','2015-04-25 07:32:50',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(221,NULL,9,'Subject for Tell a Friend','2014-05-12 08:10:15',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(222,NULL,10,'Subject for Pledge Acknowledgment','2014-10-10 03:02:43',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(223,NULL,9,'Subject for Tell a Friend','2014-07-03 05:11:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(224,NULL,10,'Subject for Pledge Acknowledgment','2014-06-25 07:40:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(225,NULL,9,'Subject for Tell a Friend','2014-07-31 12:49:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(226,NULL,10,'Subject for Pledge Acknowledgment','2014-08-25 12:12:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(227,NULL,10,'Subject for Pledge Acknowledgment','2015-01-29 04:12:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(228,NULL,10,'Subject for Pledge Acknowledgment','2015-01-30 06:54:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(229,NULL,10,'Subject for Pledge Acknowledgment','2014-06-09 07:15:55',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(230,NULL,9,'Subject for Tell a Friend','2014-12-03 06:06:52',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(231,NULL,10,'Subject for Pledge Acknowledgment','2014-12-29 08:57:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(232,NULL,9,'Subject for Tell a Friend','2015-02-26 06:44:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(233,NULL,9,'Subject for Tell a Friend','2015-02-16 12:06:33',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(234,NULL,10,'Subject for Pledge Acknowledgment','2015-03-30 04:50:29',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(235,NULL,10,'Subject for Pledge Acknowledgment','2014-07-13 06:57:38',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(236,NULL,9,'Subject for Tell a Friend','2015-01-08 02:09:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(237,NULL,10,'Subject for Pledge Acknowledgment','2015-03-28 09:21:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(238,NULL,10,'Subject for Pledge Acknowledgment','2014-08-15 08:59:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(239,NULL,9,'Subject for Tell a Friend','2014-07-13 06:49:27',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(240,NULL,9,'Subject for Tell a Friend','2014-06-05 02:25:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(241,NULL,9,'Subject for Tell a Friend','2015-02-13 04:46:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(242,NULL,10,'Subject for Pledge Acknowledgment','2014-10-15 12:25:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(243,NULL,10,'Subject for Pledge Acknowledgment','2014-12-22 08:41:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(244,NULL,10,'Subject for Pledge Acknowledgment','2014-11-13 04:43:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(245,NULL,9,'Subject for Tell a Friend','2015-01-14 09:45:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(246,NULL,10,'Subject for Pledge Acknowledgment','2014-08-25 02:03:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(247,NULL,9,'Subject for Tell a Friend','2015-03-10 08:02:22',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(248,NULL,10,'Subject for Pledge Acknowledgment','2014-11-27 06:21:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(249,NULL,9,'Subject for Tell a Friend','2014-12-01 11:39:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(250,NULL,10,'Subject for Pledge Acknowledgment','2014-11-30 01:12:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(251,NULL,10,'Subject for Pledge Acknowledgment','2014-10-28 10:01:19',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(252,NULL,9,'Subject for Tell a Friend','2014-11-17 11:41:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(253,NULL,9,'Subject for Tell a Friend','2015-02-12 02:49:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(254,NULL,10,'Subject for Pledge Acknowledgment','2014-09-18 07:15:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(255,NULL,10,'Subject for Pledge Acknowledgment','2015-04-19 04:02:44',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(256,NULL,9,'Subject for Tell a Friend','2014-09-07 06:34:28',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(257,NULL,10,'Subject for Pledge Acknowledgment','2014-11-24 04:02:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(258,NULL,9,'Subject for Tell a Friend','2014-09-20 04:03:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(259,NULL,10,'Subject for Pledge Acknowledgment','2015-02-05 05:36:51',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(260,NULL,9,'Subject for Tell a Friend','2014-05-23 04:27:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(261,NULL,10,'Subject for Pledge Acknowledgment','2015-02-04 02:18:48',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(262,NULL,10,'Subject for Pledge Acknowledgment','2015-03-03 02:22:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(263,NULL,9,'Subject for Tell a Friend','2014-05-19 04:44:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(264,NULL,10,'Subject for Pledge Acknowledgment','2015-02-04 12:23:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(265,NULL,10,'Subject for Pledge Acknowledgment','2014-12-10 06:30:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(266,NULL,10,'Subject for Pledge Acknowledgment','2015-02-14 07:47:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(267,NULL,10,'Subject for Pledge Acknowledgment','2014-10-11 05:59:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(268,NULL,9,'Subject for Tell a Friend','2015-01-20 08:56:33',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(269,NULL,10,'Subject for Pledge Acknowledgment','2015-04-19 10:41:01',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(270,NULL,10,'Subject for Pledge Acknowledgment','2014-09-21 10:41:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(271,NULL,10,'Subject for Pledge Acknowledgment','2014-10-20 07:06:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(272,NULL,10,'Subject for Pledge Acknowledgment','2014-08-08 01:49:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(273,NULL,10,'Subject for Pledge Acknowledgment','2015-04-03 12:28:26',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(274,NULL,9,'Subject for Tell a Friend','2014-06-28 08:28:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(275,NULL,9,'Subject for Tell a Friend','2014-05-15 06:28:47',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(276,NULL,9,'Subject for Tell a Friend','2014-08-17 02:01:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(277,NULL,10,'Subject for Pledge Acknowledgment','2014-10-22 07:10:10',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(278,NULL,10,'Subject for Pledge Acknowledgment','2015-02-08 11:30:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(279,NULL,10,'Subject for Pledge Acknowledgment','2014-09-02 05:41:38',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(280,NULL,10,'Subject for Pledge Acknowledgment','2015-03-25 01:53:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(281,NULL,9,'Subject for Tell a Friend','2014-06-29 02:10:36',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(282,NULL,9,'Subject for Tell a Friend','2014-07-04 09:38:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(283,NULL,9,'Subject for Tell a Friend','2014-09-02 04:25:25',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(284,NULL,10,'Subject for Pledge Acknowledgment','2015-01-12 07:20:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(285,NULL,9,'Subject for Tell a Friend','2014-09-14 12:05:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(286,NULL,10,'Subject for Pledge Acknowledgment','2014-08-04 10:44:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(287,NULL,9,'Subject for Tell a Friend','2015-01-03 12:21:02',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(288,NULL,10,'Subject for Pledge Acknowledgment','2014-11-04 06:30:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(289,NULL,10,'Subject for Pledge Acknowledgment','2015-02-26 03:07:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(290,NULL,9,'Subject for Tell a Friend','2014-06-26 08:53:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(291,NULL,10,'Subject for Pledge Acknowledgment','2014-10-18 05:53:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(292,NULL,9,'Subject for Tell a Friend','2014-07-01 07:55:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(293,NULL,10,'Subject for Pledge Acknowledgment','2015-04-27 08:58:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(294,NULL,9,'Subject for Tell a Friend','2014-08-24 02:10:29',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(295,NULL,9,'Subject for Tell a Friend','2014-07-18 08:41:37',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(296,NULL,10,'Subject for Pledge Acknowledgment','2014-10-02 03:53:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(297,NULL,10,'Subject for Pledge Acknowledgment','2014-10-31 05:33:22',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(298,NULL,10,'Subject for Pledge Acknowledgment','2015-02-02 02:40:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(299,NULL,10,'Subject for Pledge Acknowledgment','2015-04-04 04:33:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(300,NULL,10,'Subject for Pledge Acknowledgment','2014-11-20 05:13:20',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(301,NULL,10,'Subject for Pledge Acknowledgment','2014-10-13 12:33:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(302,NULL,10,'Subject for Pledge Acknowledgment','2014-07-16 09:00:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(303,NULL,9,'Subject for Tell a Friend','2015-04-23 01:46:58',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(304,NULL,10,'Subject for Pledge Acknowledgment','2014-10-22 10:54:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(305,NULL,9,'Subject for Tell a Friend','2014-08-20 06:20:12',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(306,NULL,10,'Subject for Pledge Acknowledgment','2014-12-11 06:36:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(307,NULL,9,'Subject for Tell a Friend','2015-02-06 03:15:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(308,NULL,10,'Subject for Pledge Acknowledgment','2014-11-09 09:04:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(309,NULL,10,'Subject for Pledge Acknowledgment','2014-08-20 10:58:05',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(310,NULL,9,'Subject for Tell a Friend','2014-09-05 09:59:09',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(311,NULL,10,'Subject for Pledge Acknowledgment','2014-10-19 04:45:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(312,NULL,10,'Subject for Pledge Acknowledgment','2014-12-01 07:49:26',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(313,NULL,10,'Subject for Pledge Acknowledgment','2014-10-28 11:35:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(314,NULL,10,'Subject for Pledge Acknowledgment','2014-10-09 02:34:01',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(315,NULL,9,'Subject for Tell a Friend','2015-04-04 12:03:31',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(316,NULL,9,'Subject for Tell a Friend','2015-04-02 03:04:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(317,NULL,10,'Subject for Pledge Acknowledgment','2014-08-01 10:37:05',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(318,NULL,10,'Subject for Pledge Acknowledgment','2014-07-26 04:38:57',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(319,NULL,10,'Subject for Pledge Acknowledgment','2014-05-30 08:05:22',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(320,NULL,10,'Subject for Pledge Acknowledgment','2014-05-17 03:48:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(321,NULL,9,'Subject for Tell a Friend','2014-11-14 03:41:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(322,NULL,9,'Subject for Tell a Friend','2014-06-14 05:11:10',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(323,NULL,9,'Subject for Tell a Friend','2014-10-29 06:06:35',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(324,NULL,10,'Subject for Pledge Acknowledgment','2014-07-05 02:59:10',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(325,NULL,9,'Subject for Tell a Friend','2014-11-28 10:08:54',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(326,NULL,9,'Subject for Tell a Friend','2015-03-07 10:29:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(327,NULL,10,'Subject for Pledge Acknowledgment','2015-02-15 04:17:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(328,NULL,9,'Subject for Tell a Friend','2014-07-14 12:06:55',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(329,NULL,10,'Subject for Pledge Acknowledgment','2014-10-14 01:13:00',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(330,NULL,10,'Subject for Pledge Acknowledgment','2014-06-24 05:59:03',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(331,NULL,10,'Subject for Pledge Acknowledgment','2014-07-08 12:45:57',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(332,NULL,9,'Subject for Tell a Friend','2014-11-27 04:18:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(333,NULL,10,'Subject for Pledge Acknowledgment','2015-04-24 09:32:51',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(334,NULL,10,'Subject for Pledge Acknowledgment','2014-08-26 05:17:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(335,NULL,9,'Subject for Tell a Friend','2014-06-11 07:08:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(336,NULL,10,'Subject for Pledge Acknowledgment','2014-05-24 08:53:09',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(337,NULL,10,'Subject for Pledge Acknowledgment','2014-11-02 11:51:59',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(338,NULL,9,'Subject for Tell a Friend','2014-08-11 01:36:49',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(339,NULL,10,'Subject for Pledge Acknowledgment','2015-01-21 11:50:10',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(340,NULL,9,'Subject for Tell a Friend','2014-08-11 01:18:38',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(341,NULL,9,'Subject for Tell a Friend','2014-09-15 12:41:10',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(342,NULL,10,'Subject for Pledge Acknowledgment','2014-11-15 01:09:06',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(343,NULL,9,'Subject for Tell a Friend','2014-10-23 10:46:57',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(344,NULL,10,'Subject for Pledge Acknowledgment','2015-02-18 08:20:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(345,NULL,9,'Subject for Tell a Friend','2014-08-01 09:44:20',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(346,NULL,10,'Subject for Pledge Acknowledgment','2014-11-28 05:30:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(347,NULL,10,'Subject for Pledge Acknowledgment','2014-08-12 09:08:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(348,NULL,9,'Subject for Tell a Friend','2015-02-04 11:58:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(349,NULL,10,'Subject for Pledge Acknowledgment','2014-11-03 12:47:16',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(350,NULL,9,'Subject for Tell a Friend','2014-07-20 07:18:25',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(351,NULL,10,'Subject for Pledge Acknowledgment','2015-04-14 12:42:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(352,NULL,10,'Subject for Pledge Acknowledgment','2015-01-21 07:07:08',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(353,NULL,10,'Subject for Pledge Acknowledgment','2014-05-13 09:10:23',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(354,NULL,10,'Subject for Pledge Acknowledgment','2014-12-01 02:59:56',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(355,NULL,9,'Subject for Tell a Friend','2014-09-12 07:48:32',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(356,NULL,10,'Subject for Pledge Acknowledgment','2015-03-05 06:49:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(357,NULL,10,'Subject for Pledge Acknowledgment','2014-08-12 05:47:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(358,NULL,9,'Subject for Tell a Friend','2015-03-16 04:32:30',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(359,NULL,10,'Subject for Pledge Acknowledgment','2014-06-16 05:52:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(360,NULL,9,'Subject for Tell a Friend','2014-11-27 06:06:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(361,NULL,10,'Subject for Pledge Acknowledgment','2014-06-03 11:37:04',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(362,NULL,9,'Subject for Tell a Friend','2014-09-23 04:03:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(363,NULL,9,'Subject for Tell a Friend','2014-08-06 02:35:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(364,NULL,9,'Subject for Tell a Friend','2015-01-19 02:23:01',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(365,NULL,10,'Subject for Pledge Acknowledgment','2014-07-17 06:18:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(366,NULL,9,'Subject for Tell a Friend','2014-11-17 04:16:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(367,NULL,10,'Subject for Pledge Acknowledgment','2014-11-05 11:15:44',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(368,NULL,10,'Subject for Pledge Acknowledgment','2015-05-05 08:58:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(369,NULL,10,'Subject for Pledge Acknowledgment','2014-08-26 10:36:10',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(370,NULL,10,'Subject for Pledge Acknowledgment','2014-07-07 09:55:42',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(371,NULL,10,'Subject for Pledge Acknowledgment','2014-05-11 12:52:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(372,NULL,9,'Subject for Tell a Friend','2014-09-16 04:12:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(373,NULL,10,'Subject for Pledge Acknowledgment','2014-05-14 04:08:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(374,NULL,10,'Subject for Pledge Acknowledgment','2015-03-27 08:02:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(375,NULL,10,'Subject for Pledge Acknowledgment','2014-09-04 06:28:34',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(376,NULL,10,'Subject for Pledge Acknowledgment','2014-07-21 01:32:46',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(377,NULL,10,'Subject for Pledge Acknowledgment','2014-10-16 07:06:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(378,NULL,9,'Subject for Tell a Friend','2014-08-19 03:03:01',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(379,NULL,10,'Subject for Pledge Acknowledgment','2014-05-28 10:06:41',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(380,NULL,9,'Subject for Tell a Friend','2014-12-23 07:57:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(381,NULL,9,'Subject for Tell a Friend','2015-05-05 07:15:43',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(382,NULL,10,'Subject for Pledge Acknowledgment','2014-12-21 11:52:11',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(383,NULL,10,'Subject for Pledge Acknowledgment','2015-04-29 01:15:17',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(384,NULL,10,'Subject for Pledge Acknowledgment','2014-05-11 12:04:21',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(385,NULL,9,'Subject for Tell a Friend','2015-03-11 01:20:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(386,NULL,9,'Subject for Tell a Friend','2014-09-20 01:25:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(387,NULL,10,'Subject for Pledge Acknowledgment','2014-12-12 08:35:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(388,NULL,9,'Subject for Tell a Friend','2014-12-12 07:27:36',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(389,NULL,9,'Subject for Tell a Friend','2014-07-25 11:17:55',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(390,NULL,9,'Subject for Tell a Friend','2014-10-23 01:23:47',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(391,NULL,10,'Subject for Pledge Acknowledgment','2015-03-07 03:37:13',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(392,NULL,10,'Subject for Pledge Acknowledgment','2014-11-30 04:15:08',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(393,NULL,9,'Subject for Tell a Friend','2015-01-03 01:28:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(394,NULL,10,'Subject for Pledge Acknowledgment','2015-03-30 04:20:47',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(395,NULL,10,'Subject for Pledge Acknowledgment','2014-07-06 08:44:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(396,NULL,10,'Subject for Pledge Acknowledgment','2014-12-21 11:55:05',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(397,NULL,10,'Subject for Pledge Acknowledgment','2014-07-14 10:40:48',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(398,NULL,9,'Subject for Tell a Friend','2014-09-27 12:53:17',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(399,NULL,9,'Subject for Tell a Friend','2014-08-19 10:22:38',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(400,NULL,10,'Subject for Pledge Acknowledgment','2015-04-15 01:31:39',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(401,NULL,10,'Subject for Pledge Acknowledgment','2014-12-10 05:26:46',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(402,NULL,9,'Subject for Tell a Friend','2015-02-25 05:24:11',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(403,NULL,10,'Subject for Pledge Acknowledgment','2014-11-28 05:34:07',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(404,NULL,10,'Subject for Pledge Acknowledgment','2014-09-28 06:13:32',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(405,NULL,9,'Subject for Tell a Friend','2015-03-20 07:04:11',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(406,NULL,9,'Subject for Tell a Friend','2014-08-12 07:42:52',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(407,NULL,10,'Subject for Pledge Acknowledgment','2014-07-18 06:02:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(408,NULL,10,'Subject for Pledge Acknowledgment','2014-07-27 06:52:46',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(409,NULL,10,'Subject for Pledge Acknowledgment','2014-10-08 06:09:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(410,NULL,10,'Subject for Pledge Acknowledgment','2014-11-16 06:38:39',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(411,NULL,10,'Subject for Pledge Acknowledgment','2015-03-29 11:00:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(412,NULL,9,'Subject for Tell a Friend','2014-11-25 10:08:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(413,NULL,10,'Subject for Pledge Acknowledgment','2015-03-08 01:35:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(414,NULL,9,'Subject for Tell a Friend','2015-02-15 09:50:31',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(415,NULL,9,'Subject for Tell a Friend','2014-08-26 12:44:16',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(416,NULL,10,'Subject for Pledge Acknowledgment','2014-10-15 01:03:30',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(417,NULL,10,'Subject for Pledge Acknowledgment','2014-08-17 09:11:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(418,NULL,9,'Subject for Tell a Friend','2014-11-22 11:38:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(419,NULL,10,'Subject for Pledge Acknowledgment','2014-11-09 09:22:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(420,NULL,10,'Subject for Pledge Acknowledgment','2014-12-28 03:11:13',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(421,NULL,10,'Subject for Pledge Acknowledgment','2015-04-09 07:37:28',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(422,NULL,9,'Subject for Tell a Friend','2015-05-07 08:59:18',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(423,NULL,10,'Subject for Pledge Acknowledgment','2015-05-01 10:38:41',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(424,NULL,10,'Subject for Pledge Acknowledgment','2014-08-23 11:39:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(425,NULL,9,'Subject for Tell a Friend','2015-05-10 12:58:45',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(426,NULL,10,'Subject for Pledge Acknowledgment','2015-01-11 12:22:53',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(427,NULL,9,'Subject for Tell a Friend','2014-06-03 04:10:07',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(428,NULL,10,'Subject for Pledge Acknowledgment','2015-04-24 04:25:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(429,NULL,10,'Subject for Pledge Acknowledgment','2014-08-26 01:36:50',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(430,NULL,10,'Subject for Pledge Acknowledgment','2015-03-19 11:40:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(431,NULL,9,'Subject for Tell a Friend','2015-02-19 05:46:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(432,NULL,9,'Subject for Tell a Friend','2014-11-21 01:03:58',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(433,NULL,10,'Subject for Pledge Acknowledgment','2014-06-13 11:23:53',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(434,NULL,9,'Subject for Tell a Friend','2015-03-26 04:31:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(435,NULL,10,'Subject for Pledge Acknowledgment','2014-08-15 04:30:07',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(436,NULL,9,'Subject for Tell a Friend','2014-12-05 11:37:22',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(437,NULL,10,'Subject for Pledge Acknowledgment','2015-03-28 12:06:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(438,NULL,10,'Subject for Pledge Acknowledgment','2014-07-16 02:43:38',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(439,NULL,9,'Subject for Tell a Friend','2014-12-17 03:37:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(440,NULL,9,'Subject for Tell a Friend','2015-04-11 04:11:26',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(441,NULL,9,'Subject for Tell a Friend','2014-10-12 06:24:11',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(442,NULL,9,'Subject for Tell a Friend','2014-11-22 05:58:12',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(443,NULL,10,'Subject for Pledge Acknowledgment','2014-08-25 09:41:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(444,NULL,10,'Subject for Pledge Acknowledgment','2014-07-22 04:14:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(445,NULL,10,'Subject for Pledge Acknowledgment','2014-11-25 03:07:57',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(446,NULL,9,'Subject for Tell a Friend','2014-10-27 04:22:28',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(447,NULL,9,'Subject for Tell a Friend','2014-08-06 03:08:03',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(448,NULL,9,'Subject for Tell a Friend','2014-08-05 01:40:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(449,NULL,9,'Subject for Tell a Friend','2014-10-27 09:56:48',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(450,NULL,9,'Subject for Tell a Friend','2015-01-26 02:51:24',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(451,1,6,'$ 125.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(452,2,6,'$ 50.00-Online: Save the Penguins','2010-03-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(453,3,6,'$ 25.00-Apr 2007 Mailer 1','2010-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(454,4,6,'$ 50.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(455,5,6,'$ 500.00-Apr 2007 Mailer 1','2010-04-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(456,6,6,'$ 175.00-Apr 2007 Mailer 1','2010-04-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(457,7,6,'$ 50.00-Online: Save the Penguins','2010-03-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(458,8,6,'$ 10.00-Online: Save the Penguins','2010-03-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(459,9,6,'$ 250.00-Online: Save the Penguins','2010-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(460,10,6,NULL,'2009-07-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(461,11,6,NULL,'2009-07-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(462,12,6,NULL,'2009-10-01 11:53:50',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(463,13,6,NULL,'2009-12-01 12:55:41',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(464,1,7,'General','2015-05-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(465,2,7,'Student','2015-05-09 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(466,3,7,'General','2015-05-08 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(467,4,7,'Student','2015-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(468,5,7,'Student','2014-05-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(469,6,7,'Student','2015-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(470,7,7,'General','2015-05-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(471,8,7,'Student','2015-05-03 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(472,9,7,'General','2015-05-02 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(473,10,7,'Student','2014-05-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(474,11,7,'Lifetime','2015-04-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(475,12,7,'Student','2015-04-29 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(476,13,7,'General','2015-04-28 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(477,14,7,'Student','2015-04-27 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(478,15,7,'General','2013-01-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(479,16,7,'Student','2015-04-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(480,17,7,'General','2015-04-24 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(481,18,7,'Student','2015-04-23 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(482,19,7,'General','2015-04-22 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(483,20,7,'Student','2014-04-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(484,21,7,'General','2015-04-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(485,22,7,'Lifetime','2015-04-19 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(486,23,7,'General','2015-04-18 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(487,24,7,'Student','2015-04-17 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(488,25,7,'General','2012-10-30 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(489,26,7,'Student','2015-04-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(490,27,7,'General','2015-04-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(491,28,7,'Student','2015-04-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(492,29,7,'General','2015-04-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(493,30,7,'General','2012-09-20 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(494,14,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(495,15,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(496,16,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(497,17,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(498,18,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(499,19,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(500,20,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(501,21,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(502,22,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(503,23,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(504,24,6,'$ 1200.00 - Lifetime Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(505,25,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(506,26,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(507,27,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(508,28,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(509,29,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(510,30,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(511,31,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(512,32,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(513,33,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(514,34,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(515,35,6,'$ 1200.00 - Lifetime Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(516,36,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(517,37,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(518,38,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(519,39,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(520,40,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(521,41,6,'$ 50.00 - Student Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(522,42,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(523,43,6,'$ 100.00 - General Membership: Offline signup','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Membership Payment',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(525,1,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(526,2,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(527,3,5,'NULL','2008-05-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(528,4,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(529,5,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(530,6,5,'NULL','2008-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(531,7,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(532,8,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(533,9,5,'NULL','2008-02-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(534,10,5,'NULL','2008-02-01 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(535,11,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(536,12,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(537,13,5,'NULL','2008-06-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(538,14,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(539,15,5,'NULL','2008-07-04 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(540,16,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(541,17,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(542,18,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(543,19,5,'NULL','2008-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(544,20,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(545,21,5,'NULL','2008-03-25 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(546,22,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(547,23,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(548,24,5,'NULL','2008-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(549,25,5,'NULL','2008-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(550,26,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(551,27,5,'NULL','2008-05-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(552,28,5,'NULL','2009-12-12 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(553,29,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(554,30,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(555,31,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(556,32,5,'NULL','2009-07-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(557,33,5,'NULL','2009-03-07 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(558,34,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(559,35,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(560,36,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(561,37,5,'NULL','2009-03-06 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(562,38,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(563,39,5,'NULL','2008-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(564,40,5,'NULL','2009-12-14 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(565,41,5,'NULL','2009-01-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(566,42,5,'NULL','2009-12-15 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(567,43,5,'NULL','2009-03-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(568,44,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(569,45,5,'NULL','2009-01-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(570,46,5,'NULL','2009-12-13 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(571,47,5,'NULL','2009-10-21 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(572,48,5,'NULL','2009-12-10 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(573,49,5,'NULL','2009-03-11 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(574,50,5,'NULL','2009-04-05 00:00:00',NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(575,45,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(576,46,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(577,47,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(578,48,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(579,49,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(580,50,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(581,51,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(582,52,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(583,53,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(584,54,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(585,55,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(586,56,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(587,57,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(588,58,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(589,59,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(590,60,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(591,61,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(592,62,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(593,63,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(594,64,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(595,65,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(596,66,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(597,67,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(598,68,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(599,69,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(600,70,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(601,71,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(602,72,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(603,73,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(604,74,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(605,75,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(606,76,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(607,77,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(608,78,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(609,79,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(610,80,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(611,81,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(612,82,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(613,83,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(614,84,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(615,85,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(616,86,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(617,87,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(618,88,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(619,89,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(620,90,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(621,91,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(622,92,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(623,93,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(624,94,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-05-10 06:35:05',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL);
  /*!40000 ALTER TABLE `civicrm_activity` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -97,7 -97,7 +97,7 @@@
  
  LOCK TABLES `civicrm_activity_contact` WRITE;
  /*!40000 ALTER TABLE `civicrm_activity_contact` DISABLE KEYS */;
- INSERT INTO `civicrm_activity_contact` (`id`, `activity_id`, `contact_id`, `record_type_id`) VALUES (758,531,1,2),(240,156,2,3),(394,259,2,3),(597,396,2,3),(678,451,2,2),(55,35,3,3),(237,154,3,3),(297,194,3,3),(661,438,3,3),(194,126,4,3),(250,162,4,3),(679,452,4,2),(143,94,5,3),(402,265,5,3),(636,421,5,3),(696,469,5,2),(726,499,5,2),(491,326,6,3),(508,338,6,3),(607,401,6,3),(680,453,6,2),(288,189,7,3),(389,256,7,3),(13,7,8,3),(162,105,8,3),(681,454,8,2),(796,569,8,2),(697,470,9,2),(727,500,9,2),(40,25,10,3),(65,41,10,3),(93,62,10,3),(800,573,10,2),(295,193,11,3),(775,548,12,2),(535,355,14,3),(168,109,15,3),(552,367,16,3),(653,432,16,3),(682,455,16,2),(49,31,17,3),(211,137,17,3),(443,293,17,3),(160,104,18,3),(9,5,19,3),(489,325,19,3),(683,456,19,2),(778,551,19,2),(26,16,20,3),(36,23,20,3),(51,32,20,3),(784,557,20,2),(153,100,21,3),(264,173,21,3),(566,375,21,3),(675,448,21,3),(196,127,22,3),(435,288,22,3),(477,317,22,3),(609,402,22,3),(187,121,23,3),(267,175,23,3),(98,65,24,3),(132,86,24,3),(233,152,24,3),(514,342,24,3),(705,478,24,2),(735,508,24,2),(5,3,25,3),(110,71,25,3),(358,234,25,3),(763,536,25,2),(81,53,26,3),(378,249,26,3),(423,280,26,3),(445,294,26,3),(605,400,26,3),(189,122,27,3),(201,131,27,3),(586,388,27,3),(33,21,28,3),(453,300,28,3),(495,328,28,3),(593,394,29,3),(709,482,29,2),(739,512,29,2),(798,571,29,2),(108,70,30,3),(223,145,30,3),(305,199,30,3),(342,225,30,3),(790,563,30,2),(332,219,31,3),(472,314,31,3),(106,69,32,3),(134,87,32,3),(245,159,32,3),(493,327,32,3),(667,442,32,3),(689,462,32,2),(690,463,32,2),(347,228,33,3),(17,9,34,3),(172,111,34,3),(686,459,34,2),(61,39,36,3),(147,96,36,3),(408,270,36,3),(788,561,36,2),(595,395,37,3),(24,15,38,3),(354,232,38,3),(419,277,38,3),(485,322,39,3),(447,295,40,3),(707,480,40,2),(737,510,40,2),(79,52,41,3),(170,110,41,3),(516,343,41,3),(601,398,41,3),(235,153,42,3),(104,68,43,3),(648,429,43,3),(688,461,43,2),(719,492,43,2),(749,522,43,2),(783,556,43,2),(564,374,44,3),(568,376,44,3),(87,58,45,3),(112,72,45,3),(151,99,45,3),(579,383,46,3),(58,37,47,3),(438,290,47,3),(440,291,47,3),(631,418,47,3),(658,436,47,3),(399,263,48,3),(511,340,48,3),(546,363,48,3),(621,410,48,3),(720,493,48,2),(750,523,48,2),(349,229,49,3),(539,358,49,3),(11,6,50,3),(102,67,50,3),(282,185,50,3),(366,240,50,3),(417,276,50,3),(523,348,50,3),(634,420,50,3),(231,151,51,3),(330,218,51,3),(340,224,51,3),(410,271,51,3),(454,301,51,2),(455,302,51,2),(456,303,51,2),(458,304,51,2),(459,305,51,2),(460,306,51,2),(461,307,51,2),(462,308,51,2),(464,309,51,2),(465,310,51,2),(467,311,51,2),(469,312,51,2),(470,313,51,2),(471,314,51,2),(473,315,51,2),(475,316,51,2),(476,317,51,2),(478,318,51,2),(479,319,51,2),(481,320,51,2),(483,321,51,2),(484,322,51,2),(486,323,51,2),(487,324,51,2),(488,325,51,2),(490,326,51,2),(492,327,51,2),(494,328,51,2),(496,329,51,2),(497,330,51,2),(498,331,51,2),(499,332,51,2),(501,333,51,2),(502,334,51,2),(503,335,51,2),(504,336,51,2),(506,337,51,2),(507,338,51,2),(509,339,51,2),(510,340,51,2),(512,341,51,2),(513,342,51,2),(515,343,51,2),(517,344,51,2),(518,345,51,2),(519,346,51,2),(521,347,51,2),(522,348,51,2),(524,349,51,2),(526,350,51,2),(527,351,51,2),(529,352,51,2),(530,353,51,2),(532,354,51,2),(534,355,51,2),(536,356,51,2),(537,357,51,2),(538,358,51,2),(540,359,51,2),(542,360,51,2),(543,361,51,2),(544,362,51,2),(545,363,51,2),(547,364,51,2),(548,365,51,2),(549,366,51,2),(551,367,51,2),(553,368,51,2),(555,369,51,2),(556,370,51,2),(557,371,51,2),(559,372,51,2),(561,373,51,2),(563,374,51,2),(565,375,51,2),(567,376,51,2),(569,377,51,2),(570,378,51,2),(572,379,51,2),(574,380,51,2),(575,381,51,2),(577,382,51,2),(578,383,51,2),(580,384,51,2),(581,385,51,2),(582,386,51,2),(583,387,51,2),(585,388,51,2),(587,389,51,2),(588,390,51,2),(589,391,51,2),(590,392,51,2),(591,393,51,2),(592,394,51,2),(594,395,51,2),(596,396,51,2),(598,397,51,2),(600,398,51,2),(602,399,51,2),(604,400,51,2),(606,401,51,2),(608,402,51,2),(610,403,51,2),(611,404,51,2),(613,405,51,2),(614,406,51,2),(615,407,51,2),(617,408,51,2),(619,409,51,2),(620,410,51,2),(622,411,51,2),(623,412,51,2),(624,413,51,2),(625,414,51,2),(626,415,51,2),(628,416,51,2),(629,417,51,2),(630,418,51,2),(632,419,51,2),(633,420,51,2),(635,421,51,2),(637,422,51,2),(638,423,51,2),(640,424,51,2),(641,425,51,2),(643,426,51,2),(644,427,51,2),(645,428,51,2),(647,429,51,2),(649,430,51,2),(651,431,51,2),(652,432,51,2),(654,433,51,2),(655,434,51,2),(656,435,51,2),(657,436,51,2),(659,437,51,2),(660,438,51,2),(662,439,51,2),(663,440,51,2),(664,441,51,2),(666,442,51,2),(668,443,51,2),(670,444,51,2),(671,445,51,2),(672,446,51,2),(673,447,51,2),(674,448,51,2),(676,449,51,2),(677,450,51,2),(716,489,51,2),(746,519,51,2),(612,404,52,3),(43,27,53,3),(326,215,53,3),(432,286,53,3),(290,190,54,3),(554,368,54,3),(712,485,54,2),(742,515,54,2),(217,141,55,3),(230,151,55,2),(232,152,55,2),(234,153,55,2),(236,154,55,2),(238,155,55,2),(239,156,55,2),(241,157,55,2),(242,158,55,2),(244,159,55,2),(246,160,55,2),(247,161,55,2),(249,162,55,2),(251,163,55,2),(252,164,55,2),(253,165,55,2),(255,166,55,2),(256,167,55,2),(257,168,55,2),(259,169,55,2),(260,170,55,2),(261,171,55,2),(262,172,55,2),(263,173,55,2),(265,174,55,2),(266,175,55,2),(268,176,55,2),(270,177,55,2),(272,178,55,2),(274,179,55,2),(275,180,55,2),(276,181,55,2),(277,182,55,2),(278,183,55,2),(279,184,55,2),(281,185,55,2),(283,186,55,2),(285,187,55,2),(286,188,55,2),(287,189,55,2),(289,190,55,2),(291,191,55,2),(292,192,55,2),(294,193,55,2),(296,194,55,2),(298,195,55,2),(299,196,55,2),(301,197,55,2),(302,198,55,2),(304,199,55,2),(306,200,55,2),(308,201,55,2),(309,202,55,2),(310,203,55,2),(311,204,55,2),(313,205,55,2),(315,206,55,2),(316,207,55,2),(317,208,55,2),(318,209,55,2),(319,210,55,2),(321,211,55,2),(322,212,55,2),(323,213,55,2),(324,214,55,2),(325,215,55,2),(327,216,55,2),(328,217,55,2),(329,218,55,2),(331,219,55,2),(333,220,55,2),(334,221,55,2),(335,222,55,2),(337,223,55,2),(339,224,55,2),(341,225,55,2),(343,226,55,2),(344,227,55,2),(346,228,55,2),(348,229,55,2),(350,230,55,2),(351,231,55,2),(353,232,55,2),(355,233,55,2),(357,234,55,2),(359,235,55,2),(360,236,55,2),(361,237,55,2),(362,238,55,2),(364,239,55,2),(365,240,55,2),(367,241,55,2),(368,242,55,2),(369,243,55,2),(370,244,55,2),(371,245,55,2),(373,246,55,2),(374,247,55,2),(376,248,55,2),(377,249,55,2),(379,250,55,2),(381,251,55,2),(382,252,55,2),(383,253,55,2),(385,254,55,2),(387,255,55,2),(388,256,55,2),(390,257,55,2),(391,258,55,2),(393,259,55,2),(395,260,55,2),(396,261,55,2),(397,262,55,2),(398,263,55,2),(400,264,55,2),(401,265,55,2),(403,266,55,2),(404,267,55,2),(405,268,55,2),(406,269,55,2),(407,270,55,2),(409,271,55,2),(411,272,55,2),(412,273,55,2),(413,274,55,2),(414,275,55,2),(416,276,55,2),(418,277,55,2),(420,278,55,2),(421,279,55,2),(422,280,55,2),(424,281,55,2),(425,282,55,2),(427,283,55,2),(428,284,55,2),(429,285,55,2),(431,286,55,2),(433,287,55,2),(434,288,55,2),(436,289,55,2),(437,290,55,2),(439,291,55,2),(441,292,55,2),(442,293,55,2),(444,294,55,2),(446,295,55,2),(448,296,55,2),(449,297,55,2),(450,298,55,2),(451,299,55,2),(452,300,55,2),(646,428,55,3),(30,19,57,3),(375,247,57,3),(761,534,58,2),(206,134,59,3),(183,118,60,3),(269,176,60,3),(665,441,60,3),(669,443,61,3),(254,165,62,3),(303,198,62,3),(372,245,62,3),(618,408,62,3),(753,526,62,2),(177,114,63,3),(307,200,63,3),(533,354,63,3),(693,466,63,2),(723,496,63,2),(771,544,63,2),(7,4,64,3),(258,168,65,3),(345,227,65,3),(576,381,65,3),(155,101,66,3),(248,161,66,3),(271,177,66,3),(520,346,66,3),(562,373,66,3),(769,542,66,2),(336,222,67,3),(356,233,67,3),(392,258,67,3),(642,425,67,3),(793,566,67,2),(100,66,68,3),(180,116,68,3),(380,250,68,3),(599,397,68,3),(63,40,69,3),(208,135,70,3),(114,73,71,3),(687,460,71,2),(702,475,71,2),(732,505,71,2),(90,60,72,3),(273,178,72,3),(352,231,72,3),(338,223,73,3),(474,315,73,3),(46,29,74,3),(284,186,74,3),(468,311,75,3),(764,537,75,2),(95,63,76,3),(120,78,76,3),(293,192,76,3),(500,332,76,3),(531,353,76,3),(786,559,77,2),(314,205,78,3),(463,308,78,3),(560,372,78,3),(571,378,78,3),(710,483,78,2),(740,513,78,2),(768,541,78,2),(573,379,79,3),(174,112,80,3),(203,132,80,3),(384,253,80,3),(787,560,80,2),(1,1,81,2),(3,2,81,2),(4,3,81,2),(6,4,81,2),(8,5,81,2),(10,6,81,2),(12,7,81,2),(14,8,81,2),(16,9,81,2),(18,10,81,2),(19,11,81,2),(20,12,81,2),(21,13,81,2),(22,14,81,2),(23,15,81,2),(25,16,81,2),(27,17,81,2),(28,18,81,2),(29,19,81,2),(31,20,81,2),(32,21,81,2),(34,22,81,2),(35,23,81,2),(37,24,81,2),(39,25,81,2),(41,26,81,2),(42,27,81,2),(44,28,81,2),(45,29,81,2),(47,30,81,2),(48,31,81,2),(50,32,81,2),(52,33,81,2),(53,34,81,2),(54,35,81,2),(56,36,81,2),(57,37,81,2),(59,38,81,2),(60,39,81,2),(62,40,81,2),(64,41,81,2),(66,42,81,2),(67,43,81,2),(68,44,81,2),(69,45,81,2),(71,46,81,2),(72,47,81,2),(73,48,81,2),(75,49,81,2),(76,50,81,2),(77,51,81,2),(78,52,81,2),(80,53,81,2),(82,54,81,2),(83,55,81,2),(84,56,81,2),(85,57,81,2),(86,58,81,2),(88,59,81,2),(89,60,81,2),(91,61,81,2),(92,62,81,2),(94,63,81,2),(96,64,81,2),(97,65,81,2),(99,66,81,2),(101,67,81,2),(103,68,81,2),(105,69,81,2),(107,70,81,2),(109,71,81,2),(111,72,81,2),(113,73,81,2),(115,74,81,2),(116,75,81,2),(117,76,81,2),(118,77,81,2),(119,78,81,2),(121,79,81,2),(123,80,81,2),(124,81,81,2),(125,82,81,2),(127,83,81,2),(128,84,81,2),(130,85,81,2),(131,86,81,2),(133,87,81,2),(135,88,81,2),(136,89,81,2),(137,90,81,2),(138,91,81,2),(140,92,81,2),(141,93,81,2),(142,94,81,2),(144,95,81,2),(145,95,81,3),(146,96,81,2),(148,97,81,2),(149,98,81,2),(150,99,81,2),(152,100,81,2),(154,101,81,2),(156,102,81,2),(157,103,81,2),(159,104,81,2),(161,105,81,2),(163,106,81,2),(164,106,81,3),(165,107,81,2),(166,108,81,2),(167,109,81,2),(169,110,81,2),(171,111,81,2),(173,112,81,2),(175,113,81,2),(176,114,81,2),(178,115,81,2),(179,116,81,2),(181,117,81,2),(182,118,81,2),(184,119,81,2),(185,120,81,2),(186,121,81,2),(188,122,81,2),(190,123,81,2),(191,124,81,2),(192,125,81,2),(193,126,81,2),(195,127,81,2),(197,128,81,2),(198,129,81,2),(199,130,81,2),(200,131,81,2),(202,132,81,2),(204,133,81,2),(205,134,81,2),(207,135,81,2),(209,136,81,2),(210,137,81,2),(212,138,81,2),(213,139,81,2),(214,140,81,2),(216,141,81,2),(218,142,81,2),(220,143,81,2),(221,144,81,2),(222,145,81,2),(224,146,81,2),(225,147,81,2),(226,148,81,2),(227,149,81,2),(228,150,81,2),(541,359,81,3),(789,562,81,2),(528,351,82,3),(684,457,82,2),(415,275,83,3),(466,310,83,3),(139,91,84,3),(280,184,84,3),(320,210,84,3),(158,103,85,3),(480,319,85,3),(482,320,85,3),(558,371,85,3),(122,79,86,3),(312,204,86,3),(70,45,87,3),(759,532,88,2),(457,303,89,3),(525,349,89,3),(215,140,90,3),(430,285,90,3),(15,8,91,3),(639,423,92,3),(685,458,92,2),(363,238,93,3),(505,336,93,3),(603,399,93,3),(616,407,93,3),(74,48,94,3),(229,150,94,3),(584,387,94,3),(2,1,95,3),(243,158,95,3),(426,282,95,3),(219,142,96,3),(300,196,96,3),(386,254,96,3),(754,527,96,2),(38,24,97,3),(699,472,97,2),(729,502,97,2),(774,547,97,2),(129,84,98,3),(650,430,98,3),(550,366,100,3),(627,415,100,3),(706,479,100,2),(736,509,100,2),(126,82,101,3),(711,484,105,2),(741,514,105,2),(776,549,105,2),(785,558,107,2),(762,535,109,2),(779,552,110,2),(691,464,111,2),(721,494,111,2),(757,530,115,2),(703,476,116,2),(733,506,116,2),(698,471,117,2),(728,501,117,2),(772,545,122,2),(715,488,126,2),(745,518,126,2),(767,540,127,2),(792,565,128,2),(765,538,131,2),(713,486,135,2),(743,516,135,2),(718,491,136,2),(748,521,136,2),(799,572,139,2),(694,467,145,2),(724,497,145,2),(756,529,147,2),(701,474,148,2),(731,504,148,2),(755,528,148,2),(773,546,149,2),(708,481,155,2),(738,511,155,2),(794,567,157,2),(704,477,161,2),(734,507,161,2),(752,525,161,2),(717,490,162,2),(747,520,162,2),(801,574,162,2),(770,543,163,2),(782,555,164,2),(780,553,165,2),(797,570,166,2),(692,465,171,2),(722,495,171,2),(695,468,175,2),(725,498,175,2),(700,473,178,2),(730,503,178,2),(791,564,181,2),(777,550,183,2),(714,487,189,2),(744,517,189,2),(766,539,190,2),(781,554,192,2),(795,568,195,2),(760,533,197,2);
 -INSERT INTO `civicrm_activity_contact` (`id`, `activity_id`, `contact_id`, `record_type_id`) VALUES (526,347,1,3),(479,315,2,3),(691,451,2,2),(171,114,3,3),(627,411,3,3),(725,485,3,2),(763,523,3,2),(52,34,4,3),(518,342,4,3),(578,378,4,3),(692,452,4,2),(623,409,5,3),(792,552,5,2),(9,5,6,3),(66,44,6,3),(101,68,6,3),(457,301,6,3),(693,453,6,2),(193,128,7,3),(389,256,7,3),(646,422,7,3),(41,27,8,3),(381,251,8,3),(670,437,8,3),(694,454,8,2),(774,534,8,2),(449,297,9,3),(35,23,10,3),(268,177,10,3),(554,363,11,3),(179,119,12,3),(453,299,12,3),(97,66,13,3),(310,202,13,3),(589,385,13,3),(164,110,14,3),(420,276,14,3),(805,565,15,2),(384,253,16,3),(631,413,16,3),(664,433,16,3),(677,442,16,3),(695,455,16,2),(719,479,16,2),(755,515,16,2),(250,165,17,3),(400,262,17,3),(788,548,17,2),(733,493,18,2),(761,521,18,2),(160,108,19,3),(465,305,19,3),(696,456,19,2),(789,549,19,2),(14,9,20,3),(104,70,20,3),(352,231,20,3),(370,243,20,3),(586,383,20,3),(729,489,20,2),(759,519,20,2),(253,167,21,3),(601,393,21,3),(272,179,22,3),(398,261,22,3),(780,540,22,2),(33,22,23,3),(76,51,23,3),(234,154,23,3),(281,185,23,3),(690,450,23,3),(47,31,24,3),(185,122,24,3),(416,274,24,3),(640,418,24,3),(4,2,25,3),(50,33,25,3),(106,71,25,3),(495,326,25,3),(232,153,26,3),(584,382,26,3),(714,474,26,2),(762,522,26,2),(84,57,27,3),(140,94,27,3),(339,223,28,3),(546,359,28,3),(220,145,29,3),(243,160,30,3),(566,370,30,3),(173,115,31,3),(787,547,31,2),(206,136,32,3),(392,258,32,3),(569,372,32,3),(702,462,32,2),(703,463,32,2),(19,12,33,3),(108,72,33,3),(319,208,33,3),(79,53,34,3),(195,129,34,3),(211,139,34,3),(260,172,34,3),(290,190,34,3),(317,207,34,3),(597,390,34,3),(699,459,34,2),(731,491,34,2),(760,520,34,2),(177,118,35,3),(773,533,35,2),(372,244,36,3),(442,291,36,3),(559,366,36,3),(636,416,36,3),(712,472,36,2),(738,498,36,2),(786,546,36,2),(187,123,37,3),(312,203,37,3),(509,336,37,3),(99,67,38,3),(294,192,38,3),(499,329,38,3),(572,374,38,3),(487,321,39,3),(715,475,39,2),(752,512,39,2),(802,562,39,2),(783,543,40,2),(145,98,41,3),(286,188,41,3),(653,427,41,3),(799,559,41,2),(367,241,42,3),(456,301,42,2),(458,302,42,2),(460,303,42,2),(462,304,42,2),(464,305,42,2),(466,306,42,2),(467,307,42,2),(468,308,42,2),(469,309,42,2),(470,310,42,2),(471,311,42,2),(473,312,42,2),(475,313,42,2),(477,314,42,2),(478,315,42,2),(480,316,42,2),(481,317,42,2),(482,318,42,2),(483,319,42,2),(484,320,42,2),(486,321,42,2),(488,322,42,2),(490,323,42,2),(491,324,42,2),(492,325,42,2),(494,326,42,2),(496,327,42,2),(497,328,42,2),(498,329,42,2),(500,330,42,2),(501,331,42,2),(502,332,42,2),(503,333,42,2),(505,334,42,2),(507,335,42,2),(508,336,42,2),(510,337,42,2),(511,338,42,2),(513,339,42,2),(514,340,42,2),(516,341,42,2),(517,342,42,2),(519,343,42,2),(521,344,42,2),(522,345,42,2),(524,346,42,2),(525,347,42,2),(527,348,42,2),(528,349,42,2),(530,350,42,2),(531,351,42,2),(532,352,42,2),(534,353,42,2),(536,354,42,2),(538,355,42,2),(539,356,42,2),(541,357,42,2),(543,358,42,2),(545,359,42,2),(547,360,42,2),(549,361,42,2),(551,362,42,2),(553,363,42,2),(555,364,42,2),(557,365,42,2),(558,366,42,2),(560,367,42,2),(562,368,42,2),(563,369,42,2),(565,370,42,2),(567,371,42,2),(568,372,42,2),(570,373,42,2),(571,374,42,2),(573,375,42,2),(574,376,42,2),(575,377,42,2),(577,378,42,2),(579,379,42,2),(580,380,42,2),(581,381,42,2),(583,382,42,2),(585,383,42,2),(587,384,42,2),(588,385,42,2),(590,386,42,2),(591,387,42,2),(592,388,42,2),(594,389,42,2),(596,390,42,2),(598,391,42,2),(599,392,42,2),(600,393,42,2),(602,394,42,2),(603,395,42,2),(604,396,42,2),(605,397,42,2),(606,398,42,2),(608,399,42,2),(610,400,42,2),(612,401,42,2),(613,402,42,2),(614,403,42,2),(615,404,42,2),(617,405,42,2),(619,406,42,2),(620,407,42,2),(621,408,42,2),(622,409,42,2),(624,410,42,2),(626,411,42,2),(628,412,42,2),(630,413,42,2),(632,414,42,2),(633,415,42,2),(635,416,42,2),(637,417,42,2),(639,418,42,2),(641,419,42,2),(642,420,42,2),(644,421,42,2),(645,422,42,2),(647,423,42,2),(648,424,42,2),(649,425,42,2),(650,426,42,2),(652,427,42,2),(654,428,42,2),(656,429,42,2),(657,430,42,2),(659,431,42,2),(661,432,42,2),(663,433,42,2),(665,434,42,2),(666,435,42,2),(667,436,42,2),(669,437,42,2),(671,438,42,2),(672,439,42,2),(673,440,42,2),(675,441,42,2),(676,442,42,2),(678,443,42,2),(679,444,42,2),(680,445,42,2),(682,446,42,2),(683,447,42,2),(685,448,42,2),(687,449,42,2),(689,450,42,2),(782,542,42,2),(238,157,43,3),(609,399,43,3),(638,417,43,3),(701,461,43,2),(643,420,44,3),(426,281,45,3),(54,35,46,3),(279,184,47,3),(375,246,47,3),(463,304,47,3),(582,381,47,3),(684,447,47,3),(791,551,47,2),(72,48,48,3),(356,233,48,3),(349,229,49,3),(634,415,51,3),(493,325,52,3),(535,353,52,3),(658,430,52,3),(137,92,53,3),(354,232,53,3),(576,377,53,3),(149,101,54,3),(418,275,54,3),(681,445,54,3),(718,478,54,2),(754,514,54,2),(57,37,55,3),(284,187,55,3),(117,78,56,3),(274,180,56,3),(428,282,56,3),(552,362,56,3),(595,389,56,3),(616,404,56,3),(91,62,57,3),(292,191,57,3),(544,358,58,3),(520,343,59,3),(607,398,59,3),(167,112,60,3),(550,361,60,3),(31,21,61,3),(365,240,61,3),(512,338,61,3),(706,466,61,2),(735,495,61,2),(181,120,62,3),(198,131,62,3),(811,571,62,2),(152,103,63,3),(461,303,63,3),(529,349,63,3),(803,563,63,2),(29,20,64,3),(155,105,64,3),(322,210,64,3),(662,432,64,3),(660,431,65,3),(130,87,66,3),(296,193,66,3),(593,388,66,3),(45,30,67,3),(404,265,67,3),(412,271,67,3),(485,320,67,3),(766,526,67,2),(95,65,68,3),(132,88,68,3),(433,285,68,3),(459,302,68,3),(561,367,69,3),(611,400,69,3),(668,436,69,3),(790,550,69,2),(200,132,70,3),(225,148,70,3),(331,218,71,3),(410,270,71,3),(537,354,71,3),(700,460,71,2),(779,539,71,2),(455,300,72,3),(68,45,74,3),(258,171,74,3),(345,227,74,3),(556,364,74,3),(804,564,74,2),(307,200,75,3),(548,360,75,3),(17,11,76,3),(300,196,76,3),(304,198,76,3),(396,260,76,3),(540,356,76,3),(564,369,76,3),(716,476,76,2),(739,499,76,2),(476,313,77,3),(504,333,77,3),(542,357,77,3),(25,17,78,3),(247,163,78,3),(302,197,78,3),(768,528,78,2),(7,4,79,3),(229,151,79,3),(674,440,79,3),(708,468,79,2),(736,496,79,2),(169,113,80,3),(337,222,80,3),(347,228,80,3),(394,259,81,3),(618,405,81,3),(697,457,82,2),(711,471,82,2),(750,510,82,2),(775,535,82,2),(110,73,83,3),(183,121,83,3),(209,138,84,3),(431,284,84,3),(157,106,85,3),(489,322,85,3),(777,537,85,2),(114,76,86,3),(270,178,86,3),(86,58,87,3),(812,572,87,2),(341,224,88,3),(474,312,88,3),(39,26,89,3),(124,83,89,3),(222,146,89,3),(506,334,89,3),(218,144,90,3),(655,428,90,3),(64,43,91,3),(437,288,91,3),(451,298,91,3),(625,410,91,3),(439,289,92,3),(698,458,92,2),(794,554,92,2),(2,1,93,3),(335,221,93,3),(686,448,93,3),(778,538,93,2),(288,189,94,3),(651,426,94,3),(705,465,94,2),(747,507,94,2),(363,239,95,3),(472,311,95,3),(688,449,95,3),(215,142,96,3),(776,536,96,2),(120,80,97,3),(126,84,97,3),(262,173,97,3),(240,158,98,3),(265,175,98,3),(533,352,98,3),(204,135,99,3),(523,345,99,3),(722,482,99,2),(741,501,99,2),(162,109,100,3),(387,255,100,3),(629,412,100,3),(515,340,101,3),(720,480,102,2),(740,500,102,2),(726,486,108,2),(743,503,108,2),(798,558,116,2),(707,467,123,2),(748,508,123,2),(772,532,123,2),(730,490,125,2),(745,505,125,2),(813,573,126,2),(717,477,130,2),(753,513,130,2),(800,560,131,2),(814,574,137,2),(704,464,139,2),(734,494,139,2),(806,566,139,2),(793,553,144,2),(784,544,145,2),(710,470,147,2),(737,497,147,2),(709,469,150,2),(749,509,150,2),(721,481,151,2),(756,516,151,2),(797,557,152,2),(769,529,156,2),(795,555,157,2),(765,525,160,2),(801,561,163,2),(770,530,164,2),(781,541,167,2),(732,492,174,2),(746,506,174,2),(228,151,177,2),(230,152,177,2),(231,153,177,2),(233,154,177,2),(235,155,177,2),(236,156,177,2),(237,157,177,2),(239,158,177,2),(241,159,177,2),(242,160,177,2),(244,161,177,2),(245,162,177,2),(246,163,177,2),(248,164,177,2),(249,165,177,2),(251,166,177,2),(252,167,177,2),(254,168,177,2),(255,169,177,2),(256,170,177,2),(257,171,177,2),(259,172,177,2),(261,173,177,2),(263,174,177,2),(264,175,177,2),(266,176,177,2),(267,177,177,2),(269,178,177,2),(271,179,177,2),(273,180,177,2),(275,181,177,2),(276,182,177,2),(277,183,177,2),(278,184,177,2),(280,185,177,2),(282,186,177,2),(283,187,177,2),(285,188,177,2),(287,189,177,2),(289,190,177,2),(291,191,177,2),(293,192,177,2),(295,193,177,2),(297,194,177,2),(298,195,177,2),(299,196,177,2),(301,197,177,2),(303,198,177,2),(305,199,177,2),(306,200,177,2),(308,201,177,2),(309,202,177,2),(311,203,177,2),(313,204,177,2),(314,205,177,2),(315,206,177,2),(316,207,177,2),(318,208,177,2),(320,209,177,2),(321,210,177,2),(323,211,177,2),(324,212,177,2),(325,213,177,2),(326,214,177,2),(327,215,177,2),(328,216,177,2),(329,217,177,2),(330,218,177,2),(332,219,177,2),(333,220,177,2),(334,221,177,2),(336,222,177,2),(338,223,177,2),(340,224,177,2),(342,225,177,2),(343,226,177,2),(344,227,177,2),(346,228,177,2),(348,229,177,2),(350,230,177,2),(351,231,177,2),(353,232,177,2),(355,233,177,2),(357,234,177,2),(358,235,177,2),(359,236,177,2),(360,237,177,2),(361,238,177,2),(362,239,177,2),(364,240,177,2),(366,241,177,2),(368,242,177,2),(369,243,177,2),(371,244,177,2),(373,245,177,2),(374,246,177,2),(376,247,177,2),(377,248,177,2),(378,249,177,2),(379,250,177,2),(380,251,177,2),(382,252,177,2),(383,253,177,2),(385,254,177,2),(386,255,177,2),(388,256,177,2),(390,257,177,2),(391,258,177,2),(393,259,177,2),(395,260,177,2),(397,261,177,2),(399,262,177,2),(401,263,177,2),(402,264,177,2),(403,265,177,2),(405,266,177,2),(406,267,177,2),(407,268,177,2),(408,269,177,2),(409,270,177,2),(411,271,177,2),(413,272,177,2),(414,273,177,2),(415,274,177,2),(417,275,177,2),(419,276,177,2),(421,277,177,2),(422,278,177,2),(423,279,177,2),(424,280,177,2),(425,281,177,2),(427,282,177,2),(429,283,177,2),(430,284,177,2),(432,285,177,2),(434,286,177,2),(435,287,177,2),(436,288,177,2),(438,289,177,2),(440,290,177,2),(441,291,177,2),(443,292,177,2),(444,293,177,2),(445,294,177,2),(446,295,177,2),(447,296,177,2),(448,297,177,2),(450,298,177,2),(452,299,177,2),(454,300,177,2),(785,545,178,2),(727,487,179,2),(758,518,179,2),(810,570,180,2),(723,483,181,2),(757,517,181,2),(1,1,182,2),(3,2,182,2),(5,3,182,2),(6,4,182,2),(8,5,182,2),(10,6,182,2),(11,7,182,2),(12,8,182,2),(13,9,182,2),(15,10,182,2),(16,11,182,2),(18,12,182,2),(20,13,182,2),(21,14,182,2),(22,15,182,2),(23,16,182,2),(24,17,182,2),(26,18,182,2),(27,19,182,2),(28,20,182,2),(30,21,182,2),(32,22,182,2),(34,23,182,2),(36,24,182,2),(37,25,182,2),(38,26,182,2),(40,27,182,2),(42,28,182,2),(43,29,182,2),(44,30,182,2),(46,31,182,2),(48,32,182,2),(49,33,182,2),(51,34,182,2),(53,35,182,2),(55,36,182,2),(56,37,182,2),(58,38,182,2),(59,39,182,2),(60,40,182,2),(61,41,182,2),(62,42,182,2),(63,43,182,2),(65,44,182,2),(67,45,182,2),(69,46,182,2),(70,47,182,2),(71,48,182,2),(73,49,182,2),(74,50,182,2),(75,51,182,2),(77,52,182,2),(78,53,182,2),(80,54,182,2),(81,55,182,2),(82,56,182,2),(83,57,182,2),(85,58,182,2),(87,59,182,2),(88,60,182,2),(89,61,182,2),(90,62,182,2),(92,63,182,2),(93,64,182,2),(94,65,182,2),(96,66,182,2),(98,67,182,2),(100,68,182,2),(102,69,182,2),(103,70,182,2),(105,71,182,2),(107,72,182,2),(109,73,182,2),(111,74,182,2),(112,75,182,2),(113,76,182,2),(115,77,182,2),(116,78,182,2),(118,79,182,2),(119,80,182,2),(121,81,182,2),(122,82,182,2),(123,83,182,2),(125,84,182,2),(127,85,182,2),(128,86,182,2),(129,87,182,2),(131,88,182,2),(133,89,182,2),(134,90,182,2),(135,91,182,2),(136,92,182,2),(138,93,182,2),(139,94,182,2),(141,95,182,2),(142,96,182,2),(143,97,182,2),(144,98,182,2),(146,99,182,2),(147,100,182,2),(148,101,182,2),(150,102,182,2),(151,103,182,2),(153,104,182,2),(154,105,182,2),(156,106,182,2),(158,107,182,2),(159,108,182,2),(161,109,182,2),(163,110,182,2),(165,111,182,2),(166,112,182,2),(168,113,182,2),(170,114,182,2),(172,115,182,2),(174,116,182,2),(175,117,182,2),(176,118,182,2),(178,119,182,2),(180,120,182,2),(182,121,182,2),(184,122,182,2),(186,123,182,2),(188,124,182,2),(189,125,182,2),(190,126,182,2),(191,127,182,2),(192,128,182,2),(194,129,182,2),(196,130,182,2),(197,131,182,2),(199,132,182,2),(201,133,182,2),(202,134,182,2),(203,135,182,2),(205,136,182,2),(207,137,182,2),(208,138,182,2),(210,139,182,2),(212,140,182,2),(213,141,182,2),(214,142,182,2),(216,143,182,2),(217,144,182,2),(219,145,182,2),(221,146,182,2),(223,147,182,2),(224,148,182,2),(226,149,182,2),(227,150,182,2),(728,488,183,2),(744,504,183,2),(713,473,184,2),(751,511,184,2),(807,567,190,2),(796,556,191,2),(808,568,192,2),(809,569,196,2),(767,527,197,2),(771,531,199,2),(724,484,200,2),(742,502,200,2);
++INSERT INTO `civicrm_activity_contact` (`id`, `activity_id`, `contact_id`, `record_type_id`) VALUES (763,555,1,2),(172,116,2,3),(362,240,2,3),(513,348,2,3),(635,436,2,3),(659,451,2,2),(155,105,3,3),(306,203,3,3),(592,405,3,3),(610,418,3,3),(680,472,3,2),(710,502,3,2),(62,43,4,3),(660,452,4,2),(683,475,4,2),(713,505,4,2),(20,13,5,3),(615,422,5,3),(494,335,6,3),(652,447,6,3),(661,453,6,2),(331,219,7,3),(369,245,7,3),(477,323,7,3),(498,338,7,3),(536,364,7,3),(632,434,7,3),(740,532,7,2),(36,24,8,3),(408,274,8,3),(516,350,8,3),(662,454,8,2),(76,53,9,3),(335,221,9,3),(375,249,9,3),(24,16,10,3),(352,233,10,3),(656,449,10,3),(473,321,11,3),(179,120,12,3),(319,211,13,3),(482,326,13,3),(743,535,13,2),(259,170,14,3),(174,117,15,3),(195,129,15,3),(224,148,15,3),(274,181,15,3),(31,21,16,3),(663,455,16,2),(604,414,17,3),(130,89,19,3),(664,456,19,2),(506,343,20,3),(738,530,20,2),(193,128,21,3),(674,466,21,2),(704,496,21,2),(775,567,21,2),(237,157,22,3),(325,216,22,3),(452,305,22,3),(28,19,23,3),(216,142,23,3),(124,85,24,3),(284,189,24,3),(149,101,25,3),(755,547,25,2),(38,25,27,3),(249,164,27,3),(356,236,27,3),(428,287,29,3),(449,303,29,3),(141,95,30,3),(206,135,30,3),(379,252,30,3),(480,325,30,3),(529,360,30,3),(95,67,31,3),(183,122,31,3),(5,4,32,3),(159,107,32,3),(289,192,32,3),(314,207,32,3),(670,462,32,2),(671,463,32,2),(107,74,33,3),(459,310,33,3),(558,381,33,3),(57,40,34,3),(89,62,34,3),(570,389,34,3),(606,415,34,3),(667,459,34,2),(766,558,34,2),(43,29,35,3),(347,230,35,3),(298,199,36,3),(650,446,36,3),(235,156,37,3),(420,282,37,3),(67,47,38,3),(776,568,38,2),(97,68,39,3),(532,362,39,3),(438,294,40,3),(279,185,41,3),(286,190,41,3),(639,439,41,3),(643,441,41,3),(177,119,42,3),(412,276,42,3),(490,332,42,3),(687,479,42,2),(717,509,42,2),(87,61,43,3),(669,461,43,2),(422,283,44,3),(756,548,44,2),(9,6,45,3),(145,98,45,3),(572,390,45,3),(465,315,46,3),(485,328,46,3),(185,123,47,3),(360,239,47,3),(701,493,47,2),(731,523,47,2),(534,363,48,3),(163,110,49,3),(432,290,49,3),(15,10,50,3),(69,48,50,3),(619,425,50,3),(48,33,51,3),(50,34,51,3),(115,79,51,3),(181,121,51,3),(308,204,52,3),(391,260,52,3),(576,393,53,3),(200,132,54,3),(212,139,54,3),(553,378,54,3),(686,478,54,2),(716,508,54,2),(381,253,55,3),(118,81,56,3),(120,82,56,3),(546,372,56,3),(272,180,57,3),(372,247,57,3),(105,73,58,3),(641,440,58,3),(684,476,58,2),(714,506,58,2),(759,551,58,2),(509,345,59,3),(80,55,60,3),(134,91,60,3),(312,206,60,3),(679,471,60,2),(709,501,60,2),(750,542,60,2),(269,178,61,3),(627,431,62,3),(7,5,63,3),(239,158,63,3),(395,263,63,3),(584,399,63,3),(765,557,63,2),(210,138,64,3),(247,163,64,3),(302,201,64,3),(333,220,64,3),(742,534,64,2),(748,540,65,2),(338,223,66,3),(151,102,67,3),(190,126,68,3),(232,154,68,3),(263,173,68,3),(34,23,69,3),(226,149,70,3),(99,69,71,3),(310,205,71,3),(668,460,71,2),(774,566,71,2),(253,166,72,3),(327,217,72,3),(582,398,72,3),(770,562,72,2),(101,70,73,3),(418,281,73,3),(425,285,73,3),(678,470,73,2),(708,500,73,2),(168,113,74,3),(622,427,74,3),(388,258,75,3),(690,482,75,2),(720,512,75,2),(645,442,76,3),(202,133,77,3),(304,202,77,3),(601,412,77,3),(654,448,77,3),(13,9,78,3),(440,295,78,3),(539,366,78,3),(221,146,79,3),(126,86,80,3),(777,569,80,2),(136,92,81,3),(475,322,81,3),(329,218,82,3),(568,388,82,3),(658,450,82,3),(665,457,82,2),(157,106,83,3),(734,526,83,2),(291,193,84,3),(300,200,84,3),(455,307,84,3),(673,465,85,2),(703,495,85,2),(78,54,86,3),(165,111,86,3),(256,168,86,3),(467,316,86,3),(745,537,86,2),(188,125,87,3),(341,225,87,3),(410,275,87,3),(753,545,87,2),(60,42,88,3),(556,380,88,3),(594,406,88,3),(629,432,88,3),(761,553,88,2),(109,75,89,3),(198,131,90,3),(251,165,90,3),(503,341,90,3),(244,161,91,3),(385,256,91,3),(364,241,92,3),(435,292,92,3),(666,458,92,2),(737,529,92,2),(522,355,93,3),(204,134,94,3),(112,77,95,3),(138,93,95,3),(350,232,95,3),(565,386,95,3),(694,486,96,2),(724,516,96,2),(563,385,97,3),(698,490,97,2),(728,520,97,2),(733,525,97,2),(17,11,98,3),(74,52,98,3),(132,90,98,3),(242,160,98,3),(401,268,100,3),(501,340,100,3),(588,402,100,3),(526,358,101,3),(768,560,101,2),(692,484,102,2),(722,514,102,2),(767,559,107,2),(695,487,108,2),(725,517,108,2),(700,492,110,2),(730,522,110,2),(682,474,117,2),(712,504,117,2),(746,538,117,2),(676,468,123,2),(706,498,123,2),(681,473,124,2),(711,503,124,2),(771,563,124,2),(760,552,129,2),(685,477,130,2),(715,507,130,2),(1,1,131,2),(2,2,131,2),(3,3,131,2),(4,4,131,2),(6,5,131,2),(8,6,131,2),(10,7,131,2),(11,8,131,2),(12,9,131,2),(14,10,131,2),(16,11,131,2),(18,12,131,2),(19,13,131,2),(21,14,131,2),(22,15,131,2),(23,16,131,2),(25,17,131,2),(26,18,131,2),(27,19,131,2),(29,20,131,2),(30,21,131,2),(32,22,131,2),(33,23,131,2),(35,24,131,2),(37,25,131,2),(39,26,131,2),(40,27,131,2),(41,28,131,2),(42,29,131,2),(44,30,131,2),(45,31,131,2),(46,32,131,2),(47,33,131,2),(49,34,131,2),(51,35,131,2),(52,36,131,2),(53,37,131,2),(54,38,131,2),(55,39,131,2),(56,40,131,2),(58,41,131,2),(59,42,131,2),(61,43,131,2),(63,44,131,2),(64,45,131,2),(65,46,131,2),(66,47,131,2),(68,48,131,2),(70,49,131,2),(71,50,131,2),(72,51,131,2),(73,52,131,2),(75,53,131,2),(77,54,131,2),(79,55,131,2),(81,56,131,2),(82,57,131,2),(83,58,131,2),(84,59,131,2),(85,60,131,2),(86,61,131,2),(88,62,131,2),(90,63,131,2),(91,64,131,2),(92,65,131,2),(93,66,131,2),(94,67,131,2),(96,68,131,2),(98,69,131,2),(100,70,131,2),(102,71,131,2),(103,72,131,2),(104,73,131,2),(106,74,131,2),(108,75,131,2),(110,76,131,2),(111,77,131,2),(113,78,131,2),(114,79,131,2),(116,80,131,2),(117,81,131,2),(119,82,131,2),(121,83,131,2),(122,84,131,2),(123,85,131,2),(125,86,131,2),(127,87,131,2),(128,88,131,2),(129,89,131,2),(131,90,131,2),(133,91,131,2),(135,92,131,2),(137,93,131,2),(139,94,131,2),(140,95,131,2),(142,96,131,2),(143,97,131,2),(144,98,131,2),(146,99,131,2),(147,100,131,2),(148,101,131,2),(150,102,131,2),(152,103,131,2),(153,104,131,2),(154,105,131,2),(156,106,131,2),(158,107,131,2),(160,108,131,2),(161,109,131,2),(162,110,131,2),(164,111,131,2),(166,112,131,2),(167,113,131,2),(169,114,131,2),(170,115,131,2),(171,116,131,2),(173,117,131,2),(175,118,131,2),(176,119,131,2),(178,120,131,2),(180,121,131,2),(182,122,131,2),(184,123,131,2),(186,124,131,2),(187,125,131,2),(189,126,131,2),(191,127,131,2),(192,128,131,2),(194,129,131,2),(196,130,131,2),(197,131,131,2),(199,132,131,2),(201,133,131,2),(203,134,131,2),(205,135,131,2),(207,136,131,2),(208,137,131,2),(209,138,131,2),(211,139,131,2),(213,140,131,2),(214,141,131,2),(215,142,131,2),(217,143,131,2),(218,144,131,2),(219,145,131,2),(220,146,131,2),(222,147,131,2),(223,148,131,2),(225,149,131,2),(227,150,131,2),(691,483,132,2),(721,513,132,2),(747,539,133,2),(677,469,136,2),(707,499,136,2),(749,541,137,2),(751,543,138,2),(693,485,141,2),(723,515,141,2),(741,533,141,2),(758,550,142,2),(696,488,144,2),(726,518,144,2),(744,536,144,2),(739,531,146,2),(672,464,153,2),(702,494,153,2),(773,565,154,2),(675,467,156,2),(705,497,156,2),(769,561,158,2),(688,480,160,2),(718,510,160,2),(778,570,161,2),(780,572,166,2),(689,481,167,2),(719,511,167,2),(762,554,175,2),(757,549,176,2),(228,151,179,2),(229,152,179,2),(230,153,179,2),(231,154,179,2),(233,155,179,2),(234,156,179,2),(236,157,179,2),(238,158,179,2),(240,159,179,2),(241,160,179,2),(243,161,179,2),(245,162,179,2),(246,163,179,2),(248,164,179,2),(250,165,179,2),(252,166,179,2),(254,167,179,2),(255,168,179,2),(257,169,179,2),(258,170,179,2),(260,171,179,2),(261,172,179,2),(262,173,179,2),(264,174,179,2),(265,175,179,2),(266,176,179,2),(267,177,179,2),(268,178,179,2),(270,179,179,2),(271,180,179,2),(273,181,179,2),(275,182,179,2),(276,183,179,2),(277,184,179,2),(278,185,179,2),(280,186,179,2),(281,187,179,2),(282,188,179,2),(283,189,179,2),(285,190,179,2),(287,191,179,2),(288,192,179,2),(290,193,179,2),(292,194,179,2),(293,195,179,2),(294,196,179,2),(295,197,179,2),(296,198,179,2),(297,199,179,2),(299,200,179,2),(301,201,179,2),(303,202,179,2),(305,203,179,2),(307,204,179,2),(309,205,179,2),(311,206,179,2),(313,207,179,2),(315,208,179,2),(316,209,179,2),(317,210,179,2),(318,211,179,2),(320,212,179,2),(321,213,179,2),(322,214,179,2),(323,215,179,2),(324,216,179,2),(326,217,179,2),(328,218,179,2),(330,219,179,2),(332,220,179,2),(334,221,179,2),(336,222,179,2),(337,223,179,2),(339,224,179,2),(340,225,179,2),(342,226,179,2),(343,227,179,2),(344,228,179,2),(345,229,179,2),(346,230,179,2),(348,231,179,2),(349,232,179,2),(351,233,179,2),(353,234,179,2),(354,235,179,2),(355,236,179,2),(357,237,179,2),(358,238,179,2),(359,239,179,2),(361,240,179,2),(363,241,179,2),(365,242,179,2),(366,243,179,2),(367,244,179,2),(368,245,179,2),(370,246,179,2),(371,247,179,2),(373,248,179,2),(374,249,179,2),(376,250,179,2),(377,251,179,2),(378,252,179,2),(380,253,179,2),(382,254,179,2),(383,255,179,2),(384,256,179,2),(386,257,179,2),(387,258,179,2),(389,259,179,2),(390,260,179,2),(392,261,179,2),(393,262,179,2),(394,263,179,2),(396,264,179,2),(397,265,179,2),(398,266,179,2),(399,267,179,2),(400,268,179,2),(402,269,179,2),(403,270,179,2),(404,271,179,2),(405,272,179,2),(406,273,179,2),(407,274,179,2),(409,275,179,2),(411,276,179,2),(413,277,179,2),(414,278,179,2),(415,279,179,2),(416,280,179,2),(417,281,179,2),(419,282,179,2),(421,283,179,2),(423,284,179,2),(424,285,179,2),(426,286,179,2),(427,287,179,2),(429,288,179,2),(430,289,179,2),(431,290,179,2),(433,291,179,2),(434,292,179,2),(436,293,179,2),(437,294,179,2),(439,295,179,2),(441,296,179,2),(442,297,179,2),(443,298,179,2),(444,299,179,2),(445,300,179,2),(699,491,180,2),(729,521,180,2),(779,571,181,2),(782,574,183,2),(772,564,187,2),(754,546,189,2),(736,528,191,2),(752,544,192,2),(735,527,193,2),(781,573,194,2),(446,301,196,2),(447,302,196,2),(448,303,196,2),(450,304,196,2),(451,305,196,2),(453,306,196,2),(454,307,196,2),(456,308,196,2),(457,309,196,2),(458,310,196,2),(460,311,196,2),(461,312,196,2),(462,313,196,2),(463,314,196,2),(464,315,196,2),(466,316,196,2),(468,317,196,2),(469,318,196,2),(470,319,196,2),(471,320,196,2),(472,321,196,2),(474,322,196,2),(476,323,196,2),(478,324,196,2),(479,325,196,2),(481,326,196,2),(483,327,196,2),(484,328,196,2),(486,329,196,2),(487,330,196,2),(488,331,196,2),(489,332,196,2),(491,333,196,2),(492,334,196,2),(493,335,196,2),(495,336,196,2),(496,337,196,2),(497,338,196,2),(499,339,196,2),(500,340,196,2),(502,341,196,2),(504,342,196,2),(505,343,196,2),(507,344,196,2),(508,345,196,2),(510,346,196,2),(511,347,196,2),(512,348,196,2),(514,349,196,2),(515,350,196,2),(517,351,196,2),(518,352,196,2),(519,353,196,2),(520,354,196,2),(521,355,196,2),(523,356,196,2),(524,357,196,2),(525,358,196,2),(527,359,196,2),(528,360,196,2),(530,361,196,2),(531,362,196,2),(533,363,196,2),(535,364,196,2),(537,365,196,2),(538,366,196,2),(540,367,196,2),(541,368,196,2),(542,369,196,2),(543,370,196,2),(544,371,196,2),(545,372,196,2),(547,373,196,2),(548,374,196,2),(549,375,196,2),(550,376,196,2),(551,377,196,2),(552,378,196,2),(554,379,196,2),(555,380,196,2),(557,381,196,2),(559,382,196,2),(560,383,196,2),(561,384,196,2),(562,385,196,2),(564,386,196,2),(566,387,196,2),(567,388,196,2),(569,389,196,2),(571,390,196,2),(573,391,196,2),(574,392,196,2),(575,393,196,2),(577,394,196,2),(578,395,196,2),(579,396,196,2),(580,397,196,2),(581,398,196,2),(583,399,196,2),(585,400,196,2),(586,401,196,2),(587,402,196,2),(589,403,196,2),(590,404,196,2),(591,405,196,2),(593,406,196,2),(595,407,196,2),(596,408,196,2),(597,409,196,2),(598,410,196,2),(599,411,196,2),(600,412,196,2),(602,413,196,2),(603,414,196,2),(605,415,196,2),(607,416,196,2),(608,417,196,2),(609,418,196,2),(611,419,196,2),(612,420,196,2),(613,421,196,2),(614,422,196,2),(616,423,196,2),(617,424,196,2),(618,425,196,2),(620,426,196,2),(621,427,196,2),(623,428,196,2),(624,429,196,2),(625,430,196,2),(626,431,196,2),(628,432,196,2),(630,433,196,2),(631,434,196,2),(633,435,196,2),(634,436,196,2),(636,437,196,2),(637,438,196,2),(638,439,196,2),(640,440,196,2),(642,441,196,2),(644,442,196,2),(646,443,196,2),(647,444,196,2),(648,445,196,2),(649,446,196,2),(651,447,196,2),(653,448,196,2),(655,449,196,2),(657,450,196,2),(697,489,200,2),(727,519,200,2),(764,556,200,2);
  /*!40000 ALTER TABLE `civicrm_activity_contact` ENABLE KEYS */;
  UNLOCK TABLES;
  
  
  LOCK TABLES `civicrm_address` WRITE;
  /*!40000 ALTER TABLE `civicrm_address` DISABLE KEYS */;
- INSERT INTO `civicrm_address` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `street_address`, `street_number`, `street_number_suffix`, `street_number_predirectional`, `street_name`, `street_type`, `street_number_postdirectional`, `street_unit`, `supplemental_address_1`, `supplemental_address_2`, `supplemental_address_3`, `city`, `county_id`, `state_province_id`, `postal_code_suffix`, `postal_code`, `usps_adc`, `country_id`, `geo_code_1`, `geo_code_2`, `manual_geo_code`, `timezone`, `name`, `master_id`) VALUES (1,142,1,1,0,'134G Northpoint St SW',134,'G',NULL,'Northpoint','St','SW',NULL,NULL,NULL,NULL,'Gloucester Point',1,1045,NULL,'23814',NULL,1228,37.285231,-76.531577,0,NULL,NULL,NULL),(2,36,1,1,0,'41Q Dowlen Ln NW',41,'Q',NULL,'Dowlen','Ln','NW',NULL,NULL,NULL,NULL,'Mosquero',1,1030,NULL,'87733',NULL,1228,35.80364,-103.90051,0,NULL,NULL,NULL),(3,179,1,1,0,'909D Maple Path NE',909,'D',NULL,'Maple','Path','NE',NULL,NULL,NULL,NULL,'Dougherty',1,1014,NULL,'50433',NULL,1228,42.922595,-93.04392,0,NULL,NULL,NULL),(4,130,1,1,0,'200S El Camino Rd N',200,'S',NULL,'El Camino','Rd','N',NULL,NULL,NULL,NULL,'Bloomington',1,1031,NULL,'12411',NULL,1228,41.87916,-74.03995,0,NULL,NULL,NULL),(5,120,1,1,0,'764X States Ave SE',764,'X',NULL,'States','Ave','SE',NULL,NULL,NULL,NULL,'Flag Pond',1,1041,NULL,'37657',NULL,1228,36.011662,-82.56056,0,NULL,NULL,NULL),(6,126,1,1,0,'996Z Woodbridge Dr S',996,'Z',NULL,'Woodbridge','Dr','S',NULL,NULL,NULL,NULL,'Derby',1,1031,NULL,'14047',NULL,1228,42.694598,-78.98151,0,NULL,NULL,NULL),(7,136,1,1,0,'641W Green Blvd W',641,'W',NULL,'Green','Blvd','W',NULL,NULL,NULL,NULL,'Blawenburg',1,1029,NULL,'08504',NULL,1228,40.425369,-74.668753,0,NULL,NULL,NULL),(8,197,1,1,0,'934R Jackson Path W',934,'R',NULL,'Jackson','Path','W',NULL,NULL,NULL,NULL,'Wrens',1,1009,NULL,'30833',NULL,1228,33.200325,-82.37625,0,NULL,NULL,NULL),(9,145,1,1,0,'631Y Maple Way N',631,'Y',NULL,'Maple','Way','N',NULL,NULL,NULL,NULL,'Pittsburgh',1,1037,NULL,'15278',NULL,1228,40.434436,-80.024817,0,NULL,NULL,NULL),(10,124,1,1,0,'39N Martin Luther King Dr SE',39,'N',NULL,'Martin Luther King','Dr','SE',NULL,NULL,NULL,NULL,'Chatawa',1,1023,NULL,'39632',NULL,1228,31.059186,-90.46706,0,NULL,NULL,NULL),(11,122,1,1,0,'663V Bay Dr E',663,'V',NULL,'Bay','Dr','E',NULL,NULL,NULL,NULL,'Concord',1,1037,NULL,'17217',NULL,1228,40.225168,-77.725013,0,NULL,NULL,NULL),(12,155,1,1,0,'221N Northpoint Dr SW',221,'N',NULL,'Northpoint','Dr','SW',NULL,NULL,NULL,NULL,'Weed',1,1004,NULL,'96094',NULL,1228,41.460403,-122.38544,0,NULL,NULL,NULL),(13,113,1,1,0,'787F Caulder St N',787,'F',NULL,'Caulder','St','N',NULL,NULL,NULL,NULL,'Hudson',1,1049,NULL,'82515',NULL,1228,42.86682,-108.53339,0,NULL,NULL,NULL),(14,171,1,1,0,'867M Beech Dr N',867,'M',NULL,'Beech','Dr','N',NULL,NULL,NULL,NULL,'Aurora',1,1005,NULL,'80017',NULL,1228,39.695269,-104.78439,0,NULL,NULL,NULL),(15,27,1,1,0,'518L Martin Luther King Pl NE',518,'L',NULL,'Martin Luther King','Pl','NE',NULL,NULL,NULL,NULL,'New Gloucester',1,1018,NULL,'04260',NULL,1228,43.957375,-70.29488,0,NULL,NULL,NULL),(16,176,1,1,0,'725C Maple Ave NE',725,'C',NULL,'Maple','Ave','NE',NULL,NULL,NULL,NULL,'Felt',1,1011,NULL,'83424',NULL,1228,43.882935,-111.21512,0,NULL,NULL,NULL),(17,80,1,1,0,'409A El Camino Path SE',409,'A',NULL,'El Camino','Path','SE',NULL,NULL,NULL,NULL,'Compton',1,1004,NULL,'90223',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL),(18,188,1,1,0,'315S Jackson Path SE',315,'S',NULL,'Jackson','Path','SE',NULL,NULL,NULL,NULL,'Rock Hill',1,1039,NULL,'29733',NULL,1228,34.992612,-81.178712,0,NULL,NULL,NULL),(19,195,1,1,0,'792F College Way NE',792,'F',NULL,'College','Way','NE',NULL,NULL,NULL,NULL,'Arlington',1,1045,NULL,'22243',NULL,1228,38.86045,-77.051569,0,NULL,NULL,NULL),(20,64,1,1,0,'559U Second Way W',559,'U',NULL,'Second','Way','W',NULL,NULL,NULL,NULL,'Louisville',1,1016,NULL,'40269',NULL,1228,38.188962,-85.676819,0,NULL,NULL,NULL),(21,40,1,1,0,'694R Lincoln Dr W',694,'R',NULL,'Lincoln','Dr','W',NULL,NULL,NULL,NULL,'Nobleboro',1,1018,NULL,'04555',NULL,1228,44.096194,-69.47857,0,NULL,NULL,NULL),(22,16,1,1,0,'629A Second Rd W',629,'A',NULL,'Second','Rd','W',NULL,NULL,NULL,NULL,'Dugspur',1,1045,NULL,'24325',NULL,1228,36.801489,-80.60492,0,NULL,NULL,NULL),(23,72,1,1,0,'127T Woodbridge St SW',127,'T',NULL,'Woodbridge','St','SW',NULL,NULL,NULL,NULL,'Royalty',1,1042,NULL,'79779',NULL,1228,31.459448,-103.188993,0,NULL,NULL,NULL),(24,191,1,1,0,'746P Bay Path W',746,'P',NULL,'Bay','Path','W',NULL,NULL,NULL,NULL,'Tunica',1,1017,NULL,'70782',NULL,1228,30.934986,-91.53701,0,NULL,NULL,NULL),(25,107,1,1,0,'744A Main Pl N',744,'A',NULL,'Main','Pl','N',NULL,NULL,NULL,NULL,'Grapevine',1,1042,NULL,'76051',NULL,1228,32.93195,-97.08498,0,NULL,NULL,NULL),(26,105,1,1,0,'828P Caulder Way E',828,'P',NULL,'Caulder','Way','E',NULL,NULL,NULL,NULL,'Rombauer',1,1024,NULL,'63962',NULL,1228,36.712451,-90.407013,0,NULL,NULL,NULL),(27,190,1,1,0,'946H Pine St SE',946,'H',NULL,'Pine','St','SE',NULL,NULL,NULL,NULL,'Pleasantville',1,1041,NULL,'37147',NULL,1228,35.679617,-87.65472,0,NULL,NULL,NULL),(28,14,1,1,0,'222D Jackson Path NE',222,'D',NULL,'Jackson','Path','NE',NULL,NULL,NULL,NULL,'Duncansville',1,1037,NULL,'16635',NULL,1228,40.419572,-78.44934,0,NULL,NULL,NULL),(29,21,1,1,0,'942W Jackson Pl N',942,'W',NULL,'Jackson','Pl','N',NULL,NULL,NULL,NULL,'Carrsville',1,1045,NULL,'23315',NULL,1228,36.740632,-76.84517,0,NULL,NULL,NULL),(30,46,1,1,0,'777O Van Ness Path S',777,'O',NULL,'Van Ness','Path','S',NULL,NULL,NULL,NULL,'Queensbury',1,1031,NULL,'12804',NULL,1228,43.330471,-73.67816,0,NULL,NULL,NULL),(31,58,1,1,0,'310Y Dowlen Ln E',310,'Y',NULL,'Dowlen','Ln','E',NULL,NULL,NULL,NULL,'Oklahoma City',1,1035,NULL,'73197',NULL,1228,35.551409,-97.407537,0,NULL,NULL,NULL),(32,3,1,1,0,'664J Woodbridge Way E',664,'J',NULL,'Woodbridge','Way','E',NULL,NULL,NULL,NULL,'Morganton',1,1032,NULL,'28655',NULL,1228,35.742752,-81.71625,0,NULL,NULL,NULL),(33,97,1,1,0,'799H Caulder Rd E',799,'H',NULL,'Caulder','Rd','E',NULL,NULL,NULL,NULL,'Avon',1,1013,NULL,'46123',NULL,1228,39.764436,-86.39699,0,NULL,NULL,NULL),(34,65,1,1,0,'685F Van Ness Blvd SW',685,'F',NULL,'Van Ness','Blvd','SW',NULL,NULL,NULL,NULL,'New York',1,1031,NULL,'10016',NULL,1228,40.74618,-73.97759,0,NULL,NULL,NULL),(35,104,1,1,0,'462J Northpoint Way SE',462,'J',NULL,'Northpoint','Way','SE',NULL,NULL,NULL,NULL,'Crane',1,1025,NULL,'59217',NULL,1228,47.577478,-104.25806,0,NULL,NULL,NULL),(36,41,1,1,0,'348D Martin Luther King Way SE',348,'D',NULL,'Martin Luther King','Way','SE',NULL,NULL,NULL,NULL,'Rochelle',1,1042,NULL,'76872',NULL,1228,31.314477,-99.17492,0,NULL,NULL,NULL),(37,192,1,1,0,'611S Main Ave NW',611,'S',NULL,'Main','Ave','NW',NULL,NULL,NULL,NULL,'Youngstown',1,1034,NULL,'44599',NULL,1228,41.017082,-80.802854,0,NULL,NULL,NULL),(38,63,1,1,0,'826D Caulder Pl W',826,'D',NULL,'Caulder','Pl','W',NULL,NULL,NULL,NULL,'Addyston',1,1034,NULL,'45001',NULL,1228,39.137818,-84.7079,0,NULL,NULL,NULL),(39,162,1,1,0,'8X Dowlen Ave E',8,'X',NULL,'Dowlen','Ave','E',NULL,NULL,NULL,NULL,'Ihlen',1,1022,NULL,'56140',NULL,1228,43.907841,-96.36802,0,NULL,NULL,NULL),(40,128,1,1,0,'357E Northpoint Way NE',357,'E',NULL,'Northpoint','Way','NE',NULL,NULL,NULL,NULL,'Seward',1,1012,NULL,'61077',NULL,1228,42.236813,-89.35828,0,NULL,NULL,NULL),(41,131,1,1,0,'991S Pine St NW',991,'S',NULL,'Pine','St','NW',NULL,NULL,NULL,NULL,'Leslie',1,1009,NULL,'31764',NULL,1228,31.98309,-84.06866,0,NULL,NULL,NULL),(42,132,1,1,0,'483T Main Way NE',483,'T',NULL,'Main','Way','NE',NULL,NULL,NULL,NULL,'Mammoth Lakes',1,1004,NULL,'93546',NULL,1228,37.621587,-118.86279,0,NULL,NULL,NULL),(43,102,1,1,0,'88P Van Ness Pl NW',88,'P',NULL,'Van Ness','Pl','NW',NULL,NULL,NULL,NULL,'Hattiesburg',1,1023,NULL,'39406',NULL,1228,31.172142,-89.294772,0,NULL,NULL,NULL),(44,174,1,1,0,'5E Beech St NW',5,'E',NULL,'Beech','St','NW',NULL,NULL,NULL,NULL,'Tacoma',1,1046,NULL,'98493',NULL,1228,47.066193,-122.113223,0,NULL,NULL,NULL),(45,111,1,1,0,'580H Dowlen Way W',580,'H',NULL,'Dowlen','Way','W',NULL,NULL,NULL,NULL,'Lunenburg',1,1020,NULL,'01462',NULL,1228,42.582839,-71.72051,0,NULL,NULL,NULL),(46,4,1,1,0,'82T Green St S',82,'T',NULL,'Green','St','S',NULL,NULL,NULL,NULL,'Leakey',1,1042,NULL,'78873',NULL,1228,29.756509,-99.76665,0,NULL,NULL,NULL),(47,62,1,1,0,'237L College Path SE',237,'L',NULL,'College','Path','SE',NULL,NULL,NULL,NULL,'Forest',1,1023,NULL,'39074',NULL,1228,32.379693,-89.46552,0,NULL,NULL,NULL),(48,85,1,1,0,'417T Caulder Path W',417,'T',NULL,'Caulder','Path','W',NULL,NULL,NULL,NULL,'Oxford',1,1013,NULL,'47971',NULL,1228,40.520834,-87.2444,0,NULL,NULL,NULL),(49,173,1,1,0,'604Z Bay Blvd S',604,'Z',NULL,'Bay','Blvd','S',NULL,NULL,NULL,NULL,'Dalton',1,1037,NULL,'18414',NULL,1228,41.537933,-75.73826,0,NULL,NULL,NULL),(50,140,1,1,0,'390R Beech St SW',390,'R',NULL,'Beech','St','SW',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75248',NULL,1228,32.968123,-96.78863,0,NULL,NULL,NULL),(51,86,1,1,0,'523T Green Way SW',523,'T',NULL,'Green','Way','SW',NULL,NULL,NULL,NULL,'Kent',1,1034,NULL,'44243',NULL,1228,41.146862,-81.3388,0,NULL,NULL,NULL),(52,37,1,1,0,'5Z Bay Way SW',5,'Z',NULL,'Bay','Way','SW',NULL,NULL,NULL,NULL,'Rothville',1,1024,NULL,'64676',NULL,1228,39.657285,-93.07282,0,NULL,NULL,NULL),(53,17,1,1,0,'196E Pine Dr SE',196,'E',NULL,'Pine','Dr','SE',NULL,NULL,NULL,NULL,'Rolette',1,1033,NULL,'58366',NULL,1228,48.653781,-99.91768,0,NULL,NULL,NULL),(54,56,1,1,0,'728U Bay Pl W',728,'U',NULL,'Bay','Pl','W',NULL,NULL,NULL,NULL,'San Diego',1,1004,NULL,'92186',NULL,1228,33.016928,-116.846046,0,NULL,NULL,NULL),(55,137,1,1,0,'873N Bay Blvd SE',873,'N',NULL,'Bay','Blvd','SE',NULL,NULL,NULL,NULL,'Kalamazoo',1,1021,NULL,'49009',NULL,1228,42.272538,-85.69255,0,NULL,NULL,NULL),(56,199,1,1,0,'317S Caulder Ave NW',317,'S',NULL,'Caulder','Ave','NW',NULL,NULL,NULL,NULL,'Spreckels',1,1004,NULL,'93962',NULL,1228,36.624606,-121.64655,0,NULL,NULL,NULL),(57,69,1,1,0,'720F Martin Luther King Way SW',720,'F',NULL,'Martin Luther King','Way','SW',NULL,NULL,NULL,NULL,'Bernard',1,1014,NULL,'52032',NULL,1228,42.273028,-90.81319,0,NULL,NULL,NULL),(58,108,1,1,0,'795P College Dr S',795,'P',NULL,'College','Dr','S',NULL,NULL,NULL,NULL,'Erlanger',1,1016,NULL,'41018',NULL,1228,39.013755,-84.60229,0,NULL,NULL,NULL),(59,19,1,1,0,'611L Maple Blvd W',611,'L',NULL,'Maple','Blvd','W',NULL,NULL,NULL,NULL,'Kissimmee',1,1008,NULL,'34759',NULL,1228,28.094144,-81.48395,0,NULL,NULL,NULL),(60,154,1,1,0,'482D Bay Dr SE',482,'D',NULL,'Bay','Dr','SE',NULL,NULL,NULL,NULL,'Chicago',1,1012,NULL,'60680',NULL,1228,41.811929,-87.68732,0,NULL,NULL,NULL),(61,183,1,1,0,'211O Jackson Rd NW',211,'O',NULL,'Jackson','Rd','NW',NULL,NULL,NULL,NULL,'Copeland',1,1015,NULL,'67837',NULL,1228,37.554849,-100.67514,0,NULL,NULL,NULL),(62,114,1,1,0,'450X Martin Luther King Ln S',450,'X',NULL,'Martin Luther King','Ln','S',NULL,NULL,NULL,NULL,'Los Lunas',1,1030,NULL,'87031',NULL,1228,34.786133,-106.70536,0,NULL,NULL,NULL),(63,79,1,1,0,'610M Cadell Ave NE',610,'M',NULL,'Cadell','Ave','NE',NULL,NULL,NULL,NULL,'Lee Vining',1,1004,NULL,'93541',NULL,1228,37.973204,-119.12029,0,NULL,NULL,NULL),(64,25,1,1,0,'936O El Camino Path NE',936,'O',NULL,'El Camino','Path','NE',NULL,NULL,NULL,NULL,'Milton',1,1031,NULL,'12547',NULL,1228,41.656805,-73.96831,0,NULL,NULL,NULL),(65,168,1,1,0,'159A Caulder St SE',159,'A',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Sand Springs',1,1025,NULL,'59077',NULL,1228,47.130621,-107.52697,0,NULL,NULL,NULL),(66,119,1,1,0,'904A Green Way SW',904,'A',NULL,'Green','Way','SW',NULL,NULL,NULL,NULL,'Salt Lake City',1,1043,NULL,'84130',NULL,1228,40.668068,-111.908297,0,NULL,NULL,NULL),(67,75,3,1,0,'712O Green Ln NW',712,'O',NULL,'Green','Ln','NW',NULL,'Community Relations',NULL,NULL,'Dema',1,1016,NULL,'41859',NULL,1228,37.392257,-82.78204,0,NULL,NULL,NULL),(68,194,3,1,0,'895A States Pl NW',895,'A',NULL,'States','Pl','NW',NULL,'Editorial Dept',NULL,NULL,'Madisonville',1,1017,NULL,'70447',NULL,1228,30.424049,-90.18519,0,NULL,NULL,NULL),(69,67,2,1,0,'895A States Pl NW',895,'A',NULL,'States','Pl','NW',NULL,'Editorial Dept',NULL,NULL,'Madisonville',1,1017,NULL,'70447',NULL,1228,30.424049,-90.18519,0,NULL,NULL,68),(70,10,3,1,0,'986S Bay Pl NW',986,'S',NULL,'Bay','Pl','NW',NULL,'Donor Relations',NULL,NULL,'Gardner',1,1033,NULL,'58036',NULL,1228,47.15096,-96.96482,0,NULL,NULL,NULL),(71,118,3,1,0,'579N Bay Pl S',579,'N',NULL,'Bay','Pl','S',NULL,'Receiving',NULL,NULL,'Belton',1,1016,NULL,'42324',NULL,1228,37.150125,-87.00657,0,NULL,NULL,NULL),(72,125,3,1,0,'456M Jackson Ave SE',456,'M',NULL,'Jackson','Ave','SE',NULL,'Attn: Accounting',NULL,NULL,'Parker',1,1046,NULL,'98939',NULL,1228,46.56451,-120.694658,0,NULL,NULL,NULL),(73,128,2,0,0,'456M Jackson Ave SE',456,'M',NULL,'Jackson','Ave','SE',NULL,'Attn: Accounting',NULL,NULL,'Parker',1,1046,NULL,'98939',NULL,1228,46.56451,-120.694658,0,NULL,NULL,72),(74,93,3,1,0,'868X Martin Luther King Ln NE',868,'X',NULL,'Martin Luther King','Ln','NE',NULL,'Editorial Dept',NULL,NULL,'Box Elder',1,1025,NULL,'59521',NULL,1228,48.321712,-109.9578,0,NULL,NULL,NULL),(75,111,2,0,0,'868X Martin Luther King Ln NE',868,'X',NULL,'Martin Luther King','Ln','NE',NULL,'Editorial Dept',NULL,NULL,'Box Elder',1,1025,NULL,'59521',NULL,1228,48.321712,-109.9578,0,NULL,NULL,74),(76,45,3,1,0,'846Z Main Way NE',846,'Z',NULL,'Main','Way','NE',NULL,'Churchgate',NULL,NULL,'Altamonte Springs',1,1008,NULL,'32715',NULL,1228,28.744752,-81.22328,0,NULL,NULL,NULL),(77,6,3,1,0,'106C Dowlen Pl NW',106,'C',NULL,'Dowlen','Pl','NW',NULL,'Receiving',NULL,NULL,'Oakdale',1,1026,NULL,'68761',NULL,1228,42.049818,-97.96188,0,NULL,NULL,NULL),(78,16,2,0,0,'106C Dowlen Pl NW',106,'C',NULL,'Dowlen','Pl','NW',NULL,'Receiving',NULL,NULL,'Oakdale',1,1026,NULL,'68761',NULL,1228,42.049818,-97.96188,0,NULL,NULL,77),(79,23,3,1,0,'583Y Pine Ave SE',583,'Y',NULL,'Pine','Ave','SE',NULL,'Attn: Accounting',NULL,NULL,'Jasper',1,1031,NULL,'14855',NULL,1228,42.135945,-77.5078,0,NULL,NULL,NULL),(80,51,2,1,0,'583Y Pine Ave SE',583,'Y',NULL,'Pine','Ave','SE',NULL,'Attn: Accounting',NULL,NULL,'Jasper',1,1031,NULL,'14855',NULL,1228,42.135945,-77.5078,0,NULL,NULL,79),(81,112,3,1,0,'229C Maple Way SE',229,'C',NULL,'Maple','Way','SE',NULL,'Churchgate',NULL,NULL,'Camp Meeker',1,1004,NULL,'95419',NULL,1228,38.424554,-122.96067,0,NULL,NULL,NULL),(82,52,3,1,0,'306B Second Pl W',306,'B',NULL,'Second','Pl','W',NULL,'Attn: Development',NULL,NULL,'Rayville',1,1017,NULL,'71269',NULL,1228,32.457301,-91.78754,0,NULL,NULL,NULL),(83,64,2,0,0,'306B Second Pl W',306,'B',NULL,'Second','Pl','W',NULL,'Attn: Development',NULL,NULL,'Rayville',1,1017,NULL,'71269',NULL,1228,32.457301,-91.78754,0,NULL,NULL,82),(84,103,3,1,0,'746Q El Camino Dr W',746,'Q',NULL,'El Camino','Dr','W',NULL,'Attn: Accounting',NULL,NULL,'Goodwin',1,1040,NULL,'57238',NULL,1228,44.865062,-96.85949,0,NULL,NULL,NULL),(85,46,2,0,0,'746Q El Camino Dr W',746,'Q',NULL,'El Camino','Dr','W',NULL,'Attn: Accounting',NULL,NULL,'Goodwin',1,1040,NULL,'57238',NULL,1228,44.865062,-96.85949,0,NULL,NULL,84),(86,2,3,1,0,'73M Bay Path NW',73,'M',NULL,'Bay','Path','NW',NULL,'Attn: Accounting',NULL,NULL,'Pearlington',1,1023,NULL,'39572',NULL,1228,30.249994,-89.60493,0,NULL,NULL,NULL),(87,18,2,1,0,'73M Bay Path NW',73,'M',NULL,'Bay','Path','NW',NULL,'Attn: Accounting',NULL,NULL,'Pearlington',1,1023,NULL,'39572',NULL,1228,30.249994,-89.60493,0,NULL,NULL,86),(88,88,3,1,0,'396V Jackson Pl NE',396,'V',NULL,'Jackson','Pl','NE',NULL,'Cuffe Parade',NULL,NULL,'Tucson',1,1002,NULL,'85708',NULL,1228,32.196846,-110.89189,0,NULL,NULL,NULL),(89,149,3,1,0,'997B Martin Luther King St N',997,'B',NULL,'Martin Luther King','St','N',NULL,'Editorial Dept',NULL,NULL,'Spruce Head',1,1018,NULL,'04859',NULL,1228,43.999827,-69.15608,0,NULL,NULL,NULL),(90,60,2,1,0,'997B Martin Luther King St N',997,'B',NULL,'Martin Luther King','St','N',NULL,'Editorial Dept',NULL,NULL,'Spruce Head',1,1018,NULL,'04859',NULL,1228,43.999827,-69.15608,0,NULL,NULL,89),(91,201,3,1,0,'861M College Rd E',861,'M',NULL,'College','Rd','E',NULL,'Attn: Accounting',NULL,NULL,'Mentor',1,1022,NULL,'56736',NULL,1228,47.702366,-96.1539,0,NULL,NULL,NULL),(92,82,3,1,0,'157G El Camino St SE',157,'G',NULL,'El Camino','St','SE',NULL,'Community Relations',NULL,NULL,'Medford',1,1029,NULL,'08055',NULL,1228,39.865272,-74.8185,0,NULL,NULL,NULL),(93,20,2,1,0,'157G El Camino St SE',157,'G',NULL,'El Camino','St','SE',NULL,'Community Relations',NULL,NULL,'Medford',1,1029,NULL,'08055',NULL,1228,39.865272,-74.8185,0,NULL,NULL,92),(94,101,3,1,0,'138E Maple St E',138,'E',NULL,'Maple','St','E',NULL,'Urgent',NULL,NULL,'Albert Lea',1,1022,NULL,'56007',NULL,1228,43.652042,-93.36916,0,NULL,NULL,NULL),(95,59,2,1,0,'138E Maple St E',138,'E',NULL,'Maple','St','E',NULL,'Urgent',NULL,NULL,'Albert Lea',1,1022,NULL,'56007',NULL,1228,43.652042,-93.36916,0,NULL,NULL,94),(96,186,3,1,0,'5D Martin Luther King Pl N',5,'D',NULL,'Martin Luther King','Pl','N',NULL,'Receiving',NULL,NULL,'Douglas',1,1049,NULL,'82633',NULL,1228,42.935874,-105.37303,0,NULL,NULL,NULL),(97,38,3,1,0,'570P Caulder Ln NW',570,'P',NULL,'Caulder','Ln','NW',NULL,'Attn: Accounting',NULL,NULL,'Jordan Valley',1,1011,NULL,'97910',NULL,1228,42.749306,-116.8863,0,NULL,NULL,NULL),(98,96,2,1,0,'570P Caulder Ln NW',570,'P',NULL,'Caulder','Ln','NW',NULL,'Attn: Accounting',NULL,NULL,'Jordan Valley',1,1011,NULL,'97910',NULL,1228,42.749306,-116.8863,0,NULL,NULL,97),(99,51,1,0,0,'237L College Path SE',237,'L',NULL,'College','Path','SE',NULL,NULL,NULL,NULL,'Forest',1,1023,NULL,'39074',NULL,1228,32.379693,-89.46552,0,NULL,NULL,47),(100,81,1,1,0,'237L College Path SE',237,'L',NULL,'College','Path','SE',NULL,NULL,NULL,NULL,'Forest',1,1023,NULL,'39074',NULL,1228,32.379693,-89.46552,0,NULL,NULL,47),(101,95,1,1,0,'237L College Path SE',237,'L',NULL,'College','Path','SE',NULL,NULL,NULL,NULL,'Forest',1,1023,NULL,'39074',NULL,1228,32.379693,-89.46552,0,NULL,NULL,47),(102,4,1,0,0,'561J Lincoln Ave NE',561,'J',NULL,'Lincoln','Ave','NE',NULL,NULL,NULL,NULL,'Girard',1,1009,NULL,'30426',NULL,1228,33.032445,-81.63251,0,NULL,NULL,NULL),(103,32,1,1,0,'417T Caulder Path W',417,'T',NULL,'Caulder','Path','W',NULL,NULL,NULL,NULL,'Oxford',1,1013,NULL,'47971',NULL,1228,40.520834,-87.2444,0,NULL,NULL,48),(104,9,1,1,0,'417T Caulder Path W',417,'T',NULL,'Caulder','Path','W',NULL,NULL,NULL,NULL,'Oxford',1,1013,NULL,'47971',NULL,1228,40.520834,-87.2444,0,NULL,NULL,48),(105,12,1,1,0,'417T Caulder Path W',417,'T',NULL,'Caulder','Path','W',NULL,NULL,NULL,NULL,'Oxford',1,1013,NULL,'47971',NULL,1228,40.520834,-87.2444,0,NULL,NULL,48),(106,11,1,1,0,'417T Caulder Path W',417,'T',NULL,'Caulder','Path','W',NULL,NULL,NULL,NULL,'Oxford',1,1013,NULL,'47971',NULL,1228,40.520834,-87.2444,0,NULL,NULL,48),(107,67,1,0,0,'604Z Bay Blvd S',604,'Z',NULL,'Bay','Blvd','S',NULL,NULL,NULL,NULL,'Dalton',1,1037,NULL,'18414',NULL,1228,41.537933,-75.73826,0,NULL,NULL,49),(108,139,1,1,0,'604Z Bay Blvd S',604,'Z',NULL,'Bay','Blvd','S',NULL,NULL,NULL,NULL,'Dalton',1,1037,NULL,'18414',NULL,1228,41.537933,-75.73826,0,NULL,NULL,49),(109,8,1,1,0,'604Z Bay Blvd S',604,'Z',NULL,'Bay','Blvd','S',NULL,NULL,NULL,NULL,'Dalton',1,1037,NULL,'18414',NULL,1228,41.537933,-75.73826,0,NULL,NULL,49),(110,163,1,1,0,'207W Jackson Dr NW',207,'W',NULL,'Jackson','Dr','NW',NULL,NULL,NULL,NULL,'Eddyville',1,1036,NULL,'97343',NULL,1228,44.643659,-123.76213,0,NULL,NULL,NULL),(111,49,1,1,0,'390R Beech St SW',390,'R',NULL,'Beech','St','SW',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75248',NULL,1228,32.968123,-96.78863,0,NULL,NULL,50),(112,78,1,1,0,'390R Beech St SW',390,'R',NULL,'Beech','St','SW',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75248',NULL,1228,32.968123,-96.78863,0,NULL,NULL,50),(113,39,1,1,0,'390R Beech St SW',390,'R',NULL,'Beech','St','SW',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75248',NULL,1228,32.968123,-96.78863,0,NULL,NULL,50),(114,189,1,1,0,'390R Beech St SW',390,'R',NULL,'Beech','St','SW',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75248',NULL,1228,32.968123,-96.78863,0,NULL,NULL,50),(115,165,1,1,0,'523T Green Way SW',523,'T',NULL,'Green','Way','SW',NULL,NULL,NULL,NULL,'Kent',1,1034,NULL,'44243',NULL,1228,41.146862,-81.3388,0,NULL,NULL,51),(116,73,1,1,0,'523T Green Way SW',523,'T',NULL,'Green','Way','SW',NULL,NULL,NULL,NULL,'Kent',1,1034,NULL,'44243',NULL,1228,41.146862,-81.3388,0,NULL,NULL,51),(117,157,1,1,0,'523T Green Way SW',523,'T',NULL,'Green','Way','SW',NULL,NULL,NULL,NULL,'Kent',1,1034,NULL,'44243',NULL,1228,41.146862,-81.3388,0,NULL,NULL,51),(118,35,1,1,0,'523T Green Way SW',523,'T',NULL,'Green','Way','SW',NULL,NULL,NULL,NULL,'Kent',1,1034,NULL,'44243',NULL,1228,41.146862,-81.3388,0,NULL,NULL,51),(119,117,1,1,0,'5Z Bay Way SW',5,'Z',NULL,'Bay','Way','SW',NULL,NULL,NULL,NULL,'Rothville',1,1024,NULL,'64676',NULL,1228,39.657285,-93.07282,0,NULL,NULL,52),(120,175,1,1,0,'5Z Bay Way SW',5,'Z',NULL,'Bay','Way','SW',NULL,NULL,NULL,NULL,'Rothville',1,1024,NULL,'64676',NULL,1228,39.657285,-93.07282,0,NULL,NULL,52),(121,71,1,1,0,'5Z Bay Way SW',5,'Z',NULL,'Bay','Way','SW',NULL,NULL,NULL,NULL,'Rothville',1,1024,NULL,'64676',NULL,1228,39.657285,-93.07282,0,NULL,NULL,52),(122,48,1,1,0,'109X Caulder Blvd NW',109,'X',NULL,'Caulder','Blvd','NW',NULL,NULL,NULL,NULL,'Peck',1,1011,NULL,'83545',NULL,1228,46.460115,-116.43823,0,NULL,NULL,NULL),(123,61,1,1,0,'196E Pine Dr SE',196,'E',NULL,'Pine','Dr','SE',NULL,NULL,NULL,NULL,'Rolette',1,1033,NULL,'58366',NULL,1228,48.653781,-99.91768,0,NULL,NULL,53),(124,59,1,0,0,'196E Pine Dr SE',196,'E',NULL,'Pine','Dr','SE',NULL,NULL,NULL,NULL,'Rolette',1,1033,NULL,'58366',NULL,1228,48.653781,-99.91768,0,NULL,NULL,53),(125,200,1,1,0,'196E Pine Dr SE',196,'E',NULL,'Pine','Dr','SE',NULL,NULL,NULL,NULL,'Rolette',1,1033,NULL,'58366',NULL,1228,48.653781,-99.91768,0,NULL,NULL,53),(126,77,1,1,0,'191C Beech St SE',191,'C',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Hope',1,1016,NULL,'40334',NULL,1228,38.016706,-83.76639,0,NULL,NULL,NULL),(127,172,1,1,0,'728U Bay Pl W',728,'U',NULL,'Bay','Pl','W',NULL,NULL,NULL,NULL,'San Diego',1,1004,NULL,'92186',NULL,1228,33.016928,-116.846046,0,NULL,NULL,54),(128,100,1,1,0,'728U Bay Pl W',728,'U',NULL,'Bay','Pl','W',NULL,NULL,NULL,NULL,'San Diego',1,1004,NULL,'92186',NULL,1228,33.016928,-116.846046,0,NULL,NULL,54),(129,54,1,1,0,'728U Bay Pl W',728,'U',NULL,'Bay','Pl','W',NULL,NULL,NULL,NULL,'San Diego',1,1004,NULL,'92186',NULL,1228,33.016928,-116.846046,0,NULL,NULL,54),(130,152,1,1,0,'728U Bay Pl W',728,'U',NULL,'Bay','Pl','W',NULL,NULL,NULL,NULL,'San Diego',1,1004,NULL,'92186',NULL,1228,33.016928,-116.846046,0,NULL,NULL,54),(131,70,1,1,0,'873N Bay Blvd SE',873,'N',NULL,'Bay','Blvd','SE',NULL,NULL,NULL,NULL,'Kalamazoo',1,1021,NULL,'49009',NULL,1228,42.272538,-85.69255,0,NULL,NULL,55),(132,169,1,1,0,'873N Bay Blvd SE',873,'N',NULL,'Bay','Blvd','SE',NULL,NULL,NULL,NULL,'Kalamazoo',1,1021,NULL,'49009',NULL,1228,42.272538,-85.69255,0,NULL,NULL,55),(133,116,1,1,0,'873N Bay Blvd SE',873,'N',NULL,'Bay','Blvd','SE',NULL,NULL,NULL,NULL,'Kalamazoo',1,1021,NULL,'49009',NULL,1228,42.272538,-85.69255,0,NULL,NULL,55),(134,151,1,1,0,'454P Pine Blvd S',454,'P',NULL,'Pine','Blvd','S',NULL,NULL,NULL,NULL,'Boston',1,1020,NULL,'02123',NULL,1228,42.338947,-70.919635,0,NULL,NULL,NULL),(135,44,1,1,0,'317S Caulder Ave NW',317,'S',NULL,'Caulder','Ave','NW',NULL,NULL,NULL,NULL,'Spreckels',1,1004,NULL,'93962',NULL,1228,36.624606,-121.64655,0,NULL,NULL,56),(136,60,1,0,0,'317S Caulder Ave NW',317,'S',NULL,'Caulder','Ave','NW',NULL,NULL,NULL,NULL,'Spreckels',1,1004,NULL,'93962',NULL,1228,36.624606,-121.64655,0,NULL,NULL,56),(137,170,1,1,0,'317S Caulder Ave NW',317,'S',NULL,'Caulder','Ave','NW',NULL,NULL,NULL,NULL,'Spreckels',1,1004,NULL,'93962',NULL,1228,36.624606,-121.64655,0,NULL,NULL,56),(138,50,1,1,0,'317S Caulder Ave NW',317,'S',NULL,'Caulder','Ave','NW',NULL,NULL,NULL,NULL,'Spreckels',1,1004,NULL,'93962',NULL,1228,36.624606,-121.64655,0,NULL,NULL,56),(139,160,1,1,0,'720F Martin Luther King Way SW',720,'F',NULL,'Martin Luther King','Way','SW',NULL,NULL,NULL,NULL,'Bernard',1,1014,NULL,'52032',NULL,1228,42.273028,-90.81319,0,NULL,NULL,57),(140,33,1,1,0,'720F Martin Luther King Way SW',720,'F',NULL,'Martin Luther King','Way','SW',NULL,NULL,NULL,NULL,'Bernard',1,1014,NULL,'52032',NULL,1228,42.273028,-90.81319,0,NULL,NULL,57),(141,127,1,1,0,'720F Martin Luther King Way SW',720,'F',NULL,'Martin Luther King','Way','SW',NULL,NULL,NULL,NULL,'Bernard',1,1014,NULL,'52032',NULL,1228,42.273028,-90.81319,0,NULL,NULL,57),(142,84,1,1,0,'720F Martin Luther King Way SW',720,'F',NULL,'Martin Luther King','Way','SW',NULL,NULL,NULL,NULL,'Bernard',1,1014,NULL,'52032',NULL,1228,42.273028,-90.81319,0,NULL,NULL,57),(143,83,1,1,0,'795P College Dr S',795,'P',NULL,'College','Dr','S',NULL,NULL,NULL,NULL,'Erlanger',1,1016,NULL,'41018',NULL,1228,39.013755,-84.60229,0,NULL,NULL,58),(144,87,1,1,0,'795P College Dr S',795,'P',NULL,'College','Dr','S',NULL,NULL,NULL,NULL,'Erlanger',1,1016,NULL,'41018',NULL,1228,39.013755,-84.60229,0,NULL,NULL,58),(145,164,1,1,0,'795P College Dr S',795,'P',NULL,'College','Dr','S',NULL,NULL,NULL,NULL,'Erlanger',1,1016,NULL,'41018',NULL,1228,39.013755,-84.60229,0,NULL,NULL,58),(146,22,1,1,0,'112Y Lincoln Ln W',112,'Y',NULL,'Lincoln','Ln','W',NULL,NULL,NULL,NULL,'Orrs Island',1,1018,NULL,'04066',NULL,1228,43.763403,-69.97038,0,NULL,NULL,NULL),(147,26,1,1,0,'611L Maple Blvd W',611,'L',NULL,'Maple','Blvd','W',NULL,NULL,NULL,NULL,'Kissimmee',1,1008,NULL,'34759',NULL,1228,28.094144,-81.48395,0,NULL,NULL,59),(148,98,1,1,0,'611L Maple Blvd W',611,'L',NULL,'Maple','Blvd','W',NULL,NULL,NULL,NULL,'Kissimmee',1,1008,NULL,'34759',NULL,1228,28.094144,-81.48395,0,NULL,NULL,59),(149,106,1,1,0,'611L Maple Blvd W',611,'L',NULL,'Maple','Blvd','W',NULL,NULL,NULL,NULL,'Kissimmee',1,1008,NULL,'34759',NULL,1228,28.094144,-81.48395,0,NULL,NULL,59),(150,187,1,1,0,'611L Maple Blvd W',611,'L',NULL,'Maple','Blvd','W',NULL,NULL,NULL,NULL,'Kissimmee',1,1008,NULL,'34759',NULL,1228,28.094144,-81.48395,0,NULL,NULL,59),(151,31,1,1,0,'482D Bay Dr SE',482,'D',NULL,'Bay','Dr','SE',NULL,NULL,NULL,NULL,'Chicago',1,1012,NULL,'60680',NULL,1228,41.811929,-87.68732,0,NULL,NULL,60),(152,20,1,0,0,'482D Bay Dr SE',482,'D',NULL,'Bay','Dr','SE',NULL,NULL,NULL,NULL,'Chicago',1,1012,NULL,'60680',NULL,1228,41.811929,-87.68732,0,NULL,NULL,60),(153,133,1,1,0,'482D Bay Dr SE',482,'D',NULL,'Bay','Dr','SE',NULL,NULL,NULL,NULL,'Chicago',1,1012,NULL,'60680',NULL,1228,41.811929,-87.68732,0,NULL,NULL,60),(154,109,1,1,0,'482D Bay Dr SE',482,'D',NULL,'Bay','Dr','SE',NULL,NULL,NULL,NULL,'Chicago',1,1012,NULL,'60680',NULL,1228,41.811929,-87.68732,0,NULL,NULL,60),(155,129,1,1,0,'211O Jackson Rd NW',211,'O',NULL,'Jackson','Rd','NW',NULL,NULL,NULL,NULL,'Copeland',1,1015,NULL,'67837',NULL,1228,37.554849,-100.67514,0,NULL,NULL,61),(156,123,1,1,0,'211O Jackson Rd NW',211,'O',NULL,'Jackson','Rd','NW',NULL,NULL,NULL,NULL,'Copeland',1,1015,NULL,'67837',NULL,1228,37.554849,-100.67514,0,NULL,NULL,61),(157,55,1,1,0,'211O Jackson Rd NW',211,'O',NULL,'Jackson','Rd','NW',NULL,NULL,NULL,NULL,'Copeland',1,1015,NULL,'67837',NULL,1228,37.554849,-100.67514,0,NULL,NULL,61),(158,99,1,1,0,'211O Jackson Rd NW',211,'O',NULL,'Jackson','Rd','NW',NULL,NULL,NULL,NULL,'Copeland',1,1015,NULL,'67837',NULL,1228,37.554849,-100.67514,0,NULL,NULL,61),(159,42,1,1,0,'450X Martin Luther King Ln S',450,'X',NULL,'Martin Luther King','Ln','S',NULL,NULL,NULL,NULL,'Los Lunas',1,1030,NULL,'87031',NULL,1228,34.786133,-106.70536,0,NULL,NULL,62),(160,143,1,1,0,'450X Martin Luther King Ln S',450,'X',NULL,'Martin Luther King','Ln','S',NULL,NULL,NULL,NULL,'Los Lunas',1,1030,NULL,'87031',NULL,1228,34.786133,-106.70536,0,NULL,NULL,62),(161,74,1,1,0,'450X Martin Luther King Ln S',450,'X',NULL,'Martin Luther King','Ln','S',NULL,NULL,NULL,NULL,'Los Lunas',1,1030,NULL,'87031',NULL,1228,34.786133,-106.70536,0,NULL,NULL,62),(162,147,1,1,0,'450X Martin Luther King Ln S',450,'X',NULL,'Martin Luther King','Ln','S',NULL,NULL,NULL,NULL,'Los Lunas',1,1030,NULL,'87031',NULL,1228,34.786133,-106.70536,0,NULL,NULL,62),(163,18,1,0,0,'610M Cadell Ave NE',610,'M',NULL,'Cadell','Ave','NE',NULL,NULL,NULL,NULL,'Lee Vining',1,1004,NULL,'93541',NULL,1228,37.973204,-119.12029,0,NULL,NULL,63),(164,182,1,1,0,'610M Cadell Ave NE',610,'M',NULL,'Cadell','Ave','NE',NULL,NULL,NULL,NULL,'Lee Vining',1,1004,NULL,'93541',NULL,1228,37.973204,-119.12029,0,NULL,NULL,63),(165,198,1,1,0,'610M Cadell Ave NE',610,'M',NULL,'Cadell','Ave','NE',NULL,NULL,NULL,NULL,'Lee Vining',1,1004,NULL,'93541',NULL,1228,37.973204,-119.12029,0,NULL,NULL,63),(166,28,1,1,0,'610M Cadell Ave NE',610,'M',NULL,'Cadell','Ave','NE',NULL,NULL,NULL,NULL,'Lee Vining',1,1004,NULL,'93541',NULL,1228,37.973204,-119.12029,0,NULL,NULL,63),(167,57,1,1,0,'936O El Camino Path NE',936,'O',NULL,'El Camino','Path','NE',NULL,NULL,NULL,NULL,'Milton',1,1031,NULL,'12547',NULL,1228,41.656805,-73.96831,0,NULL,NULL,64),(168,94,1,1,0,'936O El Camino Path NE',936,'O',NULL,'El Camino','Path','NE',NULL,NULL,NULL,NULL,'Milton',1,1031,NULL,'12547',NULL,1228,41.656805,-73.96831,0,NULL,NULL,64),(169,5,1,1,0,'936O El Camino Path NE',936,'O',NULL,'El Camino','Path','NE',NULL,NULL,NULL,NULL,'Milton',1,1031,NULL,'12547',NULL,1228,41.656805,-73.96831,0,NULL,NULL,64),(170,193,1,1,0,'190S Northpoint St SE',190,'S',NULL,'Northpoint','St','SE',NULL,NULL,NULL,NULL,'Plainfield',1,1029,NULL,'07060',NULL,1228,40.620102,-74.42481,0,NULL,NULL,NULL),(171,96,1,0,0,'159A Caulder St SE',159,'A',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Sand Springs',1,1025,NULL,'59077',NULL,1228,47.130621,-107.52697,0,NULL,NULL,65),(172,153,1,1,0,'159A Caulder St SE',159,'A',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Sand Springs',1,1025,NULL,'59077',NULL,1228,47.130621,-107.52697,0,NULL,NULL,65),(173,53,1,1,0,'159A Caulder St SE',159,'A',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Sand Springs',1,1025,NULL,'59077',NULL,1228,47.130621,-107.52697,0,NULL,NULL,65),(174,158,1,1,0,'159A Caulder St SE',159,'A',NULL,'Caulder','St','SE',NULL,NULL,NULL,NULL,'Sand Springs',1,1025,NULL,'59077',NULL,1228,47.130621,-107.52697,0,NULL,NULL,65),(175,178,1,1,0,'904A Green Way SW',904,'A',NULL,'Green','Way','SW',NULL,NULL,NULL,NULL,'Salt Lake City',1,1043,NULL,'84130',NULL,1228,40.668068,-111.908297,0,NULL,NULL,66),(176,180,1,1,0,'904A Green Way SW',904,'A',NULL,'Green','Way','SW',NULL,NULL,NULL,NULL,'Salt Lake City',1,1043,NULL,'84130',NULL,1228,40.668068,-111.908297,0,NULL,NULL,66),(177,148,1,1,0,'904A Green Way SW',904,'A',NULL,'Green','Way','SW',NULL,NULL,NULL,NULL,'Salt Lake City',1,1043,NULL,'84130',NULL,1228,40.668068,-111.908297,0,NULL,NULL,66),(178,196,1,1,0,'904A Green Way SW',904,'A',NULL,'Green','Way','SW',NULL,NULL,NULL,NULL,'Salt Lake City',1,1043,NULL,'84130',NULL,1228,40.668068,-111.908297,0,NULL,NULL,66),(179,NULL,1,1,1,'14S El Camino Way E',14,'S',NULL,'El Camino','Way',NULL,NULL,NULL,NULL,NULL,'Collinsville',NULL,1006,NULL,'6022',NULL,1228,41.8328,-72.9253,0,NULL,NULL,NULL),(180,NULL,1,1,1,'11B Woodbridge Path SW',11,'B',NULL,'Woodbridge','Path',NULL,NULL,NULL,NULL,NULL,'Dayton',NULL,1034,NULL,'45417',NULL,1228,39.7531,-84.2471,0,NULL,NULL,NULL),(181,NULL,1,1,1,'581O Lincoln Dr SW',581,'O',NULL,'Lincoln','Dr',NULL,NULL,NULL,NULL,NULL,'Santa Fe',NULL,1030,NULL,'87594',NULL,1228,35.5212,-105.982,0,NULL,NULL,NULL);
 -INSERT INTO `civicrm_address` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `street_address`, `street_number`, `street_number_suffix`, `street_number_predirectional`, `street_name`, `street_type`, `street_number_postdirectional`, `street_unit`, `supplemental_address_1`, `supplemental_address_2`, `supplemental_address_3`, `city`, `county_id`, `state_province_id`, `postal_code_suffix`, `postal_code`, `usps_adc`, `country_id`, `geo_code_1`, `geo_code_2`, `manual_geo_code`, `timezone`, `name`, `master_id`) VALUES (1,119,1,1,0,'928U Van Ness St E',928,'U',NULL,'Van Ness','St','E',NULL,NULL,NULL,NULL,'Naval Air Station/ Jrb',1,1042,NULL,'76127',NULL,1228,32.772063,-97.42165,0,NULL,NULL,NULL),(2,87,1,1,0,'946G Dowlen Ln SW',946,'G',NULL,'Dowlen','Ln','SW',NULL,NULL,NULL,NULL,'Topeka',1,1015,NULL,'66642',NULL,1228,39.042939,-95.769657,0,NULL,NULL,NULL),(3,106,1,1,0,'266R Martin Luther King Ave SE',266,'R',NULL,'Martin Luther King','Ave','SE',NULL,NULL,NULL,NULL,'Scotland',1,1042,NULL,'76379',NULL,1228,33.646685,-98.48719,0,NULL,NULL,NULL),(4,201,1,1,0,'965M Pine Ave E',965,'M',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'New Braunfels',1,1042,NULL,'78132',NULL,1228,29.749204,-98.17653,0,NULL,NULL,NULL),(5,2,1,1,0,'504U Woodbridge Pl NW',504,'U',NULL,'Woodbridge','Pl','NW',NULL,NULL,NULL,NULL,'McQuady',1,1016,NULL,'40153',NULL,1228,37.802295,-86.414768,0,NULL,NULL,NULL),(6,137,1,1,0,'205V States Ln NW',205,'V',NULL,'States','Ln','NW',NULL,NULL,NULL,NULL,'Loop',1,1042,NULL,'79342',NULL,1228,32.893447,-102.30958,0,NULL,NULL,NULL),(7,36,1,1,0,'577P Main Rd NE',577,'P',NULL,'Main','Rd','NE',NULL,NULL,NULL,NULL,'Pikeville',1,1041,NULL,'37367',NULL,1228,35.635097,-85.17161,0,NULL,NULL,NULL),(8,191,1,1,0,'62Q Second Way W',62,'Q',NULL,'Second','Way','W',NULL,NULL,NULL,NULL,'St Thomas',1,1057,NULL,'00803',NULL,1228,18.322285,-64.963715,0,NULL,NULL,NULL),(9,169,1,1,0,'249G College Way NW',249,'G',NULL,'College','Way','NW',NULL,NULL,NULL,NULL,'Tolar',1,1042,NULL,'76476',NULL,1228,32.387648,-97.93959,0,NULL,NULL,NULL),(10,171,1,1,0,'437F Pine Way W',437,'F',NULL,'Pine','Way','W',NULL,NULL,NULL,NULL,'Bivins',1,1042,NULL,'75555',NULL,1228,32.930895,-94.13542,0,NULL,NULL,NULL),(11,64,1,1,0,'88N Pine St SW',88,'N',NULL,'Pine','St','SW',NULL,NULL,NULL,NULL,'North Billerica',1,1020,NULL,'01862',NULL,1228,42.573592,-71.2911,0,NULL,NULL,NULL),(12,80,1,1,0,'838M Second Pl NW',838,'M',NULL,'Second','Pl','NW',NULL,NULL,NULL,NULL,'San Juan Bautista',1,1004,NULL,'95045',NULL,1228,36.829052,-121.52848,0,NULL,NULL,NULL),(13,150,1,1,0,'249D Jackson Pl N',249,'D',NULL,'Jackson','Pl','N',NULL,NULL,NULL,NULL,'Sedona',1,1002,NULL,'86339',NULL,1228,34.907188,-111.728572,0,NULL,NULL,NULL),(14,148,1,1,0,'701E El Camino Way NE',701,'E',NULL,'El Camino','Way','NE',NULL,NULL,NULL,NULL,'Elburn',1,1012,NULL,'60119',NULL,1228,41.876506,-88.46429,0,NULL,NULL,NULL),(15,178,1,1,0,'992P Beech Pl SW',992,'P',NULL,'Beech','Pl','SW',NULL,NULL,NULL,NULL,'Hamilton',1,1025,NULL,'59840',NULL,1228,46.214883,-114.14786,0,NULL,NULL,NULL),(16,103,1,1,0,'936R Van Ness Ln NE',936,'R',NULL,'Van Ness','Ln','NE',NULL,NULL,NULL,NULL,'Estelline',1,1042,NULL,'79233',NULL,1228,34.545031,-100.43729,0,NULL,NULL,NULL),(17,200,1,1,0,'164B Pine Ave S',164,'B',NULL,'Pine','Ave','S',NULL,NULL,NULL,NULL,'Fort Lauderdale',1,1008,NULL,'33348',NULL,1228,26.145724,-80.448254,0,NULL,NULL,NULL),(18,198,1,1,0,'672X States Way SW',672,'X',NULL,'States','Way','SW',NULL,NULL,NULL,NULL,'Pompano Beach',1,1008,NULL,'33097',NULL,1228,26.145724,-80.448254,0,NULL,NULL,NULL),(19,170,1,1,0,'702K Woodbridge Ave W',702,'K',NULL,'Woodbridge','Ave','W',NULL,NULL,NULL,NULL,'Hackberry',1,1017,NULL,'70645',NULL,1228,29.995358,-93.37575,0,NULL,NULL,NULL),(20,183,1,1,0,'593Q Beech Path S',593,'Q',NULL,'Beech','Path','S',NULL,NULL,NULL,NULL,'Killona',1,1017,NULL,'70066',NULL,1228,29.999471,-90.48708,0,NULL,NULL,NULL),(21,146,1,1,0,'343L Bay Rd SE',343,'L',NULL,'Bay','Rd','SE',NULL,NULL,NULL,NULL,'Dry Prong',1,1017,NULL,'71423',NULL,1228,31.563093,-92.54954,0,NULL,NULL,NULL),(22,166,1,1,0,'246P College Pl S',246,'P',NULL,'College','Pl','S',NULL,NULL,NULL,NULL,'Pineville',1,1017,NULL,'71361',NULL,1228,31.36923,-92.419836,0,NULL,NULL,NULL),(23,75,1,1,0,'138G Martin Luther King St SE',138,'G',NULL,'Martin Luther King','St','SE',NULL,NULL,NULL,NULL,'Las Vegas',1,1027,NULL,'89108',NULL,1228,36.205718,-115.22363,0,NULL,NULL,NULL),(24,44,1,1,0,'902A Caulder Pl NE',902,'A',NULL,'Caulder','Pl','NE',NULL,NULL,NULL,NULL,'Bapchule',1,1002,NULL,'85221',NULL,1228,33.126134,-111.90545,0,NULL,NULL,NULL),(25,131,1,1,0,'249D Van Ness Pl NW',249,'D',NULL,'Van Ness','Pl','NW',NULL,NULL,NULL,NULL,'Sacramento',1,1004,NULL,'94240',NULL,1228,38.377411,-121.444429,0,NULL,NULL,NULL),(26,162,1,1,0,'145U Main Way S',145,'U',NULL,'Main','Way','S',NULL,NULL,NULL,NULL,'Perryville',1,1024,NULL,'63775',NULL,1228,37.716811,-89.87601,0,NULL,NULL,NULL),(27,78,1,1,0,'523H Northpoint Path SW',523,'H',NULL,'Northpoint','Path','SW',NULL,NULL,NULL,NULL,'Grawn',1,1021,NULL,'49637',NULL,1228,44.647716,-85.70649,0,NULL,NULL,NULL),(28,196,1,1,0,'165E Northpoint Path S',165,'E',NULL,'Northpoint','Path','S',NULL,NULL,NULL,NULL,'Cleveland',1,1009,NULL,'30528',NULL,1228,34.595859,-83.76194,0,NULL,NULL,NULL),(29,15,1,1,0,'268B Martin Luther King Rd E',268,'B',NULL,'Martin Luther King','Rd','E',NULL,NULL,NULL,NULL,'Douglas',1,1020,NULL,'01516',NULL,1228,42.061437,-71.72887,0,NULL,NULL,NULL),(30,33,1,1,0,'393E Second Dr SW',393,'E',NULL,'Second','Dr','SW',NULL,NULL,NULL,NULL,'Purdin',1,1024,NULL,'64674',NULL,1228,39.958661,-93.16074,0,NULL,NULL,NULL),(31,76,1,1,0,'725C Beech Dr NW',725,'C',NULL,'Beech','Dr','NW',NULL,NULL,NULL,NULL,'Akron',1,1034,NULL,'44319',NULL,1228,40.990922,-81.52953,0,NULL,NULL,NULL),(32,68,1,1,0,'508M Caulder Pl NE',508,'M',NULL,'Caulder','Pl','NE',NULL,NULL,NULL,NULL,'Boise',1,1011,NULL,'83733',NULL,1228,43.459855,-116.243984,0,NULL,NULL,NULL),(33,96,1,1,0,'85F Woodbridge Blvd SE',85,'F',NULL,'Woodbridge','Blvd','SE',NULL,NULL,NULL,NULL,'Doniphan',1,1026,NULL,'68832',NULL,1228,40.763643,-98.38794,0,NULL,NULL,NULL),(34,195,1,1,0,'589L Second Way E',589,'L',NULL,'Second','Way','E',NULL,NULL,NULL,NULL,'Burfordville',1,1024,NULL,'63739',NULL,1228,37.360527,-89.79907,0,NULL,NULL,NULL),(35,158,1,1,0,'616Q Main Dr NE',616,'Q',NULL,'Main','Dr','NE',NULL,NULL,NULL,NULL,'Heber',1,1002,NULL,'85928',NULL,1228,34.563994,-110.55929,0,NULL,NULL,NULL),(36,35,1,1,0,'505L Jackson Path SW',505,'L',NULL,'Jackson','Path','SW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30344',NULL,1228,33.676258,-84.44977,0,NULL,NULL,NULL),(37,190,1,1,0,'515L Main Rd N',515,'L',NULL,'Main','Rd','N',NULL,NULL,NULL,NULL,'Springfield',1,1034,NULL,'45504',NULL,1228,39.941827,-83.83702,0,NULL,NULL,NULL),(38,66,1,1,0,'923E College Path SW',923,'E',NULL,'College','Path','SW',NULL,NULL,NULL,NULL,'Pirtleville',1,1002,NULL,'85626',NULL,1228,31.357528,-109.611545,0,NULL,NULL,NULL),(39,72,1,1,0,'483D Green Blvd NW',483,'D',NULL,'Green','Blvd','NW',NULL,NULL,NULL,NULL,'Templeville',1,1019,NULL,'21670',NULL,1228,38.88927,-75.861191,0,NULL,NULL,NULL),(40,16,1,1,0,'152A Cadell Path W',152,'A',NULL,'Cadell','Path','W',NULL,NULL,NULL,NULL,'Adairsville',1,1009,NULL,'30103',NULL,1228,34.368647,-84.92452,0,NULL,NULL,NULL),(41,51,1,1,0,'86J Martin Luther King Dr N',86,'J',NULL,'Martin Luther King','Dr','N',NULL,NULL,NULL,NULL,'Millwood',1,1045,NULL,'22646',NULL,1228,39.069682,-78.03752,0,NULL,NULL,NULL),(42,28,1,1,0,'665A Dowlen Path SW',665,'A',NULL,'Dowlen','Path','SW',NULL,NULL,NULL,NULL,'Waldwick',1,1029,NULL,'07463',NULL,1228,41.013109,-74.12231,0,NULL,NULL,NULL),(43,34,1,1,0,'417X Van Ness Pl SW',417,'X',NULL,'Van Ness','Pl','SW',NULL,NULL,NULL,NULL,'Holdingford',1,1022,NULL,'56340',NULL,1228,45.749908,-94.45647,0,NULL,NULL,NULL),(44,79,1,1,0,'961J Cadell Way E',961,'J',NULL,'Cadell','Way','E',NULL,NULL,NULL,NULL,'Willard',1,1034,NULL,'44888',NULL,1228,41.141541,-82.588928,0,NULL,NULL,NULL),(45,154,1,1,0,'806P Green Rd NW',806,'P',NULL,'Green','Rd','NW',NULL,NULL,NULL,NULL,'Baltimore',1,1019,NULL,'21273',NULL,1228,39.284707,-76.620489,0,NULL,NULL,NULL),(46,188,1,1,0,'41G College Ln E',41,'G',NULL,'College','Ln','E',NULL,NULL,NULL,NULL,'Pennsboro',1,1047,NULL,'26145',NULL,1228,39.288336,-80.968967,0,NULL,NULL,NULL),(47,54,1,1,0,'898H Caulder Pl W',898,'H',NULL,'Caulder','Pl','W',NULL,NULL,NULL,NULL,'Crane',1,1025,NULL,'59217',NULL,1228,47.577478,-104.25806,0,NULL,NULL,NULL),(48,123,1,1,0,'728A Green Pl NE',728,'A',NULL,'Green','Pl','NE',NULL,NULL,NULL,NULL,'Kansas City',1,1015,NULL,'66160',NULL,1228,39.096551,-94.749538,0,NULL,NULL,NULL),(49,120,1,1,0,'91G Woodbridge Dr E',91,'G',NULL,'Woodbridge','Dr','E',NULL,NULL,NULL,NULL,'Stottville',1,1031,NULL,'12172',NULL,1228,42.285749,-73.733532,0,NULL,NULL,NULL),(50,18,1,1,0,'863N Maple Path W',863,'N',NULL,'Maple','Path','W',NULL,NULL,NULL,NULL,'Beattie',1,1015,NULL,'66406',NULL,1228,39.877735,-96.41726,0,NULL,NULL,NULL),(51,107,1,1,0,'963Y States Dr E',963,'Y',NULL,'States','Dr','E',NULL,NULL,NULL,NULL,'Staffordville',1,1006,NULL,'06077',NULL,1228,41.991645,-72.257735,0,NULL,NULL,NULL),(52,10,1,1,0,'667F Martin Luther King St S',667,'F',NULL,'Martin Luther King','St','S',NULL,NULL,NULL,NULL,'Evansville',1,1013,NULL,'47741',NULL,1228,37.997128,-87.574963,0,NULL,NULL,NULL),(53,153,1,1,0,'802Q Bay Blvd N',802,'Q',NULL,'Bay','Blvd','N',NULL,NULL,NULL,NULL,'Fort Lauderdale',1,1008,NULL,'33348',NULL,1228,26.145724,-80.448254,0,NULL,NULL,NULL),(54,134,1,1,0,'811H Dowlen Dr SE',811,'H',NULL,'Dowlen','Dr','SE',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27619',NULL,1228,35.851463,-78.63141,0,NULL,NULL,NULL),(55,176,1,1,0,'422I College Pl S',422,'I',NULL,'College','Pl','S',NULL,NULL,NULL,NULL,'Christiansted',1,1057,NULL,'00824',NULL,1228,17.734211,-64.734694,0,NULL,NULL,NULL),(56,5,1,1,0,'365J Bay St NE',365,'J',NULL,'Bay','St','NE',NULL,NULL,NULL,NULL,'Roland',1,1014,NULL,'50236',NULL,1228,42.168363,-93.49432,0,NULL,NULL,NULL),(57,41,1,1,0,'237W Pine Blvd W',237,'W',NULL,'Pine','Blvd','W',NULL,NULL,NULL,NULL,'Panguitch',1,1043,NULL,'84759',NULL,1228,37.777031,-112.40819,0,NULL,NULL,NULL),(58,69,1,1,0,'385M States Blvd S',385,'M',NULL,'States','Blvd','S',NULL,NULL,NULL,NULL,'Kempner',1,1042,NULL,'76539',NULL,1228,31.071352,-97.97615,0,NULL,NULL,NULL),(59,65,1,1,0,'297R Woodbridge Way SE',297,'R',NULL,'Woodbridge','Way','SE',NULL,NULL,NULL,NULL,'D Lo',1,1023,NULL,'39062',NULL,1228,31.985048,-89.89986,0,NULL,NULL,NULL),(60,11,1,1,0,'126L College Ave N',126,'L',NULL,'College','Ave','N',NULL,NULL,NULL,NULL,'Los Angeles',1,1004,NULL,'90055',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL),(61,172,1,1,0,'769T El Camino Way W',769,'T',NULL,'El Camino','Way','W',NULL,NULL,NULL,NULL,'Cowen',1,1047,NULL,'26206',NULL,1228,38.424309,-80.53771,0,NULL,NULL,NULL),(62,46,1,1,0,'934K College Blvd N',934,'K',NULL,'College','Blvd','N',NULL,NULL,NULL,NULL,'Bigelow',1,1022,NULL,'56117',NULL,1228,43.513198,-95.69138,0,NULL,NULL,NULL),(63,163,1,1,0,'294M States Ave SE',294,'M',NULL,'States','Ave','SE',NULL,NULL,NULL,NULL,'Summerfield',1,1042,NULL,'79085',NULL,1228,34.743735,-102.506442,0,NULL,NULL,NULL),(64,116,1,1,0,'804Q Northpoint St SW',804,'Q',NULL,'Northpoint','St','SW',NULL,NULL,NULL,NULL,'Parker',1,1037,NULL,'16049',NULL,1228,41.097836,-79.66317,0,NULL,NULL,NULL),(65,189,1,1,0,'902D Cadell Ave E',902,'D',NULL,'Cadell','Ave','E',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27635',NULL,1228,35.797692,-78.625265,0,NULL,NULL,NULL),(66,6,1,1,0,'399B Main St S',399,'B',NULL,'Main','St','S',NULL,NULL,NULL,NULL,'Midpines',1,1004,NULL,'95345',NULL,1228,37.576262,-119.94865,0,NULL,NULL,NULL),(67,92,1,1,0,'615D Beech St SE',615,'D',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Clarksburg',1,1047,NULL,'26306',NULL,1228,39.285204,-80.385344,0,NULL,NULL,NULL),(68,93,1,1,0,'516F Cadell Rd NW',516,'F',NULL,'Cadell','Rd','NW',NULL,NULL,NULL,NULL,'Allenspark',1,1005,NULL,'80510',NULL,1228,40.223935,-105.52421,0,NULL,NULL,NULL),(69,136,1,1,0,'807V Second Dr E',807,'V',NULL,'Second','Dr','E',NULL,NULL,NULL,NULL,'Pillow',1,1037,NULL,'17080',NULL,1228,40.64043,-76.80346,0,NULL,NULL,NULL),(70,173,1,1,0,'228S El Camino Ave NW',228,'S',NULL,'El Camino','Ave','NW',NULL,NULL,NULL,NULL,'Gray',1,1017,NULL,'70359',NULL,1228,29.696636,-90.77238,0,NULL,NULL,NULL),(71,114,1,1,0,'478D Bay Dr SW',478,'D',NULL,'Bay','Dr','SW',NULL,NULL,NULL,NULL,'Idledale',1,1005,NULL,'80453',NULL,1228,39.668426,-105.244245,0,NULL,NULL,NULL),(72,98,1,1,0,'55Y Jackson Way E',55,'Y',NULL,'Jackson','Way','E',NULL,NULL,NULL,NULL,'Cleveland',1,1034,NULL,'44197',NULL,1228,41.685744,-81.672797,0,NULL,NULL,NULL),(73,111,1,1,0,'111X Maple Ave N',111,'X',NULL,'Maple','Ave','N',NULL,NULL,NULL,NULL,'Muncie',1,1013,NULL,'47305',NULL,1228,40.192293,-85.38494,0,NULL,NULL,NULL),(74,43,3,1,0,'26T Main Ln N',26,'T',NULL,'Main','Ln','N',NULL,'Urgent',NULL,NULL,'Bolt',1,1047,NULL,'25817',NULL,1228,37.77672,-81.41377,0,NULL,NULL,NULL),(75,48,3,1,0,'758C Van Ness St SW',758,'C',NULL,'Van Ness','St','SW',NULL,'Editorial Dept',NULL,NULL,'Colora',1,1019,NULL,'21917',NULL,1228,39.671671,-76.0972,0,NULL,NULL,NULL),(76,124,3,1,0,'740L El Camino Ave S',740,'L',NULL,'El Camino','Ave','S',NULL,'Urgent',NULL,NULL,'Clayton',1,1034,NULL,'45315',NULL,1228,39.853674,-84.34125,0,NULL,NULL,NULL),(77,34,2,0,0,'740L El Camino Ave S',740,'L',NULL,'El Camino','Ave','S',NULL,'Urgent',NULL,NULL,'Clayton',1,1034,NULL,'45315',NULL,1228,39.853674,-84.34125,0,NULL,NULL,76),(78,38,3,1,0,'700F Second Blvd SW',700,'F',NULL,'Second','Blvd','SW',NULL,'Subscriptions Dept',NULL,NULL,'Peach Springs',1,1002,NULL,'86434',NULL,1228,35.482227,-113.5121,0,NULL,NULL,NULL),(79,88,3,1,0,'841I Lincoln St SW',841,'I',NULL,'Lincoln','St','SW',NULL,'c/o OPDC',NULL,NULL,'Commerce',1,1042,NULL,'75428',NULL,1228,33.25868,-95.91061,0,NULL,NULL,NULL),(80,42,2,1,0,'841I Lincoln St SW',841,'I',NULL,'Lincoln','St','SW',NULL,'c/o OPDC',NULL,NULL,'Commerce',1,1042,NULL,'75428',NULL,1228,33.25868,-95.91061,0,NULL,NULL,79),(81,187,3,1,0,'289M Main Dr N',289,'M',NULL,'Main','Dr','N',NULL,'Attn: Development',NULL,NULL,'Elizabeth',1,1029,NULL,'07207',NULL,1228,40.665651,-74.299692,0,NULL,NULL,NULL),(82,2,2,0,0,'289M Main Dr N',289,'M',NULL,'Main','Dr','N',NULL,'Attn: Development',NULL,NULL,'Elizabeth',1,1029,NULL,'07207',NULL,1228,40.665651,-74.299692,0,NULL,NULL,81),(83,55,3,1,0,'224U Northpoint Blvd SW',224,'U',NULL,'Northpoint','Blvd','SW',NULL,'Subscriptions Dept',NULL,NULL,'Terre Haute',1,1013,NULL,'47807',NULL,1228,39.470986,-87.39996,0,NULL,NULL,NULL),(84,147,2,1,0,'224U Northpoint Blvd SW',224,'U',NULL,'Northpoint','Blvd','SW',NULL,'Subscriptions Dept',NULL,NULL,'Terre Haute',1,1013,NULL,'47807',NULL,1228,39.470986,-87.39996,0,NULL,NULL,83),(85,127,3,1,0,'262T Main Path SW',262,'T',NULL,'Main','Path','SW',NULL,'Churchgate',NULL,NULL,'Benton',1,1003,NULL,'72018',NULL,1228,34.597345,-92.622857,0,NULL,NULL,NULL),(86,135,3,1,0,'765T Green Blvd N',765,'T',NULL,'Green','Blvd','N',NULL,'Attn: Accounting',NULL,NULL,'Corning',1,1003,NULL,'72422',NULL,1228,36.410344,-90.56479,0,NULL,NULL,NULL),(87,97,3,1,0,'773K Bay Blvd E',773,'K',NULL,'Bay','Blvd','E',NULL,'Mailstop 101',NULL,NULL,'Rugby',1,1041,NULL,'37733',NULL,1228,36.351914,-84.713666,0,NULL,NULL,NULL),(88,40,2,1,0,'773K Bay Blvd E',773,'K',NULL,'Bay','Blvd','E',NULL,'Mailstop 101',NULL,NULL,'Rugby',1,1041,NULL,'37733',NULL,1228,36.351914,-84.713666,0,NULL,NULL,87),(89,186,3,1,0,'509H Green Pl N',509,'H',NULL,'Green','Pl','N',NULL,'c/o PO Plus',NULL,NULL,'Pittsburg',1,1028,NULL,'03592',NULL,1228,45.085547,-71.30724,0,NULL,NULL,NULL),(90,113,3,1,0,'347E Pine Dr E',347,'E',NULL,'Pine','Dr','E',NULL,'Urgent',NULL,NULL,'Castalia',1,1032,NULL,'27816',NULL,1228,36.085542,-78.07321,0,NULL,NULL,NULL),(91,74,2,1,0,'347E Pine Dr E',347,'E',NULL,'Pine','Dr','E',NULL,'Urgent',NULL,NULL,'Castalia',1,1032,NULL,'27816',NULL,1228,36.085542,-78.07321,0,NULL,NULL,90),(92,32,3,1,0,'49E Woodbridge Path SE',49,'E',NULL,'Woodbridge','Path','SE',NULL,'Churchgate',NULL,NULL,'Portland',1,1036,NULL,'97205',NULL,1228,45.52054,-122.68573,0,NULL,NULL,NULL),(93,152,2,1,0,'49E Woodbridge Path SE',49,'E',NULL,'Woodbridge','Path','SE',NULL,'Churchgate',NULL,NULL,'Portland',1,1036,NULL,'97205',NULL,1228,45.52054,-122.68573,0,NULL,NULL,92),(94,126,3,1,0,'346A Pine St S',346,'A',NULL,'Pine','St','S',NULL,'Subscriptions Dept',NULL,NULL,'Fremont',1,1014,NULL,'52561',NULL,1228,41.214824,-92.43864,0,NULL,NULL,NULL),(95,115,2,1,0,'346A Pine St S',346,'A',NULL,'Pine','St','S',NULL,'Subscriptions Dept',NULL,NULL,'Fremont',1,1014,NULL,'52561',NULL,1228,41.214824,-92.43864,0,NULL,NULL,94),(96,37,3,1,0,'848T El Camino Path SE',848,'T',NULL,'El Camino','Path','SE',NULL,'Donor Relations',NULL,NULL,'Shiloh',1,1029,NULL,'08253',NULL,1228,39.458714,-75.298235,0,NULL,NULL,NULL),(97,144,3,1,0,'523P Main Ln E',523,'P',NULL,'Main','Ln','E',NULL,'c/o OPDC',NULL,NULL,'Causey',1,1030,NULL,'88113',NULL,1228,33.843464,-103.10002,0,NULL,NULL,NULL),(98,85,2,1,0,'523P Main Ln E',523,'P',NULL,'Main','Ln','E',NULL,'c/o OPDC',NULL,NULL,'Causey',1,1030,NULL,'88113',NULL,1228,33.843464,-103.10002,0,NULL,NULL,97),(99,24,3,1,0,'683Y Green Way SW',683,'Y',NULL,'Green','Way','SW',NULL,'Attn: Development',NULL,NULL,'Emlyn',1,1016,NULL,'40730',NULL,1228,36.705162,-84.14595,0,NULL,NULL,NULL),(100,23,3,1,0,'396Q El Camino Pl W',396,'Q',NULL,'El Camino','Pl','W',NULL,'Subscriptions Dept',NULL,NULL,'Round Pond',1,1018,NULL,'04564',NULL,1228,43.937468,-69.45721,0,NULL,NULL,NULL),(101,199,2,1,0,'396Q El Camino Pl W',396,'Q',NULL,'El Camino','Pl','W',NULL,'Subscriptions Dept',NULL,NULL,'Round Pond',1,1018,NULL,'04564',NULL,1228,43.937468,-69.45721,0,NULL,NULL,100),(102,4,3,1,0,'397M Main St S',397,'M',NULL,'Main','St','S',NULL,'Cuffe Parade',NULL,NULL,'Oakland',1,1004,NULL,'94607',NULL,1228,37.806427,-122.28898,0,NULL,NULL,NULL),(103,106,2,0,0,'397M Main St S',397,'M',NULL,'Main','St','S',NULL,'Cuffe Parade',NULL,NULL,'Oakland',1,1004,NULL,'94607',NULL,1228,37.806427,-122.28898,0,NULL,NULL,102),(104,109,3,1,0,'392G Lincoln Ln NW',392,'G',NULL,'Lincoln','Ln','NW',NULL,'Subscriptions Dept',NULL,NULL,'Ringling',1,1025,NULL,'59642',NULL,1228,46.24656,-110.79404,0,NULL,NULL,NULL),(105,26,1,1,0,'811H Dowlen Dr SE',811,'H',NULL,'Dowlen','Dr','SE',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27619',NULL,1228,35.851463,-78.63141,0,NULL,NULL,54),(106,27,1,1,0,'811H Dowlen Dr SE',811,'H',NULL,'Dowlen','Dr','SE',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27619',NULL,1228,35.851463,-78.63141,0,NULL,NULL,54),(107,181,1,1,0,'811H Dowlen Dr SE',811,'H',NULL,'Dowlen','Dr','SE',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27619',NULL,1228,35.851463,-78.63141,0,NULL,NULL,54),(108,153,1,0,0,'811H Dowlen Dr SE',811,'H',NULL,'Dowlen','Dr','SE',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27619',NULL,1228,35.851463,-78.63141,0,NULL,NULL,54),(109,155,1,1,0,'422I College Pl S',422,'I',NULL,'College','Pl','S',NULL,NULL,NULL,NULL,'Christiansted',1,1057,NULL,'00824',NULL,1228,17.734211,-64.734694,0,NULL,NULL,55),(110,77,1,1,0,'422I College Pl S',422,'I',NULL,'College','Pl','S',NULL,NULL,NULL,NULL,'Christiansted',1,1057,NULL,'00824',NULL,1228,17.734211,-64.734694,0,NULL,NULL,55),(111,112,1,1,0,'422I College Pl S',422,'I',NULL,'College','Pl','S',NULL,NULL,NULL,NULL,'Christiansted',1,1057,NULL,'00824',NULL,1228,17.734211,-64.734694,0,NULL,NULL,55),(112,52,1,1,0,'851X Northpoint Dr NW',851,'X',NULL,'Northpoint','Dr','NW',NULL,NULL,NULL,NULL,'New Rochelle',1,1031,NULL,'10802',NULL,1228,40.948274,-73.795361,0,NULL,NULL,NULL),(113,122,1,1,0,'365J Bay St NE',365,'J',NULL,'Bay','St','NE',NULL,NULL,NULL,NULL,'Roland',1,1014,NULL,'50236',NULL,1228,42.168363,-93.49432,0,NULL,NULL,56),(114,130,1,1,0,'365J Bay St NE',365,'J',NULL,'Bay','St','NE',NULL,NULL,NULL,NULL,'Roland',1,1014,NULL,'50236',NULL,1228,42.168363,-93.49432,0,NULL,NULL,56),(115,108,1,1,0,'365J Bay St NE',365,'J',NULL,'Bay','St','NE',NULL,NULL,NULL,NULL,'Roland',1,1014,NULL,'50236',NULL,1228,42.168363,-93.49432,0,NULL,NULL,56),(116,74,1,0,0,'365J Bay St NE',365,'J',NULL,'Bay','St','NE',NULL,NULL,NULL,NULL,'Roland',1,1014,NULL,'50236',NULL,1228,42.168363,-93.49432,0,NULL,NULL,56),(117,84,1,1,0,'237W Pine Blvd W',237,'W',NULL,'Pine','Blvd','W',NULL,NULL,NULL,NULL,'Panguitch',1,1043,NULL,'84759',NULL,1228,37.777031,-112.40819,0,NULL,NULL,57),(118,199,1,0,0,'237W Pine Blvd W',237,'W',NULL,'Pine','Blvd','W',NULL,NULL,NULL,NULL,'Panguitch',1,1043,NULL,'84759',NULL,1228,37.777031,-112.40819,0,NULL,NULL,57),(119,20,1,1,0,'237W Pine Blvd W',237,'W',NULL,'Pine','Blvd','W',NULL,NULL,NULL,NULL,'Panguitch',1,1043,NULL,'84759',NULL,1228,37.777031,-112.40819,0,NULL,NULL,57),(120,3,1,1,0,'237W Pine Blvd W',237,'W',NULL,'Pine','Blvd','W',NULL,NULL,NULL,NULL,'Panguitch',1,1043,NULL,'84759',NULL,1228,37.777031,-112.40819,0,NULL,NULL,57),(121,25,1,1,0,'385M States Blvd S',385,'M',NULL,'States','Blvd','S',NULL,NULL,NULL,NULL,'Kempner',1,1042,NULL,'76539',NULL,1228,31.071352,-97.97615,0,NULL,NULL,58),(122,139,1,1,0,'385M States Blvd S',385,'M',NULL,'States','Blvd','S',NULL,NULL,NULL,NULL,'Kempner',1,1042,NULL,'76539',NULL,1228,31.071352,-97.97615,0,NULL,NULL,58),(123,17,1,1,0,'385M States Blvd S',385,'M',NULL,'States','Blvd','S',NULL,NULL,NULL,NULL,'Kempner',1,1042,NULL,'76539',NULL,1228,31.071352,-97.97615,0,NULL,NULL,58),(124,156,1,1,0,'385M States Blvd S',385,'M',NULL,'States','Blvd','S',NULL,NULL,NULL,NULL,'Kempner',1,1042,NULL,'76539',NULL,1228,31.071352,-97.97615,0,NULL,NULL,58),(125,13,1,1,0,'297R Woodbridge Way SE',297,'R',NULL,'Woodbridge','Way','SE',NULL,NULL,NULL,NULL,'D Lo',1,1023,NULL,'39062',NULL,1228,31.985048,-89.89986,0,NULL,NULL,59),(126,57,1,1,0,'297R Woodbridge Way SE',297,'R',NULL,'Woodbridge','Way','SE',NULL,NULL,NULL,NULL,'D Lo',1,1023,NULL,'39062',NULL,1228,31.985048,-89.89986,0,NULL,NULL,59),(127,63,1,1,0,'297R Woodbridge Way SE',297,'R',NULL,'Woodbridge','Way','SE',NULL,NULL,NULL,NULL,'D Lo',1,1023,NULL,'39062',NULL,1228,31.985048,-89.89986,0,NULL,NULL,59),(128,95,1,1,0,'297R Woodbridge Way SE',297,'R',NULL,'Woodbridge','Way','SE',NULL,NULL,NULL,NULL,'D Lo',1,1023,NULL,'39062',NULL,1228,31.985048,-89.89986,0,NULL,NULL,59),(129,53,1,1,0,'126L College Ave N',126,'L',NULL,'College','Ave','N',NULL,NULL,NULL,NULL,'Los Angeles',1,1004,NULL,'90055',NULL,1228,33.786594,-118.298662,0,NULL,NULL,60),(130,194,1,1,0,'126L College Ave N',126,'L',NULL,'College','Ave','N',NULL,NULL,NULL,NULL,'Los Angeles',1,1004,NULL,'90055',NULL,1228,33.786594,-118.298662,0,NULL,NULL,60),(131,50,1,1,0,'126L College Ave N',126,'L',NULL,'College','Ave','N',NULL,NULL,NULL,NULL,'Los Angeles',1,1004,NULL,'90055',NULL,1228,33.786594,-118.298662,0,NULL,NULL,60),(132,19,1,1,0,'57G Jackson Rd N',57,'G',NULL,'Jackson','Rd','N',NULL,NULL,NULL,NULL,'Weogufka',1,1000,NULL,'35183',NULL,1228,33.016558,-86.33936,0,NULL,NULL,NULL),(133,165,1,1,0,'769T El Camino Way W',769,'T',NULL,'El Camino','Way','W',NULL,NULL,NULL,NULL,'Cowen',1,1047,NULL,'26206',NULL,1228,38.424309,-80.53771,0,NULL,NULL,61),(134,90,1,1,0,'769T El Camino Way W',769,'T',NULL,'El Camino','Way','W',NULL,NULL,NULL,NULL,'Cowen',1,1047,NULL,'26206',NULL,1228,38.424309,-80.53771,0,NULL,NULL,61),(135,101,1,1,0,'769T El Camino Way W',769,'T',NULL,'El Camino','Way','W',NULL,NULL,NULL,NULL,'Cowen',1,1047,NULL,'26206',NULL,1228,38.424309,-80.53771,0,NULL,NULL,61),(136,142,1,1,0,'123B Second Path N',123,'B',NULL,'Second','Path','N',NULL,NULL,NULL,NULL,'Forestville',1,1031,NULL,'14062',NULL,1228,42.450845,-79.16528,0,NULL,NULL,NULL),(137,161,1,1,0,'934K College Blvd N',934,'K',NULL,'College','Blvd','N',NULL,NULL,NULL,NULL,'Bigelow',1,1022,NULL,'56117',NULL,1228,43.513198,-95.69138,0,NULL,NULL,62),(138,70,1,1,0,'934K College Blvd N',934,'K',NULL,'College','Blvd','N',NULL,NULL,NULL,NULL,'Bigelow',1,1022,NULL,'56117',NULL,1228,43.513198,-95.69138,0,NULL,NULL,62),(139,91,1,1,0,'934K College Blvd N',934,'K',NULL,'College','Blvd','N',NULL,NULL,NULL,NULL,'Bigelow',1,1022,NULL,'56117',NULL,1228,43.513198,-95.69138,0,NULL,NULL,62),(140,81,1,1,0,'934K College Blvd N',934,'K',NULL,'College','Blvd','N',NULL,NULL,NULL,NULL,'Bigelow',1,1022,NULL,'56117',NULL,1228,43.513198,-95.69138,0,NULL,NULL,62),(141,99,1,1,0,'294M States Ave SE',294,'M',NULL,'States','Ave','SE',NULL,NULL,NULL,NULL,'Summerfield',1,1042,NULL,'79085',NULL,1228,34.743735,-102.506442,0,NULL,NULL,63),(142,133,1,1,0,'294M States Ave SE',294,'M',NULL,'States','Ave','SE',NULL,NULL,NULL,NULL,'Summerfield',1,1042,NULL,'79085',NULL,1228,34.743735,-102.506442,0,NULL,NULL,63),(143,60,1,1,0,'294M States Ave SE',294,'M',NULL,'States','Ave','SE',NULL,NULL,NULL,NULL,'Summerfield',1,1042,NULL,'79085',NULL,1228,34.743735,-102.506442,0,NULL,NULL,63),(144,49,1,1,0,'294M States Ave SE',294,'M',NULL,'States','Ave','SE',NULL,NULL,NULL,NULL,'Summerfield',1,1042,NULL,'79085',NULL,1228,34.743735,-102.506442,0,NULL,NULL,63),(145,73,1,1,0,'804Q Northpoint St SW',804,'Q',NULL,'Northpoint','St','SW',NULL,NULL,NULL,NULL,'Parker',1,1037,NULL,'16049',NULL,1228,41.097836,-79.66317,0,NULL,NULL,64),(146,14,1,1,0,'804Q Northpoint St SW',804,'Q',NULL,'Northpoint','St','SW',NULL,NULL,NULL,NULL,'Parker',1,1037,NULL,'16049',NULL,1228,41.097836,-79.66317,0,NULL,NULL,64),(147,104,1,1,0,'804Q Northpoint St SW',804,'Q',NULL,'Northpoint','St','SW',NULL,NULL,NULL,NULL,'Parker',1,1037,NULL,'16049',NULL,1228,41.097836,-79.66317,0,NULL,NULL,64),(148,164,1,1,0,'351S Second Pl SW',351,'S',NULL,'Second','Pl','SW',NULL,NULL,NULL,NULL,'Oak Island',1,1022,NULL,'56741',NULL,1228,49.242285,-94.84003,0,NULL,NULL,NULL),(149,125,1,1,0,'902D Cadell Ave E',902,'D',NULL,'Cadell','Ave','E',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27635',NULL,1228,35.797692,-78.625265,0,NULL,NULL,65),(150,40,1,0,0,'902D Cadell Ave E',902,'D',NULL,'Cadell','Ave','E',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27635',NULL,1228,35.797692,-78.625265,0,NULL,NULL,65),(151,149,1,1,0,'902D Cadell Ave E',902,'D',NULL,'Cadell','Ave','E',NULL,NULL,NULL,NULL,'Raleigh',1,1032,NULL,'27635',NULL,1228,35.797692,-78.625265,0,NULL,NULL,65),(152,174,1,1,0,'861U Main Way NW',861,'U',NULL,'Main','Way','NW',NULL,NULL,NULL,NULL,'Brownsville',1,1019,NULL,'21715',NULL,1228,39.386893,-77.658015,0,NULL,NULL,NULL),(153,143,1,1,0,'399B Main St S',399,'B',NULL,'Main','St','S',NULL,NULL,NULL,NULL,'Midpines',1,1004,NULL,'95345',NULL,1228,37.576262,-119.94865,0,NULL,NULL,66),(154,82,1,1,0,'399B Main St S',399,'B',NULL,'Main','St','S',NULL,NULL,NULL,NULL,'Midpines',1,1004,NULL,'95345',NULL,1228,37.576262,-119.94865,0,NULL,NULL,66),(155,45,1,1,0,'399B Main St S',399,'B',NULL,'Main','St','S',NULL,NULL,NULL,NULL,'Midpines',1,1004,NULL,'95345',NULL,1228,37.576262,-119.94865,0,NULL,NULL,66),(156,141,1,1,0,'735X Pine St NE',735,'X',NULL,'Pine','St','NE',NULL,NULL,NULL,NULL,'Flagstaff',1,1002,NULL,'86003',NULL,1228,35.630842,-112.052427,0,NULL,NULL,NULL),(157,8,1,1,0,'615D Beech St SE',615,'D',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Clarksburg',1,1047,NULL,'26306',NULL,1228,39.285204,-80.385344,0,NULL,NULL,67),(158,197,1,1,0,'615D Beech St SE',615,'D',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Clarksburg',1,1047,NULL,'26306',NULL,1228,39.285204,-80.385344,0,NULL,NULL,67),(159,180,1,1,0,'615D Beech St SE',615,'D',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Clarksburg',1,1047,NULL,'26306',NULL,1228,39.285204,-80.385344,0,NULL,NULL,67),(160,128,1,1,0,'615D Beech St SE',615,'D',NULL,'Beech','St','SE',NULL,NULL,NULL,NULL,'Clarksburg',1,1047,NULL,'26306',NULL,1228,39.285204,-80.385344,0,NULL,NULL,67),(161,129,1,1,0,'516F Cadell Rd NW',516,'F',NULL,'Cadell','Rd','NW',NULL,NULL,NULL,NULL,'Allenspark',1,1005,NULL,'80510',NULL,1228,40.223935,-105.52421,0,NULL,NULL,68),(162,175,1,1,0,'516F Cadell Rd NW',516,'F',NULL,'Cadell','Rd','NW',NULL,NULL,NULL,NULL,'Allenspark',1,1005,NULL,'80510',NULL,1228,40.223935,-105.52421,0,NULL,NULL,68),(163,145,1,1,0,'516F Cadell Rd NW',516,'F',NULL,'Cadell','Rd','NW',NULL,NULL,NULL,NULL,'Allenspark',1,1005,NULL,'80510',NULL,1228,40.223935,-105.52421,0,NULL,NULL,68),(164,89,1,1,0,'978S Cadell Path W',978,'S',NULL,'Cadell','Path','W',NULL,NULL,NULL,NULL,'North Georgetown',1,1034,NULL,'44665',NULL,1228,40.843563,-80.979435,0,NULL,NULL,NULL),(165,102,1,1,0,'807V Second Dr E',807,'V',NULL,'Second','Dr','E',NULL,NULL,NULL,NULL,'Pillow',1,1037,NULL,'17080',NULL,1228,40.64043,-76.80346,0,NULL,NULL,69),(166,182,1,1,0,'807V Second Dr E',807,'V',NULL,'Second','Dr','E',NULL,NULL,NULL,NULL,'Pillow',1,1037,NULL,'17080',NULL,1228,40.64043,-76.80346,0,NULL,NULL,69),(167,177,1,1,0,'807V Second Dr E',807,'V',NULL,'Second','Dr','E',NULL,NULL,NULL,NULL,'Pillow',1,1037,NULL,'17080',NULL,1228,40.64043,-76.80346,0,NULL,NULL,69),(168,94,1,1,0,'922D Second Dr S',922,'D',NULL,'Second','Dr','S',NULL,NULL,NULL,NULL,'New York',1,1031,NULL,'10271',NULL,1228,40.708669,-74.01043,0,NULL,NULL,NULL),(169,179,1,1,0,'228S El Camino Ave NW',228,'S',NULL,'El Camino','Ave','NW',NULL,NULL,NULL,NULL,'Gray',1,1017,NULL,'70359',NULL,1228,29.696636,-90.77238,0,NULL,NULL,70),(170,62,1,1,0,'228S El Camino Ave NW',228,'S',NULL,'El Camino','Ave','NW',NULL,NULL,NULL,NULL,'Gray',1,1017,NULL,'70359',NULL,1228,29.696636,-90.77238,0,NULL,NULL,70),(171,138,1,1,0,'228S El Camino Ave NW',228,'S',NULL,'El Camino','Ave','NW',NULL,NULL,NULL,NULL,'Gray',1,1017,NULL,'70359',NULL,1228,29.696636,-90.77238,0,NULL,NULL,70),(172,100,1,1,0,'228S El Camino Ave NW',228,'S',NULL,'El Camino','Ave','NW',NULL,NULL,NULL,NULL,'Gray',1,1017,NULL,'70359',NULL,1228,29.696636,-90.77238,0,NULL,NULL,70),(173,118,1,1,0,'478D Bay Dr SW',478,'D',NULL,'Bay','Dr','SW',NULL,NULL,NULL,NULL,'Idledale',1,1005,NULL,'80453',NULL,1228,39.668426,-105.244245,0,NULL,NULL,71),(174,59,1,1,0,'478D Bay Dr SW',478,'D',NULL,'Bay','Dr','SW',NULL,NULL,NULL,NULL,'Idledale',1,1005,NULL,'80453',NULL,1228,39.668426,-105.244245,0,NULL,NULL,71),(175,31,1,1,0,'478D Bay Dr SW',478,'D',NULL,'Bay','Dr','SW',NULL,NULL,NULL,NULL,'Idledale',1,1005,NULL,'80453',NULL,1228,39.668426,-105.244245,0,NULL,NULL,71),(176,121,1,1,0,'478D Bay Dr SW',478,'D',NULL,'Bay','Dr','SW',NULL,NULL,NULL,NULL,'Idledale',1,1005,NULL,'80453',NULL,1228,39.668426,-105.244245,0,NULL,NULL,71),(177,21,1,1,0,'55Y Jackson Way E',55,'Y',NULL,'Jackson','Way','E',NULL,NULL,NULL,NULL,'Cleveland',1,1034,NULL,'44197',NULL,1228,41.685744,-81.672797,0,NULL,NULL,72),(178,83,1,1,0,'55Y Jackson Way E',55,'Y',NULL,'Jackson','Way','E',NULL,NULL,NULL,NULL,'Cleveland',1,1034,NULL,'44197',NULL,1228,41.685744,-81.672797,0,NULL,NULL,72),(179,56,1,1,0,'55Y Jackson Way E',55,'Y',NULL,'Jackson','Way','E',NULL,NULL,NULL,NULL,'Cleveland',1,1034,NULL,'44197',NULL,1228,41.685744,-81.672797,0,NULL,NULL,72),(180,159,1,1,0,'55Y Jackson Way E',55,'Y',NULL,'Jackson','Way','E',NULL,NULL,NULL,NULL,'Cleveland',1,1034,NULL,'44197',NULL,1228,41.685744,-81.672797,0,NULL,NULL,72),(181,85,1,0,0,'111X Maple Ave N',111,'X',NULL,'Maple','Ave','N',NULL,NULL,NULL,NULL,'Muncie',1,1013,NULL,'47305',NULL,1228,40.192293,-85.38494,0,NULL,NULL,73),(182,12,1,1,0,'111X Maple Ave N',111,'X',NULL,'Maple','Ave','N',NULL,NULL,NULL,NULL,'Muncie',1,1013,NULL,'47305',NULL,1228,40.192293,-85.38494,0,NULL,NULL,73),(183,160,1,1,0,'111X Maple Ave N',111,'X',NULL,'Maple','Ave','N',NULL,NULL,NULL,NULL,'Muncie',1,1013,NULL,'47305',NULL,1228,40.192293,-85.38494,0,NULL,NULL,73),(184,105,1,1,0,'474Y Woodbridge Blvd SE',474,'Y',NULL,'Woodbridge','Blvd','SE',NULL,NULL,NULL,NULL,'Grinnell',1,1014,NULL,'50112',NULL,1228,41.736434,-92.72123,0,NULL,NULL,NULL),(185,NULL,1,1,1,'14S El Camino Way E',14,'S',NULL,'El Camino','Way',NULL,NULL,NULL,NULL,NULL,'Collinsville',NULL,1006,NULL,'6022',NULL,1228,41.8328,-72.9253,0,NULL,NULL,NULL),(186,NULL,1,1,1,'11B Woodbridge Path SW',11,'B',NULL,'Woodbridge','Path',NULL,NULL,NULL,NULL,NULL,'Dayton',NULL,1034,NULL,'45417',NULL,1228,39.7531,-84.2471,0,NULL,NULL,NULL),(187,NULL,1,1,1,'581O Lincoln Dr SW',581,'O',NULL,'Lincoln','Dr',NULL,NULL,NULL,NULL,NULL,'Santa Fe',NULL,1030,NULL,'87594',NULL,1228,35.5212,-105.982,0,NULL,NULL,NULL);
++INSERT INTO `civicrm_address` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `street_address`, `street_number`, `street_number_suffix`, `street_number_predirectional`, `street_name`, `street_type`, `street_number_postdirectional`, `street_unit`, `supplemental_address_1`, `supplemental_address_2`, `supplemental_address_3`, `city`, `county_id`, `state_province_id`, `postal_code_suffix`, `postal_code`, `usps_adc`, `country_id`, `geo_code_1`, `geo_code_2`, `manual_geo_code`, `timezone`, `name`, `master_id`) VALUES (1,128,1,1,0,'967T Jackson Ln SE',967,'T',NULL,'Jackson','Ln','SE',NULL,NULL,NULL,NULL,'Patterson',1,1024,NULL,'63956',NULL,1228,37.199631,-90.52353,0,NULL,NULL,NULL),(2,71,1,1,0,'118V Bay Path S',118,'V',NULL,'Bay','Path','S',NULL,NULL,NULL,NULL,'Covington',1,1017,NULL,'70432',NULL,1228,30.496278,-90.131145,0,NULL,NULL,NULL),(3,153,1,1,0,'321Y Maple Ln SE',321,'Y',NULL,'Maple','Ln','SE',NULL,NULL,NULL,NULL,'East Worcester',1,1031,NULL,'12064',NULL,1228,42.615422,-74.6595,0,NULL,NULL,NULL),(4,182,1,1,0,'956H Second Rd SW',956,'H',NULL,'Second','Rd','SW',NULL,NULL,NULL,NULL,'Greensboro',1,1032,NULL,'27425',NULL,1228,36.080707,-80.0244,0,NULL,NULL,NULL),(5,24,1,1,0,'323U Bay Blvd SW',323,'U',NULL,'Bay','Blvd','SW',NULL,NULL,NULL,NULL,'Kissimmee',1,1008,NULL,'34743',NULL,1228,28.325715,-81.35408,0,NULL,NULL,NULL),(6,169,1,1,0,'163V Bay Path E',163,'V',NULL,'Bay','Path','E',NULL,NULL,NULL,NULL,'Pascagoula',1,1023,NULL,'39595',NULL,1228,30.441072,-88.634482,0,NULL,NULL,NULL),(7,179,1,1,0,'42J Dowlen Ln E',42,'J',NULL,'Dowlen','Ln','E',NULL,NULL,NULL,NULL,'Lindley',1,1031,NULL,'14858',NULL,1228,42.03128,-77.13413,0,NULL,NULL,NULL),(8,123,1,1,0,'267Z College Way SW',267,'Z',NULL,'College','Way','SW',NULL,NULL,NULL,NULL,'Topeka',1,1015,NULL,'66619',NULL,1228,38.946977,-95.6938,0,NULL,NULL,NULL),(9,95,1,1,0,'363X Jackson Blvd NE',363,'X',NULL,'Jackson','Blvd','NE',NULL,NULL,NULL,NULL,'Wrentham',1,1020,NULL,'02093',NULL,1228,42.0597,-71.34617,0,NULL,NULL,NULL),(10,64,1,1,0,'833C Woodbridge Path W',833,'C',NULL,'Woodbridge','Path','W',NULL,NULL,NULL,NULL,'Burdett',1,1015,NULL,'67523',NULL,1228,38.200452,-99.54314,0,NULL,NULL,NULL),(11,120,1,1,0,'531Q Martin Luther King Blvd W',531,'Q',NULL,'Martin Luther King','Blvd','W',NULL,NULL,NULL,NULL,'Sinsinawa',1,1048,NULL,'53824',NULL,1228,42.859325,-90.791337,0,NULL,NULL,NULL),(12,43,1,1,0,'273R Pine Path S',273,'R',NULL,'Pine','Path','S',NULL,NULL,NULL,NULL,'Fredericksburg',1,1037,NULL,'17026',NULL,1228,40.45253,-76.42443,0,NULL,NULL,NULL),(13,76,1,1,0,'833X Second Dr SW',833,'X',NULL,'Second','Dr','SW',NULL,NULL,NULL,NULL,'Vandalia',1,1021,NULL,'49095',NULL,1228,41.916613,-85.89022,0,NULL,NULL,NULL),(14,47,1,1,0,'368K Martin Luther King Rd E',368,'K',NULL,'Martin Luther King','Rd','E',NULL,NULL,NULL,NULL,'Moodus',1,1006,NULL,'06469',NULL,1228,41.506499,-72.44479,0,NULL,NULL,NULL),(15,9,1,1,0,'566T Woodbridge Path SE',566,'T',NULL,'Woodbridge','Path','SE',NULL,NULL,NULL,NULL,'Page',1,1047,NULL,'25152',NULL,1228,38.052957,-81.26966,0,NULL,NULL,NULL),(16,155,1,1,0,'10F Dowlen Ave N',10,'F',NULL,'Dowlen','Ave','N',NULL,NULL,NULL,NULL,'Bon Air',1,1000,NULL,'35032',NULL,1228,33.256886,-86.338572,0,NULL,NULL,NULL),(17,111,1,1,0,'74Z Caulder Pl SW',74,'Z',NULL,'Caulder','Pl','SW',NULL,NULL,NULL,NULL,'La Habra',1,1004,NULL,'90631',NULL,1228,33.934513,-117.95159,0,NULL,NULL,NULL),(18,60,1,1,0,'736C Second Pl W',736,'C',NULL,'Second','Pl','W',NULL,NULL,NULL,NULL,'Edson',1,1015,NULL,'67733',NULL,1228,39.356075,-101.51227,0,NULL,NULL,NULL),(19,183,1,1,0,'992J Caulder Blvd W',992,'J',NULL,'Caulder','Blvd','W',NULL,NULL,NULL,NULL,'High View',1,1047,NULL,'26808',NULL,1228,39.210787,-78.44261,0,NULL,NULL,NULL),(20,58,1,1,0,'14W Northpoint St W',14,'W',NULL,'Northpoint','St','W',NULL,NULL,NULL,NULL,'Shingle Springs',1,1004,NULL,'95682',NULL,1228,38.641158,-120.97109,0,NULL,NULL,NULL),(21,196,1,1,0,'305T Pine Rd W',305,'T',NULL,'Pine','Rd','W',NULL,NULL,NULL,NULL,'Burbank',1,1004,NULL,'91503',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL),(22,102,1,1,0,'463W El Camino Rd SE',463,'W',NULL,'El Camino','Rd','SE',NULL,NULL,NULL,NULL,'Norris',1,1041,NULL,'37828',NULL,1228,36.190257,-84.07017,0,NULL,NULL,NULL),(23,77,1,1,0,'638V States St SE',638,'V',NULL,'States','St','SE',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75228',NULL,1228,32.825227,-96.67955,0,NULL,NULL,NULL),(24,130,1,1,0,'287G Green Dr S',287,'G',NULL,'Green','Dr','S',NULL,NULL,NULL,NULL,'Webster',1,1032,NULL,'28788',NULL,1228,35.328533,-83.233302,0,NULL,NULL,NULL),(25,134,1,1,0,'101C Cadell Rd SE',101,'C',NULL,'Cadell','Rd','SE',NULL,NULL,NULL,NULL,'Sunol',1,1004,NULL,'94586',NULL,1228,37.593883,-121.88281,0,NULL,NULL,NULL),(26,87,1,1,0,'879Q Dowlen Blvd SE',879,'Q',NULL,'Dowlen','Blvd','SE',NULL,NULL,NULL,NULL,'Glendale Heights',1,1012,NULL,'60139',NULL,1228,41.920228,-88.07891,0,NULL,NULL,NULL),(27,180,1,1,0,'235W Cadell Pl W',235,'W',NULL,'Cadell','Pl','W',NULL,NULL,NULL,NULL,'Wallkill',1,1031,NULL,'10946',NULL,1228,41.507236,-74.412119,0,NULL,NULL,NULL),(28,139,1,1,0,'837O College Ln SE',837,'O',NULL,'College','Ln','SE',NULL,NULL,NULL,NULL,'Leaf River',1,1012,NULL,'61047',NULL,1228,42.139244,-89.3968,0,NULL,NULL,NULL),(29,187,1,1,0,'740S States Rd W',740,'S',NULL,'States','Rd','W',NULL,NULL,NULL,NULL,'Surprise',1,1002,NULL,'85379',NULL,1228,33.616888,-112.40158,0,NULL,NULL,NULL),(30,137,1,1,0,'210Z Woodbridge Rd SE',210,'Z',NULL,'Woodbridge','Rd','SE',NULL,NULL,NULL,NULL,'Dallas',1,1042,NULL,'75388',NULL,1228,32.767268,-96.777626,0,NULL,NULL,NULL),(31,75,1,1,0,'392G Lincoln Ave NE',392,'G',NULL,'Lincoln','Ave','NE',NULL,NULL,NULL,NULL,'Center City',1,1022,NULL,'55012',NULL,1228,45.41766,-92.80597,0,NULL,NULL,NULL),(32,145,1,1,0,'882X Beech Path SW',882,'X',NULL,'Beech','Path','SW',NULL,NULL,NULL,NULL,'Minneapolis',1,1022,NULL,'55484',NULL,1228,45.015914,-93.47188,0,NULL,NULL,NULL),(33,5,1,1,0,'537D Jackson Ln E',537,'D',NULL,'Jackson','Ln','E',NULL,NULL,NULL,NULL,'Tyler',1,1042,NULL,'75799',NULL,1228,32.411237,-95.289903,0,NULL,NULL,NULL),(34,50,1,1,0,'367Z Beech Dr W',367,'Z',NULL,'Beech','Dr','W',NULL,NULL,NULL,NULL,'Charlottesville',1,1045,NULL,'22909',NULL,1228,38.024474,-78.448214,0,NULL,NULL,NULL),(35,6,1,1,0,'460S Main Dr W',460,'S',NULL,'Main','Dr','W',NULL,NULL,NULL,NULL,'Omaha',1,1026,NULL,'68112',NULL,1228,41.334947,-95.95924,0,NULL,NULL,NULL),(36,159,1,1,0,'206O Northpoint Ln N',206,'O',NULL,'Northpoint','Ln','N',NULL,NULL,NULL,NULL,'Manchester',1,1028,NULL,'03104',NULL,1228,43.006033,-71.44716,0,NULL,NULL,NULL),(37,56,1,1,0,'591Z Green Rd NE',591,'Z',NULL,'Green','Rd','NE',NULL,NULL,NULL,NULL,'Randsburg',1,1004,NULL,'93554',NULL,1228,35.409108,-117.69966,0,NULL,NULL,NULL),(38,193,1,1,0,'357W Green Ln SE',357,'W',NULL,'Green','Ln','SE',NULL,NULL,NULL,NULL,'Interlochen',1,1021,NULL,'49643',NULL,1228,44.634131,-85.8079,0,NULL,NULL,NULL),(39,53,1,1,0,'10B States Rd W',10,'B',NULL,'States','Rd','W',NULL,NULL,NULL,NULL,'Myra',1,1047,NULL,'25544',NULL,1228,38.219991,-82.11462,0,NULL,NULL,NULL),(40,140,1,1,0,'685O Martin Luther King Way SE',685,'O',NULL,'Martin Luther King','Way','SE',NULL,NULL,NULL,NULL,'Gurabo',1,1056,NULL,'00658',NULL,1228,18.254137,-65.973605,0,NULL,NULL,NULL),(41,13,1,1,0,'806B Lincoln Blvd E',806,'B',NULL,'Lincoln','Blvd','E',NULL,NULL,NULL,NULL,'New Windsor',1,1019,NULL,'21176',NULL,1228,39.540072,-77.115045,0,NULL,NULL,NULL),(42,14,1,1,0,'604N Woodbridge St SE',604,'N',NULL,'Woodbridge','St','SE',NULL,NULL,NULL,NULL,'Rushmore',1,1022,NULL,'56168',NULL,1228,43.608503,-95.80946,0,NULL,NULL,NULL),(43,126,1,1,0,'1T Second Pl NW',1,'T',NULL,'Second','Pl','NW',NULL,NULL,NULL,NULL,'Portland',1,1036,NULL,'97207',NULL,1228,45.480324,-122.711117,0,NULL,NULL,NULL),(44,86,1,1,0,'420Q Lincoln Dr NW',420,'Q',NULL,'Lincoln','Dr','NW',NULL,NULL,NULL,NULL,'Cordova',1,1000,NULL,'35550',NULL,1228,33.754767,-87.16587,0,NULL,NULL,NULL),(45,99,1,1,0,'992R Second Blvd SE',992,'R',NULL,'Second','Blvd','SE',NULL,NULL,NULL,NULL,'Cokeville',1,1049,NULL,'83114',NULL,1228,42.039281,-110.85188,0,NULL,NULL,NULL),(46,35,1,1,0,'148Z Woodbridge Ln W',148,'Z',NULL,'Woodbridge','Ln','W',NULL,NULL,NULL,NULL,'Alden',1,1012,NULL,'60001',NULL,1228,42.324761,-88.452481,0,NULL,NULL,NULL),(47,20,1,1,0,'925Y Bay Path SW',925,'Y',NULL,'Bay','Path','SW',NULL,NULL,NULL,NULL,'Douglassville',1,1037,NULL,'19518',NULL,1228,40.273179,-75.73931,0,NULL,NULL,NULL),(48,106,1,1,0,'596R College Blvd E',596,'R',NULL,'College','Blvd','E',NULL,NULL,NULL,NULL,'Thibodaux',1,1017,NULL,'70310',NULL,1228,29.803282,-90.816914,0,NULL,NULL,NULL),(49,39,1,1,0,'178A Jackson Way NE',178,'A',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Gattman',1,1023,NULL,'38844',NULL,1228,33.885239,-88.24591,0,NULL,NULL,NULL),(50,78,1,1,0,'402H Martin Luther King Ave S',402,'H',NULL,'Martin Luther King','Ave','S',NULL,NULL,NULL,NULL,'Goldendale',1,1046,NULL,'98620',NULL,1228,45.846697,-120.75703,0,NULL,NULL,NULL),(51,16,1,1,0,'995U Jackson Dr N',995,'U',NULL,'Jackson','Dr','N',NULL,NULL,NULL,NULL,'Sabillasville',1,1019,NULL,'21780',NULL,1228,39.677316,-77.47049,0,NULL,NULL,NULL),(52,25,1,1,0,'932Z Bay Rd N',932,'Z',NULL,'Bay','Rd','N',NULL,NULL,NULL,NULL,'Yadkinville',1,1032,NULL,'27055',NULL,1228,36.12301,-80.64557,0,NULL,NULL,NULL),(53,121,1,1,0,'899R Beech Ln SW',899,'R',NULL,'Beech','Ln','SW',NULL,NULL,NULL,NULL,'Attleboro Falls',1,1020,NULL,'02763',NULL,1228,41.967949,-71.31024,0,NULL,NULL,NULL),(54,201,1,1,0,'61Z States Ln SW',61,'Z',NULL,'States','Ln','SW',NULL,NULL,NULL,NULL,'Rusk',1,1042,NULL,'75875',NULL,1228,31.806615,-95.154008,0,NULL,NULL,NULL),(55,164,1,1,0,'42T Jackson Way E',42,'T',NULL,'Jackson','Way','E',NULL,NULL,NULL,NULL,'Eva',1,1041,NULL,'38333',NULL,1228,36.114049,-87.97808,0,NULL,NULL,NULL),(56,168,1,1,0,'226L El Camino Blvd S',226,'L',NULL,'El Camino','Blvd','S',NULL,NULL,NULL,NULL,'Oak Vale',1,1023,NULL,'39656',NULL,1228,31.458217,-89.93268,0,NULL,NULL,NULL),(57,68,1,1,0,'985K Jackson St W',985,'K',NULL,'Jackson','St','W',NULL,NULL,NULL,NULL,'The Plains',1,1034,NULL,'45780',NULL,1228,39.370636,-82.13406,0,NULL,NULL,NULL),(58,138,1,1,0,'8W Martin Luther King Pl NE',8,'W',NULL,'Martin Luther King','Pl','NE',NULL,NULL,NULL,NULL,'Perryville',1,1019,NULL,'21903',NULL,1228,39.571003,-76.05077,0,NULL,NULL,NULL),(59,178,1,1,0,'314E Dowlen Pl SW',314,'E',NULL,'Dowlen','Pl','SW',NULL,NULL,NULL,NULL,'Castro Valley',1,1004,NULL,'94552',NULL,1228,37.69768,-122.02503,0,NULL,NULL,NULL),(60,31,1,1,0,'636I Caulder St NW',636,'I',NULL,'Caulder','St','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30390',NULL,1228,33.844371,-84.47405,0,NULL,NULL,NULL),(61,161,1,1,0,'747F Woodbridge Ave S',747,'F',NULL,'Woodbridge','Ave','S',NULL,NULL,NULL,NULL,'Manchester',1,1035,NULL,'73758',NULL,1228,36.949144,-98.04938,0,NULL,NULL,NULL),(62,79,1,1,0,'154V States Path NE',154,'V',NULL,'States','Path','NE',NULL,NULL,NULL,NULL,'Hilton Head Island',1,1039,NULL,'29928',NULL,1228,32.159476,-80.75144,0,NULL,NULL,NULL),(63,170,1,1,0,'307M Cadell St NE',307,'M',NULL,'Cadell','St','NE',NULL,NULL,NULL,NULL,'Anderson',1,1024,NULL,'64831',NULL,1228,36.658583,-94.44972,0,NULL,NULL,NULL),(64,32,3,1,0,'494N Main Path N',494,'N',NULL,'Main','Path','N',NULL,'Receiving',NULL,NULL,'Hadley',1,1031,NULL,'12835',NULL,1228,43.292593,-73.978,0,NULL,NULL,NULL),(65,100,2,1,0,'494N Main Path N',494,'N',NULL,'Main','Path','N',NULL,'Receiving',NULL,NULL,'Hadley',1,1031,NULL,'12835',NULL,1228,43.292593,-73.978,0,NULL,NULL,64),(66,194,3,1,0,'791D Green Blvd SW',791,'D',NULL,'Green','Blvd','SW',NULL,'c/o PO Plus',NULL,NULL,'Ocoee',1,1041,NULL,'37361',NULL,1228,35.108559,-84.70139,0,NULL,NULL,NULL),(67,63,3,1,0,'132T College Pl SW',132,'T',NULL,'College','Pl','SW',NULL,'Cuffe Parade',NULL,NULL,'North Granby',1,1006,NULL,'06060',NULL,1228,42.012195,-72.8445,0,NULL,NULL,NULL),(68,157,3,1,0,'877J Dowlen Ln E',877,'J',NULL,'Dowlen','Ln','E',NULL,'c/o OPDC',NULL,NULL,'Pleasant Hill',1,1041,NULL,'38578',NULL,1228,36.007405,-85.162272,0,NULL,NULL,NULL),(69,143,3,1,0,'828G El Camino Ave SW',828,'G',NULL,'El Camino','Ave','SW',NULL,'Cuffe Parade',NULL,NULL,'El Paso',1,1042,NULL,'88578',NULL,1228,31.694842,-106.299987,0,NULL,NULL,NULL),(70,197,3,1,0,'54Z Beech Ln NE',54,'Z',NULL,'Beech','Ln','NE',NULL,'Urgent',NULL,NULL,'Charlotte',1,1032,NULL,'28233',NULL,1228,35.489411,-80.825368,0,NULL,NULL,NULL),(71,115,3,1,0,'111Z Main Dr SE',111,'Z',NULL,'Main','Dr','SE',NULL,'Cuffe Parade',NULL,NULL,'Martin',1,1026,NULL,'68868',NULL,1228,40.718287,-98.52983,0,NULL,NULL,NULL),(72,128,2,0,0,'111Z Main Dr SE',111,'Z',NULL,'Main','Dr','SE',NULL,'Cuffe Parade',NULL,NULL,'Martin',1,1026,NULL,'68868',NULL,1228,40.718287,-98.52983,0,NULL,NULL,71),(73,191,3,1,0,'809Q States St SW',809,'Q',NULL,'States','St','SW',NULL,'Subscriptions Dept',NULL,NULL,'Taberg',1,1031,NULL,'13471',NULL,1228,43.346517,-75.60493,0,NULL,NULL,NULL),(74,46,2,1,0,'809Q States St SW',809,'Q',NULL,'States','St','SW',NULL,'Subscriptions Dept',NULL,NULL,'Taberg',1,1031,NULL,'13471',NULL,1228,43.346517,-75.60493,0,NULL,NULL,73),(75,57,3,1,0,'476R College Rd NW',476,'R',NULL,'College','Rd','NW',NULL,'Attn: Development',NULL,NULL,'Caldwell',1,1034,NULL,'43724',NULL,1228,39.741629,-81.52512,0,NULL,NULL,NULL),(76,112,3,1,0,'627E Caulder Pl NE',627,'E',NULL,'Caulder','Pl','NE',NULL,'c/o PO Plus',NULL,NULL,'Dunnellon',1,1008,NULL,'34432',NULL,1228,29.060092,-82.35195,0,NULL,NULL,NULL),(77,38,3,1,0,'540S Woodbridge Blvd W',540,'S',NULL,'Woodbridge','Blvd','W',NULL,'Churchgate',NULL,NULL,'Itta Bena',1,1023,NULL,'38941',NULL,1228,33.492412,-90.3243,0,NULL,NULL,NULL),(78,81,3,1,0,'100T Martin Luther King Pl NE',100,'T',NULL,'Martin Luther King','Pl','NE',NULL,'Attn: Accounting',NULL,NULL,'Cleveland',1,1034,NULL,'44129',NULL,1228,41.397701,-81.73575,0,NULL,NULL,NULL),(79,188,3,1,0,'717Y Van Ness Rd E',717,'Y',NULL,'Van Ness','Rd','E',NULL,'Subscriptions Dept',NULL,NULL,'Delia',1,1015,NULL,'66418',NULL,1228,39.267478,-95.94736,0,NULL,NULL,NULL),(80,192,3,1,0,'159B Pine Way S',159,'B',NULL,'Pine','Way','S',NULL,'c/o PO Plus',NULL,NULL,'Stanhope',1,1029,NULL,'07874',NULL,1228,40.917054,-74.71053,0,NULL,NULL,NULL),(81,82,2,1,0,'159B Pine Way S',159,'B',NULL,'Pine','Way','S',NULL,'c/o PO Plus',NULL,NULL,'Stanhope',1,1029,NULL,'07874',NULL,1228,40.917054,-74.71053,0,NULL,NULL,80),(82,129,3,1,0,'138N States Path W',138,'N',NULL,'States','Path','W',NULL,'Cuffe Parade',NULL,NULL,'Duluth',1,1022,NULL,'55814',NULL,1228,47.640367,-92.442797,0,NULL,NULL,NULL),(83,109,3,1,0,'776L College Ln SE',776,'L',NULL,'College','Ln','SE',NULL,'Attn: Accounting',NULL,NULL,'Bakersfield',1,1004,NULL,'93313',NULL,1228,35.19766,-119.05698,0,NULL,NULL,NULL),(84,19,3,1,0,'225P Martin Luther King Way SE',225,'P',NULL,'Martin Luther King','Way','SE',NULL,'Disbursements',NULL,NULL,'Jacksonville',1,1008,NULL,'32217',NULL,1228,30.24354,-81.62098,0,NULL,NULL,NULL),(85,10,2,1,0,'225P Martin Luther King Way SE',225,'P',NULL,'Martin Luther King','Way','SE',NULL,'Disbursements',NULL,NULL,'Jacksonville',1,1008,NULL,'32217',NULL,1228,30.24354,-81.62098,0,NULL,NULL,84),(86,151,3,1,0,'747S Woodbridge Rd W',747,'S',NULL,'Woodbridge','Rd','W',NULL,'Churchgate',NULL,NULL,'Okeechobee',1,1008,NULL,'34974',NULL,1228,27.1944,-80.84644,0,NULL,NULL,NULL),(87,173,3,1,0,'531F Main St SW',531,'F',NULL,'Main','St','SW',NULL,'Cuffe Parade',NULL,NULL,'Pasadena',1,1004,NULL,'91191',NULL,1228,33.786594,-118.298662,0,NULL,NULL,NULL),(88,158,2,1,0,'531F Main St SW',531,'F',NULL,'Main','St','SW',NULL,'Cuffe Parade',NULL,NULL,'Pasadena',1,1004,NULL,'91191',NULL,1228,33.786594,-118.298662,0,NULL,NULL,87),(89,40,3,1,0,'66W Green Rd E',66,'W',NULL,'Green','Rd','E',NULL,'Attn: Accounting',NULL,NULL,'Marshall',1,1042,NULL,'75672',NULL,1228,32.513986,-94.30704,0,NULL,NULL,NULL),(90,49,1,1,0,'420Q Lincoln Dr NW',420,'Q',NULL,'Lincoln','Dr','NW',NULL,NULL,NULL,NULL,'Cordova',1,1000,NULL,'35550',NULL,1228,33.754767,-87.16587,0,NULL,NULL,44),(91,7,1,1,0,'420Q Lincoln Dr NW',420,'Q',NULL,'Lincoln','Dr','NW',NULL,NULL,NULL,NULL,'Cordova',1,1000,NULL,'35550',NULL,1228,33.754767,-87.16587,0,NULL,NULL,44),(92,54,1,1,0,'420Q Lincoln Dr NW',420,'Q',NULL,'Lincoln','Dr','NW',NULL,NULL,NULL,NULL,'Cordova',1,1000,NULL,'35550',NULL,1228,33.754767,-87.16587,0,NULL,NULL,44),(93,2,1,1,0,'420Q Lincoln Dr NW',420,'Q',NULL,'Lincoln','Dr','NW',NULL,NULL,NULL,NULL,'Cordova',1,1000,NULL,'35550',NULL,1228,33.754767,-87.16587,0,NULL,NULL,44),(94,175,1,1,0,'992R Second Blvd SE',992,'R',NULL,'Second','Blvd','SE',NULL,NULL,NULL,NULL,'Cokeville',1,1049,NULL,'83114',NULL,1228,42.039281,-110.85188,0,NULL,NULL,45),(95,41,1,1,0,'992R Second Blvd SE',992,'R',NULL,'Second','Blvd','SE',NULL,NULL,NULL,NULL,'Cokeville',1,1049,NULL,'83114',NULL,1228,42.039281,-110.85188,0,NULL,NULL,45),(96,136,1,1,0,'992R Second Blvd SE',992,'R',NULL,'Second','Blvd','SE',NULL,NULL,NULL,NULL,'Cokeville',1,1049,NULL,'83114',NULL,1228,42.039281,-110.85188,0,NULL,NULL,45),(97,23,1,1,0,'992R Second Blvd SE',992,'R',NULL,'Second','Blvd','SE',NULL,NULL,NULL,NULL,'Cokeville',1,1049,NULL,'83114',NULL,1228,42.039281,-110.85188,0,NULL,NULL,45),(98,12,1,1,0,'148Z Woodbridge Ln W',148,'Z',NULL,'Woodbridge','Ln','W',NULL,NULL,NULL,NULL,'Alden',1,1012,NULL,'60001',NULL,1228,42.324761,-88.452481,0,NULL,NULL,46),(99,181,1,1,0,'148Z Woodbridge Ln W',148,'Z',NULL,'Woodbridge','Ln','W',NULL,NULL,NULL,NULL,'Alden',1,1012,NULL,'60001',NULL,1228,42.324761,-88.452481,0,NULL,NULL,46),(100,89,1,1,0,'148Z Woodbridge Ln W',148,'Z',NULL,'Woodbridge','Ln','W',NULL,NULL,NULL,NULL,'Alden',1,1012,NULL,'60001',NULL,1228,42.324761,-88.452481,0,NULL,NULL,46),(101,94,1,1,0,'148Z Woodbridge Ln W',148,'Z',NULL,'Woodbridge','Ln','W',NULL,NULL,NULL,NULL,'Alden',1,1012,NULL,'60001',NULL,1228,42.324761,-88.452481,0,NULL,NULL,46),(102,162,1,1,0,'925Y Bay Path SW',925,'Y',NULL,'Bay','Path','SW',NULL,NULL,NULL,NULL,'Douglassville',1,1037,NULL,'19518',NULL,1228,40.273179,-75.73931,0,NULL,NULL,47),(103,80,1,1,0,'925Y Bay Path SW',925,'Y',NULL,'Bay','Path','SW',NULL,NULL,NULL,NULL,'Douglassville',1,1037,NULL,'19518',NULL,1228,40.273179,-75.73931,0,NULL,NULL,47),(104,127,1,1,0,'925Y Bay Path SW',925,'Y',NULL,'Bay','Path','SW',NULL,NULL,NULL,NULL,'Douglassville',1,1037,NULL,'19518',NULL,1228,40.273179,-75.73931,0,NULL,NULL,47),(105,125,1,1,0,'925Y Bay Path SW',925,'Y',NULL,'Bay','Path','SW',NULL,NULL,NULL,NULL,'Douglassville',1,1037,NULL,'19518',NULL,1228,40.273179,-75.73931,0,NULL,NULL,47),(106,46,1,0,0,'596R College Blvd E',596,'R',NULL,'College','Blvd','E',NULL,NULL,NULL,NULL,'Thibodaux',1,1017,NULL,'70310',NULL,1228,29.803282,-90.816914,0,NULL,NULL,48),(107,93,1,1,0,'596R College Blvd E',596,'R',NULL,'College','Blvd','E',NULL,NULL,NULL,NULL,'Thibodaux',1,1017,NULL,'70310',NULL,1228,29.803282,-90.816914,0,NULL,NULL,48),(108,26,1,1,0,'596R College Blvd E',596,'R',NULL,'College','Blvd','E',NULL,NULL,NULL,NULL,'Thibodaux',1,1017,NULL,'70310',NULL,1228,29.803282,-90.816914,0,NULL,NULL,48),(109,198,1,1,0,'596R College Blvd E',596,'R',NULL,'College','Blvd','E',NULL,NULL,NULL,NULL,'Thibodaux',1,1017,NULL,'70310',NULL,1228,29.803282,-90.816914,0,NULL,NULL,48),(110,116,1,1,0,'178A Jackson Way NE',178,'A',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Gattman',1,1023,NULL,'38844',NULL,1228,33.885239,-88.24591,0,NULL,NULL,49),(111,52,1,1,0,'178A Jackson Way NE',178,'A',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Gattman',1,1023,NULL,'38844',NULL,1228,33.885239,-88.24591,0,NULL,NULL,49),(112,10,1,0,0,'178A Jackson Way NE',178,'A',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Gattman',1,1023,NULL,'38844',NULL,1228,33.885239,-88.24591,0,NULL,NULL,49),(113,8,1,1,0,'178A Jackson Way NE',178,'A',NULL,'Jackson','Way','NE',NULL,NULL,NULL,NULL,'Gattman',1,1023,NULL,'38844',NULL,1228,33.885239,-88.24591,0,NULL,NULL,49),(114,37,1,1,0,'402H Martin Luther King Ave S',402,'H',NULL,'Martin Luther King','Ave','S',NULL,NULL,NULL,NULL,'Goldendale',1,1046,NULL,'98620',NULL,1228,45.846697,-120.75703,0,NULL,NULL,50),(115,34,1,1,0,'402H Martin Luther King Ave S',402,'H',NULL,'Martin Luther King','Ave','S',NULL,NULL,NULL,NULL,'Goldendale',1,1046,NULL,'98620',NULL,1228,45.846697,-120.75703,0,NULL,NULL,50),(116,96,1,1,0,'402H Martin Luther King Ave S',402,'H',NULL,'Martin Luther King','Ave','S',NULL,NULL,NULL,NULL,'Goldendale',1,1046,NULL,'98620',NULL,1228,45.846697,-120.75703,0,NULL,NULL,50),(117,148,1,1,0,'402H Martin Luther King Ave S',402,'H',NULL,'Martin Luther King','Ave','S',NULL,NULL,NULL,NULL,'Goldendale',1,1046,NULL,'98620',NULL,1228,45.846697,-120.75703,0,NULL,NULL,50),(118,147,1,1,0,'995U Jackson Dr N',995,'U',NULL,'Jackson','Dr','N',NULL,NULL,NULL,NULL,'Sabillasville',1,1019,NULL,'21780',NULL,1228,39.677316,-77.47049,0,NULL,NULL,51),(119,27,1,1,0,'995U Jackson Dr N',995,'U',NULL,'Jackson','Dr','N',NULL,NULL,NULL,NULL,'Sabillasville',1,1019,NULL,'21780',NULL,1228,39.677316,-77.47049,0,NULL,NULL,51),(120,44,1,1,0,'995U Jackson Dr N',995,'U',NULL,'Jackson','Dr','N',NULL,NULL,NULL,NULL,'Sabillasville',1,1019,NULL,'21780',NULL,1228,39.677316,-77.47049,0,NULL,NULL,51),(121,90,1,1,0,'995U Jackson Dr N',995,'U',NULL,'Jackson','Dr','N',NULL,NULL,NULL,NULL,'Sabillasville',1,1019,NULL,'21780',NULL,1228,39.677316,-77.47049,0,NULL,NULL,51),(122,200,1,1,0,'932Z Bay Rd N',932,'Z',NULL,'Bay','Rd','N',NULL,NULL,NULL,NULL,'Yadkinville',1,1032,NULL,'27055',NULL,1228,36.12301,-80.64557,0,NULL,NULL,52),(123,21,1,1,0,'932Z Bay Rd N',932,'Z',NULL,'Bay','Rd','N',NULL,NULL,NULL,NULL,'Yadkinville',1,1032,NULL,'27055',NULL,1228,36.12301,-80.64557,0,NULL,NULL,52),(124,150,1,1,0,'932Z Bay Rd N',932,'Z',NULL,'Bay','Rd','N',NULL,NULL,NULL,NULL,'Yadkinville',1,1032,NULL,'27055',NULL,1228,36.12301,-80.64557,0,NULL,NULL,52),(125,195,1,1,0,'932Z Bay Rd N',932,'Z',NULL,'Bay','Rd','N',NULL,NULL,NULL,NULL,'Yadkinville',1,1032,NULL,'27055',NULL,1228,36.12301,-80.64557,0,NULL,NULL,52),(126,42,1,1,0,'899R Beech Ln SW',899,'R',NULL,'Beech','Ln','SW',NULL,NULL,NULL,NULL,'Attleboro Falls',1,1020,NULL,'02763',NULL,1228,41.967949,-71.31024,0,NULL,NULL,53),(127,165,1,1,0,'899R Beech Ln SW',899,'R',NULL,'Beech','Ln','SW',NULL,NULL,NULL,NULL,'Attleboro Falls',1,1020,NULL,'02763',NULL,1228,41.967949,-71.31024,0,NULL,NULL,53),(128,141,1,1,0,'899R Beech Ln SW',899,'R',NULL,'Beech','Ln','SW',NULL,NULL,NULL,NULL,'Attleboro Falls',1,1020,NULL,'02763',NULL,1228,41.967949,-71.31024,0,NULL,NULL,53),(129,167,1,1,0,'899R Beech Ln SW',899,'R',NULL,'Beech','Ln','SW',NULL,NULL,NULL,NULL,'Attleboro Falls',1,1020,NULL,'02763',NULL,1228,41.967949,-71.31024,0,NULL,NULL,53),(130,45,1,1,0,'61Z States Ln SW',61,'Z',NULL,'States','Ln','SW',NULL,NULL,NULL,NULL,'Rusk',1,1042,NULL,'75875',NULL,1228,31.806615,-95.154008,0,NULL,NULL,54),(131,17,1,1,0,'61Z States Ln SW',61,'Z',NULL,'States','Ln','SW',NULL,NULL,NULL,NULL,'Rusk',1,1042,NULL,'75875',NULL,1228,31.806615,-95.154008,0,NULL,NULL,54),(132,119,1,1,0,'61Z States Ln SW',61,'Z',NULL,'States','Ln','SW',NULL,NULL,NULL,NULL,'Rusk',1,1042,NULL,'75875',NULL,1228,31.806615,-95.154008,0,NULL,NULL,54),(133,84,1,1,0,'833B El Camino Ln S',833,'B',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Flovilla',1,1009,NULL,'30216',NULL,1228,33.251174,-83.89284,0,NULL,NULL,NULL),(134,48,1,1,0,'42T Jackson Way E',42,'T',NULL,'Jackson','Way','E',NULL,NULL,NULL,NULL,'Eva',1,1041,NULL,'38333',NULL,1228,36.114049,-87.97808,0,NULL,NULL,55),(135,72,1,1,0,'42T Jackson Way E',42,'T',NULL,'Jackson','Way','E',NULL,NULL,NULL,NULL,'Eva',1,1041,NULL,'38333',NULL,1228,36.114049,-87.97808,0,NULL,NULL,55),(136,149,1,1,0,'42T Jackson Way E',42,'T',NULL,'Jackson','Way','E',NULL,NULL,NULL,NULL,'Eva',1,1041,NULL,'38333',NULL,1228,36.114049,-87.97808,0,NULL,NULL,55),(137,92,1,1,0,'42T Jackson Way E',42,'T',NULL,'Jackson','Way','E',NULL,NULL,NULL,NULL,'Eva',1,1041,NULL,'38333',NULL,1228,36.114049,-87.97808,0,NULL,NULL,55),(138,154,1,1,0,'226L El Camino Blvd S',226,'L',NULL,'El Camino','Blvd','S',NULL,NULL,NULL,NULL,'Oak Vale',1,1023,NULL,'39656',NULL,1228,31.458217,-89.93268,0,NULL,NULL,56),(139,101,1,1,0,'226L El Camino Blvd S',226,'L',NULL,'El Camino','Blvd','S',NULL,NULL,NULL,NULL,'Oak Vale',1,1023,NULL,'39656',NULL,1228,31.458217,-89.93268,0,NULL,NULL,56),(140,132,1,1,0,'226L El Camino Blvd S',226,'L',NULL,'El Camino','Blvd','S',NULL,NULL,NULL,NULL,'Oak Vale',1,1023,NULL,'39656',NULL,1228,31.458217,-89.93268,0,NULL,NULL,56),(141,51,1,1,0,'226L El Camino Blvd S',226,'L',NULL,'El Camino','Blvd','S',NULL,NULL,NULL,NULL,'Oak Vale',1,1023,NULL,'39656',NULL,1228,31.458217,-89.93268,0,NULL,NULL,56),(142,22,1,1,0,'985K Jackson St W',985,'K',NULL,'Jackson','St','W',NULL,NULL,NULL,NULL,'The Plains',1,1034,NULL,'45780',NULL,1228,39.370636,-82.13406,0,NULL,NULL,57),(143,107,1,1,0,'985K Jackson St W',985,'K',NULL,'Jackson','St','W',NULL,NULL,NULL,NULL,'The Plains',1,1034,NULL,'45780',NULL,1228,39.370636,-82.13406,0,NULL,NULL,57),(144,15,1,1,0,'985K Jackson St W',985,'K',NULL,'Jackson','St','W',NULL,NULL,NULL,NULL,'The Plains',1,1034,NULL,'45780',NULL,1228,39.370636,-82.13406,0,NULL,NULL,57),(145,160,1,1,0,'985K Jackson St W',985,'K',NULL,'Jackson','St','W',NULL,NULL,NULL,NULL,'The Plains',1,1034,NULL,'45780',NULL,1228,39.370636,-82.13406,0,NULL,NULL,57),(146,174,1,1,0,'8W Martin Luther King Pl NE',8,'W',NULL,'Martin Luther King','Pl','NE',NULL,NULL,NULL,NULL,'Perryville',1,1019,NULL,'21903',NULL,1228,39.571003,-76.05077,0,NULL,NULL,58),(147,91,1,1,0,'8W Martin Luther King Pl NE',8,'W',NULL,'Martin Luther King','Pl','NE',NULL,NULL,NULL,NULL,'Perryville',1,1019,NULL,'21903',NULL,1228,39.571003,-76.05077,0,NULL,NULL,58),(148,156,1,1,0,'8W Martin Luther King Pl NE',8,'W',NULL,'Martin Luther King','Pl','NE',NULL,NULL,NULL,NULL,'Perryville',1,1019,NULL,'21903',NULL,1228,39.571003,-76.05077,0,NULL,NULL,58),(149,73,1,1,0,'8W Martin Luther King Pl NE',8,'W',NULL,'Martin Luther King','Pl','NE',NULL,NULL,NULL,NULL,'Perryville',1,1019,NULL,'21903',NULL,1228,39.571003,-76.05077,0,NULL,NULL,58),(150,135,1,1,0,'314E Dowlen Pl SW',314,'E',NULL,'Dowlen','Pl','SW',NULL,NULL,NULL,NULL,'Castro Valley',1,1004,NULL,'94552',NULL,1228,37.69768,-122.02503,0,NULL,NULL,59),(151,177,1,1,0,'314E Dowlen Pl SW',314,'E',NULL,'Dowlen','Pl','SW',NULL,NULL,NULL,NULL,'Castro Valley',1,1004,NULL,'94552',NULL,1228,37.69768,-122.02503,0,NULL,NULL,59),(152,70,1,1,0,'314E Dowlen Pl SW',314,'E',NULL,'Dowlen','Pl','SW',NULL,NULL,NULL,NULL,'Castro Valley',1,1004,NULL,'94552',NULL,1228,37.69768,-122.02503,0,NULL,NULL,59),(153,61,1,1,0,'314E Dowlen Pl SW',314,'E',NULL,'Dowlen','Pl','SW',NULL,NULL,NULL,NULL,'Castro Valley',1,1004,NULL,'94552',NULL,1228,37.69768,-122.02503,0,NULL,NULL,59),(154,199,1,1,0,'636I Caulder St NW',636,'I',NULL,'Caulder','St','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30390',NULL,1228,33.844371,-84.47405,0,NULL,NULL,60),(155,104,1,1,0,'636I Caulder St NW',636,'I',NULL,'Caulder','St','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30390',NULL,1228,33.844371,-84.47405,0,NULL,NULL,60),(156,171,1,1,0,'636I Caulder St NW',636,'I',NULL,'Caulder','St','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30390',NULL,1228,33.844371,-84.47405,0,NULL,NULL,60),(157,186,1,1,0,'636I Caulder St NW',636,'I',NULL,'Caulder','St','NW',NULL,NULL,NULL,NULL,'Atlanta',1,1009,NULL,'30390',NULL,1228,33.844371,-84.47405,0,NULL,NULL,60),(158,122,1,1,0,'747F Woodbridge Ave S',747,'F',NULL,'Woodbridge','Ave','S',NULL,NULL,NULL,NULL,'Manchester',1,1035,NULL,'73758',NULL,1228,36.949144,-98.04938,0,NULL,NULL,61),(159,59,1,1,0,'747F Woodbridge Ave S',747,'F',NULL,'Woodbridge','Ave','S',NULL,NULL,NULL,NULL,'Manchester',1,1035,NULL,'73758',NULL,1228,36.949144,-98.04938,0,NULL,NULL,61),(160,189,1,1,0,'747F Woodbridge Ave S',747,'F',NULL,'Woodbridge','Ave','S',NULL,NULL,NULL,NULL,'Manchester',1,1035,NULL,'73758',NULL,1228,36.949144,-98.04938,0,NULL,NULL,61),(161,100,1,0,0,'508P Dowlen Dr W',508,'P',NULL,'Dowlen','Dr','W',NULL,NULL,NULL,NULL,'Lexington',1,1016,NULL,'40502',NULL,1228,38.017219,-84.4859,0,NULL,NULL,NULL),(162,118,1,1,0,'154V States Path NE',154,'V',NULL,'States','Path','NE',NULL,NULL,NULL,NULL,'Hilton Head Island',1,1039,NULL,'29928',NULL,1228,32.159476,-80.75144,0,NULL,NULL,62),(163,62,1,1,0,'154V States Path NE',154,'V',NULL,'States','Path','NE',NULL,NULL,NULL,NULL,'Hilton Head Island',1,1039,NULL,'29928',NULL,1228,32.159476,-80.75144,0,NULL,NULL,62),(164,124,1,1,0,'154V States Path NE',154,'V',NULL,'States','Path','NE',NULL,NULL,NULL,NULL,'Hilton Head Island',1,1039,NULL,'29928',NULL,1228,32.159476,-80.75144,0,NULL,NULL,62),(165,98,1,1,0,'154V States Path NE',154,'V',NULL,'States','Path','NE',NULL,NULL,NULL,NULL,'Hilton Head Island',1,1039,NULL,'29928',NULL,1228,32.159476,-80.75144,0,NULL,NULL,62),(166,131,1,1,0,'307M Cadell St NE',307,'M',NULL,'Cadell','St','NE',NULL,NULL,NULL,NULL,'Anderson',1,1024,NULL,'64831',NULL,1228,36.658583,-94.44972,0,NULL,NULL,63),(167,30,1,1,0,'307M Cadell St NE',307,'M',NULL,'Cadell','St','NE',NULL,NULL,NULL,NULL,'Anderson',1,1024,NULL,'64831',NULL,1228,36.658583,-94.44972,0,NULL,NULL,63),(168,65,1,1,0,'307M Cadell St NE',307,'M',NULL,'Cadell','St','NE',NULL,NULL,NULL,NULL,'Anderson',1,1024,NULL,'64831',NULL,1228,36.658583,-94.44972,0,NULL,NULL,63),(169,185,1,1,0,'307M Cadell St NE',307,'M',NULL,'Cadell','St','NE',NULL,NULL,NULL,NULL,'Anderson',1,1024,NULL,'64831',NULL,1228,36.658583,-94.44972,0,NULL,NULL,63),(170,NULL,1,1,1,'14S El Camino Way E',14,'S',NULL,'El Camino','Way',NULL,NULL,NULL,NULL,NULL,'Collinsville',NULL,1006,NULL,'6022',NULL,1228,41.8328,-72.9253,0,NULL,NULL,NULL),(171,NULL,1,1,1,'11B Woodbridge Path SW',11,'B',NULL,'Woodbridge','Path',NULL,NULL,NULL,NULL,NULL,'Dayton',NULL,1034,NULL,'45417',NULL,1228,39.7531,-84.2471,0,NULL,NULL,NULL),(172,NULL,1,1,1,'581O Lincoln Dr SW',581,'O',NULL,'Lincoln','Dr',NULL,NULL,NULL,NULL,NULL,'Santa Fe',NULL,1030,NULL,'87594',NULL,1228,35.5212,-105.982,0,NULL,NULL,NULL);
  /*!40000 ALTER TABLE `civicrm_address` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -135,7 -135,7 +135,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_cache` WRITE;
  /*!40000 ALTER TABLE `civicrm_cache` DISABLE KEYS */;
- INSERT INTO `civicrm_cache` (`id`, `group_name`, `path`, `data`, `component_id`, `created_date`, `expired_date`) VALUES (1,'e039d1ea64007cb2369622d6083834cf','mapper/moduleFiles','a:0:{}',NULL,'2015-05-08 12:24:05',NULL),(2,'CiviCRM setting Spec','All','a:92:{s:32:\"address_standardization_provider\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:32:\"address_standardization_provider\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:33:\"Address Standardization Provider.\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:492:\"CiviCRM includes an optional plugin for interfacing with the United States Postal Services (USPS) Address Standardization web service. You must register to use the USPS service at https://www.usps.com/business/web-tools-apis/address-information.htm. If you are approved, they will provide you with a User ID and the URL for the service. Plugins for other address standardization services may be available from 3rd party developers. If installed, they will be included in the drop-down below. \";}s:30:\"address_standardization_userid\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:30:\"address_standardization_userid\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Web service user ID\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:27:\"address_standardization_url\";a:13:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:27:\"address_standardization_url\";s:4:\"type\";s:4:\"Text\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Web Service URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:15:\"Web Service URL\";s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:15:\"tag_unconfirmed\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:15:\"tag_unconfirmed\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:11:\"Unconfirmed\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:36:\"Tag for Unconfirmed Petition Signers\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:17:\"petition_contacts\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:17:\"petition_contacts\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:17:\"Petition Contacts\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:22:\"Petition Signers Group\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:23:\"cvv_backoffice_required\";a:12:{s:10:\"group_name\";s:22:\"Contribute Preferences\";s:5:\"group\";s:10:\"contribute\";s:4:\"name\";s:23:\"cvv_backoffice_required\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:28:\"CVV required for backoffice?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:65:\"Is the CVV code required for back office credit card transactions\";s:9:\"help_text\";s:137:\"If set it back-office credit card transactions will required a cvv code. Leave as required unless you have a very strong reason to change\";}s:20:\"contact_view_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_view_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_view_options\";}s:7:\"default\";s:28:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 113\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Viewing Contacts\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"contact_edit_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_edit_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_edit_options\";}s:7:\"default\";s:25:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Editing Contacts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:23:\"advanced_search_options\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:4:\"name\";s:23:\"advanced_search_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:23:\"advanced_search_options\";}s:7:\"default\";s:43:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 112\ 113\ 115\ 116\ 117\ 118\ 119\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Contact Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:22:\"user_dashboard_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"user_dashboard_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:22:\"user_dashboard_options\";}s:7:\"default\";s:17:\"\ 11\ 12\ 13\ 14\ 15\ 17\ 18\ 19\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:17:\"Contact Dashboard\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"address_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"address_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:15:\"address_options\";}s:7:\"default\";s:19:\"\ 11\ 12\ 14\ 15\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Addressing Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"address_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"address_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:8:\"TextArea\";s:7:\"default\";s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Address Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"mailing_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"mailing_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Mailing Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"display_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"display_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Display Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"sort_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"sort_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:43:\"{contact.last_name}{, }{contact.first_name}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Sort Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:9:\"editor_id\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"editor_id\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Wysiwig Editor\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:26:\"contact_ajax_check_similar\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:26:\"contact_ajax_check_similar\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Ajax Check Similar\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"ajaxPopupsEnabled\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"ajaxPopupsEnabled\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:19:\"Ajax Popups Enabled\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:30:\"activity_assignee_notification\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:30:\"activity_assignee_notification\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:25:\"Notify Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:34:\"activity_assignee_notification_ics\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:34:\"activity_assignee_notification_ics\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:41:\"Include ICal Invite to Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:28:\"contact_autocomplete_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:28:\"contact_autocomplete_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:28:\"contact_autocomplete_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Contact Reference Autocomplete Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"contact_reference_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:25:\"contact_reference_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:25:\"contact_reference_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:25:\"Contact Reference Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"max_attachments\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"max_attachments\";s:10:\"legacy_key\";s:14:\"maxAttachments\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Maximum Attachments\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:93:\"Maximum number of files (documents, images, etc.) which can attached to emails or activities.\";s:9:\"help_text\";N;}s:11:\"maxFileSize\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"maxFileSize\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:25:\"Maximum File Size (in MB)\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:140:\"Maximum Size of file (documents, images, etc.) which can attached to emails or activities.<br />Note: php.ini should support this file size.\";s:9:\"help_text\";N;}s:16:\"contact_undelete\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"contact_undelete\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:26:\"Contact Trash and Undelete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:200:\"If enabled, deleted contacts will be moved to trash (instead of being destroyed). Users with the proper permission are able to search for the deleted contacts and restore them (or delete permanently).\";s:9:\"help_text\";N;}s:24:\"allowPermDeleteFinancial\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:24:\"allowPermDeleteFinancial\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";b:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:24:\"Contact Permanent Delete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:81:\"Allow Permanent Delete for contacts who are linked to live financial transactions\";s:9:\"help_text\";N;}s:12:\"versionAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:18:\"New Version Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:19:\"securityUpdateAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"securityUpdateAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Security Update Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:12:\"versionCheck\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:31:\"Automatically Check for Updates\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:22:\"versionCheckIgnoreDate\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"versionCheckIgnoreDate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:11:\"placeholder\";s:10:\"YYYY-MM-DD\";}s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:23:\"Ignore Updates Prior to\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"securityAlert\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:13:\"securityAlert\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Security Audits\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:122:\"If enabled, CiviCRM will automatically run checks for significant mis-configurations such as ineffective file protections.\";s:9:\"help_text\";N;}s:21:\"doNotAttachPDFReceipt\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"doNotAttachPDFReceipt\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:27:\"Attach PDF copy to receipts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:98:\"If enabled, CiviCRM sends PDF receipt as an attachment during event signup or online contribution.\";s:9:\"help_text\";N;}s:15:\"wkhtmltopdfPath\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"wkhtmltopdfPath\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:256;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Path to wkhtmltopdf executable\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:18:\"recaptchaPublicKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:18:\"recaptchaPublicKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Recaptcha Public Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"recaptchaPrivateKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"recaptchaPrivateKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:21:\"Recaptcha Private Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:21:\"dashboardCacheTimeout\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"dashboardCacheTimeout\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:3;s:9:\"maxlength\";i:5;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Dashboard cache timeout\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"checksumTimeout\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"checksumTimeout\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";i:7;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Checksum Lifespan\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"blogUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:7:\"blogUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Blog Feed URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:38:\"Blog feed URL used by the blog dashlet\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:20:\"communityMessagesUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"communityMessagesUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Community Messages URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:44:\"Service providing CiviCRM community messages\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:12:\"resCacheCode\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"resCacheCode\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Resource Cache Code\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:62:\"Code appended to resource URLs (JS/CSS) to coerce HTTP caching\";s:9:\"help_text\";N;}s:9:\"verifySSL\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"verifySSL\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:11:\"Verify SSL?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"If disabled, backend HTTPS services will allow unverified, insecure connections\";s:9:\"help_text\";s:140:\"Unless you are absolutely unable to configure your server to check the SSL certificate of the remote server you should leave this set to Yes\";}s:10:\"wpBasePage\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:10:\"wpBasePage\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"text\";s:15:\"quick_form_type\";s:7:\"Element\";s:8:\"prefetch\";i:1;s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"WordPress Base Page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:54:\"If set, CiviCRM will use this setting as the base url.\";s:9:\"help_text\";s:177:\"By default, CiviCRM will generate front-facing pages using the home page at http://wp/ as its base. If you want to use a different template for CiviCRM pages, set the path here.\";}s:23:\"secondDegRelPermissions\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:23:\"secondDegRelPermissions\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:44:\"Allow second-degree relationship permissions\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"If enabled, contacts with the permission to edit a related contact will inherit that contact\'s permission to edit other related contacts\";s:9:\"help_text\";N;}s:17:\"enable_components\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"enable_components\";s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:17:\"Enable Components\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;s:9:\"on_change\";a:3:{i:0;s:33:\"CRM_Case_Info::onToggleComponents\";i:1;s:42:\"CRM_Core_Component::flushEnabledComponents\";i:2;s:31:\"call://resources/resetCacheCode\";}}s:16:\"disable_core_css\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"disable_core_css\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:19:\"Disable CiviCRM css\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:55:\"Prevent the stylesheet \"civicrm.css\" from being loaded.\";s:9:\"help_text\";N;}s:11:\"empoweredBy\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"empoweredBy\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"Display \"empowered by CiviCRM\"\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:80:\"When enabled, \"empowered by CiviCRM\" is displayed at the bottom of public forms.\";s:9:\"help_text\";N;}s:20:\"userFrameworkLogging\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:20:\"userFrameworkLogging\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Enable Drupal Watchdog Logging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:101:\"Set this value to Yes if you want CiviCRM error/debugging messages to appear in the Drupal error logs\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:239:\"Set this value to Yes if you want CiviCRM error/debugging messages the appear in your CMS\' error log. In the case of Drupal, this will cause all CiviCRM error messages to appear in the watchdog (assuming you have Drupal\'s watchdog enabled)\";}s:13:\"debug_enabled\";a:14:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:13:\"debug_enabled\";s:10:\"config_key\";s:5:\"debug\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Enable Debugging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:130:\"Set this value to Yes if you want to use one of CiviCRM\'s debugging tools. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:39:\"Do not turn this on on production sites\";}s:9:\"backtrace\";a:12:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:9:\"backtrace\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Display Backtrace\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:155:\"Set this value to Yes if you want to display a backtrace listing when a fatal error is encountered. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;}s:18:\"fatalErrorTemplate\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:18:\"fatalErrorTemplate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:20:\"CRM/common/fatal.tpl\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Fatal Error Template\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:123:\"Enter the path and filename for a custom Smarty template if you want to define your own screen for displaying fatal errors.\";s:8:\"prefetch\";i:1;}s:17:\"fatalErrorHandler\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:17:\"fatalErrorHandler\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Fatal Error Handler\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"Enter the path and class for a custom PHP error-handling function if you want to override built-in CiviCRM error handling for your site.\";s:8:\"prefetch\";i:1;}s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:16:\"Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:0:\"\";}s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Image Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:29:\"Custom Files Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"customTemplateDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:17:\"customTemplateDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:25:\"Custom Template Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"customPHPPathDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:16:\"customPHPPathDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Custom PHP Path\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:13:\"extensionsDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:13:\"extensionsDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:20:\"Extensions Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"event_enable_cart\";a:12:{s:4:\"name\";s:11:\"enable_cart\";s:10:\"group_name\";s:17:\"Event Preferences\";s:5:\"group\";s:5:\"event\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:7:\"default\";i:0;s:3:\"add\";d:4.0999999999999996;s:5:\"title\";s:17:\"Enable Event Cart\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:1;s:11:\"description\";s:8:\"WRITE ME\";s:9:\"help_text\";s:8:\"WRITE ME\";}s:25:\"monetaryThousandSeparator\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:25:\"monetaryThousandSeparator\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\",\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Thousands Separator\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"monetaryDecimalPoint\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:20:\"monetaryDecimalPoint\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\".\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Decimal Delimiter\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:11:\"moneyformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:11:\"moneyformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:5:\"%c %a\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"moneyvalueformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:16:\"moneyvalueformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:3:\"%!i\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"defaultCurrency\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:15:\"defaultCurrency\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:3:\"USD\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Currency\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:75:\"Default currency assigned to contributions and other monetary transactions.\";s:9:\"help_text\";N;}s:21:\"defaultContactCountry\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:21:\"defaultContactCountry\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:4;}s:7:\"default\";s:4:\"1228\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Default Country\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:68:\"This value is selected by default when adding a new contact address.\";s:9:\"help_text\";N;}s:12:\"countryLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:12:\"countryLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Available Countries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"provinceLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"provinceLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Available States and Provinces\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"inheritLocale\";a:14:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"inheritLocale\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Inherit CMS Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:18:\"dateformatDatetime\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:18:\"dateformatDatetime\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:20:\"%B %E%f, %Y %l:%M %P\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Complete Date and Time\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:14:\"dateformatFull\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:14:\"dateformatFull\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:11:\"%B %E%f, %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Complete Date\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:17:\"dateformatPartial\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:17:\"dateformatPartial\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"%B %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:14:\"Month and Year\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:10:\"lcMessages\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:10:\"lcMessages\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"en_US\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:20:\"profile_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"profile_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:22:\"track_civimail_replies\";a:13:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:22:\"track_civimail_replies\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:43:\"Track replies using VERP in Reply-To header\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:78:\"If checked, mailings will default to tracking replies using VERP-ed Reply-To. \";s:9:\"help_text\";N;s:17:\"validate_callback\";s:41:\"CRM_Core_BAO_Setting::validateBoolSetting\";}s:17:\"civimail_workflow\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:17:\"civimail_workflow\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:21:\"Use CiviMail Workflow\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:25:\"civimail_server_wide_lock\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:25:\"civimail_server_wide_lock\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:39:\"Lock Mails Server-Wide for Mail Sending\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"replyTo\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:7:\"replyTo\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Enable Custom Reply-To\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Allow CiviMail users to send mailings with a custom Reply-To header\";s:9:\"help_text\";N;}s:15:\"mailing_backend\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:15:\"mailing_backend\";s:4:\"type\";s:5:\"Array\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Mailing Backend\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:33:\"profile_add_to_group_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:33:\"profile_add_to_group_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:30:\"disable_mandatory_tokens_check\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:30:\"disable_mandatory_tokens_check\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:34:\"Disable check for mandatory tokens\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:345:\"Don\'t check for presence of mandatory tokens (domain address; unsubscribe/opt-out) before sending mailings. WARNING: Mandatory tokens are a safe-guard which facilitate compliance with the US CAN-SPAM Act. They should only be disabled if your organization adopts other mechanisms for compliance or if your organization is not subject to CAN-SPAM.\";s:9:\"help_text\";N;}s:20:\"dedupe_email_default\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"dedupe_email_default\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:44:\"CiviMail dedupes e-mail addresses by default\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"Set the \"dedupe e-mail\" option when sending a new mailing to \"true\" by default.\";s:9:\"help_text\";N;}s:16:\"hash_mailing_url\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:16:\"hash_mailing_url\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:20:\"Hashed Mailing URL\'s\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:131:\"If enabled, a randomized hash key will be used to reference the mailing URL in the mailing.viewUrl token, instead of the mailing ID\";s:9:\"help_text\";N;}s:33:\"default_renewal_contribution_page\";a:13:{s:10:\"group_name\";s:18:\"Member Preferences\";s:5:\"group\";s:6:\"member\";s:4:\"name\";s:33:\"default_renewal_contribution_page\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:14:\"pseudoconstant\";a:1:{s:4:\"name\";s:16:\"contributionPage\";}s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Default online membership renewal page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:348:\"If you select a default online contribution page for self-service membership renewals, a \"renew\" link pointing to that page will be displayed on the Contact Dashboard for memberships which were entered offline. You will need to ensure that the membership block for the selected online contribution page includes any currently available memberships.\";s:9:\"help_text\";N;}s:10:\"is_enabled\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:10:\"is_enabled\";s:5:\"title\";s:20:\"Multisite Is enabled\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"Multisite is enabled\";s:9:\"help_text\";N;}s:15:\"domain_group_id\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:15:\"domain_group_id\";s:5:\"title\";s:22:\"Multisite Domain Group\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"event_price_set_domain_id\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:25:\"event_price_set_domain_id\";s:5:\"title\";s:22:\"Domain Event Price Set\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:19:\"uniq_email_per_site\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:19:\"uniq_email_per_site\";s:4:\"type\";s:7:\"Integer\";s:5:\"title\";s:24:\"Unique Email per Domain?\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:25:\"search_autocomplete_count\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:25:\"search_autocomplete_count\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:2;}s:7:\"default\";i:10;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Autocomplete Results\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:86:\"The maximum number of contacts to show at a time when typing in an autocomplete field.\";s:9:\"help_text\";N;}s:17:\"enable_innodb_fts\";a:14:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:17:\"enable_innodb_fts\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:23:\"InnoDB Full Text Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Enable InnoDB full-text search optimizations. (Requires MySQL 5.6+)\";s:9:\"help_text\";N;s:9:\"on_change\";a:1:{i:0;a:2:{i:0;s:22:\"CRM_Core_InnoDBIndexer\";i:1;s:11:\"onToggleFts\";}}}s:14:\"fts_query_mode\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:14:\"fts_query_mode\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:6:\"simple\";s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"How to handle full-tet queries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:24:\"userFrameworkResourceURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";s:5:\"title\";s:28:\"Script and CSS Resources URL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"CiviCRM Resource URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:14:\"imageUploadURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:5:\"title\";s:16:\"Image URL Prefix\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:12:\"customCSSURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:12:\"customCSSURL\";s:5:\"title\";s:10:\"Custom CSS\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:22:\"Custom CiviCRM CSS URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-05-08 12:24:06',NULL),(3,'CiviCRM setting Specs','settingsMetadata___name_uploadDir','a:1:{s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:16:\"Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:0:\"\";}}',NULL,'2015-05-08 12:24:06',NULL),(4,'CiviCRM setting Specs','settingsMetadata___name_imageUploadDir','a:1:{s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Image Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-08 12:24:06',NULL),(5,'CiviCRM setting Specs','settingsMetadata___name_customFileUploadDir','a:1:{s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:29:\"Custom Files Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-08 12:24:06',NULL),(6,'CiviCRM setting Specs','settingsMetadata___name_userFrameworkResourceURL','a:1:{s:24:\"userFrameworkResourceURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";s:5:\"title\";s:28:\"Script and CSS Resources URL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"CiviCRM Resource URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-05-08 12:24:06',NULL),(7,'CiviCRM setting Specs','settingsMetadata___name_imageUploadURL','a:1:{s:14:\"imageUploadURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:5:\"title\";s:16:\"Image URL Prefix\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-05-08 12:24:06',NULL),(18,'ccb7700e9ba628e98186bbb1f7f12c59','mapper/moduleFiles','a:0:{}',NULL,'2015-05-08 12:26:38',NULL);
 -INSERT INTO `civicrm_cache` (`id`, `group_name`, `path`, `data`, `component_id`, `created_date`, `expired_date`) VALUES (1,'CiviCRM setting Spec','All','a:92:{s:32:\"address_standardization_provider\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:32:\"address_standardization_provider\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:33:\"Address Standardization Provider.\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:492:\"CiviCRM includes an optional plugin for interfacing with the United States Postal Services (USPS) Address Standardization web service. You must register to use the USPS service at https://www.usps.com/business/web-tools-apis/address-information.htm. If you are approved, they will provide you with a User ID and the URL for the service. Plugins for other address standardization services may be available from 3rd party developers. If installed, they will be included in the drop-down below. \";}s:30:\"address_standardization_userid\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:30:\"address_standardization_userid\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Web service user ID\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:27:\"address_standardization_url\";a:13:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:27:\"address_standardization_url\";s:4:\"type\";s:4:\"Text\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Web Service URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:15:\"Web Service URL\";s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:15:\"tag_unconfirmed\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:15:\"tag_unconfirmed\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:11:\"Unconfirmed\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:36:\"Tag for Unconfirmed Petition Signers\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:17:\"petition_contacts\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:17:\"petition_contacts\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:17:\"Petition Contacts\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:22:\"Petition Signers Group\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:23:\"cvv_backoffice_required\";a:12:{s:10:\"group_name\";s:22:\"Contribute Preferences\";s:5:\"group\";s:10:\"contribute\";s:4:\"name\";s:23:\"cvv_backoffice_required\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:28:\"CVV required for backoffice?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:65:\"Is the CVV code required for back office credit card transactions\";s:9:\"help_text\";s:137:\"If set it back-office credit card transactions will required a cvv code. Leave as required unless you have a very strong reason to change\";}s:20:\"contact_view_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_view_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_view_options\";}s:7:\"default\";s:28:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 113\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Viewing Contacts\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"contact_edit_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_edit_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_edit_options\";}s:7:\"default\";s:25:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Editing Contacts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:23:\"advanced_search_options\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:4:\"name\";s:23:\"advanced_search_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:23:\"advanced_search_options\";}s:7:\"default\";s:43:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 112\ 113\ 115\ 116\ 117\ 118\ 119\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Contact Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:22:\"user_dashboard_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"user_dashboard_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:22:\"user_dashboard_options\";}s:7:\"default\";s:17:\"\ 11\ 12\ 13\ 14\ 15\ 17\ 18\ 19\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:17:\"Contact Dashboard\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"address_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"address_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:15:\"address_options\";}s:7:\"default\";s:19:\"\ 11\ 12\ 14\ 15\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Addressing Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"address_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"address_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:8:\"TextArea\";s:7:\"default\";s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Address Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"mailing_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"mailing_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Mailing Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"display_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"display_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Display Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"sort_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"sort_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:43:\"{contact.last_name}{, }{contact.first_name}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Sort Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:9:\"editor_id\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"editor_id\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Wysiwig Editor\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:26:\"contact_ajax_check_similar\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:26:\"contact_ajax_check_similar\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Ajax Check Similar\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"ajaxPopupsEnabled\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"ajaxPopupsEnabled\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:19:\"Ajax Popups Enabled\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:30:\"activity_assignee_notification\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:30:\"activity_assignee_notification\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:25:\"Notify Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:34:\"activity_assignee_notification_ics\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:34:\"activity_assignee_notification_ics\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:41:\"Include ICal Invite to Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:28:\"contact_autocomplete_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:28:\"contact_autocomplete_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:28:\"contact_autocomplete_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Contact Reference Autocomplete Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"contact_reference_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:25:\"contact_reference_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:25:\"contact_reference_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:25:\"Contact Reference Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"max_attachments\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"max_attachments\";s:10:\"legacy_key\";s:14:\"maxAttachments\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Maximum Attachments\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:93:\"Maximum number of files (documents, images, etc.) which can attached to emails or activities.\";s:9:\"help_text\";N;}s:11:\"maxFileSize\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"maxFileSize\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:25:\"Maximum File Size (in MB)\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:140:\"Maximum Size of file (documents, images, etc.) which can attached to emails or activities.<br />Note: php.ini should support this file size.\";s:9:\"help_text\";N;}s:16:\"contact_undelete\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"contact_undelete\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:26:\"Contact Trash and Undelete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:200:\"If enabled, deleted contacts will be moved to trash (instead of being destroyed). Users with the proper permission are able to search for the deleted contacts and restore them (or delete permanently).\";s:9:\"help_text\";N;}s:24:\"allowPermDeleteFinancial\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:24:\"allowPermDeleteFinancial\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";b:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:24:\"Contact Permanent Delete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:81:\"Allow Permanent Delete for contacts who are linked to live financial transactions\";s:9:\"help_text\";N;}s:12:\"versionAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:18:\"New Version Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:19:\"securityUpdateAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"securityUpdateAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Security Update Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:12:\"versionCheck\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:31:\"Automatically Check for Updates\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:22:\"versionCheckIgnoreDate\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"versionCheckIgnoreDate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:11:\"placeholder\";s:10:\"YYYY-MM-DD\";}s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:23:\"Ignore Updates Prior to\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"securityAlert\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:13:\"securityAlert\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Security Audits\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:122:\"If enabled, CiviCRM will automatically run checks for significant mis-configurations such as ineffective file protections.\";s:9:\"help_text\";N;}s:21:\"doNotAttachPDFReceipt\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"doNotAttachPDFReceipt\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:27:\"Attach PDF copy to receipts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:98:\"If enabled, CiviCRM sends PDF receipt as an attachment during event signup or online contribution.\";s:9:\"help_text\";N;}s:15:\"wkhtmltopdfPath\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"wkhtmltopdfPath\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:256;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Path to wkhtmltopdf executable\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:18:\"recaptchaPublicKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:18:\"recaptchaPublicKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Recaptcha Public Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"recaptchaPrivateKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"recaptchaPrivateKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:21:\"Recaptcha Private Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:21:\"dashboardCacheTimeout\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"dashboardCacheTimeout\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:3;s:9:\"maxlength\";i:5;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Dashboard cache timeout\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"checksumTimeout\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"checksumTimeout\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";i:7;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Checksum Lifespan\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"blogUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:7:\"blogUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Blog Feed URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:38:\"Blog feed URL used by the blog dashlet\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:20:\"communityMessagesUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"communityMessagesUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Community Messages URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:44:\"Service providing CiviCRM community messages\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:12:\"resCacheCode\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"resCacheCode\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Resource Cache Code\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:62:\"Code appended to resource URLs (JS/CSS) to coerce HTTP caching\";s:9:\"help_text\";N;}s:9:\"verifySSL\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"verifySSL\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:11:\"Verify SSL?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"If disabled, backend HTTPS services will allow unverified, insecure connections\";s:9:\"help_text\";s:140:\"Unless you are absolutely unable to configure your server to check the SSL certificate of the remote server you should leave this set to Yes\";}s:10:\"wpBasePage\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:10:\"wpBasePage\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"text\";s:15:\"quick_form_type\";s:7:\"Element\";s:8:\"prefetch\";i:1;s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"WordPress Base Page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:54:\"If set, CiviCRM will use this setting as the base url.\";s:9:\"help_text\";s:177:\"By default, CiviCRM will generate front-facing pages using the home page at http://wp/ as its base. If you want to use a different template for CiviCRM pages, set the path here.\";}s:23:\"secondDegRelPermissions\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:23:\"secondDegRelPermissions\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:44:\"Allow second-degree relationship permissions\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"If enabled, contacts with the permission to edit a related contact will inherit that contact\'s permission to edit other related contacts\";s:9:\"help_text\";N;}s:17:\"enable_components\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"enable_components\";s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:17:\"Enable Components\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;s:9:\"on_change\";a:3:{i:0;s:33:\"CRM_Case_Info::onToggleComponents\";i:1;s:42:\"CRM_Core_Component::flushEnabledComponents\";i:2;s:31:\"call://resources/resetCacheCode\";}}s:16:\"disable_core_css\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"disable_core_css\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:19:\"Disable CiviCRM css\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:55:\"Prevent the stylesheet \"civicrm.css\" from being loaded.\";s:9:\"help_text\";N;}s:11:\"empoweredBy\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"empoweredBy\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"Display \"empowered by CiviCRM\"\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:80:\"When enabled, \"empowered by CiviCRM\" is displayed at the bottom of public forms.\";s:9:\"help_text\";N;}s:20:\"userFrameworkLogging\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:20:\"userFrameworkLogging\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Enable Drupal Watchdog Logging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:101:\"Set this value to Yes if you want CiviCRM error/debugging messages to appear in the Drupal error logs\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:239:\"Set this value to Yes if you want CiviCRM error/debugging messages the appear in your CMS\' error log. In the case of Drupal, this will cause all CiviCRM error messages to appear in the watchdog (assuming you have Drupal\'s watchdog enabled)\";}s:13:\"debug_enabled\";a:14:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:13:\"debug_enabled\";s:10:\"config_key\";s:5:\"debug\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Enable Debugging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:130:\"Set this value to Yes if you want to use one of CiviCRM\'s debugging tools. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:39:\"Do not turn this on on production sites\";}s:9:\"backtrace\";a:12:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:9:\"backtrace\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Display Backtrace\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:155:\"Set this value to Yes if you want to display a backtrace listing when a fatal error is encountered. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;}s:18:\"fatalErrorTemplate\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:18:\"fatalErrorTemplate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:20:\"CRM/common/fatal.tpl\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Fatal Error Template\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:123:\"Enter the path and filename for a custom Smarty template if you want to define your own screen for displaying fatal errors.\";s:8:\"prefetch\";i:1;}s:17:\"fatalErrorHandler\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:17:\"fatalErrorHandler\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Fatal Error Handler\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"Enter the path and class for a custom PHP error-handling function if you want to override built-in CiviCRM error handling for your site.\";s:8:\"prefetch\";i:1;}s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:16:\"Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:0:\"\";}s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Image Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:29:\"Custom Files Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"customTemplateDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:17:\"customTemplateDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:25:\"Custom Template Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"customPHPPathDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:16:\"customPHPPathDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Custom PHP Path\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:13:\"extensionsDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:13:\"extensionsDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:20:\"Extensions Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"event_enable_cart\";a:12:{s:4:\"name\";s:11:\"enable_cart\";s:10:\"group_name\";s:17:\"Event Preferences\";s:5:\"group\";s:5:\"event\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:7:\"default\";i:0;s:3:\"add\";d:4.0999999999999996;s:5:\"title\";s:17:\"Enable Event Cart\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:1;s:11:\"description\";s:8:\"WRITE ME\";s:9:\"help_text\";s:8:\"WRITE ME\";}s:25:\"monetaryThousandSeparator\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:25:\"monetaryThousandSeparator\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\",\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Thousands Separator\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"monetaryDecimalPoint\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:20:\"monetaryDecimalPoint\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\".\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Decimal Delimiter\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:11:\"moneyformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:11:\"moneyformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:5:\"%c %a\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"moneyvalueformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:16:\"moneyvalueformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:3:\"%!i\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"defaultCurrency\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:15:\"defaultCurrency\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:3:\"USD\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Currency\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:75:\"Default currency assigned to contributions and other monetary transactions.\";s:9:\"help_text\";N;}s:21:\"defaultContactCountry\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:21:\"defaultContactCountry\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:4;}s:7:\"default\";s:4:\"1228\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Default Country\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:68:\"This value is selected by default when adding a new contact address.\";s:9:\"help_text\";N;}s:12:\"countryLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:12:\"countryLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Available Countries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"provinceLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"provinceLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Available States and Provinces\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"inheritLocale\";a:14:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"inheritLocale\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Inherit CMS Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:18:\"dateformatDatetime\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:18:\"dateformatDatetime\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:20:\"%B %E%f, %Y %l:%M %P\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Complete Date and Time\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:14:\"dateformatFull\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:14:\"dateformatFull\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:11:\"%B %E%f, %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Complete Date\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:17:\"dateformatPartial\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:17:\"dateformatPartial\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"%B %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:14:\"Month and Year\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:10:\"lcMessages\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:10:\"lcMessages\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"en_US\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:20:\"profile_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"profile_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:22:\"track_civimail_replies\";a:13:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:22:\"track_civimail_replies\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:43:\"Track replies using VERP in Reply-To header\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:78:\"If checked, mailings will default to tracking replies using VERP-ed Reply-To. \";s:9:\"help_text\";N;s:17:\"validate_callback\";s:41:\"CRM_Core_BAO_Setting::validateBoolSetting\";}s:17:\"civimail_workflow\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:17:\"civimail_workflow\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:21:\"Use CiviMail Workflow\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:25:\"civimail_server_wide_lock\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:25:\"civimail_server_wide_lock\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:39:\"Lock Mails Server-Wide for Mail Sending\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"replyTo\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:7:\"replyTo\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Enable Custom Reply-To\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Allow CiviMail users to send mailings with a custom Reply-To header\";s:9:\"help_text\";N;}s:15:\"mailing_backend\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:15:\"mailing_backend\";s:4:\"type\";s:5:\"Array\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Mailing Backend\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:33:\"profile_add_to_group_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:33:\"profile_add_to_group_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:30:\"disable_mandatory_tokens_check\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:30:\"disable_mandatory_tokens_check\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:34:\"Disable check for mandatory tokens\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:345:\"Don\'t check for presence of mandatory tokens (domain address; unsubscribe/opt-out) before sending mailings. WARNING: Mandatory tokens are a safe-guard which facilitate compliance with the US CAN-SPAM Act. They should only be disabled if your organization adopts other mechanisms for compliance or if your organization is not subject to CAN-SPAM.\";s:9:\"help_text\";N;}s:20:\"dedupe_email_default\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"dedupe_email_default\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:44:\"CiviMail dedupes e-mail addresses by default\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"Set the \"dedupe e-mail\" option when sending a new mailing to \"true\" by default.\";s:9:\"help_text\";N;}s:16:\"hash_mailing_url\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:16:\"hash_mailing_url\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:20:\"Hashed Mailing URL\'s\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:131:\"If enabled, a randomized hash key will be used to reference the mailing URL in the mailing.viewUrl token, instead of the mailing ID\";s:9:\"help_text\";N;}s:33:\"default_renewal_contribution_page\";a:13:{s:10:\"group_name\";s:18:\"Member Preferences\";s:5:\"group\";s:6:\"member\";s:4:\"name\";s:33:\"default_renewal_contribution_page\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:14:\"pseudoconstant\";a:1:{s:4:\"name\";s:16:\"contributionPage\";}s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Default online membership renewal page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:348:\"If you select a default online contribution page for self-service membership renewals, a \"renew\" link pointing to that page will be displayed on the Contact Dashboard for memberships which were entered offline. You will need to ensure that the membership block for the selected online contribution page includes any currently available memberships.\";s:9:\"help_text\";N;}s:10:\"is_enabled\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:10:\"is_enabled\";s:5:\"title\";s:20:\"Multisite Is enabled\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"Multisite is enabled\";s:9:\"help_text\";N;}s:15:\"domain_group_id\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:15:\"domain_group_id\";s:5:\"title\";s:22:\"Multisite Domain Group\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"event_price_set_domain_id\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:25:\"event_price_set_domain_id\";s:5:\"title\";s:22:\"Domain Event Price Set\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:19:\"uniq_email_per_site\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:19:\"uniq_email_per_site\";s:4:\"type\";s:7:\"Integer\";s:5:\"title\";s:24:\"Unique Email per Domain?\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:25:\"search_autocomplete_count\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:25:\"search_autocomplete_count\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:2;}s:7:\"default\";i:10;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Autocomplete Results\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:86:\"The maximum number of contacts to show at a time when typing in an autocomplete field.\";s:9:\"help_text\";N;}s:17:\"enable_innodb_fts\";a:14:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:17:\"enable_innodb_fts\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:23:\"InnoDB Full Text Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Enable InnoDB full-text search optimizations. (Requires MySQL 5.6+)\";s:9:\"help_text\";N;s:9:\"on_change\";a:1:{i:0;a:2:{i:0;s:22:\"CRM_Core_InnoDBIndexer\";i:1;s:11:\"onToggleFts\";}}}s:14:\"fts_query_mode\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:14:\"fts_query_mode\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:6:\"simple\";s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"How to handle full-tet queries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:24:\"userFrameworkResourceURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";s:5:\"title\";s:28:\"Script and CSS Resources URL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"CiviCRM Resource URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:14:\"imageUploadURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:5:\"title\";s:16:\"Image URL Prefix\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:12:\"customCSSURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:12:\"customCSSURL\";s:5:\"title\";s:10:\"Custom CSS\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:22:\"Custom CiviCRM CSS URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-04-29 03:27:44',NULL),(2,'CiviCRM setting Specs','settingsMetadata__','a:92:{s:32:\"address_standardization_provider\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:32:\"address_standardization_provider\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:33:\"Address Standardization Provider.\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:492:\"CiviCRM includes an optional plugin for interfacing with the United States Postal Services (USPS) Address Standardization web service. You must register to use the USPS service at https://www.usps.com/business/web-tools-apis/address-information.htm. If you are approved, they will provide you with a User ID and the URL for the service. Plugins for other address standardization services may be available from 3rd party developers. If installed, they will be included in the drop-down below. \";}s:30:\"address_standardization_userid\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:30:\"address_standardization_userid\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Web service user ID\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:27:\"address_standardization_url\";a:13:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:27:\"address_standardization_url\";s:4:\"type\";s:4:\"Text\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Web Service URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:15:\"Web Service URL\";s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:15:\"tag_unconfirmed\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:15:\"tag_unconfirmed\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:11:\"Unconfirmed\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:36:\"Tag for Unconfirmed Petition Signers\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:17:\"petition_contacts\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:17:\"petition_contacts\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:17:\"Petition Contacts\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:22:\"Petition Signers Group\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:23:\"cvv_backoffice_required\";a:12:{s:10:\"group_name\";s:22:\"Contribute Preferences\";s:5:\"group\";s:10:\"contribute\";s:4:\"name\";s:23:\"cvv_backoffice_required\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:28:\"CVV required for backoffice?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:65:\"Is the CVV code required for back office credit card transactions\";s:9:\"help_text\";s:137:\"If set it back-office credit card transactions will required a cvv code. Leave as required unless you have a very strong reason to change\";}s:20:\"contact_view_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_view_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_view_options\";}s:7:\"default\";s:28:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 113\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Viewing Contacts\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"contact_edit_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_edit_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_edit_options\";}s:7:\"default\";s:25:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Editing Contacts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:23:\"advanced_search_options\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:4:\"name\";s:23:\"advanced_search_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:23:\"advanced_search_options\";}s:7:\"default\";s:43:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 112\ 113\ 115\ 116\ 117\ 118\ 119\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Contact Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:22:\"user_dashboard_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"user_dashboard_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:22:\"user_dashboard_options\";}s:7:\"default\";s:17:\"\ 11\ 12\ 13\ 14\ 15\ 17\ 18\ 19\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:17:\"Contact Dashboard\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"address_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"address_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:15:\"address_options\";}s:7:\"default\";s:19:\"\ 11\ 12\ 14\ 15\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Addressing Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"address_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"address_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:8:\"TextArea\";s:7:\"default\";s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Address Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"mailing_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"mailing_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Mailing Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"display_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"display_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Display Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"sort_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"sort_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:43:\"{contact.last_name}{, }{contact.first_name}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Sort Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:9:\"editor_id\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"editor_id\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Wysiwig Editor\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:26:\"contact_ajax_check_similar\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:26:\"contact_ajax_check_similar\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Ajax Check Similar\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"ajaxPopupsEnabled\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"ajaxPopupsEnabled\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:19:\"Ajax Popups Enabled\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:30:\"activity_assignee_notification\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:30:\"activity_assignee_notification\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:25:\"Notify Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:34:\"activity_assignee_notification_ics\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:34:\"activity_assignee_notification_ics\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:41:\"Include ICal Invite to Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:28:\"contact_autocomplete_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:28:\"contact_autocomplete_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:28:\"contact_autocomplete_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Contact Reference Autocomplete Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"contact_reference_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:25:\"contact_reference_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:25:\"contact_reference_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:25:\"Contact Reference Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"max_attachments\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"max_attachments\";s:10:\"legacy_key\";s:14:\"maxAttachments\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Maximum Attachments\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:93:\"Maximum number of files (documents, images, etc.) which can attached to emails or activities.\";s:9:\"help_text\";N;}s:11:\"maxFileSize\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"maxFileSize\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:25:\"Maximum File Size (in MB)\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:140:\"Maximum Size of file (documents, images, etc.) which can attached to emails or activities.<br />Note: php.ini should support this file size.\";s:9:\"help_text\";N;}s:16:\"contact_undelete\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"contact_undelete\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:26:\"Contact Trash and Undelete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:200:\"If enabled, deleted contacts will be moved to trash (instead of being destroyed). Users with the proper permission are able to search for the deleted contacts and restore them (or delete permanently).\";s:9:\"help_text\";N;}s:24:\"allowPermDeleteFinancial\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:24:\"allowPermDeleteFinancial\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";b:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:24:\"Contact Permanent Delete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:81:\"Allow Permanent Delete for contacts who are linked to live financial transactions\";s:9:\"help_text\";N;}s:12:\"versionAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:18:\"New Version Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:19:\"securityUpdateAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"securityUpdateAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Security Update Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:12:\"versionCheck\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:31:\"Automatically Check for Updates\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:22:\"versionCheckIgnoreDate\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"versionCheckIgnoreDate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:11:\"placeholder\";s:10:\"YYYY-MM-DD\";}s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:23:\"Ignore Updates Prior to\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"securityAlert\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:13:\"securityAlert\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Security Audits\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:122:\"If enabled, CiviCRM will automatically run checks for significant mis-configurations such as ineffective file protections.\";s:9:\"help_text\";N;}s:21:\"doNotAttachPDFReceipt\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"doNotAttachPDFReceipt\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:27:\"Attach PDF copy to receipts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:98:\"If enabled, CiviCRM sends PDF receipt as an attachment during event signup or online contribution.\";s:9:\"help_text\";N;}s:15:\"wkhtmltopdfPath\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"wkhtmltopdfPath\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:256;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Path to wkhtmltopdf executable\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:18:\"recaptchaPublicKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:18:\"recaptchaPublicKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Recaptcha Public Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"recaptchaPrivateKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"recaptchaPrivateKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:21:\"Recaptcha Private Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:21:\"dashboardCacheTimeout\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"dashboardCacheTimeout\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:3;s:9:\"maxlength\";i:5;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Dashboard cache timeout\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"checksumTimeout\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"checksumTimeout\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";i:7;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Checksum Lifespan\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"blogUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:7:\"blogUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Blog Feed URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:38:\"Blog feed URL used by the blog dashlet\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:20:\"communityMessagesUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"communityMessagesUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Community Messages URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:44:\"Service providing CiviCRM community messages\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:12:\"resCacheCode\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"resCacheCode\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Resource Cache Code\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:62:\"Code appended to resource URLs (JS/CSS) to coerce HTTP caching\";s:9:\"help_text\";N;}s:9:\"verifySSL\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"verifySSL\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:11:\"Verify SSL?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"If disabled, backend HTTPS services will allow unverified, insecure connections\";s:9:\"help_text\";s:140:\"Unless you are absolutely unable to configure your server to check the SSL certificate of the remote server you should leave this set to Yes\";}s:10:\"wpBasePage\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:10:\"wpBasePage\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"text\";s:15:\"quick_form_type\";s:7:\"Element\";s:8:\"prefetch\";i:1;s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"WordPress Base Page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:54:\"If set, CiviCRM will use this setting as the base url.\";s:9:\"help_text\";s:177:\"By default, CiviCRM will generate front-facing pages using the home page at http://wp/ as its base. If you want to use a different template for CiviCRM pages, set the path here.\";}s:23:\"secondDegRelPermissions\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:23:\"secondDegRelPermissions\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:44:\"Allow second-degree relationship permissions\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"If enabled, contacts with the permission to edit a related contact will inherit that contact\'s permission to edit other related contacts\";s:9:\"help_text\";N;}s:17:\"enable_components\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"enable_components\";s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:17:\"Enable Components\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;s:9:\"on_change\";a:3:{i:0;s:33:\"CRM_Case_Info::onToggleComponents\";i:1;s:42:\"CRM_Core_Component::flushEnabledComponents\";i:2;s:31:\"call://resources/resetCacheCode\";}}s:16:\"disable_core_css\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"disable_core_css\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:19:\"Disable CiviCRM css\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:55:\"Prevent the stylesheet \"civicrm.css\" from being loaded.\";s:9:\"help_text\";N;}s:11:\"empoweredBy\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"empoweredBy\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"Display \"empowered by CiviCRM\"\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:80:\"When enabled, \"empowered by CiviCRM\" is displayed at the bottom of public forms.\";s:9:\"help_text\";N;}s:20:\"userFrameworkLogging\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:20:\"userFrameworkLogging\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Enable Drupal Watchdog Logging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:101:\"Set this value to Yes if you want CiviCRM error/debugging messages to appear in the Drupal error logs\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:239:\"Set this value to Yes if you want CiviCRM error/debugging messages the appear in your CMS\' error log. In the case of Drupal, this will cause all CiviCRM error messages to appear in the watchdog (assuming you have Drupal\'s watchdog enabled)\";}s:13:\"debug_enabled\";a:14:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:13:\"debug_enabled\";s:10:\"config_key\";s:5:\"debug\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Enable Debugging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:130:\"Set this value to Yes if you want to use one of CiviCRM\'s debugging tools. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:39:\"Do not turn this on on production sites\";}s:9:\"backtrace\";a:12:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:9:\"backtrace\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Display Backtrace\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:155:\"Set this value to Yes if you want to display a backtrace listing when a fatal error is encountered. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;}s:18:\"fatalErrorTemplate\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:18:\"fatalErrorTemplate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:20:\"CRM/common/fatal.tpl\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Fatal Error Template\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:123:\"Enter the path and filename for a custom Smarty template if you want to define your own screen for displaying fatal errors.\";s:8:\"prefetch\";i:1;}s:17:\"fatalErrorHandler\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:17:\"fatalErrorHandler\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Fatal Error Handler\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"Enter the path and class for a custom PHP error-handling function if you want to override built-in CiviCRM error handling for your site.\";s:8:\"prefetch\";i:1;}s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:16:\"Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:0:\"\";}s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Image Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:29:\"Custom Files Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"customTemplateDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:17:\"customTemplateDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:25:\"Custom Template Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"customPHPPathDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:16:\"customPHPPathDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Custom PHP Path\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:13:\"extensionsDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:13:\"extensionsDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:20:\"Extensions Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"event_enable_cart\";a:12:{s:4:\"name\";s:11:\"enable_cart\";s:10:\"group_name\";s:17:\"Event Preferences\";s:5:\"group\";s:5:\"event\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:7:\"default\";i:0;s:3:\"add\";d:4.0999999999999996;s:5:\"title\";s:17:\"Enable Event Cart\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:1;s:11:\"description\";s:8:\"WRITE ME\";s:9:\"help_text\";s:8:\"WRITE ME\";}s:25:\"monetaryThousandSeparator\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:25:\"monetaryThousandSeparator\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\",\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Thousands Separator\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"monetaryDecimalPoint\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:20:\"monetaryDecimalPoint\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\".\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Decimal Delimiter\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:11:\"moneyformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:11:\"moneyformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:5:\"%c %a\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"moneyvalueformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:16:\"moneyvalueformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:3:\"%!i\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"defaultCurrency\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:15:\"defaultCurrency\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:3:\"USD\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Currency\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:75:\"Default currency assigned to contributions and other monetary transactions.\";s:9:\"help_text\";N;}s:21:\"defaultContactCountry\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:21:\"defaultContactCountry\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:4;}s:7:\"default\";s:4:\"1228\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Default Country\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:68:\"This value is selected by default when adding a new contact address.\";s:9:\"help_text\";N;}s:12:\"countryLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:12:\"countryLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Available Countries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"provinceLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"provinceLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Available States and Provinces\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"inheritLocale\";a:14:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"inheritLocale\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Inherit CMS Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:18:\"dateformatDatetime\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:18:\"dateformatDatetime\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:20:\"%B %E%f, %Y %l:%M %P\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Complete Date and Time\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:14:\"dateformatFull\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:14:\"dateformatFull\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:11:\"%B %E%f, %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Complete Date\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:17:\"dateformatPartial\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:17:\"dateformatPartial\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"%B %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:14:\"Month and Year\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:10:\"lcMessages\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:10:\"lcMessages\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"en_US\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:20:\"profile_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"profile_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:22:\"track_civimail_replies\";a:13:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:22:\"track_civimail_replies\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:43:\"Track replies using VERP in Reply-To header\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:78:\"If checked, mailings will default to tracking replies using VERP-ed Reply-To. \";s:9:\"help_text\";N;s:17:\"validate_callback\";s:41:\"CRM_Core_BAO_Setting::validateBoolSetting\";}s:17:\"civimail_workflow\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:17:\"civimail_workflow\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:21:\"Use CiviMail Workflow\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:25:\"civimail_server_wide_lock\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:25:\"civimail_server_wide_lock\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:39:\"Lock Mails Server-Wide for Mail Sending\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"replyTo\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:7:\"replyTo\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Enable Custom Reply-To\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Allow CiviMail users to send mailings with a custom Reply-To header\";s:9:\"help_text\";N;}s:15:\"mailing_backend\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:15:\"mailing_backend\";s:4:\"type\";s:5:\"Array\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Mailing Backend\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:33:\"profile_add_to_group_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:33:\"profile_add_to_group_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:30:\"disable_mandatory_tokens_check\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:30:\"disable_mandatory_tokens_check\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:34:\"Disable check for mandatory tokens\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:345:\"Don\'t check for presence of mandatory tokens (domain address; unsubscribe/opt-out) before sending mailings. WARNING: Mandatory tokens are a safe-guard which facilitate compliance with the US CAN-SPAM Act. They should only be disabled if your organization adopts other mechanisms for compliance or if your organization is not subject to CAN-SPAM.\";s:9:\"help_text\";N;}s:20:\"dedupe_email_default\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"dedupe_email_default\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:44:\"CiviMail dedupes e-mail addresses by default\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"Set the \"dedupe e-mail\" option when sending a new mailing to \"true\" by default.\";s:9:\"help_text\";N;}s:16:\"hash_mailing_url\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:16:\"hash_mailing_url\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:20:\"Hashed Mailing URL\'s\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:131:\"If enabled, a randomized hash key will be used to reference the mailing URL in the mailing.viewUrl token, instead of the mailing ID\";s:9:\"help_text\";N;}s:33:\"default_renewal_contribution_page\";a:13:{s:10:\"group_name\";s:18:\"Member Preferences\";s:5:\"group\";s:6:\"member\";s:4:\"name\";s:33:\"default_renewal_contribution_page\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:14:\"pseudoconstant\";a:1:{s:4:\"name\";s:16:\"contributionPage\";}s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Default online membership renewal page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:348:\"If you select a default online contribution page for self-service membership renewals, a \"renew\" link pointing to that page will be displayed on the Contact Dashboard for memberships which were entered offline. You will need to ensure that the membership block for the selected online contribution page includes any currently available memberships.\";s:9:\"help_text\";N;}s:10:\"is_enabled\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:10:\"is_enabled\";s:5:\"title\";s:20:\"Multisite Is enabled\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"Multisite is enabled\";s:9:\"help_text\";N;}s:15:\"domain_group_id\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:15:\"domain_group_id\";s:5:\"title\";s:22:\"Multisite Domain Group\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"event_price_set_domain_id\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:25:\"event_price_set_domain_id\";s:5:\"title\";s:22:\"Domain Event Price Set\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:19:\"uniq_email_per_site\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:19:\"uniq_email_per_site\";s:4:\"type\";s:7:\"Integer\";s:5:\"title\";s:24:\"Unique Email per Domain?\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:25:\"search_autocomplete_count\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:25:\"search_autocomplete_count\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:2;}s:7:\"default\";i:10;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Autocomplete Results\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:86:\"The maximum number of contacts to show at a time when typing in an autocomplete field.\";s:9:\"help_text\";N;}s:17:\"enable_innodb_fts\";a:14:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:17:\"enable_innodb_fts\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:23:\"InnoDB Full Text Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Enable InnoDB full-text search optimizations. (Requires MySQL 5.6+)\";s:9:\"help_text\";N;s:9:\"on_change\";a:1:{i:0;a:2:{i:0;s:22:\"CRM_Core_InnoDBIndexer\";i:1;s:11:\"onToggleFts\";}}}s:14:\"fts_query_mode\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:14:\"fts_query_mode\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:6:\"simple\";s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"How to handle full-tet queries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:24:\"userFrameworkResourceURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";s:5:\"title\";s:28:\"Script and CSS Resources URL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"CiviCRM Resource URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:14:\"imageUploadURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:5:\"title\";s:16:\"Image URL Prefix\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:12:\"customCSSURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:12:\"customCSSURL\";s:5:\"title\";s:10:\"Custom CSS\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:22:\"Custom CiviCRM CSS URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-04-29 03:27:44',NULL),(3,'CiviCRM setting Specs','settingsMetadata_1__name_address_standardization_provider','a:1:{s:32:\"address_standardization_provider\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:32:\"address_standardization_provider\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:33:\"Address Standardization Provider.\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:492:\"CiviCRM includes an optional plugin for interfacing with the United States Postal Services (USPS) Address Standardization web service. You must register to use the USPS service at https://www.usps.com/business/web-tools-apis/address-information.htm. If you are approved, they will provide you with a User ID and the URL for the service. Plugins for other address standardization services may be available from 3rd party developers. If installed, they will be included in the drop-down below. \";}}',NULL,'2015-04-29 03:27:44',NULL),(4,'CiviCRM setting Specs','settingsMetadata_1__name_address_standardization_userid','a:1:{s:30:\"address_standardization_userid\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:30:\"address_standardization_userid\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Web service user ID\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:44',NULL),(5,'CiviCRM setting Specs','settingsMetadata_1__name_address_standardization_url','a:1:{s:27:\"address_standardization_url\";a:13:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:27:\"address_standardization_url\";s:4:\"type\";s:4:\"Text\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Web Service URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:15:\"Web Service URL\";s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-04-29 03:27:44',NULL),(6,'CiviCRM setting Specs','settingsMetadata_1__name_cvv_backoffice_required','a:1:{s:23:\"cvv_backoffice_required\";a:12:{s:10:\"group_name\";s:22:\"Contribute Preferences\";s:5:\"group\";s:10:\"contribute\";s:4:\"name\";s:23:\"cvv_backoffice_required\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:28:\"CVV required for backoffice?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:65:\"Is the CVV code required for back office credit card transactions\";s:9:\"help_text\";s:137:\"If set it back-office credit card transactions will required a cvv code. Leave as required unless you have a very strong reason to change\";}}',NULL,'2015-04-29 03:27:44',NULL),(7,'CiviCRM setting Specs','settingsMetadata___name_cvv_backoffice_required','a:1:{s:23:\"cvv_backoffice_required\";a:12:{s:10:\"group_name\";s:22:\"Contribute Preferences\";s:5:\"group\";s:10:\"contribute\";s:4:\"name\";s:23:\"cvv_backoffice_required\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:28:\"CVV required for backoffice?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:65:\"Is the CVV code required for back office credit card transactions\";s:9:\"help_text\";s:137:\"If set it back-office credit card transactions will required a cvv code. Leave as required unless you have a very strong reason to change\";}}',NULL,'2015-04-29 03:27:44',NULL),(8,'CiviCRM setting Specs','settingsMetadata_1__name_ajaxPopupsEnabled','a:1:{s:17:\"ajaxPopupsEnabled\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"ajaxPopupsEnabled\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:19:\"Ajax Popups Enabled\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:44',NULL),(9,'CiviCRM setting Specs','settingsMetadata___name_ajaxPopupsEnabled','a:1:{s:17:\"ajaxPopupsEnabled\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"ajaxPopupsEnabled\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:19:\"Ajax Popups Enabled\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:44',NULL),(10,'CiviCRM setting Specs','settingsMetadata_1__name_max_attachments','a:1:{s:15:\"max_attachments\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"max_attachments\";s:10:\"legacy_key\";s:14:\"maxAttachments\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Maximum Attachments\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:93:\"Maximum number of files (documents, images, etc.) which can attached to emails or activities.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:44',NULL),(11,'CiviCRM setting Specs','settingsMetadata___name_max_attachments','a:1:{s:15:\"max_attachments\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"max_attachments\";s:10:\"legacy_key\";s:14:\"maxAttachments\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Maximum Attachments\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:93:\"Maximum number of files (documents, images, etc.) which can attached to emails or activities.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:44',NULL),(12,'CiviCRM setting Specs','settingsMetadata_1__name_maxFileSize','a:1:{s:11:\"maxFileSize\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"maxFileSize\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:25:\"Maximum File Size (in MB)\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:140:\"Maximum Size of file (documents, images, etc.) which can attached to emails or activities.<br />Note: php.ini should support this file size.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:44',NULL),(13,'CiviCRM setting Specs','settingsMetadata_1__name_contact_undelete','a:1:{s:16:\"contact_undelete\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"contact_undelete\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:26:\"Contact Trash and Undelete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:200:\"If enabled, deleted contacts will be moved to trash (instead of being destroyed). Users with the proper permission are able to search for the deleted contacts and restore them (or delete permanently).\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:44',NULL),(14,'CiviCRM setting Specs','settingsMetadata___name_contact_undelete','a:1:{s:16:\"contact_undelete\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"contact_undelete\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:26:\"Contact Trash and Undelete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:200:\"If enabled, deleted contacts will be moved to trash (instead of being destroyed). Users with the proper permission are able to search for the deleted contacts and restore them (or delete permanently).\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:44',NULL),(15,'CiviCRM setting Specs','settingsMetadata_1__name_allowPermDeleteFinancial','a:1:{s:24:\"allowPermDeleteFinancial\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:24:\"allowPermDeleteFinancial\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";b:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:24:\"Contact Permanent Delete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:81:\"Allow Permanent Delete for contacts who are linked to live financial transactions\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:44',NULL),(16,'CiviCRM setting Specs','settingsMetadata___name_allowPermDeleteFinancial','a:1:{s:24:\"allowPermDeleteFinancial\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:24:\"allowPermDeleteFinancial\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";b:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:24:\"Contact Permanent Delete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:81:\"Allow Permanent Delete for contacts who are linked to live financial transactions\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:44',NULL),(17,'CiviCRM setting Specs','settingsMetadata_1__name_versionAlert','a:1:{s:12:\"versionAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:18:\"New Version Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:44',NULL),(18,'CiviCRM setting Specs','settingsMetadata___name_versionAlert','a:1:{s:12:\"versionAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:18:\"New Version Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(19,'CiviCRM setting Specs','settingsMetadata_1__name_securityUpdateAlert','a:1:{s:19:\"securityUpdateAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"securityUpdateAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Security Update Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(20,'CiviCRM setting Specs','settingsMetadata___name_securityUpdateAlert','a:1:{s:19:\"securityUpdateAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"securityUpdateAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Security Update Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(21,'CiviCRM setting Specs','settingsMetadata_1__name_versionCheck','a:1:{s:12:\"versionCheck\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:31:\"Automatically Check for Updates\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(22,'CiviCRM setting Specs','settingsMetadata___name_versionCheck','a:1:{s:12:\"versionCheck\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:31:\"Automatically Check for Updates\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(23,'CiviCRM setting Specs','settingsMetadata_1__name_versionCheckIgnoreDate','a:1:{s:22:\"versionCheckIgnoreDate\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"versionCheckIgnoreDate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:11:\"placeholder\";s:10:\"YYYY-MM-DD\";}s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:23:\"Ignore Updates Prior to\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(24,'CiviCRM setting Specs','settingsMetadata___name_versionCheckIgnoreDate','a:1:{s:22:\"versionCheckIgnoreDate\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"versionCheckIgnoreDate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:11:\"placeholder\";s:10:\"YYYY-MM-DD\";}s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:23:\"Ignore Updates Prior to\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(25,'CiviCRM setting Specs','settingsMetadata_1__name_securityAlert','a:1:{s:13:\"securityAlert\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:13:\"securityAlert\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Security Audits\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:122:\"If enabled, CiviCRM will automatically run checks for significant mis-configurations such as ineffective file protections.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(26,'CiviCRM setting Specs','settingsMetadata___name_securityAlert','a:1:{s:13:\"securityAlert\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:13:\"securityAlert\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Security Audits\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:122:\"If enabled, CiviCRM will automatically run checks for significant mis-configurations such as ineffective file protections.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(27,'CiviCRM setting Specs','settingsMetadata_1__name_doNotAttachPDFReceipt','a:1:{s:21:\"doNotAttachPDFReceipt\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"doNotAttachPDFReceipt\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:27:\"Attach PDF copy to receipts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:98:\"If enabled, CiviCRM sends PDF receipt as an attachment during event signup or online contribution.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(28,'CiviCRM setting Specs','settingsMetadata_1__name_wkhtmltopdfPath','a:1:{s:15:\"wkhtmltopdfPath\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"wkhtmltopdfPath\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:256;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Path to wkhtmltopdf executable\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(29,'CiviCRM setting Specs','settingsMetadata_1__name_recaptchaPublicKey','a:1:{s:18:\"recaptchaPublicKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:18:\"recaptchaPublicKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Recaptcha Public Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(30,'CiviCRM setting Specs','settingsMetadata_1__name_recaptchaPrivateKey','a:1:{s:19:\"recaptchaPrivateKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"recaptchaPrivateKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:21:\"Recaptcha Private Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(31,'CiviCRM setting Specs','settingsMetadata_1__name_dashboardCacheTimeout','a:1:{s:21:\"dashboardCacheTimeout\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"dashboardCacheTimeout\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:3;s:9:\"maxlength\";i:5;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Dashboard cache timeout\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(32,'CiviCRM setting Specs','settingsMetadata_1__name_checksumTimeout','a:1:{s:15:\"checksumTimeout\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"checksumTimeout\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";i:7;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Checksum Lifespan\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(33,'CiviCRM setting Specs','settingsMetadata_1__name_blogUrl','a:1:{s:7:\"blogUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:7:\"blogUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Blog Feed URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:38:\"Blog feed URL used by the blog dashlet\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}}',NULL,'2015-04-29 03:27:45',NULL),(34,'CiviCRM setting Specs','settingsMetadata___name_blogUrl','a:1:{s:7:\"blogUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:7:\"blogUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Blog Feed URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:38:\"Blog feed URL used by the blog dashlet\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}}',NULL,'2015-04-29 03:27:45',NULL),(35,'CiviCRM setting Specs','settingsMetadata_1__name_communityMessagesUrl','a:1:{s:20:\"communityMessagesUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"communityMessagesUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Community Messages URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:44:\"Service providing CiviCRM community messages\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}}',NULL,'2015-04-29 03:27:45',NULL),(36,'CiviCRM setting Specs','settingsMetadata___name_communityMessagesUrl','a:1:{s:20:\"communityMessagesUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"communityMessagesUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Community Messages URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:44:\"Service providing CiviCRM community messages\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}}',NULL,'2015-04-29 03:27:45',NULL),(37,'CiviCRM setting Specs','settingsMetadata_1__name_resCacheCode','a:1:{s:12:\"resCacheCode\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"resCacheCode\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Resource Cache Code\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:62:\"Code appended to resource URLs (JS/CSS) to coerce HTTP caching\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:45',NULL),(38,'CiviCRM setting Specs','settingsMetadata_1__name_verifySSL','a:1:{s:9:\"verifySSL\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"verifySSL\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:11:\"Verify SSL?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"If disabled, backend HTTPS services will allow unverified, insecure connections\";s:9:\"help_text\";s:140:\"Unless you are absolutely unable to configure your server to check the SSL certificate of the remote server you should leave this set to Yes\";}}',NULL,'2015-04-29 03:27:45',NULL),(39,'CiviCRM setting Specs','settingsMetadata___name_verifySSL','a:1:{s:9:\"verifySSL\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"verifySSL\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:11:\"Verify SSL?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"If disabled, backend HTTPS services will allow unverified, insecure connections\";s:9:\"help_text\";s:140:\"Unless you are absolutely unable to configure your server to check the SSL certificate of the remote server you should leave this set to Yes\";}}',NULL,'2015-04-29 03:27:46',NULL),(40,'CiviCRM setting Specs','settingsMetadata_1__name_wpBasePage','a:1:{s:10:\"wpBasePage\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:10:\"wpBasePage\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"text\";s:15:\"quick_form_type\";s:7:\"Element\";s:8:\"prefetch\";i:1;s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"WordPress Base Page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:54:\"If set, CiviCRM will use this setting as the base url.\";s:9:\"help_text\";s:177:\"By default, CiviCRM will generate front-facing pages using the home page at http://wp/ as its base. If you want to use a different template for CiviCRM pages, set the path here.\";}}',NULL,'2015-04-29 03:27:46',NULL),(41,'CiviCRM setting Specs','settingsMetadata_1__name_secondDegRelPermissions','a:1:{s:23:\"secondDegRelPermissions\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:23:\"secondDegRelPermissions\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:44:\"Allow second-degree relationship permissions\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"If enabled, contacts with the permission to edit a related contact will inherit that contact\'s permission to edit other related contacts\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:46',NULL),(42,'CiviCRM setting Specs','settingsMetadata_1__name_enable_components','a:1:{s:17:\"enable_components\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"enable_components\";s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:17:\"Enable Components\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;s:9:\"on_change\";a:3:{i:0;s:33:\"CRM_Case_Info::onToggleComponents\";i:1;s:42:\"CRM_Core_Component::flushEnabledComponents\";i:2;s:31:\"call://resources/resetCacheCode\";}}}',NULL,'2015-04-29 03:27:46',NULL),(43,'CiviCRM setting Specs','settingsMetadata___name_enable_components','a:1:{s:17:\"enable_components\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"enable_components\";s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:17:\"Enable Components\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;s:9:\"on_change\";a:3:{i:0;s:33:\"CRM_Case_Info::onToggleComponents\";i:1;s:42:\"CRM_Core_Component::flushEnabledComponents\";i:2;s:31:\"call://resources/resetCacheCode\";}}}',NULL,'2015-04-29 03:27:46',NULL),(44,'CiviCRM setting Specs','settingsMetadata___name_resCacheCode','a:1:{s:12:\"resCacheCode\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"resCacheCode\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Resource Cache Code\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:62:\"Code appended to resource URLs (JS/CSS) to coerce HTTP caching\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:46',NULL),(45,'CiviCRM setting Specs','settingsMetadata_1__name_disable_core_css','a:1:{s:16:\"disable_core_css\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"disable_core_css\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:19:\"Disable CiviCRM css\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:55:\"Prevent the stylesheet \"civicrm.css\" from being loaded.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:46',NULL),(46,'CiviCRM setting Specs','settingsMetadata___name_disable_core_css','a:1:{s:16:\"disable_core_css\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"disable_core_css\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:19:\"Disable CiviCRM css\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:55:\"Prevent the stylesheet \"civicrm.css\" from being loaded.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:46',NULL),(47,'CiviCRM setting Specs','settingsMetadata_1__name_empoweredBy','a:1:{s:11:\"empoweredBy\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"empoweredBy\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"Display \"empowered by CiviCRM\"\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:80:\"When enabled, \"empowered by CiviCRM\" is displayed at the bottom of public forms.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:46',NULL),(48,'CiviCRM setting Specs','settingsMetadata___name_empoweredBy','a:1:{s:11:\"empoweredBy\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"empoweredBy\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"Display \"empowered by CiviCRM\"\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:80:\"When enabled, \"empowered by CiviCRM\" is displayed at the bottom of public forms.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:46',NULL),(49,'CiviCRM setting Specs','settingsMetadata_1__name_userFrameworkLogging','a:1:{s:20:\"userFrameworkLogging\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:20:\"userFrameworkLogging\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Enable Drupal Watchdog Logging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:101:\"Set this value to Yes if you want CiviCRM error/debugging messages to appear in the Drupal error logs\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:239:\"Set this value to Yes if you want CiviCRM error/debugging messages the appear in your CMS\' error log. In the case of Drupal, this will cause all CiviCRM error messages to appear in the watchdog (assuming you have Drupal\'s watchdog enabled)\";}}',NULL,'2015-04-29 03:27:46',NULL),(50,'CiviCRM setting Specs','settingsMetadata_1__name_debug_enabled','a:1:{s:13:\"debug_enabled\";a:14:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:13:\"debug_enabled\";s:10:\"config_key\";s:5:\"debug\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Enable Debugging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:130:\"Set this value to Yes if you want to use one of CiviCRM\'s debugging tools. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:39:\"Do not turn this on on production sites\";}}',NULL,'2015-04-29 03:27:46',NULL),(51,'CiviCRM setting Specs','settingsMetadata_1__name_backtrace','a:1:{s:9:\"backtrace\";a:12:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:9:\"backtrace\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Display Backtrace\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:155:\"Set this value to Yes if you want to display a backtrace listing when a fatal error is encountered. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;}}',NULL,'2015-04-29 03:27:46',NULL),(52,'CiviCRM setting Specs','settingsMetadata_1__name_fatalErrorTemplate','a:1:{s:18:\"fatalErrorTemplate\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:18:\"fatalErrorTemplate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:20:\"CRM/common/fatal.tpl\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Fatal Error Template\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:123:\"Enter the path and filename for a custom Smarty template if you want to define your own screen for displaying fatal errors.\";s:8:\"prefetch\";i:1;}}',NULL,'2015-04-29 03:27:46',NULL),(53,'CiviCRM setting Specs','settingsMetadata___name_fatalErrorTemplate','a:1:{s:18:\"fatalErrorTemplate\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:18:\"fatalErrorTemplate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:20:\"CRM/common/fatal.tpl\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Fatal Error Template\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:123:\"Enter the path and filename for a custom Smarty template if you want to define your own screen for displaying fatal errors.\";s:8:\"prefetch\";i:1;}}',NULL,'2015-04-29 03:27:46',NULL),(54,'CiviCRM setting Specs','settingsMetadata_1__name_fatalErrorHandler','a:1:{s:17:\"fatalErrorHandler\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:17:\"fatalErrorHandler\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Fatal Error Handler\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"Enter the path and class for a custom PHP error-handling function if you want to override built-in CiviCRM error handling for your site.\";s:8:\"prefetch\";i:1;}}',NULL,'2015-04-29 03:27:46',NULL),(55,'CiviCRM setting Specs','settingsMetadata_1__name_uploadDir','a:1:{s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:16:\"Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:0:\"\";}}',NULL,'2015-04-29 03:27:46',NULL),(56,'CiviCRM setting Specs','settingsMetadata_1__name_imageUploadDir','a:1:{s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Image Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(57,'CiviCRM setting Specs','settingsMetadata_1__name_customFileUploadDir','a:1:{s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:29:\"Custom Files Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(58,'CiviCRM setting Specs','settingsMetadata_1__name_customTemplateDir','a:1:{s:17:\"customTemplateDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:17:\"customTemplateDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:25:\"Custom Template Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(59,'CiviCRM setting Specs','settingsMetadata_1__name_customPHPPathDir','a:1:{s:16:\"customPHPPathDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:16:\"customPHPPathDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Custom PHP Path\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(60,'CiviCRM setting Specs','settingsMetadata_1__name_extensionsDir','a:1:{s:13:\"extensionsDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:13:\"extensionsDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:20:\"Extensions Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(61,'CiviCRM setting Specs','settingsMetadata_1__name_event_enable_cart','a:1:{s:17:\"event_enable_cart\";a:12:{s:4:\"name\";s:11:\"enable_cart\";s:10:\"group_name\";s:17:\"Event Preferences\";s:5:\"group\";s:5:\"event\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:7:\"default\";i:0;s:3:\"add\";d:4.0999999999999996;s:5:\"title\";s:17:\"Enable Event Cart\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:1;s:11:\"description\";s:8:\"WRITE ME\";s:9:\"help_text\";s:8:\"WRITE ME\";}}',NULL,'2015-04-29 03:27:47',NULL),(62,'CiviCRM setting Specs','settingsMetadata___name_event_enable_cart','a:1:{s:17:\"event_enable_cart\";a:12:{s:4:\"name\";s:11:\"enable_cart\";s:10:\"group_name\";s:17:\"Event Preferences\";s:5:\"group\";s:5:\"event\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:7:\"default\";i:0;s:3:\"add\";d:4.0999999999999996;s:5:\"title\";s:17:\"Enable Event Cart\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:1;s:11:\"description\";s:8:\"WRITE ME\";s:9:\"help_text\";s:8:\"WRITE ME\";}}',NULL,'2015-04-29 03:27:47',NULL),(63,'CiviCRM setting Specs','settingsMetadata_1__name_monetaryThousandSeparator','a:1:{s:25:\"monetaryThousandSeparator\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:25:\"monetaryThousandSeparator\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\",\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Thousands Separator\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(64,'CiviCRM setting Specs','settingsMetadata_1__name_monetaryDecimalPoint','a:1:{s:20:\"monetaryDecimalPoint\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:20:\"monetaryDecimalPoint\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\".\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Decimal Delimiter\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(65,'CiviCRM setting Specs','settingsMetadata_1__name_moneyformat','a:1:{s:11:\"moneyformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:11:\"moneyformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:5:\"%c %a\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(66,'CiviCRM setting Specs','settingsMetadata_1__name_moneyvalueformat','a:1:{s:16:\"moneyvalueformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:16:\"moneyvalueformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:3:\"%!i\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(67,'CiviCRM setting Specs','settingsMetadata_1__name_defaultCurrency','a:1:{s:15:\"defaultCurrency\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:15:\"defaultCurrency\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:3:\"USD\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Currency\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:75:\"Default currency assigned to contributions and other monetary transactions.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(68,'CiviCRM setting Specs','settingsMetadata_1__name_defaultContactCountry','a:1:{s:21:\"defaultContactCountry\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:21:\"defaultContactCountry\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:4;}s:7:\"default\";s:4:\"1228\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Default Country\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:68:\"This value is selected by default when adding a new contact address.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(69,'CiviCRM setting Specs','settingsMetadata_1__name_countryLimit','a:1:{s:12:\"countryLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:12:\"countryLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Available Countries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(70,'CiviCRM setting Specs','settingsMetadata_1__name_provinceLimit','a:1:{s:13:\"provinceLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"provinceLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Available States and Provinces\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(71,'CiviCRM setting Specs','settingsMetadata_1__name_inheritLocale','a:1:{s:13:\"inheritLocale\";a:14:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"inheritLocale\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Inherit CMS Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(72,'CiviCRM setting Specs','settingsMetadata_1__name_dateformatDatetime','a:1:{s:18:\"dateformatDatetime\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:18:\"dateformatDatetime\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:20:\"%B %E%f, %Y %l:%M %P\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Complete Date and Time\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(73,'CiviCRM setting Specs','settingsMetadata_1__name_dateformatFull','a:1:{s:14:\"dateformatFull\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:14:\"dateformatFull\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:11:\"%B %E%f, %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Complete Date\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(74,'CiviCRM setting Specs','settingsMetadata_1__name_dateformatPartial','a:1:{s:17:\"dateformatPartial\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:17:\"dateformatPartial\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"%B %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:14:\"Month and Year\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(75,'CiviCRM setting Specs','settingsMetadata_1__name_lcMessages','a:1:{s:10:\"lcMessages\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:10:\"lcMessages\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"en_US\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(76,'CiviCRM setting Specs','settingsMetadata_1__name_replyTo','a:1:{s:7:\"replyTo\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:7:\"replyTo\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Enable Custom Reply-To\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Allow CiviMail users to send mailings with a custom Reply-To header\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(77,'CiviCRM setting Specs','settingsMetadata___name_replyTo','a:1:{s:7:\"replyTo\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:7:\"replyTo\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Enable Custom Reply-To\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Allow CiviMail users to send mailings with a custom Reply-To header\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(78,'CiviCRM setting Specs','settingsMetadata_1__name_disable_mandatory_tokens_check','a:1:{s:30:\"disable_mandatory_tokens_check\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:30:\"disable_mandatory_tokens_check\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:34:\"Disable check for mandatory tokens\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:345:\"Don\'t check for presence of mandatory tokens (domain address; unsubscribe/opt-out) before sending mailings. WARNING: Mandatory tokens are a safe-guard which facilitate compliance with the US CAN-SPAM Act. They should only be disabled if your organization adopts other mechanisms for compliance or if your organization is not subject to CAN-SPAM.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(79,'CiviCRM setting Specs','settingsMetadata___name_disable_mandatory_tokens_check','a:1:{s:30:\"disable_mandatory_tokens_check\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:30:\"disable_mandatory_tokens_check\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:34:\"Disable check for mandatory tokens\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:345:\"Don\'t check for presence of mandatory tokens (domain address; unsubscribe/opt-out) before sending mailings. WARNING: Mandatory tokens are a safe-guard which facilitate compliance with the US CAN-SPAM Act. They should only be disabled if your organization adopts other mechanisms for compliance or if your organization is not subject to CAN-SPAM.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(80,'CiviCRM setting Specs','settingsMetadata_1__name_dedupe_email_default','a:1:{s:20:\"dedupe_email_default\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"dedupe_email_default\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:44:\"CiviMail dedupes e-mail addresses by default\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"Set the \"dedupe e-mail\" option when sending a new mailing to \"true\" by default.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:47',NULL),(81,'CiviCRM setting Specs','settingsMetadata___name_dedupe_email_default','a:1:{s:20:\"dedupe_email_default\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"dedupe_email_default\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:44:\"CiviMail dedupes e-mail addresses by default\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"Set the \"dedupe e-mail\" option when sending a new mailing to \"true\" by default.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:48',NULL),(82,'CiviCRM setting Specs','settingsMetadata_1__name_hash_mailing_url','a:1:{s:16:\"hash_mailing_url\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:16:\"hash_mailing_url\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:20:\"Hashed Mailing URL\'s\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:131:\"If enabled, a randomized hash key will be used to reference the mailing URL in the mailing.viewUrl token, instead of the mailing ID\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:48',NULL),(83,'CiviCRM setting Specs','settingsMetadata___name_hash_mailing_url','a:1:{s:16:\"hash_mailing_url\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:16:\"hash_mailing_url\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:20:\"Hashed Mailing URL\'s\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:131:\"If enabled, a randomized hash key will be used to reference the mailing URL in the mailing.viewUrl token, instead of the mailing ID\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:48',NULL),(84,'CiviCRM setting Specs','settingsMetadata_1__name_default_renewal_contribution_page','a:1:{s:33:\"default_renewal_contribution_page\";a:13:{s:10:\"group_name\";s:18:\"Member Preferences\";s:5:\"group\";s:6:\"member\";s:4:\"name\";s:33:\"default_renewal_contribution_page\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:14:\"pseudoconstant\";a:1:{s:4:\"name\";s:16:\"contributionPage\";}s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Default online membership renewal page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:348:\"If you select a default online contribution page for self-service membership renewals, a \"renew\" link pointing to that page will be displayed on the Contact Dashboard for memberships which were entered offline. You will need to ensure that the membership block for the selected online contribution page includes any currently available memberships.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:48',NULL),(85,'CiviCRM setting Specs','settingsMetadata_1__name_search_autocomplete_count','a:1:{s:25:\"search_autocomplete_count\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:25:\"search_autocomplete_count\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:2;}s:7:\"default\";i:10;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Autocomplete Results\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:86:\"The maximum number of contacts to show at a time when typing in an autocomplete field.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:48',NULL),(86,'CiviCRM setting Specs','settingsMetadata___name_search_autocomplete_count','a:1:{s:25:\"search_autocomplete_count\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:25:\"search_autocomplete_count\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:2;}s:7:\"default\";i:10;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Autocomplete Results\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:86:\"The maximum number of contacts to show at a time when typing in an autocomplete field.\";s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:48',NULL),(87,'CiviCRM setting Specs','settingsMetadata_1__name_enable_innodb_fts','a:1:{s:17:\"enable_innodb_fts\";a:14:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:17:\"enable_innodb_fts\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:23:\"InnoDB Full Text Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Enable InnoDB full-text search optimizations. (Requires MySQL 5.6+)\";s:9:\"help_text\";N;s:9:\"on_change\";a:1:{i:0;a:2:{i:0;s:22:\"CRM_Core_InnoDBIndexer\";i:1;s:11:\"onToggleFts\";}}}}',NULL,'2015-04-29 03:27:48',NULL),(88,'CiviCRM setting Specs','settingsMetadata___name_enable_innodb_fts','a:1:{s:17:\"enable_innodb_fts\";a:14:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:17:\"enable_innodb_fts\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:23:\"InnoDB Full Text Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Enable InnoDB full-text search optimizations. (Requires MySQL 5.6+)\";s:9:\"help_text\";N;s:9:\"on_change\";a:1:{i:0;a:2:{i:0;s:22:\"CRM_Core_InnoDBIndexer\";i:1;s:11:\"onToggleFts\";}}}}',NULL,'2015-04-29 03:27:48',NULL),(89,'CiviCRM setting Specs','settingsMetadata_1__name_fts_query_mode','a:1:{s:14:\"fts_query_mode\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:14:\"fts_query_mode\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:6:\"simple\";s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"How to handle full-tet queries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:48',NULL),(90,'CiviCRM setting Specs','settingsMetadata___name_fts_query_mode','a:1:{s:14:\"fts_query_mode\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:14:\"fts_query_mode\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:6:\"simple\";s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"How to handle full-tet queries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-04-29 03:27:48',NULL),(91,'CiviCRM setting Specs','settingsMetadata_1__name_userFrameworkResourceURL','a:1:{s:24:\"userFrameworkResourceURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";s:5:\"title\";s:28:\"Script and CSS Resources URL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"CiviCRM Resource URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-04-29 03:27:48',NULL),(92,'CiviCRM setting Specs','settingsMetadata_1__name_imageUploadURL','a:1:{s:14:\"imageUploadURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:5:\"title\";s:16:\"Image URL Prefix\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-04-29 03:27:48',NULL),(93,'CiviCRM setting Specs','settingsMetadata_1__name_customCSSURL','a:1:{s:12:\"customCSSURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:12:\"customCSSURL\";s:5:\"title\";s:10:\"Custom CSS\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:22:\"Custom CiviCRM CSS URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-04-29 03:27:48',NULL);
++INSERT INTO `civicrm_cache` (`id`, `group_name`, `path`, `data`, `component_id`, `created_date`, `expired_date`) VALUES (1,'CiviCRM setting Spec','All','a:92:{s:32:\"address_standardization_provider\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:32:\"address_standardization_provider\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:33:\"Address Standardization Provider.\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:492:\"CiviCRM includes an optional plugin for interfacing with the United States Postal Services (USPS) Address Standardization web service. You must register to use the USPS service at https://www.usps.com/business/web-tools-apis/address-information.htm. If you are approved, they will provide you with a User ID and the URL for the service. Plugins for other address standardization services may be available from 3rd party developers. If installed, they will be included in the drop-down below. \";}s:30:\"address_standardization_userid\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:30:\"address_standardization_userid\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Web service user ID\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:27:\"address_standardization_url\";a:13:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:27:\"address_standardization_url\";s:4:\"type\";s:4:\"Text\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Web Service URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:15:\"Web Service URL\";s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:15:\"tag_unconfirmed\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:15:\"tag_unconfirmed\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:11:\"Unconfirmed\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:36:\"Tag for Unconfirmed Petition Signers\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:17:\"petition_contacts\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:17:\"petition_contacts\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:17:\"Petition Contacts\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:22:\"Petition Signers Group\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:23:\"cvv_backoffice_required\";a:12:{s:10:\"group_name\";s:22:\"Contribute Preferences\";s:5:\"group\";s:10:\"contribute\";s:4:\"name\";s:23:\"cvv_backoffice_required\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:28:\"CVV required for backoffice?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:65:\"Is the CVV code required for back office credit card transactions\";s:9:\"help_text\";s:137:\"If set it back-office credit card transactions will required a cvv code. Leave as required unless you have a very strong reason to change\";}s:20:\"contact_view_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_view_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_view_options\";}s:7:\"default\";s:28:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 113\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Viewing Contacts\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"contact_edit_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_edit_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_edit_options\";}s:7:\"default\";s:25:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Editing Contacts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:23:\"advanced_search_options\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:4:\"name\";s:23:\"advanced_search_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:23:\"advanced_search_options\";}s:7:\"default\";s:43:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 112\ 113\ 115\ 116\ 117\ 118\ 119\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Contact Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:22:\"user_dashboard_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"user_dashboard_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:22:\"user_dashboard_options\";}s:7:\"default\";s:17:\"\ 11\ 12\ 13\ 14\ 15\ 17\ 18\ 19\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:17:\"Contact Dashboard\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"address_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"address_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:15:\"address_options\";}s:7:\"default\";s:19:\"\ 11\ 12\ 14\ 15\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Addressing Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"address_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"address_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:8:\"TextArea\";s:7:\"default\";s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Address Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"mailing_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"mailing_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Mailing Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"display_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"display_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Display Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"sort_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"sort_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:43:\"{contact.last_name}{, }{contact.first_name}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Sort Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:9:\"editor_id\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"editor_id\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Wysiwig Editor\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:26:\"contact_ajax_check_similar\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:26:\"contact_ajax_check_similar\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Ajax Check Similar\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"ajaxPopupsEnabled\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"ajaxPopupsEnabled\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:19:\"Ajax Popups Enabled\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:30:\"activity_assignee_notification\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:30:\"activity_assignee_notification\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:25:\"Notify Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:34:\"activity_assignee_notification_ics\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:34:\"activity_assignee_notification_ics\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:41:\"Include ICal Invite to Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:28:\"contact_autocomplete_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:28:\"contact_autocomplete_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:28:\"contact_autocomplete_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Contact Reference Autocomplete Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"contact_reference_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:25:\"contact_reference_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:25:\"contact_reference_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:25:\"Contact Reference Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"max_attachments\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"max_attachments\";s:10:\"legacy_key\";s:14:\"maxAttachments\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Maximum Attachments\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:93:\"Maximum number of files (documents, images, etc.) which can attached to emails or activities.\";s:9:\"help_text\";N;}s:11:\"maxFileSize\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"maxFileSize\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:25:\"Maximum File Size (in MB)\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:140:\"Maximum Size of file (documents, images, etc.) which can attached to emails or activities.<br />Note: php.ini should support this file size.\";s:9:\"help_text\";N;}s:16:\"contact_undelete\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"contact_undelete\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:26:\"Contact Trash and Undelete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:200:\"If enabled, deleted contacts will be moved to trash (instead of being destroyed). Users with the proper permission are able to search for the deleted contacts and restore them (or delete permanently).\";s:9:\"help_text\";N;}s:24:\"allowPermDeleteFinancial\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:24:\"allowPermDeleteFinancial\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";b:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:24:\"Contact Permanent Delete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:81:\"Allow Permanent Delete for contacts who are linked to live financial transactions\";s:9:\"help_text\";N;}s:12:\"versionAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:18:\"New Version Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:19:\"securityUpdateAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"securityUpdateAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Security Update Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:12:\"versionCheck\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:31:\"Automatically Check for Updates\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:22:\"versionCheckIgnoreDate\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"versionCheckIgnoreDate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:11:\"placeholder\";s:10:\"YYYY-MM-DD\";}s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:23:\"Ignore Updates Prior to\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"securityAlert\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:13:\"securityAlert\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Security Audits\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:122:\"If enabled, CiviCRM will automatically run checks for significant mis-configurations such as ineffective file protections.\";s:9:\"help_text\";N;}s:21:\"doNotAttachPDFReceipt\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"doNotAttachPDFReceipt\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:27:\"Attach PDF copy to receipts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:98:\"If enabled, CiviCRM sends PDF receipt as an attachment during event signup or online contribution.\";s:9:\"help_text\";N;}s:15:\"wkhtmltopdfPath\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"wkhtmltopdfPath\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:256;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Path to wkhtmltopdf executable\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:18:\"recaptchaPublicKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:18:\"recaptchaPublicKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Recaptcha Public Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"recaptchaPrivateKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"recaptchaPrivateKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:21:\"Recaptcha Private Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:21:\"dashboardCacheTimeout\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"dashboardCacheTimeout\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:3;s:9:\"maxlength\";i:5;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Dashboard cache timeout\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"checksumTimeout\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"checksumTimeout\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";i:7;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Checksum Lifespan\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"blogUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:7:\"blogUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Blog Feed URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:38:\"Blog feed URL used by the blog dashlet\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:20:\"communityMessagesUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"communityMessagesUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Community Messages URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:44:\"Service providing CiviCRM community messages\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:12:\"resCacheCode\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"resCacheCode\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Resource Cache Code\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:62:\"Code appended to resource URLs (JS/CSS) to coerce HTTP caching\";s:9:\"help_text\";N;}s:9:\"verifySSL\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"verifySSL\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:11:\"Verify SSL?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"If disabled, backend HTTPS services will allow unverified, insecure connections\";s:9:\"help_text\";s:140:\"Unless you are absolutely unable to configure your server to check the SSL certificate of the remote server you should leave this set to Yes\";}s:10:\"wpBasePage\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:10:\"wpBasePage\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"text\";s:15:\"quick_form_type\";s:7:\"Element\";s:8:\"prefetch\";i:1;s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"WordPress Base Page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:54:\"If set, CiviCRM will use this setting as the base url.\";s:9:\"help_text\";s:177:\"By default, CiviCRM will generate front-facing pages using the home page at http://wp/ as its base. If you want to use a different template for CiviCRM pages, set the path here.\";}s:23:\"secondDegRelPermissions\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:23:\"secondDegRelPermissions\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:44:\"Allow second-degree relationship permissions\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"If enabled, contacts with the permission to edit a related contact will inherit that contact\'s permission to edit other related contacts\";s:9:\"help_text\";N;}s:17:\"enable_components\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"enable_components\";s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:17:\"Enable Components\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;s:9:\"on_change\";a:3:{i:0;s:33:\"CRM_Case_Info::onToggleComponents\";i:1;s:42:\"CRM_Core_Component::flushEnabledComponents\";i:2;s:31:\"call://resources/resetCacheCode\";}}s:16:\"disable_core_css\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"disable_core_css\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:19:\"Disable CiviCRM css\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:55:\"Prevent the stylesheet \"civicrm.css\" from being loaded.\";s:9:\"help_text\";N;}s:11:\"empoweredBy\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"empoweredBy\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"Display \"empowered by CiviCRM\"\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:80:\"When enabled, \"empowered by CiviCRM\" is displayed at the bottom of public forms.\";s:9:\"help_text\";N;}s:20:\"userFrameworkLogging\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:20:\"userFrameworkLogging\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Enable Drupal Watchdog Logging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:101:\"Set this value to Yes if you want CiviCRM error/debugging messages to appear in the Drupal error logs\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:239:\"Set this value to Yes if you want CiviCRM error/debugging messages the appear in your CMS\' error log. In the case of Drupal, this will cause all CiviCRM error messages to appear in the watchdog (assuming you have Drupal\'s watchdog enabled)\";}s:13:\"debug_enabled\";a:14:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:13:\"debug_enabled\";s:10:\"config_key\";s:5:\"debug\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Enable Debugging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:130:\"Set this value to Yes if you want to use one of CiviCRM\'s debugging tools. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:39:\"Do not turn this on on production sites\";}s:9:\"backtrace\";a:12:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:9:\"backtrace\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Display Backtrace\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:155:\"Set this value to Yes if you want to display a backtrace listing when a fatal error is encountered. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;}s:18:\"fatalErrorTemplate\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:18:\"fatalErrorTemplate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:20:\"CRM/common/fatal.tpl\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Fatal Error Template\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:123:\"Enter the path and filename for a custom Smarty template if you want to define your own screen for displaying fatal errors.\";s:8:\"prefetch\";i:1;}s:17:\"fatalErrorHandler\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:17:\"fatalErrorHandler\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Fatal Error Handler\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"Enter the path and class for a custom PHP error-handling function if you want to override built-in CiviCRM error handling for your site.\";s:8:\"prefetch\";i:1;}s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:16:\"Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:0:\"\";}s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Image Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:29:\"Custom Files Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"customTemplateDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:17:\"customTemplateDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:25:\"Custom Template Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"customPHPPathDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:16:\"customPHPPathDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Custom PHP Path\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:13:\"extensionsDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:13:\"extensionsDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:20:\"Extensions Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"event_enable_cart\";a:12:{s:4:\"name\";s:11:\"enable_cart\";s:10:\"group_name\";s:17:\"Event Preferences\";s:5:\"group\";s:5:\"event\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:7:\"default\";i:0;s:3:\"add\";d:4.0999999999999996447286321199499070644378662109375;s:5:\"title\";s:17:\"Enable Event Cart\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:1;s:11:\"description\";s:8:\"WRITE ME\";s:9:\"help_text\";s:8:\"WRITE ME\";}s:25:\"monetaryThousandSeparator\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:25:\"monetaryThousandSeparator\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\",\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Thousands Separator\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"monetaryDecimalPoint\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:20:\"monetaryDecimalPoint\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\".\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Decimal Delimiter\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:11:\"moneyformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:11:\"moneyformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:5:\"%c %a\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"moneyvalueformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:16:\"moneyvalueformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:3:\"%!i\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"defaultCurrency\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:15:\"defaultCurrency\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:3:\"USD\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Currency\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:75:\"Default currency assigned to contributions and other monetary transactions.\";s:9:\"help_text\";N;}s:21:\"defaultContactCountry\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:21:\"defaultContactCountry\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:4;}s:7:\"default\";s:4:\"1228\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Default Country\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:68:\"This value is selected by default when adding a new contact address.\";s:9:\"help_text\";N;}s:12:\"countryLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:12:\"countryLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Available Countries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"provinceLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"provinceLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Available States and Provinces\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"inheritLocale\";a:14:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"inheritLocale\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Inherit CMS Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:18:\"dateformatDatetime\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:18:\"dateformatDatetime\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:20:\"%B %E%f, %Y %l:%M %P\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Complete Date and Time\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:14:\"dateformatFull\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:14:\"dateformatFull\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:11:\"%B %E%f, %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Complete Date\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:17:\"dateformatPartial\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:17:\"dateformatPartial\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"%B %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:14:\"Month and Year\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:10:\"lcMessages\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:10:\"lcMessages\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"en_US\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:20:\"profile_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"profile_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:22:\"track_civimail_replies\";a:13:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:22:\"track_civimail_replies\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:43:\"Track replies using VERP in Reply-To header\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:78:\"If checked, mailings will default to tracking replies using VERP-ed Reply-To. \";s:9:\"help_text\";N;s:17:\"validate_callback\";s:41:\"CRM_Core_BAO_Setting::validateBoolSetting\";}s:17:\"civimail_workflow\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:17:\"civimail_workflow\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:21:\"Use CiviMail Workflow\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:25:\"civimail_server_wide_lock\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:25:\"civimail_server_wide_lock\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:39:\"Lock Mails Server-Wide for Mail Sending\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"replyTo\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:7:\"replyTo\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Enable Custom Reply-To\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Allow CiviMail users to send mailings with a custom Reply-To header\";s:9:\"help_text\";N;}s:15:\"mailing_backend\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:15:\"mailing_backend\";s:4:\"type\";s:5:\"Array\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Mailing Backend\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:33:\"profile_add_to_group_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:33:\"profile_add_to_group_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:30:\"disable_mandatory_tokens_check\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:30:\"disable_mandatory_tokens_check\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:34:\"Disable check for mandatory tokens\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:345:\"Don\'t check for presence of mandatory tokens (domain address; unsubscribe/opt-out) before sending mailings. WARNING: Mandatory tokens are a safe-guard which facilitate compliance with the US CAN-SPAM Act. They should only be disabled if your organization adopts other mechanisms for compliance or if your organization is not subject to CAN-SPAM.\";s:9:\"help_text\";N;}s:20:\"dedupe_email_default\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"dedupe_email_default\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:44:\"CiviMail dedupes e-mail addresses by default\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"Set the \"dedupe e-mail\" option when sending a new mailing to \"true\" by default.\";s:9:\"help_text\";N;}s:16:\"hash_mailing_url\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:16:\"hash_mailing_url\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:20:\"Hashed Mailing URL\'s\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:131:\"If enabled, a randomized hash key will be used to reference the mailing URL in the mailing.viewUrl token, instead of the mailing ID\";s:9:\"help_text\";N;}s:33:\"default_renewal_contribution_page\";a:13:{s:10:\"group_name\";s:18:\"Member Preferences\";s:5:\"group\";s:6:\"member\";s:4:\"name\";s:33:\"default_renewal_contribution_page\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:14:\"pseudoconstant\";a:1:{s:4:\"name\";s:16:\"contributionPage\";}s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Default online membership renewal page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:348:\"If you select a default online contribution page for self-service membership renewals, a \"renew\" link pointing to that page will be displayed on the Contact Dashboard for memberships which were entered offline. You will need to ensure that the membership block for the selected online contribution page includes any currently available memberships.\";s:9:\"help_text\";N;}s:10:\"is_enabled\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:10:\"is_enabled\";s:5:\"title\";s:20:\"Multisite Is enabled\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"Multisite is enabled\";s:9:\"help_text\";N;}s:15:\"domain_group_id\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:15:\"domain_group_id\";s:5:\"title\";s:22:\"Multisite Domain Group\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"event_price_set_domain_id\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:25:\"event_price_set_domain_id\";s:5:\"title\";s:22:\"Domain Event Price Set\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:19:\"uniq_email_per_site\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:19:\"uniq_email_per_site\";s:4:\"type\";s:7:\"Integer\";s:5:\"title\";s:24:\"Unique Email per Domain?\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:25:\"search_autocomplete_count\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:25:\"search_autocomplete_count\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:2;}s:7:\"default\";i:10;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Autocomplete Results\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:86:\"The maximum number of contacts to show at a time when typing in an autocomplete field.\";s:9:\"help_text\";N;}s:17:\"enable_innodb_fts\";a:14:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:17:\"enable_innodb_fts\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:23:\"InnoDB Full Text Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Enable InnoDB full-text search optimizations. (Requires MySQL 5.6+)\";s:9:\"help_text\";N;s:9:\"on_change\";a:1:{i:0;a:2:{i:0;s:22:\"CRM_Core_InnoDBIndexer\";i:1;s:11:\"onToggleFts\";}}}s:14:\"fts_query_mode\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:14:\"fts_query_mode\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:6:\"simple\";s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"How to handle full-tet queries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:24:\"userFrameworkResourceURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";s:5:\"title\";s:28:\"Script and CSS Resources URL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"CiviCRM Resource URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:14:\"imageUploadURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:5:\"title\";s:16:\"Image URL Prefix\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:12:\"customCSSURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:12:\"customCSSURL\";s:5:\"title\";s:10:\"Custom CSS\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:22:\"Custom CiviCRM CSS URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-05-10 16:05:12',NULL),(2,'CiviCRM setting Specs','settingsMetadata__','a:92:{s:32:\"address_standardization_provider\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:32:\"address_standardization_provider\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:33:\"Address Standardization Provider.\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:492:\"CiviCRM includes an optional plugin for interfacing with the United States Postal Services (USPS) Address Standardization web service. You must register to use the USPS service at https://www.usps.com/business/web-tools-apis/address-information.htm. If you are approved, they will provide you with a User ID and the URL for the service. Plugins for other address standardization services may be available from 3rd party developers. If installed, they will be included in the drop-down below. \";}s:30:\"address_standardization_userid\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:30:\"address_standardization_userid\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Web service user ID\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:27:\"address_standardization_url\";a:13:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:27:\"address_standardization_url\";s:4:\"type\";s:4:\"Text\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Web Service URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:15:\"Web Service URL\";s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:15:\"tag_unconfirmed\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:15:\"tag_unconfirmed\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:11:\"Unconfirmed\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:36:\"Tag for Unconfirmed Petition Signers\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:17:\"petition_contacts\";a:12:{s:10:\"group_name\";s:20:\"Campaign Preferences\";s:5:\"group\";s:8:\"campaign\";s:4:\"name\";s:17:\"petition_contacts\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:17:\"Petition Contacts\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:22:\"Petition Signers Group\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:94:\"If set, new contacts that are created when signing a petition are assigned a tag of this name.\";}s:23:\"cvv_backoffice_required\";a:12:{s:10:\"group_name\";s:22:\"Contribute Preferences\";s:5:\"group\";s:10:\"contribute\";s:4:\"name\";s:23:\"cvv_backoffice_required\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:28:\"CVV required for backoffice?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:65:\"Is the CVV code required for back office credit card transactions\";s:9:\"help_text\";s:137:\"If set it back-office credit card transactions will required a cvv code. Leave as required unless you have a very strong reason to change\";}s:20:\"contact_view_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_view_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_view_options\";}s:7:\"default\";s:28:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 113\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Viewing Contacts\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"contact_edit_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"contact_edit_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:20:\"contact_edit_options\";}s:7:\"default\";s:25:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Editing Contacts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:23:\"advanced_search_options\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:4:\"name\";s:23:\"advanced_search_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:23:\"advanced_search_options\";}s:7:\"default\";s:43:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 112\ 113\ 115\ 116\ 117\ 118\ 119\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Contact Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:22:\"user_dashboard_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"user_dashboard_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:22:\"user_dashboard_options\";}s:7:\"default\";s:17:\"\ 11\ 12\ 13\ 14\ 15\ 17\ 18\ 19\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:17:\"Contact Dashboard\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"address_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"address_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:15:\"address_options\";}s:7:\"default\";s:19:\"\ 11\ 12\ 14\ 15\ 18\ 19\ 110\ 111\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Addressing Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"address_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"address_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:8:\"TextArea\";s:7:\"default\";s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Address Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:14:\"mailing_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:14:\"mailing_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Mailing Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"display_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"display_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Display Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"sort_name_format\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"sort_name_format\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:43:\"{contact.last_name}{, }{contact.first_name}\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:16:\"Sort Name Format\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:9:\"editor_id\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"editor_id\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:14:\"Wysiwig Editor\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:26:\"contact_ajax_check_similar\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:26:\"contact_ajax_check_similar\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:18:\"Ajax Check Similar\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"ajaxPopupsEnabled\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"ajaxPopupsEnabled\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:19:\"Ajax Popups Enabled\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:30:\"activity_assignee_notification\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:30:\"activity_assignee_notification\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:25:\"Notify Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:34:\"activity_assignee_notification_ics\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:34:\"activity_assignee_notification_ics\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:41:\"Include ICal Invite to Activity Assignees\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:28:\"contact_autocomplete_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:28:\"contact_autocomplete_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:28:\"contact_autocomplete_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Contact Reference Autocomplete Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"contact_reference_options\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:25:\"contact_reference_options\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:10:\"checkboxes\";s:14:\"pseudoconstant\";a:1:{s:15:\"optionGroupName\";s:25:\"contact_reference_options\";}s:7:\"default\";s:15:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:25:\"Contact Reference Options\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"max_attachments\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"max_attachments\";s:10:\"legacy_key\";s:14:\"maxAttachments\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Maximum Attachments\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:93:\"Maximum number of files (documents, images, etc.) which can attached to emails or activities.\";s:9:\"help_text\";N;}s:11:\"maxFileSize\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"maxFileSize\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:25:\"Maximum File Size (in MB)\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:140:\"Maximum Size of file (documents, images, etc.) which can attached to emails or activities.<br />Note: php.ini should support this file size.\";s:9:\"help_text\";N;}s:16:\"contact_undelete\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"contact_undelete\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:26:\"Contact Trash and Undelete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:200:\"If enabled, deleted contacts will be moved to trash (instead of being destroyed). Users with the proper permission are able to search for the deleted contacts and restore them (or delete permanently).\";s:9:\"help_text\";N;}s:24:\"allowPermDeleteFinancial\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:24:\"allowPermDeleteFinancial\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";b:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:24:\"Contact Permanent Delete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:81:\"Allow Permanent Delete for contacts who are linked to live financial transactions\";s:9:\"help_text\";N;}s:12:\"versionAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:18:\"New Version Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:19:\"securityUpdateAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"securityUpdateAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Security Update Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:12:\"versionCheck\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:31:\"Automatically Check for Updates\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:22:\"versionCheckIgnoreDate\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"versionCheckIgnoreDate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:11:\"placeholder\";s:10:\"YYYY-MM-DD\";}s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:23:\"Ignore Updates Prior to\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"securityAlert\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:13:\"securityAlert\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Security Audits\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:122:\"If enabled, CiviCRM will automatically run checks for significant mis-configurations such as ineffective file protections.\";s:9:\"help_text\";N;}s:21:\"doNotAttachPDFReceipt\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"doNotAttachPDFReceipt\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:27:\"Attach PDF copy to receipts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:98:\"If enabled, CiviCRM sends PDF receipt as an attachment during event signup or online contribution.\";s:9:\"help_text\";N;}s:15:\"wkhtmltopdfPath\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"wkhtmltopdfPath\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:256;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Path to wkhtmltopdf executable\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:18:\"recaptchaPublicKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:18:\"recaptchaPublicKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Recaptcha Public Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"recaptchaPrivateKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"recaptchaPrivateKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:21:\"Recaptcha Private Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:21:\"dashboardCacheTimeout\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"dashboardCacheTimeout\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:3;s:9:\"maxlength\";i:5;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Dashboard cache timeout\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"checksumTimeout\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"checksumTimeout\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";i:7;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Checksum Lifespan\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"blogUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:7:\"blogUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Blog Feed URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:38:\"Blog feed URL used by the blog dashlet\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:20:\"communityMessagesUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"communityMessagesUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Community Messages URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:44:\"Service providing CiviCRM community messages\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}s:12:\"resCacheCode\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"resCacheCode\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Resource Cache Code\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:62:\"Code appended to resource URLs (JS/CSS) to coerce HTTP caching\";s:9:\"help_text\";N;}s:9:\"verifySSL\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"verifySSL\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:11:\"Verify SSL?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"If disabled, backend HTTPS services will allow unverified, insecure connections\";s:9:\"help_text\";s:140:\"Unless you are absolutely unable to configure your server to check the SSL certificate of the remote server you should leave this set to Yes\";}s:10:\"wpBasePage\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:10:\"wpBasePage\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"text\";s:15:\"quick_form_type\";s:7:\"Element\";s:8:\"prefetch\";i:1;s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"WordPress Base Page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:54:\"If set, CiviCRM will use this setting as the base url.\";s:9:\"help_text\";s:177:\"By default, CiviCRM will generate front-facing pages using the home page at http://wp/ as its base. If you want to use a different template for CiviCRM pages, set the path here.\";}s:23:\"secondDegRelPermissions\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:23:\"secondDegRelPermissions\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:44:\"Allow second-degree relationship permissions\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"If enabled, contacts with the permission to edit a related contact will inherit that contact\'s permission to edit other related contacts\";s:9:\"help_text\";N;}s:17:\"enable_components\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"enable_components\";s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:17:\"Enable Components\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;s:9:\"on_change\";a:3:{i:0;s:33:\"CRM_Case_Info::onToggleComponents\";i:1;s:42:\"CRM_Core_Component::flushEnabledComponents\";i:2;s:31:\"call://resources/resetCacheCode\";}}s:16:\"disable_core_css\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"disable_core_css\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:19:\"Disable CiviCRM css\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:55:\"Prevent the stylesheet \"civicrm.css\" from being loaded.\";s:9:\"help_text\";N;}s:11:\"empoweredBy\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"empoweredBy\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"Display \"empowered by CiviCRM\"\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:80:\"When enabled, \"empowered by CiviCRM\" is displayed at the bottom of public forms.\";s:9:\"help_text\";N;}s:20:\"userFrameworkLogging\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:20:\"userFrameworkLogging\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Enable Drupal Watchdog Logging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:101:\"Set this value to Yes if you want CiviCRM error/debugging messages to appear in the Drupal error logs\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:239:\"Set this value to Yes if you want CiviCRM error/debugging messages the appear in your CMS\' error log. In the case of Drupal, this will cause all CiviCRM error messages to appear in the watchdog (assuming you have Drupal\'s watchdog enabled)\";}s:13:\"debug_enabled\";a:14:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:13:\"debug_enabled\";s:10:\"config_key\";s:5:\"debug\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Enable Debugging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:130:\"Set this value to Yes if you want to use one of CiviCRM\'s debugging tools. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:39:\"Do not turn this on on production sites\";}s:9:\"backtrace\";a:12:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:9:\"backtrace\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Display Backtrace\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:155:\"Set this value to Yes if you want to display a backtrace listing when a fatal error is encountered. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;}s:18:\"fatalErrorTemplate\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:18:\"fatalErrorTemplate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:20:\"CRM/common/fatal.tpl\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Fatal Error Template\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:123:\"Enter the path and filename for a custom Smarty template if you want to define your own screen for displaying fatal errors.\";s:8:\"prefetch\";i:1;}s:17:\"fatalErrorHandler\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:17:\"fatalErrorHandler\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Fatal Error Handler\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"Enter the path and class for a custom PHP error-handling function if you want to override built-in CiviCRM error handling for your site.\";s:8:\"prefetch\";i:1;}s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:16:\"Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:0:\"\";}s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Image Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:29:\"Custom Files Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"customTemplateDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:17:\"customTemplateDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:25:\"Custom Template Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"customPHPPathDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:16:\"customPHPPathDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Custom PHP Path\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:13:\"extensionsDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:13:\"extensionsDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:20:\"Extensions Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:17:\"event_enable_cart\";a:12:{s:4:\"name\";s:11:\"enable_cart\";s:10:\"group_name\";s:17:\"Event Preferences\";s:5:\"group\";s:5:\"event\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:7:\"default\";i:0;s:3:\"add\";d:4.0999999999999996447286321199499070644378662109375;s:5:\"title\";s:17:\"Enable Event Cart\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:1;s:11:\"description\";s:8:\"WRITE ME\";s:9:\"help_text\";s:8:\"WRITE ME\";}s:25:\"monetaryThousandSeparator\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:25:\"monetaryThousandSeparator\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\",\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Thousands Separator\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:20:\"monetaryDecimalPoint\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:20:\"monetaryDecimalPoint\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\".\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Decimal Delimiter\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:11:\"moneyformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:11:\"moneyformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:5:\"%c %a\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:16:\"moneyvalueformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:16:\"moneyvalueformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:3:\"%!i\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:15:\"defaultCurrency\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:15:\"defaultCurrency\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:3:\"USD\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Currency\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:75:\"Default currency assigned to contributions and other monetary transactions.\";s:9:\"help_text\";N;}s:21:\"defaultContactCountry\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:21:\"defaultContactCountry\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:4;}s:7:\"default\";s:4:\"1228\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Default Country\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:68:\"This value is selected by default when adding a new contact address.\";s:9:\"help_text\";N;}s:12:\"countryLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:12:\"countryLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Available Countries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"provinceLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"provinceLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Available States and Provinces\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:13:\"inheritLocale\";a:14:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"inheritLocale\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Inherit CMS Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:18:\"dateformatDatetime\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:18:\"dateformatDatetime\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:20:\"%B %E%f, %Y %l:%M %P\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Complete Date and Time\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:14:\"dateformatFull\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:14:\"dateformatFull\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:11:\"%B %E%f, %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Complete Date\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:17:\"dateformatPartial\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:17:\"dateformatPartial\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"%B %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:14:\"Month and Year\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:10:\"lcMessages\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:10:\"lcMessages\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"en_US\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:20:\"profile_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"profile_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:22:\"track_civimail_replies\";a:13:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:22:\"track_civimail_replies\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:43:\"Track replies using VERP in Reply-To header\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:78:\"If checked, mailings will default to tracking replies using VERP-ed Reply-To. \";s:9:\"help_text\";N;s:17:\"validate_callback\";s:41:\"CRM_Core_BAO_Setting::validateBoolSetting\";}s:17:\"civimail_workflow\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:17:\"civimail_workflow\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:21:\"Use CiviMail Workflow\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:25:\"civimail_server_wide_lock\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:25:\"civimail_server_wide_lock\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:39:\"Lock Mails Server-Wide for Mail Sending\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:7:\"replyTo\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:7:\"replyTo\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Enable Custom Reply-To\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Allow CiviMail users to send mailings with a custom Reply-To header\";s:9:\"help_text\";N;}s:15:\"mailing_backend\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:15:\"mailing_backend\";s:4:\"type\";s:5:\"Array\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Mailing Backend\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:33:\"profile_add_to_group_double_optin\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:33:\"profile_add_to_group_double_optin\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:47:\"Enable Double Opt-in for Profile Group(s) field\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:189:\"When CiviMail is enabled, users who \"subscribe\" to a group from a profile Group(s) checkbox will receive a confirmation email. They must respond (opt-in) before they are added to the group.\";s:9:\"help_text\";N;}s:30:\"disable_mandatory_tokens_check\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:30:\"disable_mandatory_tokens_check\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:34:\"Disable check for mandatory tokens\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:345:\"Don\'t check for presence of mandatory tokens (domain address; unsubscribe/opt-out) before sending mailings. WARNING: Mandatory tokens are a safe-guard which facilitate compliance with the US CAN-SPAM Act. They should only be disabled if your organization adopts other mechanisms for compliance or if your organization is not subject to CAN-SPAM.\";s:9:\"help_text\";N;}s:20:\"dedupe_email_default\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"dedupe_email_default\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:44:\"CiviMail dedupes e-mail addresses by default\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"Set the \"dedupe e-mail\" option when sending a new mailing to \"true\" by default.\";s:9:\"help_text\";N;}s:16:\"hash_mailing_url\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:16:\"hash_mailing_url\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:20:\"Hashed Mailing URL\'s\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:131:\"If enabled, a randomized hash key will be used to reference the mailing URL in the mailing.viewUrl token, instead of the mailing ID\";s:9:\"help_text\";N;}s:33:\"default_renewal_contribution_page\";a:13:{s:10:\"group_name\";s:18:\"Member Preferences\";s:5:\"group\";s:6:\"member\";s:4:\"name\";s:33:\"default_renewal_contribution_page\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:14:\"pseudoconstant\";a:1:{s:4:\"name\";s:16:\"contributionPage\";}s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Default online membership renewal page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:348:\"If you select a default online contribution page for self-service membership renewals, a \"renew\" link pointing to that page will be displayed on the Contact Dashboard for memberships which were entered offline. You will need to ensure that the membership block for the selected online contribution page includes any currently available memberships.\";s:9:\"help_text\";N;}s:10:\"is_enabled\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:10:\"is_enabled\";s:5:\"title\";s:20:\"Multisite Is enabled\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"Multisite is enabled\";s:9:\"help_text\";N;}s:15:\"domain_group_id\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:15:\"domain_group_id\";s:5:\"title\";s:22:\"Multisite Domain Group\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:25:\"event_price_set_domain_id\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:25:\"event_price_set_domain_id\";s:5:\"title\";s:22:\"Domain Event Price Set\";s:4:\"type\";s:7:\"Integer\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:19:\"uniq_email_per_site\";a:11:{s:10:\"group_name\";s:22:\"Multi Site Preferences\";s:5:\"group\";s:9:\"multisite\";s:4:\"name\";s:19:\"uniq_email_per_site\";s:4:\"type\";s:7:\"Integer\";s:5:\"title\";s:24:\"Unique Email per Domain?\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}s:25:\"search_autocomplete_count\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:25:\"search_autocomplete_count\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:2;}s:7:\"default\";i:10;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Autocomplete Results\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:86:\"The maximum number of contacts to show at a time when typing in an autocomplete field.\";s:9:\"help_text\";N;}s:17:\"enable_innodb_fts\";a:14:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:17:\"enable_innodb_fts\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:23:\"InnoDB Full Text Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Enable InnoDB full-text search optimizations. (Requires MySQL 5.6+)\";s:9:\"help_text\";N;s:9:\"on_change\";a:1:{i:0;a:2:{i:0;s:22:\"CRM_Core_InnoDBIndexer\";i:1;s:11:\"onToggleFts\";}}}s:14:\"fts_query_mode\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:14:\"fts_query_mode\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:6:\"simple\";s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"How to handle full-tet queries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}s:24:\"userFrameworkResourceURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";s:5:\"title\";s:28:\"Script and CSS Resources URL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"CiviCRM Resource URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:14:\"imageUploadURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:5:\"title\";s:16:\"Image URL Prefix\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}s:12:\"customCSSURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:12:\"customCSSURL\";s:5:\"title\";s:10:\"Custom CSS\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:22:\"Custom CiviCRM CSS URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-05-10 16:05:12',NULL),(3,'CiviCRM setting Specs','settingsMetadata_1__name_address_standardization_provider','a:1:{s:32:\"address_standardization_provider\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:32:\"address_standardization_provider\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:33:\"Address Standardization Provider.\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:492:\"CiviCRM includes an optional plugin for interfacing with the United States Postal Services (USPS) Address Standardization web service. You must register to use the USPS service at https://www.usps.com/business/web-tools-apis/address-information.htm. If you are approved, they will provide you with a User ID and the URL for the service. Plugins for other address standardization services may be available from 3rd party developers. If installed, they will be included in the drop-down below. \";}}',NULL,'2015-05-10 16:05:12',NULL),(4,'CiviCRM setting Specs','settingsMetadata_1__name_address_standardization_userid','a:1:{s:30:\"address_standardization_userid\";a:12:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:30:\"address_standardization_userid\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:19:\"Web service user ID\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(5,'CiviCRM setting Specs','settingsMetadata_1__name_address_standardization_url','a:1:{s:27:\"address_standardization_url\";a:13:{s:10:\"group_name\";s:19:\"Address Preferences\";s:5:\"group\";s:7:\"address\";s:4:\"name\";s:27:\"address_standardization_url\";s:4:\"type\";s:4:\"Text\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:15:\"Web Service URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:15:\"Web Service URL\";s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-05-10 16:05:12',NULL),(6,'CiviCRM setting Specs','settingsMetadata_1__name_cvv_backoffice_required','a:1:{s:23:\"cvv_backoffice_required\";a:12:{s:10:\"group_name\";s:22:\"Contribute Preferences\";s:5:\"group\";s:10:\"contribute\";s:4:\"name\";s:23:\"cvv_backoffice_required\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:28:\"CVV required for backoffice?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:65:\"Is the CVV code required for back office credit card transactions\";s:9:\"help_text\";s:137:\"If set it back-office credit card transactions will required a cvv code. Leave as required unless you have a very strong reason to change\";}}',NULL,'2015-05-10 16:05:12',NULL),(7,'CiviCRM setting Specs','settingsMetadata___name_cvv_backoffice_required','a:1:{s:23:\"cvv_backoffice_required\";a:12:{s:10:\"group_name\";s:22:\"Contribute Preferences\";s:5:\"group\";s:10:\"contribute\";s:4:\"name\";s:23:\"cvv_backoffice_required\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"1\";s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:28:\"CVV required for backoffice?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:65:\"Is the CVV code required for back office credit card transactions\";s:9:\"help_text\";s:137:\"If set it back-office credit card transactions will required a cvv code. Leave as required unless you have a very strong reason to change\";}}',NULL,'2015-05-10 16:05:12',NULL),(8,'CiviCRM setting Specs','settingsMetadata_1__name_ajaxPopupsEnabled','a:1:{s:17:\"ajaxPopupsEnabled\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"ajaxPopupsEnabled\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:19:\"Ajax Popups Enabled\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(9,'CiviCRM setting Specs','settingsMetadata___name_ajaxPopupsEnabled','a:1:{s:17:\"ajaxPopupsEnabled\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"ajaxPopupsEnabled\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:19:\"Ajax Popups Enabled\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(10,'CiviCRM setting Specs','settingsMetadata_1__name_max_attachments','a:1:{s:15:\"max_attachments\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"max_attachments\";s:10:\"legacy_key\";s:14:\"maxAttachments\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Maximum Attachments\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:93:\"Maximum number of files (documents, images, etc.) which can attached to emails or activities.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(11,'CiviCRM setting Specs','settingsMetadata___name_max_attachments','a:1:{s:15:\"max_attachments\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"max_attachments\";s:10:\"legacy_key\";s:14:\"maxAttachments\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Maximum Attachments\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:93:\"Maximum number of files (documents, images, etc.) which can attached to emails or activities.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(12,'CiviCRM setting Specs','settingsMetadata_1__name_maxFileSize','a:1:{s:11:\"maxFileSize\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"maxFileSize\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:25:\"Maximum File Size (in MB)\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:140:\"Maximum Size of file (documents, images, etc.) which can attached to emails or activities.<br />Note: php.ini should support this file size.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(13,'CiviCRM setting Specs','settingsMetadata_1__name_contact_undelete','a:1:{s:16:\"contact_undelete\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"contact_undelete\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:26:\"Contact Trash and Undelete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:200:\"If enabled, deleted contacts will be moved to trash (instead of being destroyed). Users with the proper permission are able to search for the deleted contacts and restore them (or delete permanently).\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(14,'CiviCRM setting Specs','settingsMetadata___name_contact_undelete','a:1:{s:16:\"contact_undelete\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"contact_undelete\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:26:\"Contact Trash and Undelete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:200:\"If enabled, deleted contacts will be moved to trash (instead of being destroyed). Users with the proper permission are able to search for the deleted contacts and restore them (or delete permanently).\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(15,'CiviCRM setting Specs','settingsMetadata_1__name_allowPermDeleteFinancial','a:1:{s:24:\"allowPermDeleteFinancial\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:24:\"allowPermDeleteFinancial\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";b:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:24:\"Contact Permanent Delete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:81:\"Allow Permanent Delete for contacts who are linked to live financial transactions\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(16,'CiviCRM setting Specs','settingsMetadata___name_allowPermDeleteFinancial','a:1:{s:24:\"allowPermDeleteFinancial\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:24:\"allowPermDeleteFinancial\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";b:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:24:\"Contact Permanent Delete\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:81:\"Allow Permanent Delete for contacts who are linked to live financial transactions\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(17,'CiviCRM setting Specs','settingsMetadata_1__name_versionAlert','a:1:{s:12:\"versionAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:18:\"New Version Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(18,'CiviCRM setting Specs','settingsMetadata___name_versionAlert','a:1:{s:12:\"versionAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:18:\"New Version Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(19,'CiviCRM setting Specs','settingsMetadata_1__name_securityUpdateAlert','a:1:{s:19:\"securityUpdateAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"securityUpdateAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Security Update Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(20,'CiviCRM setting Specs','settingsMetadata___name_securityUpdateAlert','a:1:{s:19:\"securityUpdateAlert\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"securityUpdateAlert\";s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:6:\"select\";s:13:\"option_values\";a:4:{i:0;s:8:\"Disabled\";i:1;s:22:\"Display In Page Footer\";i:2;s:22:\"Display As Popup Alert\";i:3;s:25:\"Page Footer + Popup Alert\";}s:7:\"default\";i:3;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Security Update Alerts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(21,'CiviCRM setting Specs','settingsMetadata_1__name_versionCheck','a:1:{s:12:\"versionCheck\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:31:\"Automatically Check for Updates\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(22,'CiviCRM setting Specs','settingsMetadata___name_versionCheck','a:1:{s:12:\"versionCheck\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"versionCheck\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:31:\"Automatically Check for Updates\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(23,'CiviCRM setting Specs','settingsMetadata_1__name_versionCheckIgnoreDate','a:1:{s:22:\"versionCheckIgnoreDate\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"versionCheckIgnoreDate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:11:\"placeholder\";s:10:\"YYYY-MM-DD\";}s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:23:\"Ignore Updates Prior to\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(24,'CiviCRM setting Specs','settingsMetadata___name_versionCheckIgnoreDate','a:1:{s:22:\"versionCheckIgnoreDate\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:22:\"versionCheckIgnoreDate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:11:\"placeholder\";s:10:\"YYYY-MM-DD\";}s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:23:\"Ignore Updates Prior to\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(25,'CiviCRM setting Specs','settingsMetadata_1__name_securityAlert','a:1:{s:13:\"securityAlert\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:13:\"securityAlert\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Security Audits\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:122:\"If enabled, CiviCRM will automatically run checks for significant mis-configurations such as ineffective file protections.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(26,'CiviCRM setting Specs','settingsMetadata___name_securityAlert','a:1:{s:13:\"securityAlert\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:13:\"securityAlert\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Security Audits\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:122:\"If enabled, CiviCRM will automatically run checks for significant mis-configurations such as ineffective file protections.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(27,'CiviCRM setting Specs','settingsMetadata_1__name_doNotAttachPDFReceipt','a:1:{s:21:\"doNotAttachPDFReceipt\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"doNotAttachPDFReceipt\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:27:\"Attach PDF copy to receipts\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:98:\"If enabled, CiviCRM sends PDF receipt as an attachment during event signup or online contribution.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(28,'CiviCRM setting Specs','settingsMetadata_1__name_wkhtmltopdfPath','a:1:{s:15:\"wkhtmltopdfPath\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"wkhtmltopdfPath\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:256;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Path to wkhtmltopdf executable\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(29,'CiviCRM setting Specs','settingsMetadata_1__name_recaptchaPublicKey','a:1:{s:18:\"recaptchaPublicKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:18:\"recaptchaPublicKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Recaptcha Public Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(30,'CiviCRM setting Specs','settingsMetadata_1__name_recaptchaPrivateKey','a:1:{s:19:\"recaptchaPrivateKey\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:19:\"recaptchaPrivateKey\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:21:\"Recaptcha Private Key\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(31,'CiviCRM setting Specs','settingsMetadata_1__name_dashboardCacheTimeout','a:1:{s:21:\"dashboardCacheTimeout\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:21:\"dashboardCacheTimeout\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:3;s:9:\"maxlength\";i:5;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Dashboard cache timeout\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(32,'CiviCRM setting Specs','settingsMetadata_1__name_checksumTimeout','a:1:{s:15:\"checksumTimeout\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:15:\"checksumTimeout\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:8;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";i:7;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Checksum Lifespan\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:12',NULL),(33,'CiviCRM setting Specs','settingsMetadata_1__name_blogUrl','a:1:{s:7:\"blogUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:7:\"blogUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Blog Feed URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:38:\"Blog feed URL used by the blog dashlet\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}}',NULL,'2015-05-10 16:05:13',NULL),(34,'CiviCRM setting Specs','settingsMetadata___name_blogUrl','a:1:{s:7:\"blogUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:7:\"blogUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Blog Feed URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:38:\"Blog feed URL used by the blog dashlet\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}}',NULL,'2015-05-10 16:05:13',NULL),(35,'CiviCRM setting Specs','settingsMetadata_1__name_communityMessagesUrl','a:1:{s:20:\"communityMessagesUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"communityMessagesUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Community Messages URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:44:\"Service providing CiviCRM community messages\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}}',NULL,'2015-05-10 16:05:13',NULL),(36,'CiviCRM setting Specs','settingsMetadata___name_communityMessagesUrl','a:1:{s:20:\"communityMessagesUrl\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:20:\"communityMessagesUrl\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:128;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:9:\"*default*\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Community Messages URL\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:44:\"Service providing CiviCRM community messages\";s:9:\"help_text\";s:68:\"Use \"*default*\" for the system default or override with a custom URL\";}}',NULL,'2015-05-10 16:05:13',NULL),(37,'CiviCRM setting Specs','settingsMetadata_1__name_resCacheCode','a:1:{s:12:\"resCacheCode\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"resCacheCode\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Resource Cache Code\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:62:\"Code appended to resource URLs (JS/CSS) to coerce HTTP caching\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(38,'CiviCRM setting Specs','settingsMetadata_1__name_verifySSL','a:1:{s:9:\"verifySSL\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"verifySSL\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:11:\"Verify SSL?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"If disabled, backend HTTPS services will allow unverified, insecure connections\";s:9:\"help_text\";s:140:\"Unless you are absolutely unable to configure your server to check the SSL certificate of the remote server you should leave this set to Yes\";}}',NULL,'2015-05-10 16:05:13',NULL),(39,'CiviCRM setting Specs','settingsMetadata___name_verifySSL','a:1:{s:9:\"verifySSL\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:9:\"verifySSL\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:11:\"Verify SSL?\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"If disabled, backend HTTPS services will allow unverified, insecure connections\";s:9:\"help_text\";s:140:\"Unless you are absolutely unable to configure your server to check the SSL certificate of the remote server you should leave this set to Yes\";}}',NULL,'2015-05-10 16:05:13',NULL),(40,'CiviCRM setting Specs','settingsMetadata_1__name_wpBasePage','a:1:{s:10:\"wpBasePage\";a:14:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:10:\"wpBasePage\";s:4:\"type\";s:6:\"String\";s:9:\"html_type\";s:4:\"text\";s:15:\"quick_form_type\";s:7:\"Element\";s:8:\"prefetch\";i:1;s:7:\"default\";s:0:\"\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"WordPress Base Page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:54:\"If set, CiviCRM will use this setting as the base url.\";s:9:\"help_text\";s:177:\"By default, CiviCRM will generate front-facing pages using the home page at http://wp/ as its base. If you want to use a different template for CiviCRM pages, set the path here.\";}}',NULL,'2015-05-10 16:05:13',NULL),(41,'CiviCRM setting Specs','settingsMetadata_1__name_secondDegRelPermissions','a:1:{s:23:\"secondDegRelPermissions\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:23:\"secondDegRelPermissions\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:44:\"Allow second-degree relationship permissions\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"If enabled, contacts with the permission to edit a related contact will inherit that contact\'s permission to edit other related contacts\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(42,'CiviCRM setting Specs','settingsMetadata_1__name_enable_components','a:1:{s:17:\"enable_components\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"enable_components\";s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:17:\"Enable Components\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;s:9:\"on_change\";a:3:{i:0;s:33:\"CRM_Case_Info::onToggleComponents\";i:1;s:42:\"CRM_Core_Component::flushEnabledComponents\";i:2;s:31:\"call://resources/resetCacheCode\";}}}',NULL,'2015-05-10 16:05:13',NULL),(43,'CiviCRM setting Specs','settingsMetadata___name_enable_components','a:1:{s:17:\"enable_components\";a:15:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:17:\"enable_components\";s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:17:\"Enable Components\";s:9:\"is_domain\";s:1:\"1\";s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;s:9:\"on_change\";a:3:{i:0;s:33:\"CRM_Case_Info::onToggleComponents\";i:1;s:42:\"CRM_Core_Component::flushEnabledComponents\";i:2;s:31:\"call://resources/resetCacheCode\";}}}',NULL,'2015-05-10 16:05:13',NULL),(44,'CiviCRM setting Specs','settingsMetadata___name_resCacheCode','a:1:{s:12:\"resCacheCode\";a:16:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:12:\"resCacheCode\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:16;s:9:\"maxlength\";i:16;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Resource Cache Code\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:62:\"Code appended to resource URLs (JS/CSS) to coerce HTTP caching\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(45,'CiviCRM setting Specs','settingsMetadata_1__name_disable_core_css','a:1:{s:16:\"disable_core_css\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"disable_core_css\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:19:\"Disable CiviCRM css\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:55:\"Prevent the stylesheet \"civicrm.css\" from being loaded.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(46,'CiviCRM setting Specs','settingsMetadata___name_disable_core_css','a:1:{s:16:\"disable_core_css\";a:12:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:16:\"disable_core_css\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:19:\"Disable CiviCRM css\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:55:\"Prevent the stylesheet \"civicrm.css\" from being loaded.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(47,'CiviCRM setting Specs','settingsMetadata_1__name_empoweredBy','a:1:{s:11:\"empoweredBy\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"empoweredBy\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"Display \"empowered by CiviCRM\"\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:80:\"When enabled, \"empowered by CiviCRM\" is displayed at the bottom of public forms.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(48,'CiviCRM setting Specs','settingsMetadata___name_empoweredBy','a:1:{s:11:\"empoweredBy\";a:13:{s:10:\"group_name\";s:19:\"CiviCRM Preferences\";s:5:\"group\";s:4:\"core\";s:4:\"name\";s:11:\"empoweredBy\";s:8:\"prefetch\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"Display \"empowered by CiviCRM\"\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:80:\"When enabled, \"empowered by CiviCRM\" is displayed at the bottom of public forms.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(49,'CiviCRM setting Specs','settingsMetadata_1__name_userFrameworkLogging','a:1:{s:20:\"userFrameworkLogging\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:20:\"userFrameworkLogging\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Enable Drupal Watchdog Logging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:101:\"Set this value to Yes if you want CiviCRM error/debugging messages to appear in the Drupal error logs\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:239:\"Set this value to Yes if you want CiviCRM error/debugging messages the appear in your CMS\' error log. In the case of Drupal, this will cause all CiviCRM error messages to appear in the watchdog (assuming you have Drupal\'s watchdog enabled)\";}}',NULL,'2015-05-10 16:05:13',NULL),(50,'CiviCRM setting Specs','settingsMetadata_1__name_debug_enabled','a:1:{s:13:\"debug_enabled\";a:14:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:13:\"debug_enabled\";s:10:\"config_key\";s:5:\"debug\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Enable Debugging\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:130:\"Set this value to Yes if you want to use one of CiviCRM\'s debugging tools. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;s:9:\"help_text\";s:39:\"Do not turn this on on production sites\";}}',NULL,'2015-05-10 16:05:13',NULL),(51,'CiviCRM setting Specs','settingsMetadata_1__name_backtrace','a:1:{s:9:\"backtrace\";a:12:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:9:\"backtrace\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Display Backtrace\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:155:\"Set this value to Yes if you want to display a backtrace listing when a fatal error is encountered. This feature should NOT be enabled for production sites\";s:8:\"prefetch\";i:1;}}',NULL,'2015-05-10 16:05:13',NULL),(52,'CiviCRM setting Specs','settingsMetadata_1__name_fatalErrorTemplate','a:1:{s:18:\"fatalErrorTemplate\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:18:\"fatalErrorTemplate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:20:\"CRM/common/fatal.tpl\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Fatal Error Template\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:123:\"Enter the path and filename for a custom Smarty template if you want to define your own screen for displaying fatal errors.\";s:8:\"prefetch\";i:1;}}',NULL,'2015-05-10 16:05:13',NULL),(53,'CiviCRM setting Specs','settingsMetadata___name_fatalErrorTemplate','a:1:{s:18:\"fatalErrorTemplate\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:18:\"fatalErrorTemplate\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:20:\"CRM/common/fatal.tpl\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Fatal Error Template\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:123:\"Enter the path and filename for a custom Smarty template if you want to define your own screen for displaying fatal errors.\";s:8:\"prefetch\";i:1;}}',NULL,'2015-05-10 16:05:13',NULL),(54,'CiviCRM setting Specs','settingsMetadata_1__name_fatalErrorHandler','a:1:{s:17:\"fatalErrorHandler\";a:13:{s:10:\"group_name\";s:21:\"Developer Preferences\";s:5:\"group\";s:9:\"developer\";s:4:\"name\";s:17:\"fatalErrorHandler\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Fatal Error Handler\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:136:\"Enter the path and class for a custom PHP error-handling function if you want to override built-in CiviCRM error handling for your site.\";s:8:\"prefetch\";i:1;}}',NULL,'2015-05-10 16:05:13',NULL),(55,'CiviCRM setting Specs','settingsMetadata_1__name_uploadDir','a:1:{s:9:\"uploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:9:\"uploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:16:\"Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";s:0:\"\";}}',NULL,'2015-05-10 16:05:13',NULL),(56,'CiviCRM setting Specs','settingsMetadata_1__name_imageUploadDir','a:1:{s:14:\"imageUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:14:\"imageUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Image Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(57,'CiviCRM setting Specs','settingsMetadata_1__name_customFileUploadDir','a:1:{s:19:\"customFileUploadDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:19:\"customFileUploadDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:29:\"Custom Files Upload Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(58,'CiviCRM setting Specs','settingsMetadata_1__name_customTemplateDir','a:1:{s:17:\"customTemplateDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:17:\"customTemplateDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:25:\"Custom Template Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(59,'CiviCRM setting Specs','settingsMetadata_1__name_customPHPPathDir','a:1:{s:16:\"customPHPPathDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:16:\"customPHPPathDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:15:\"Custom PHP Path\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(60,'CiviCRM setting Specs','settingsMetadata_1__name_extensionsDir','a:1:{s:13:\"extensionsDir\";a:13:{s:10:\"group_name\";s:21:\"Directory Preferences\";s:5:\"group\";s:9:\"directory\";s:4:\"name\";s:13:\"extensionsDir\";s:4:\"type\";s:3:\"Url\";s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:5:\"title\";s:20:\"Extensions Directory\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(61,'CiviCRM setting Specs','settingsMetadata_1__name_event_enable_cart','a:1:{s:17:\"event_enable_cart\";a:12:{s:4:\"name\";s:11:\"enable_cart\";s:10:\"group_name\";s:17:\"Event Preferences\";s:5:\"group\";s:5:\"event\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:7:\"default\";i:0;s:3:\"add\";d:4.0999999999999996447286321199499070644378662109375;s:5:\"title\";s:17:\"Enable Event Cart\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:1;s:11:\"description\";s:8:\"WRITE ME\";s:9:\"help_text\";s:8:\"WRITE ME\";}}',NULL,'2015-05-10 16:05:13',NULL),(62,'CiviCRM setting Specs','settingsMetadata___name_event_enable_cart','a:1:{s:17:\"event_enable_cart\";a:12:{s:4:\"name\";s:11:\"enable_cart\";s:10:\"group_name\";s:17:\"Event Preferences\";s:5:\"group\";s:5:\"event\";s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:7:\"default\";i:0;s:3:\"add\";d:4.0999999999999996447286321199499070644378662109375;s:5:\"title\";s:17:\"Enable Event Cart\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:1;s:11:\"description\";s:8:\"WRITE ME\";s:9:\"help_text\";s:8:\"WRITE ME\";}}',NULL,'2015-05-10 16:05:13',NULL),(63,'CiviCRM setting Specs','settingsMetadata_1__name_monetaryThousandSeparator','a:1:{s:25:\"monetaryThousandSeparator\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:25:\"monetaryThousandSeparator\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\",\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Thousands Separator\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(64,'CiviCRM setting Specs','settingsMetadata_1__name_monetaryDecimalPoint','a:1:{s:20:\"monetaryDecimalPoint\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:20:\"monetaryDecimalPoint\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:1:\".\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:17:\"Decimal Delimiter\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(65,'CiviCRM setting Specs','settingsMetadata_1__name_moneyformat','a:1:{s:11:\"moneyformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:11:\"moneyformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:5:\"%c %a\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(66,'CiviCRM setting Specs','settingsMetadata_1__name_moneyvalueformat','a:1:{s:16:\"moneyvalueformat\";a:15:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:16:\"moneyvalueformat\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:7:\"default\";s:3:\"%!i\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:23:\"Monetary Amount Display\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(67,'CiviCRM setting Specs','settingsMetadata_1__name_defaultCurrency','a:1:{s:15:\"defaultCurrency\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:15:\"defaultCurrency\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:2;}s:7:\"default\";s:3:\"USD\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Currency\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:75:\"Default currency assigned to contributions and other monetary transactions.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(68,'CiviCRM setting Specs','settingsMetadata_1__name_defaultContactCountry','a:1:{s:21:\"defaultContactCountry\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:21:\"defaultContactCountry\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:1:{s:4:\"size\";i:4;}s:7:\"default\";s:4:\"1228\";s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:15:\"Default Country\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:68:\"This value is selected by default when adding a new contact address.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(69,'CiviCRM setting Specs','settingsMetadata_1__name_countryLimit','a:1:{s:12:\"countryLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:12:\"countryLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:19:\"Available Countries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(70,'CiviCRM setting Specs','settingsMetadata_1__name_provinceLimit','a:1:{s:13:\"provinceLimit\";a:16:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"provinceLimit\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:5:\"Array\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:14:\"advmultiselect\";s:15:\"html_attributes\";a:3:{s:4:\"size\";i:5;s:5:\"style\";s:11:\"width:150px\";s:5:\"class\";s:14:\"advmultiselect\";}s:7:\"default\";s:4:\"null\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:30:\"Available States and Provinces\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(71,'CiviCRM setting Specs','settingsMetadata_1__name_inheritLocale','a:1:{s:13:\"inheritLocale\";a:14:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:13:\"inheritLocale\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";s:1:\"0\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Inherit CMS Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(72,'CiviCRM setting Specs','settingsMetadata_1__name_dateformatDatetime','a:1:{s:18:\"dateformatDatetime\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:18:\"dateformatDatetime\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:20:\"%B %E%f, %Y %l:%M %P\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:22:\"Complete Date and Time\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(73,'CiviCRM setting Specs','settingsMetadata_1__name_dateformatFull','a:1:{s:14:\"dateformatFull\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:14:\"dateformatFull\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:11:\"%B %E%f, %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:13:\"Complete Date\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(74,'CiviCRM setting Specs','settingsMetadata_1__name_dateformatPartial','a:1:{s:17:\"dateformatPartial\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:17:\"dateformatPartial\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"%B %Y\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:14:\"Month and Year\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(75,'CiviCRM setting Specs','settingsMetadata_1__name_lcMessages','a:1:{s:10:\"lcMessages\";a:13:{s:10:\"group_name\";s:24:\"Localization Preferences\";s:5:\"group\";s:12:\"localization\";s:4:\"name\";s:10:\"lcMessages\";s:8:\"prefetch\";i:1;s:11:\"config_only\";i:1;s:4:\"type\";s:6:\"String\";s:7:\"default\";s:5:\"en_US\";s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:16:\"Default Language\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:0:\"\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(76,'CiviCRM setting Specs','settingsMetadata_1__name_replyTo','a:1:{s:7:\"replyTo\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:7:\"replyTo\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Enable Custom Reply-To\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Allow CiviMail users to send mailings with a custom Reply-To header\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:13',NULL),(77,'CiviCRM setting Specs','settingsMetadata___name_replyTo','a:1:{s:7:\"replyTo\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:7:\"replyTo\";s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.6\";s:5:\"title\";s:22:\"Enable Custom Reply-To\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Allow CiviMail users to send mailings with a custom Reply-To header\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:14',NULL),(78,'CiviCRM setting Specs','settingsMetadata_1__name_disable_mandatory_tokens_check','a:1:{s:30:\"disable_mandatory_tokens_check\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:30:\"disable_mandatory_tokens_check\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:34:\"Disable check for mandatory tokens\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:345:\"Don\'t check for presence of mandatory tokens (domain address; unsubscribe/opt-out) before sending mailings. WARNING: Mandatory tokens are a safe-guard which facilitate compliance with the US CAN-SPAM Act. They should only be disabled if your organization adopts other mechanisms for compliance or if your organization is not subject to CAN-SPAM.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:14',NULL),(79,'CiviCRM setting Specs','settingsMetadata___name_disable_mandatory_tokens_check','a:1:{s:30:\"disable_mandatory_tokens_check\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:30:\"disable_mandatory_tokens_check\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:34:\"Disable check for mandatory tokens\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:345:\"Don\'t check for presence of mandatory tokens (domain address; unsubscribe/opt-out) before sending mailings. WARNING: Mandatory tokens are a safe-guard which facilitate compliance with the US CAN-SPAM Act. They should only be disabled if your organization adopts other mechanisms for compliance or if your organization is not subject to CAN-SPAM.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:14',NULL),(80,'CiviCRM setting Specs','settingsMetadata_1__name_dedupe_email_default','a:1:{s:20:\"dedupe_email_default\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"dedupe_email_default\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:44:\"CiviMail dedupes e-mail addresses by default\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"Set the \"dedupe e-mail\" option when sending a new mailing to \"true\" by default.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:14',NULL),(81,'CiviCRM setting Specs','settingsMetadata___name_dedupe_email_default','a:1:{s:20:\"dedupe_email_default\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:20:\"dedupe_email_default\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:1;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:44:\"CiviMail dedupes e-mail addresses by default\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:79:\"Set the \"dedupe e-mail\" option when sending a new mailing to \"true\" by default.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:14',NULL),(82,'CiviCRM setting Specs','settingsMetadata_1__name_hash_mailing_url','a:1:{s:16:\"hash_mailing_url\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:16:\"hash_mailing_url\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:20:\"Hashed Mailing URL\'s\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:131:\"If enabled, a randomized hash key will be used to reference the mailing URL in the mailing.viewUrl token, instead of the mailing ID\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:14',NULL),(83,'CiviCRM setting Specs','settingsMetadata___name_hash_mailing_url','a:1:{s:16:\"hash_mailing_url\";a:12:{s:10:\"group_name\";s:19:\"Mailing Preferences\";s:5:\"group\";s:7:\"mailing\";s:4:\"name\";s:16:\"hash_mailing_url\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:8:\"checkbox\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:20:\"Hashed Mailing URL\'s\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:131:\"If enabled, a randomized hash key will be used to reference the mailing URL in the mailing.viewUrl token, instead of the mailing ID\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:14',NULL),(84,'CiviCRM setting Specs','settingsMetadata_1__name_default_renewal_contribution_page','a:1:{s:33:\"default_renewal_contribution_page\";a:13:{s:10:\"group_name\";s:18:\"Member Preferences\";s:5:\"group\";s:6:\"member\";s:4:\"name\";s:33:\"default_renewal_contribution_page\";s:4:\"type\";s:7:\"Integer\";s:9:\"html_type\";s:6:\"Select\";s:7:\"default\";N;s:14:\"pseudoconstant\";a:1:{s:4:\"name\";s:16:\"contributionPage\";}s:3:\"add\";s:3:\"4.1\";s:5:\"title\";s:38:\"Default online membership renewal page\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:348:\"If you select a default online contribution page for self-service membership renewals, a \"renew\" link pointing to that page will be displayed on the Contact Dashboard for memberships which were entered offline. You will need to ensure that the membership block for the selected online contribution page includes any currently available memberships.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:14',NULL),(85,'CiviCRM setting Specs','settingsMetadata_1__name_search_autocomplete_count','a:1:{s:25:\"search_autocomplete_count\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:25:\"search_autocomplete_count\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:2;}s:7:\"default\";i:10;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Autocomplete Results\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:86:\"The maximum number of contacts to show at a time when typing in an autocomplete field.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:14',NULL),(86,'CiviCRM setting Specs','settingsMetadata___name_search_autocomplete_count','a:1:{s:25:\"search_autocomplete_count\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:25:\"search_autocomplete_count\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Integer\";s:15:\"quick_form_type\";s:7:\"Element\";s:9:\"html_type\";s:4:\"text\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:2;s:9:\"maxlength\";i:2;}s:7:\"default\";i:10;s:3:\"add\";s:3:\"4.3\";s:5:\"title\";s:20:\"Autocomplete Results\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:86:\"The maximum number of contacts to show at a time when typing in an autocomplete field.\";s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:14',NULL),(87,'CiviCRM setting Specs','settingsMetadata_1__name_enable_innodb_fts','a:1:{s:17:\"enable_innodb_fts\";a:14:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:17:\"enable_innodb_fts\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:23:\"InnoDB Full Text Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Enable InnoDB full-text search optimizations. (Requires MySQL 5.6+)\";s:9:\"help_text\";N;s:9:\"on_change\";a:1:{i:0;a:2:{i:0;s:22:\"CRM_Core_InnoDBIndexer\";i:1;s:11:\"onToggleFts\";}}}}',NULL,'2015-05-10 16:05:14',NULL),(88,'CiviCRM setting Specs','settingsMetadata___name_enable_innodb_fts','a:1:{s:17:\"enable_innodb_fts\";a:14:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:17:\"enable_innodb_fts\";s:8:\"prefetch\";i:0;s:4:\"type\";s:7:\"Boolean\";s:15:\"quick_form_type\";s:5:\"YesNo\";s:7:\"default\";i:0;s:3:\"add\";s:3:\"4.4\";s:5:\"title\";s:23:\"InnoDB Full Text Search\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:67:\"Enable InnoDB full-text search optimizations. (Requires MySQL 5.6+)\";s:9:\"help_text\";N;s:9:\"on_change\";a:1:{i:0;a:2:{i:0;s:22:\"CRM_Core_InnoDBIndexer\";i:1;s:11:\"onToggleFts\";}}}}',NULL,'2015-05-10 16:05:14',NULL),(89,'CiviCRM setting Specs','settingsMetadata_1__name_fts_query_mode','a:1:{s:14:\"fts_query_mode\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:14:\"fts_query_mode\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:6:\"simple\";s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"How to handle full-tet queries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:14',NULL),(90,'CiviCRM setting Specs','settingsMetadata___name_fts_query_mode','a:1:{s:14:\"fts_query_mode\";a:15:{s:10:\"group_name\";s:18:\"Search Preferences\";s:5:\"group\";s:18:\"Search Preferences\";s:4:\"name\";s:14:\"fts_query_mode\";s:8:\"prefetch\";i:0;s:4:\"type\";s:6:\"String\";s:15:\"quick_form_type\";s:7:\"Element\";s:15:\"html_attributes\";a:2:{s:4:\"size\";i:64;s:9:\"maxlength\";i:64;}s:9:\"html_type\";s:4:\"Text\";s:7:\"default\";s:6:\"simple\";s:3:\"add\";s:3:\"4.5\";s:5:\"title\";s:30:\"How to handle full-tet queries\";s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";N;s:9:\"help_text\";N;}}',NULL,'2015-05-10 16:05:14',NULL),(91,'CiviCRM setting Specs','settingsMetadata_1__name_userFrameworkResourceURL','a:1:{s:24:\"userFrameworkResourceURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:24:\"userFrameworkResourceURL\";s:5:\"title\";s:28:\"Script and CSS Resources URL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:20:\"CiviCRM Resource URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-05-10 16:05:14',NULL),(92,'CiviCRM setting Specs','settingsMetadata_1__name_imageUploadURL','a:1:{s:14:\"imageUploadURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:5:\"title\";s:16:\"Image URL Prefix\";s:4:\"name\";s:14:\"imageUploadURL\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:16:\"Image Upload URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-05-10 16:05:14',NULL),(93,'CiviCRM setting Specs','settingsMetadata_1__name_customCSSURL','a:1:{s:12:\"customCSSURL\";a:13:{s:5:\"group\";s:3:\"url\";s:10:\"group_name\";s:15:\"URL Preferences\";s:4:\"name\";s:12:\"customCSSURL\";s:5:\"title\";s:10:\"Custom CSS\";s:4:\"type\";s:6:\"String\";s:7:\"default\";N;s:3:\"add\";s:3:\"4.1\";s:8:\"prefetch\";i:1;s:9:\"is_domain\";i:1;s:10:\"is_contact\";i:0;s:11:\"description\";s:22:\"Custom CiviCRM CSS URL\";s:9:\"help_text\";N;s:17:\"validate_callback\";s:19:\"CRM_Utils_Rule::url\";}}',NULL,'2015-05-10 16:05:14',NULL);
  /*!40000 ALTER TABLE `civicrm_cache` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -209,7 -209,7 +209,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_contact` WRITE;
  /*!40000 ALTER TABLE `civicrm_contact` DISABLE KEYS */;
- INSERT INTO `civicrm_contact` (`id`, `contact_type`, `contact_sub_type`, `do_not_email`, `do_not_phone`, `do_not_mail`, `do_not_sms`, `do_not_trade`, `is_opt_out`, `legal_identifier`, `external_identifier`, `sort_name`, `display_name`, `nick_name`, `legal_name`, `image_URL`, `preferred_communication_method`, `preferred_language`, `preferred_mail_format`, `hash`, `api_key`, `source`, `first_name`, `middle_name`, `last_name`, `prefix_id`, `suffix_id`, `formal_title`, `communication_style_id`, `email_greeting_id`, `email_greeting_custom`, `email_greeting_display`, `postal_greeting_id`, `postal_greeting_custom`, `postal_greeting_display`, `addressee_id`, `addressee_custom`, `addressee_display`, `job_title`, `gender_id`, `birth_date`, `is_deceased`, `deceased_date`, `household_name`, `primary_contact_id`, `organization_name`, `sic_code`, `user_unique_id`, `employer_id`, `is_deleted`, `created_date`, `modified_date`) VALUES (1,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Default Organization','Default Organization',NULL,'Default Organization',NULL,NULL,NULL,'Both',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'Default Organization',NULL,NULL,NULL,0,NULL,'2015-05-08 06:53:51'),(2,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Pearlington Environmental Center','Pearlington Environmental Center',NULL,NULL,NULL,NULL,NULL,'Both','35797059',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Pearlington Environmental Center',NULL,NULL,NULL,0,NULL,NULL,18,'Pearlington Environmental Center',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:50'),(3,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson, Ashley','Ms. Ashley Jameson',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3561508179',NULL,'Sample Data','Ashley','W','Jameson',2,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ms. Ashley Jameson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:28'),(4,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samson, Elina','Elina Samson',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2698578454',NULL,'Sample Data','Elina','Y','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina Samson',NULL,1,'1940-03-30',1,'2014-12-06',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:33'),(5,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Troy','Troy Nielsen III',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','4095296897',NULL,'Sample Data','Troy','K','Nielsen',NULL,4,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Nielsen III',NULL,NULL,'2006-03-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:43'),(6,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Dowlen Software Solutions','Dowlen Software Solutions',NULL,NULL,NULL,NULL,NULL,'Both','47869478',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Dowlen Software Solutions',NULL,NULL,NULL,0,NULL,NULL,16,'Dowlen Software Solutions',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:49'),(7,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Maria','Maria Łąchowski Sr.',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2706885565',NULL,'Sample Data','Maria','C','Łąchowski',NULL,2,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Maria Łąchowski Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:29'),(8,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'jm.jacobs@testing.info','jm.jacobs@testing.info',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3739621548',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jm.jacobs@testing.info',1,NULL,'Dear jm.jacobs@testing.info',1,NULL,'jm.jacobs@testing.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:34'),(9,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Olsen-Reynolds, Alida','Alida Olsen-Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','1877675822',NULL,'Sample Data','Alida','G','Olsen-Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Olsen-Reynolds',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:34'),(10,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Urban Empowerment Partners','Urban Empowerment Partners',NULL,NULL,NULL,NULL,NULL,'Both','3754206143',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Empowerment Partners',NULL,NULL,NULL,0,NULL,NULL,NULL,'Urban Empowerment Partners',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:47'),(11,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'olsenc60@sample.info','olsenc60@sample.info',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','2242513312',NULL,'Sample Data',NULL,NULL,NULL,4,4,NULL,NULL,1,NULL,'Dear olsenc60@sample.info',1,NULL,'Dear olsenc60@sample.info',1,NULL,'olsenc60@sample.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:33'),(12,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen-Reynolds, Roland','Mr. Roland Olsen-Reynolds',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','806062335',NULL,'Sample Data','Roland','T','Olsen-Reynolds',3,NULL,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Mr. Roland Olsen-Reynolds',NULL,NULL,'1983-05-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:34'),(13,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wilson, Maxwell','Dr. Maxwell Wilson Sr.',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2894206629',NULL,'Sample Data','Maxwell','','Wilson',4,2,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Dr. Maxwell Wilson Sr.',NULL,2,'1994-03-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:23'),(14,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cooper, Nicole','Ms. Nicole Cooper',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3590550594',NULL,'Sample Data','Nicole','L','Cooper',2,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Ms. Nicole Cooper',NULL,1,'1958-08-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:27'),(15,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Reynolds, Magan','Magan Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','2569744381',NULL,'Sample Data','Magan','','Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Reynolds',NULL,1,'1944-10-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:28'),(16,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'terry.omar@airmail.com','terry.omar@airmail.com',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','4165815084',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear terry.omar@airmail.com',1,NULL,'Dear terry.omar@airmail.com',1,NULL,'terry.omar@airmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,'Dowlen Software Solutions',NULL,NULL,6,0,NULL,'2015-05-08 06:54:48'),(17,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Terry family','Terry family',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','558108751',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terry family',5,NULL,'Dear Terry family',2,NULL,'Terry family',NULL,NULL,NULL,0,NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:45'),(18,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Deforest, Iris','Iris Deforest',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1031045595',NULL,'Sample Data','Iris','L','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Deforest',NULL,1,'1968-01-21',0,NULL,NULL,NULL,'Pearlington Environmental Center',NULL,NULL,2,0,NULL,'2015-05-08 06:54:50'),(19,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Patel family','Patel family',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1669281794',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Patel family',5,NULL,'Dear Patel family',2,NULL,'Patel family',NULL,NULL,NULL,0,NULL,'Patel family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:46'),(20,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Erik','Erik Blackwell Jr.',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','27665529',NULL,'Sample Data','Erik','','Blackwell',NULL,1,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Blackwell Jr.',NULL,NULL,NULL,0,NULL,NULL,NULL,'Global Culture Academy',NULL,NULL,82,0,NULL,'2015-05-08 06:54:51'),(21,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Ashley','Dr. Ashley Díaz',NULL,NULL,NULL,NULL,NULL,'Both','2703610004',NULL,'Sample Data','Ashley','Z','Díaz',4,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Dr. Ashley Díaz',NULL,1,'1930-08-16',1,'2015-01-14',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:28'),(22,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Brittney','Brittney Cooper',NULL,NULL,NULL,NULL,NULL,'Both','4169712187',NULL,'Sample Data','Brittney','D','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Cooper',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:38'),(23,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Rural Music Partners','Rural Music Partners',NULL,NULL,NULL,NULL,NULL,'Both','2591271910',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rural Music Partners',NULL,NULL,NULL,0,NULL,NULL,51,'Rural Music Partners',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:49'),(24,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Craig','Craig Müller',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1619859759',NULL,'Sample Data','Craig','K','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Müller',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:26'),(25,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Nielsen family','Nielsen family',NULL,NULL,NULL,NULL,NULL,'Both','766698874',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Nielsen family',5,NULL,'Dear Nielsen family',2,NULL,'Nielsen family',NULL,NULL,NULL,0,NULL,'Nielsen family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:46'),(26,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell-Patel, Laree','Ms. Laree Terrell-Patel',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','195151605',NULL,'Sample Data','Laree','V','Terrell-Patel',2,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Ms. Laree Terrell-Patel',NULL,1,'1973-06-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:39'),(27,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Carylon','Carylon Wattson',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1140408074',NULL,'Sample Data','Carylon','Y','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Wattson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:22'),(28,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'cruzs@testmail.info','cruzs@testmail.info',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','632169770',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear cruzs@testmail.info',1,NULL,'Dear cruzs@testmail.info',1,NULL,'cruzs@testmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:41'),(29,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Jones, Carlos','Carlos Jones',NULL,NULL,NULL,NULL,NULL,'Both','3377113707',NULL,'Sample Data','Carlos','','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Jones',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:24'),(30,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'jacobb@sample.co.pl','jacobb@sample.co.pl',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','4164800322',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear jacobb@sample.co.pl',1,NULL,'Dear jacobb@sample.co.pl',1,NULL,'jacobb@sample.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:26'),(31,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'tblackwell@sample.co.uk','tblackwell@sample.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','3179525882',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear tblackwell@sample.co.uk',1,NULL,'Dear tblackwell@sample.co.uk',1,NULL,'tblackwell@sample.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:40'),(32,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Josefa','Josefa Reynolds',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2579265288',NULL,'Sample Data','Josefa','K','Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Reynolds',NULL,NULL,'1956-03-01',1,'2014-12-13',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:33'),(33,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Billy','Billy Jacobs',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1211186164',NULL,'Sample Data','Billy','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Jacobs',NULL,2,'2002-12-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:38'),(34,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'cooperj@airmail.co.in','cooperj@airmail.co.in',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3491927480',NULL,'Sample Data',NULL,NULL,NULL,NULL,3,NULL,NULL,1,NULL,'Dear cooperj@airmail.co.in',1,NULL,'Dear cooperj@airmail.co.in',1,NULL,'cooperj@airmail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:25'),(35,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cruz, Craig','Dr. Craig Cruz Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2921138487',NULL,'Sample Data','Craig','I','Cruz',4,2,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Dr. Craig Cruz Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:35'),(36,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Esta','Mrs. Esta Yadav',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','4262711788',NULL,'Sample Data','Esta','X','Yadav',1,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Mrs. Esta Yadav',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:18'),(37,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts family','Roberts family',NULL,NULL,NULL,NULL,NULL,'Both','2097305882',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Roberts family',5,NULL,'Dear Roberts family',2,NULL,'Roberts family',NULL,NULL,NULL,0,NULL,'Roberts family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:45'),(38,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Idaho Wellness Solutions','Idaho Wellness Solutions',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2636318435',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Idaho Wellness Solutions',NULL,NULL,NULL,0,NULL,NULL,96,'Idaho Wellness Solutions',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:52'),(39,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wattson, Iris','Dr. Iris Wattson',NULL,NULL,NULL,NULL,NULL,'Both','532322376',NULL,'Sample Data','Iris','','Wattson',4,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Dr. Iris Wattson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:35'),(40,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'McReynolds, Daren','Dr. Daren McReynolds III',NULL,NULL,NULL,NULL,NULL,'Both','2885149914',NULL,'Sample Data','Daren','M','McReynolds',4,4,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Dr. Daren McReynolds III',NULL,2,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:24'),(41,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Jackson','Dr. Jackson González',NULL,NULL,NULL,NULL,NULL,'Both','4275829889',NULL,'Sample Data','Jackson','V','González',4,NULL,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Dr. Jackson González',NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:29'),(42,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Felisha','Ms. Felisha Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','3530653717',NULL,'Sample Data','Felisha','','Łąchowski',2,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Ms. Felisha Łąchowski',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:41'),(43,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Blackwell, Jay','Jay Blackwell Jr.',NULL,NULL,NULL,NULL,NULL,'Both','87759303',NULL,'Sample Data','Jay','T','Blackwell',NULL,1,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Blackwell Jr.',NULL,NULL,'1955-05-27',1,'2014-07-09',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:19'),(44,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Barkley-Dimitrov, Merrie','Ms. Merrie Barkley-Dimitrov',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1581930646',NULL,'Sample Data','Merrie','Q','Barkley-Dimitrov',2,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Ms. Merrie Barkley-Dimitrov',NULL,NULL,'1983-09-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:37'),(45,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Rural Technology Partnership','Rural Technology Partnership',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','3593944202',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rural Technology Partnership',NULL,NULL,NULL,0,NULL,NULL,107,'Rural Technology Partnership',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:48'),(46,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'kaceydeforest65@testing.co.nz','kaceydeforest65@testing.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','2438123584',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear kaceydeforest65@testing.co.nz',1,NULL,'Dear kaceydeforest65@testing.co.nz',1,NULL,'kaceydeforest65@testing.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,'United Empowerment Network',NULL,NULL,103,0,NULL,'2015-05-08 06:54:49'),(47,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'pt.adams@spamalot.net','pt.adams@spamalot.net',NULL,NULL,NULL,NULL,NULL,'Both','2263821455',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear pt.adams@spamalot.net',1,NULL,'Dear pt.adams@spamalot.net',1,NULL,'pt.adams@spamalot.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:19'),(48,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Irvin','Dr. Irvin Roberts',NULL,NULL,NULL,NULL,NULL,'Both','1941335260',NULL,'Sample Data','Irvin','R','Roberts',4,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Dr. Irvin Roberts',NULL,NULL,'1957-01-26',1,'2015-02-12',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:35'),(49,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Kandace','Ms. Kandace Wattson',NULL,NULL,NULL,NULL,NULL,'Both','1154122107',NULL,'Sample Data','Kandace','','Wattson',2,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Ms. Kandace Wattson',NULL,1,'1969-01-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:34'),(50,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Ashley','Dr. Ashley Dimitrov Sr.',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','665882362',NULL,'Sample Data','Ashley','','Dimitrov',4,2,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Dr. Ashley Dimitrov Sr.',NULL,2,'1956-08-25',1,'2014-10-18',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:37'),(51,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Elizabeth','Elizabeth Adams',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3093330958',NULL,'Sample Data','Elizabeth','G','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth Adams',NULL,1,'1989-05-29',0,NULL,NULL,NULL,'Rural Music Partners',NULL,NULL,23,0,NULL,'2015-05-08 06:54:49'),(52,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Louisiana Technology Services','Louisiana Technology Services',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','92479800',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Louisiana Technology Services',NULL,NULL,NULL,0,NULL,NULL,64,'Louisiana Technology Services',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:49'),(53,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Eleonor','Dr. Eleonor Deforest',NULL,NULL,NULL,NULL,NULL,'Both','873042490',NULL,'Sample Data','Eleonor','','Deforest',4,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Dr. Eleonor Deforest',NULL,1,'1979-11-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:44'),(54,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Bachman, Jacob','Dr. Jacob Bachman',NULL,NULL,NULL,NULL,NULL,'Both','680701022',NULL,'Sample Data','Jacob','','Bachman',4,NULL,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Dr. Jacob Bachman',NULL,2,'1987-02-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:37'),(55,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Beula','Dr. Beula Adams',NULL,NULL,NULL,NULL,NULL,'Both','24494748',NULL,'Sample Data','Beula','T','Adams',4,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Dr. Beula Adams',NULL,1,'1994-03-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:40'),(56,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Bachman family','Bachman family',NULL,NULL,NULL,NULL,NULL,'Both','1714131215',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Bachman family',5,NULL,'Dear Bachman family',2,NULL,'Bachman family',NULL,NULL,NULL,0,NULL,'Bachman family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:45'),(57,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Nielsen, Nicole','Nicole Nielsen',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1986505883',NULL,'Sample Data','Nicole','L','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Nielsen',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:42'),(58,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Margaret','Ms. Margaret Jameson',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1719938872',NULL,'Sample Data','Margaret','','Jameson',2,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Ms. Margaret Jameson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:28'),(59,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Terry, Scarlet','Scarlet Terry',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','4060527953',NULL,'Sample Data','Scarlet','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Terry',NULL,1,'1986-05-17',0,NULL,NULL,NULL,'Progressive Education Fund',NULL,NULL,101,0,NULL,'2015-05-08 06:54:51'),(60,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Andrew','Mr. Andrew Dimitrov Jr.',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','68600076',NULL,'Sample Data','Andrew','D','Dimitrov',3,1,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Mr. Andrew Dimitrov Jr.',NULL,2,'1989-02-07',0,NULL,NULL,NULL,'Urban Health Association',NULL,NULL,149,0,NULL,'2015-05-08 06:54:50'),(61,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terry, Merrie','Merrie Terry',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3801150846',NULL,'Sample Data','Merrie','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Terry',NULL,1,'1972-12-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:36'),(62,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Adams family','Adams family',NULL,NULL,NULL,NULL,NULL,'Both','1515323104',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Adams family',5,NULL,'Dear Adams family',2,NULL,'Adams family',NULL,NULL,NULL,0,NULL,'Adams family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:44'),(63,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Maxwell','Dr. Maxwell Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','1485702627',NULL,'Sample Data','Maxwell','','Blackwell',4,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Dr. Maxwell Blackwell',NULL,NULL,'1965-05-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:30'),(64,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Norris','Mr. Norris Bachman',NULL,NULL,NULL,NULL,NULL,'Both','2902131761',NULL,'Sample Data','Norris','V','Bachman',3,NULL,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Mr. Norris Bachman',NULL,2,NULL,1,'2014-11-15',NULL,NULL,'Louisiana Technology Services',NULL,NULL,52,0,NULL,'2015-05-08 06:54:49'),(65,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Sharyn','Mrs. Sharyn Reynolds',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2983838117',NULL,'Sample Data','Sharyn','','Reynolds',1,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Mrs. Sharyn Reynolds',NULL,1,'1944-05-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:29'),(66,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Roberts, Herminia','Dr. Herminia Roberts',NULL,NULL,NULL,NULL,NULL,'Both','3243130524',NULL,'Sample Data','Herminia','','Roberts',4,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Dr. Herminia Roberts',NULL,NULL,'1928-05-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:24'),(67,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Justina','Mrs. Justina Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','1829359712',NULL,'Sample Data','Justina','E','Jacobs',1,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Mrs. Justina Jacobs',NULL,1,'1953-07-12',1,NULL,NULL,NULL,'Madisonville Wellness Center',NULL,NULL,194,0,NULL,'2015-05-08 06:54:47'),(68,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Robertson, Kiara','Kiara Robertson',NULL,NULL,NULL,NULL,NULL,'Both','516002362',NULL,'Sample Data','Kiara','Z','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Robertson',NULL,NULL,'1985-07-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:21'),(69,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs family','Jacobs family',NULL,NULL,NULL,NULL,NULL,'Both','1498986649',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jacobs family',5,NULL,'Dear Jacobs family',2,NULL,'Jacobs family',NULL,NULL,NULL,0,NULL,'Jacobs family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:45'),(70,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Valene','Mrs. Valene Müller',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','444739216',NULL,'Sample Data','Valene','','Müller',1,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Mrs. Valene Müller',NULL,NULL,'1961-09-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:37'),(71,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'roberts.bernadette64@example.net','roberts.bernadette64@example.net',NULL,NULL,NULL,NULL,NULL,'Both','370249849',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear roberts.bernadette64@example.net',1,NULL,'Dear roberts.bernadette64@example.net',1,NULL,'roberts.bernadette64@example.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:36'),(72,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Norris','Mr. Norris Wattson Sr.',NULL,NULL,NULL,NULL,NULL,'Both','4180802164',NULL,'Sample Data','Norris','','Wattson',3,2,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Mr. Norris Wattson Sr.',NULL,2,'1930-08-26',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:25'),(73,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz-Blackwell, Billy','Billy Cruz-Blackwell Sr.',NULL,NULL,NULL,NULL,NULL,'Both','675910096',NULL,'Sample Data','Billy','W','Cruz-Blackwell',NULL,2,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Cruz-Blackwell Sr.',NULL,2,NULL,0,NULL,NULL,NULL,'Jackson Education Fellowship',NULL,NULL,88,0,NULL,'2015-05-08 06:54:50'),(74,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'chowskit@spamalot.net','chowskit@spamalot.net',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','319895066',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear chowskit@spamalot.net',1,NULL,'Dear chowskit@spamalot.net',1,NULL,'chowskit@spamalot.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:41'),(75,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Dema Environmental Academy','Dema Environmental Academy',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','3993080793',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Dema Environmental Academy',NULL,NULL,NULL,0,NULL,NULL,NULL,'Dema Environmental Academy',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:47'),(76,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terrell, Nicole','Nicole Terrell',NULL,NULL,NULL,NULL,NULL,'Both','3338816587',NULL,'Sample Data','Nicole','A','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Terrell',NULL,1,'1973-03-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:25'),(77,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'kathlynterry@example.biz','kathlynterry@example.biz',NULL,NULL,NULL,NULL,NULL,'Both','3452589468',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear kathlynterry@example.biz',1,NULL,'Dear kathlynterry@example.biz',1,NULL,'kathlynterry@example.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:36'),(78,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Ashley','Ashley Wattson',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','3356208561',NULL,'Sample Data','Ashley','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Wattson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:35'),(79,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz-Deforest family','Cruz-Deforest family',NULL,NULL,NULL,NULL,NULL,'Both','3951425679',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cruz-Deforest family',5,NULL,'Dear Cruz-Deforest family',2,NULL,'Cruz-Deforest family',NULL,NULL,NULL,0,NULL,'Cruz-Deforest family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:46'),(80,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Ivanov, Betty','Dr. Betty Ivanov',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1501740460',NULL,'Sample Data','Betty','','Ivanov',4,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Dr. Betty Ivanov',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:23'),(81,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams, Ashley','Mrs. Ashley Adams',NULL,NULL,NULL,NULL,NULL,'Both','2907231858',NULL,'Sample Data','Ashley','X','Adams',1,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mrs. Ashley Adams',NULL,1,'1989-10-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:33'),(82,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Global Culture Academy','Global Culture Academy',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3120308067',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Culture Academy',NULL,NULL,NULL,0,NULL,NULL,20,'Global Culture Academy',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:51'),(83,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Brittney','Ms. Brittney Cooper',NULL,NULL,NULL,NULL,NULL,'Both','4169712187',NULL,'Sample Data','Brittney','','Cooper',2,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Ms. Brittney Cooper',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:39'),(84,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs, Teddy','Mr. Teddy Jacobs Jr.',NULL,NULL,NULL,NULL,NULL,'Both','730676702',NULL,'Sample Data','Teddy','I','Jacobs',3,1,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Mr. Teddy Jacobs Jr.',NULL,NULL,'1983-05-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:38'),(85,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Olsen-Reynolds family','Olsen-Reynolds family',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','3548567060',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Olsen-Reynolds family',5,NULL,'Dear Olsen-Reynolds family',2,NULL,'Olsen-Reynolds family',NULL,NULL,NULL,0,NULL,'Olsen-Reynolds family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:45'),(86,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz-Blackwell family','Cruz-Blackwell family',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','958403261',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cruz-Blackwell family',5,NULL,'Dear Cruz-Blackwell family',2,NULL,'Cruz-Blackwell family',NULL,NULL,NULL,0,NULL,'Cruz-Blackwell family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:45'),(87,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Billy','Dr. Billy Cooper',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1390528503',NULL,'Sample Data','Billy','','Cooper',4,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Dr. Billy Cooper',NULL,2,'1984-05-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:39'),(88,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Jackson Education Fellowship','Jackson Education Fellowship',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1239981409',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Jackson Education Fellowship',NULL,NULL,NULL,0,NULL,NULL,73,'Jackson Education Fellowship',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:50'),(89,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Jay','Jay Terrell',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1859687084',NULL,'Sample Data','Jay','Z','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Terrell',NULL,2,'1983-10-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:17'),(90,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'coopern@notmail.org','coopern@notmail.org',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2147974910',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear coopern@notmail.org',1,NULL,'Dear coopern@notmail.org',1,NULL,'coopern@notmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:27'),(91,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Ivey','Ivey Terrell',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3380499970',NULL,'Sample Data','Ivey','N','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Terrell',NULL,1,NULL,1,'2014-10-28',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:22'),(92,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Jay','Jay Díaz Sr.',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','3482361305',NULL,'Sample Data','Jay','T','Díaz',NULL,2,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Díaz Sr.',NULL,2,'1963-07-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:32'),(93,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Montana Family Solutions','Montana Family Solutions',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1401585854',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Montana Family Solutions',NULL,NULL,NULL,0,NULL,NULL,111,'Montana Family Solutions',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:48'),(94,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Nielsen, Toby','Toby Nielsen II',NULL,NULL,NULL,NULL,NULL,'Both','1430850543',NULL,'Sample Data','Toby','','Nielsen',NULL,3,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby Nielsen II',NULL,NULL,'1999-06-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:43'),(95,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'sadams@fishmail.com','sadams@fishmail.com',NULL,NULL,NULL,NULL,NULL,'Both','3544269090',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear sadams@fishmail.com',1,NULL,'Dear sadams@fishmail.com',1,NULL,'sadams@fishmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:33'),(96,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Esta','Esta Deforest',NULL,NULL,NULL,NULL,NULL,'Both','2058701056',NULL,'Sample Data','Esta','','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Esta Deforest',NULL,1,'1985-01-19',0,NULL,NULL,NULL,'Idaho Wellness Solutions',NULL,NULL,38,0,NULL,'2015-05-08 06:54:52'),(97,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Łąchowski, Rebekah','Ms. Rebekah Łąchowski',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','237881396',NULL,'Sample Data','Rebekah','','Łąchowski',2,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Ms. Rebekah Łąchowski',NULL,NULL,'1942-01-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:28'),(98,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Norris','Norris Patel Sr.',NULL,NULL,NULL,NULL,NULL,'Both','3528404005',NULL,'Sample Data','Norris','P','Patel',NULL,2,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Patel Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:39'),(99,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams, Toby','Toby Adams',NULL,NULL,NULL,NULL,NULL,'Both','2975991790',NULL,'Sample Data','Toby','','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby Adams',NULL,2,'1986-01-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:40'),(100,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Shauna','Shauna Bachman',NULL,NULL,NULL,NULL,NULL,'Both','1518911519',NULL,'Sample Data','Shauna','Z','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Bachman',NULL,1,'2008-01-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:37'),(101,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Progressive Education Fund','Progressive Education Fund',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1054975372',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Progressive Education Fund',NULL,NULL,NULL,0,NULL,NULL,59,'Progressive Education Fund',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:51'),(102,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Terry, Ray','Ray Terry',NULL,NULL,NULL,NULL,NULL,'Both','1646953938',NULL,'Sample Data','Ray','U','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Terry',NULL,2,'2003-11-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:32'),(103,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'United Empowerment Network','United Empowerment Network',NULL,NULL,NULL,NULL,NULL,'Both','1780727868',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'United Empowerment Network',NULL,NULL,NULL,0,NULL,NULL,46,'United Empowerment Network',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:49'),(104,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'ee.deforest@lol.co.pl','ee.deforest@lol.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','3010236521',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear ee.deforest@lol.co.pl',1,NULL,'Dear ee.deforest@lol.co.pl',1,NULL,'ee.deforest@lol.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:29'),(105,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Elbert','Elbert Terry II',NULL,NULL,NULL,NULL,NULL,'Both','2300910688',NULL,'Sample Data','Elbert','','Terry',NULL,3,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Elbert Terry II',NULL,2,'1931-10-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:26'),(106,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'maxwellpatel@spamalot.org','maxwellpatel@spamalot.org',NULL,NULL,NULL,NULL,NULL,'Both','3526951899',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear maxwellpatel@spamalot.org',1,NULL,'Dear maxwellpatel@spamalot.org',1,NULL,'maxwellpatel@spamalot.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:39'),(107,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'norrisjones@example.info','norrisjones@example.info',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','620823690',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear norrisjones@example.info',1,NULL,'Dear norrisjones@example.info',1,NULL,'norrisjones@example.info',NULL,NULL,NULL,0,NULL,NULL,NULL,'Rural Technology Partnership',NULL,NULL,45,0,NULL,'2015-05-08 06:54:48'),(108,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper family','Cooper family',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1133003930',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper family',5,NULL,'Dear Cooper family',2,NULL,'Cooper family',NULL,NULL,NULL,0,NULL,'Cooper family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:46'),(109,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Blackwell, Rosario','Rosario Blackwell',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','212312556',NULL,'Sample Data','Rosario','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Blackwell',NULL,2,'1994-04-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:40'),(110,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jensen, Rosario','Rosario Jensen II',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','3904971531',NULL,'Sample Data','Rosario','G','Jensen',NULL,3,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Jensen II',NULL,2,'1963-03-27',1,'2014-10-06',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:23'),(111,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Rebekah','Dr. Rebekah Adams',NULL,NULL,NULL,NULL,NULL,'Both','323607436',NULL,'Sample Data','Rebekah','H','Adams',4,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Dr. Rebekah Adams',NULL,NULL,'1944-06-24',0,NULL,NULL,NULL,'Montana Family Solutions',NULL,NULL,93,0,NULL,'2015-05-08 06:54:48'),(112,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Maple Empowerment School','Maple Empowerment School',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2364205346',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Maple Empowerment School',NULL,NULL,NULL,0,NULL,NULL,NULL,'Maple Empowerment School',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:49'),(113,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Errol','Errol Blackwell III',NULL,NULL,NULL,NULL,NULL,'Both','3418432727',NULL,'Sample Data','Errol','','Blackwell',NULL,4,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Blackwell III',NULL,2,'1929-02-02',1,'2014-11-25',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:22'),(114,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Łąchowski family','Łąchowski family',NULL,NULL,NULL,NULL,NULL,'Both','2407077255',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Łąchowski family',5,NULL,'Dear Łąchowski family',2,NULL,'Łąchowski family',NULL,NULL,NULL,0,NULL,'Łąchowski family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:46'),(115,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Herminia','Mrs. Herminia Deforest',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1898104374',NULL,'Sample Data','Herminia','L','Deforest',1,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Mrs. Herminia Deforest',NULL,1,'1975-04-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:32'),(116,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Carylon','Carylon Müller',NULL,NULL,NULL,NULL,NULL,'Both','2173697265',NULL,'Sample Data','Carylon','X','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Müller',NULL,1,'2007-12-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:37'),(117,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Alida','Alida Roberts',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3245047840',NULL,'Sample Data','Alida','','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Roberts',NULL,1,'1955-01-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:35'),(118,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Belton Empowerment Academy','Belton Empowerment Academy',NULL,NULL,NULL,NULL,NULL,'Both','1184583682',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Belton Empowerment Academy',NULL,NULL,NULL,0,NULL,NULL,120,'Belton Empowerment Academy',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:48'),(119,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell family','Terrell family',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1136333121',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terrell family',5,NULL,'Dear Terrell family',2,NULL,'Terrell family',NULL,NULL,NULL,0,NULL,'Terrell family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:46'),(120,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Sanford','Sanford Smith Jr.',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','2584375586',NULL,'Sample Data','Sanford','L','Smith',NULL,1,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Smith Jr.',NULL,2,'2002-05-23',0,NULL,NULL,NULL,'Belton Empowerment Academy',NULL,NULL,118,0,NULL,'2015-05-08 06:54:47'),(121,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Jed','Mr. Jed Samson',NULL,NULL,NULL,NULL,NULL,'Both','4283865263',NULL,'Sample Data','Jed','P','Samson',3,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Mr. Jed Samson',NULL,NULL,'1976-12-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:21'),(122,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Erik','Mr. Erik Łąchowski',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','366881942',NULL,'Sample Data','Erik','P','Łąchowski',3,NULL,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Mr. Erik Łąchowski',NULL,NULL,'1940-12-24',1,'2015-04-25',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:21'),(123,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Adams, Merrie','Merrie Adams',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2760007401',NULL,'Sample Data','Merrie','','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Adams',NULL,1,'1995-06-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:40'),(124,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Bachman, Damaris','Dr. Damaris Bachman',NULL,NULL,NULL,NULL,NULL,'Both','3561243747',NULL,'Sample Data','Damaris','Y','Bachman',4,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Dr. Damaris Bachman',NULL,NULL,'1940-05-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:21'),(125,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Washington Music Initiative','Washington Music Initiative',NULL,NULL,NULL,NULL,NULL,'Both','196133085',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Washington Music Initiative',NULL,NULL,NULL,0,NULL,NULL,128,'Washington Music Initiative',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:48'),(126,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Claudio','Mr. Claudio Terrell Jr.',NULL,NULL,NULL,NULL,NULL,'Both','941491020',NULL,'Sample Data','Claudio','','Terrell',3,1,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Mr. Claudio Terrell Jr.',NULL,2,NULL,1,'2014-10-07',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:18'),(127,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs, Shauna','Shauna Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','1138459975',NULL,'Sample Data','Shauna','Q','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Jacobs',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:38'),(128,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Adams, Rosario','Rosario Adams Sr.',NULL,NULL,NULL,NULL,NULL,'Both','628774619',NULL,'Sample Data','Rosario','H','Adams',NULL,2,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Adams Sr.',NULL,2,NULL,0,NULL,NULL,NULL,'Washington Music Initiative',NULL,NULL,125,0,NULL,'2015-05-08 06:54:48'),(129,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Tanya','Tanya Adams',NULL,NULL,NULL,NULL,NULL,'Both','1181850988',NULL,'Sample Data','Tanya','','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Adams',NULL,NULL,'1973-09-11',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:40'),(130,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Kandace','Ms. Kandace Wilson',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2601760123',NULL,'Sample Data','Kandace','A','Wilson',2,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Ms. Kandace Wilson',NULL,1,'1963-09-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:18'),(131,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wagner, Kathlyn','Kathlyn Wagner',NULL,NULL,NULL,NULL,NULL,'Both','1302872453',NULL,'Sample Data','Kathlyn','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Kathlyn Wagner',NULL,1,'1966-04-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:31'),(132,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Łąchowski, Jed','Mr. Jed Łąchowski',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2063929350',NULL,'Sample Data','Jed','','Łąchowski',3,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Mr. Jed Łąchowski',NULL,NULL,NULL,1,'2015-03-09',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:31'),(133,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Blackwell, Shad','Shad Blackwell Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1023646981',NULL,'Sample Data','Shad','F','Blackwell',NULL,2,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Blackwell Sr.',NULL,NULL,'2003-02-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:40'),(134,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Angelika','Ms. Angelika Deforest',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','262591803',NULL,'Sample Data','Angelika','','Deforest',2,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Ms. Angelika Deforest',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:28'),(135,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'mcreynolds.elizabeth@notmail.co.nz','mcreynolds.elizabeth@notmail.co.nz',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2546028942',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear mcreynolds.elizabeth@notmail.co.nz',1,NULL,'Dear mcreynolds.elizabeth@notmail.co.nz',1,NULL,'mcreynolds.elizabeth@notmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:19'),(136,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Josefa','Josefa Jacobs',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','4224564328',NULL,'Sample Data','Josefa','Z','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Jacobs',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:19'),(137,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Müller family','Müller family',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1144797465',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Müller family',5,NULL,'Dear Müller family',2,NULL,'Müller family',NULL,NULL,NULL,0,NULL,'Müller family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:45'),(138,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Beula','Beula Bachman',NULL,NULL,NULL,NULL,NULL,'Both','1024437619',NULL,'Sample Data','Beula','P','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Bachman',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:30'),(139,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Ashley','Mrs. Ashley Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','2224166572',NULL,'Sample Data','Ashley','F','Jacobs',1,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mrs. Ashley Jacobs',NULL,NULL,'1981-07-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:34'),(140,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Wattson family','Wattson family',NULL,NULL,NULL,NULL,NULL,'Both','2851339192',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wattson family',5,NULL,'Dear Wattson family',2,NULL,'Wattson family',NULL,NULL,NULL,0,NULL,'Wattson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:45'),(141,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Winford','Winford Smith III',NULL,NULL,NULL,NULL,NULL,'Both','2182535004',NULL,'Sample Data','Winford','L','Smith',NULL,4,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Smith III',NULL,NULL,'1963-12-11',1,'2014-12-28',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:22'),(142,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wilson, Juliann','Mrs. Juliann Wilson',NULL,NULL,NULL,NULL,NULL,'Both','267768378',NULL,'Sample Data','Juliann','U','Wilson',1,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Mrs. Juliann Wilson',NULL,NULL,'1952-05-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:17'),(143,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Craig','Craig Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','2882024881',NULL,'Sample Data','Craig','','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Łąchowski',NULL,2,'1988-04-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:41'),(144,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Angelika','Angelika Lee',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2658551791',NULL,'Sample Data','Angelika','M','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Lee',NULL,1,'1948-12-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:25'),(145,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Kandace','Kandace Łąchowski',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1537622706',NULL,'Sample Data','Kandace','J','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Kandace Łąchowski',NULL,NULL,'1946-11-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:20'),(146,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Irvin','Dr. Irvin Terry',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','804267401',NULL,'Sample Data','Irvin','','Terry',4,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Dr. Irvin Terry',NULL,2,'1983-08-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:20'),(147,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Kacey','Kacey Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','2351570944',NULL,'Sample Data','Kacey','I','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Kacey Łąchowski',NULL,NULL,'1975-09-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:41'),(148,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Landon','Landon Terrell',NULL,NULL,NULL,NULL,NULL,'Both','4168752118',NULL,'Sample Data','Landon','','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Terrell',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:44'),(149,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Urban Health Association','Urban Health Association',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1820184093',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Health Association',NULL,NULL,NULL,0,NULL,NULL,60,'Urban Health Association',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:50'),(150,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Elizabeth','Elizabeth Jones',NULL,NULL,NULL,NULL,NULL,'Both','819500758',NULL,'Sample Data','Elizabeth','O','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:29'),(151,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Allen','Dr. Allen Müller Sr.',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2000293400',NULL,'Sample Data','Allen','G','Müller',4,2,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Dr. Allen Müller Sr.',NULL,2,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:37'),(152,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Bachman, Jackson','Mr. Jackson Bachman',NULL,NULL,NULL,NULL,NULL,'Both','1617477715',NULL,'Sample Data','Jackson','','Bachman',3,NULL,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Mr. Jackson Bachman',NULL,NULL,'1956-06-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:36'),(153,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Justina','Justina Deforest',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','382362918',NULL,'Sample Data','Justina','','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Deforest',NULL,1,'1998-07-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:44'),(154,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell family','Blackwell family',NULL,NULL,NULL,NULL,NULL,'Both','3218641510',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Blackwell family',5,NULL,'Dear Blackwell family',2,NULL,'Blackwell family',NULL,NULL,NULL,0,NULL,'Blackwell family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:46'),(155,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'wagner.truman68@spamalot.org','wagner.truman68@spamalot.org',NULL,NULL,NULL,NULL,NULL,'Both','4006768506',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear wagner.truman68@spamalot.org',1,NULL,'Dear wagner.truman68@spamalot.org',1,NULL,'wagner.truman68@spamalot.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:21'),(156,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'juliannb39@spamalot.co.pl','juliannb39@spamalot.co.pl',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3922243222',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear juliannb39@spamalot.co.pl',1,NULL,'Dear juliannb39@spamalot.co.pl',1,NULL,'juliannb39@spamalot.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:27'),(157,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Cruz-Blackwell, Scarlet','Scarlet Cruz-Blackwell',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','981616422',NULL,'Sample Data','Scarlet','B','Cruz-Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Cruz-Blackwell',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:35'),(158,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Bob','Mr. Bob Deforest III',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3348440645',NULL,'Sample Data','Bob','W','Deforest',3,4,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Mr. Bob Deforest III',NULL,2,'1955-02-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:43'),(159,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Angelika','Angelika Lee',NULL,NULL,NULL,NULL,NULL,'Both','2658551791',NULL,'Sample Data','Angelika','R','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Lee',NULL,1,'1952-04-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:23'),(160,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Ivanov-Jacobs, Margaret','Mrs. Margaret Ivanov-Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','2311098848',NULL,'Sample Data','Margaret','','Ivanov-Jacobs',1,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Mrs. Margaret Ivanov-Jacobs',NULL,1,'1975-02-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:38'),(161,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Roland','Roland Díaz III',NULL,NULL,NULL,NULL,NULL,'Both','2252303156',NULL,'Sample Data','Roland','','Díaz',NULL,4,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Díaz III',NULL,2,NULL,1,'2014-09-25',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:27'),(162,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Ivey','Mrs. Ivey Grant',NULL,NULL,NULL,NULL,NULL,'Both','3330966549',NULL,'Sample Data','Ivey','','Grant',1,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Mrs. Ivey Grant',NULL,1,NULL,1,'2014-11-22',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:30'),(163,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Sanford','Sanford Jacobs',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','4160245943',NULL,'Sample Data','Sanford','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Jacobs',NULL,2,'1972-12-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:34'),(164,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Merrie','Merrie Cooper',NULL,NULL,NULL,NULL,NULL,'Both','340467569',NULL,'Sample Data','Merrie','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Cooper',NULL,1,'1998-10-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:39'),(165,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Kandace','Mrs. Kandace Blackwell',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1864345149',NULL,'Sample Data','Kandace','B','Blackwell',1,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Mrs. Kandace Blackwell',NULL,1,'1952-08-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:35'),(166,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Toby','Toby Yadav Sr.',NULL,NULL,NULL,NULL,NULL,'Both','209622659',NULL,'Sample Data','Toby','K','Yadav',NULL,2,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Toby Yadav Sr.',NULL,2,NULL,1,'2014-12-10',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:27'),(167,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Olsen, Angelika','Angelika Olsen',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2107775792',NULL,'Sample Data','Angelika','C','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Olsen',NULL,NULL,'1966-05-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:19'),(168,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Deforest family','Deforest family',NULL,NULL,NULL,NULL,NULL,'Both','3235379039',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Deforest family',5,NULL,'Dear Deforest family',2,NULL,'Deforest family',NULL,NULL,NULL,0,NULL,'Deforest family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:46'),(169,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Müller, Carlos','Carlos Müller',NULL,NULL,NULL,NULL,NULL,'Both','457253515',NULL,'Sample Data','Carlos','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Müller',NULL,NULL,'2001-10-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:37'),(170,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'arlyned@mymail.info','arlyned@mymail.info',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3262455600',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear arlyned@mymail.info',1,NULL,'Dear arlyned@mymail.info',1,NULL,'arlyned@mymail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:38'),(171,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Allen','Allen Wagner',NULL,NULL,NULL,NULL,NULL,'Both','1856322775',NULL,'Sample Data','Allen','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen Wagner',NULL,2,'1990-03-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:22'),(172,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen-Bachman, Junko','Dr. Junko Olsen-Bachman',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','806173516',NULL,'Sample Data','Junko','N','Olsen-Bachman',4,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Dr. Junko Olsen-Bachman',NULL,1,'1977-10-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:37'),(173,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs family','Jacobs family',NULL,NULL,NULL,NULL,NULL,'Both','1498986649',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jacobs family',5,NULL,'Dear Jacobs family',2,NULL,'Jacobs family',NULL,NULL,NULL,0,NULL,'Jacobs family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:45'),(174,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Ashlie','Ashlie Grant',NULL,NULL,NULL,NULL,NULL,'Both','3647636538',NULL,'Sample Data','Ashlie','M','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Grant',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:32'),(175,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Roberts, Erik','Erik Roberts Sr.',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','210960325',NULL,'Sample Data','Erik','Y','Roberts',NULL,2,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Roberts Sr.',NULL,NULL,'1972-04-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:36'),(176,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov, Esta','Ms. Esta Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','3595290803',NULL,'Sample Data','Esta','I','Ivanov',2,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Ms. Esta Ivanov',NULL,NULL,'1981-05-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:22'),(177,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Scott','Scott Parker',NULL,NULL,NULL,NULL,NULL,'Both','3303025093',NULL,'Sample Data','Scott','','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Parker',NULL,NULL,'1942-09-05',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:25'),(178,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'terrella@sample.info','terrella@sample.info',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2126503973',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear terrella@sample.info',1,NULL,'Dear terrella@sample.info',1,NULL,'terrella@sample.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:44'),(179,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Smith, Brent','Brent Smith III',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','645749990',NULL,'Sample Data','Brent','K','Smith',NULL,4,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Smith III',NULL,2,'2000-03-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:18'),(180,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terrell, Truman','Truman Terrell Jr.',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','653635789',NULL,'Sample Data','Truman','I','Terrell',NULL,1,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Terrell Jr.',NULL,2,'2005-11-02',0,NULL,NULL,NULL,'Minnesota Family Partnership',NULL,NULL,201,0,NULL,'2015-05-08 06:54:50'),(181,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Rodrigo','Rodrigo Samson Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2189738630',NULL,'Sample Data','Rodrigo','','Samson',NULL,2,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Samson Sr.',NULL,2,'2004-11-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:25'),(182,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cruz-Deforest, Omar','Mr. Omar Cruz-Deforest',NULL,NULL,NULL,NULL,NULL,'Both','1458487918',NULL,'Sample Data','Omar','','Cruz-Deforest',3,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Mr. Omar Cruz-Deforest',NULL,2,'1978-03-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:42'),(183,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Adams family','Adams family',NULL,NULL,NULL,NULL,NULL,'Both','1515323104',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Adams family',5,NULL,'Dear Adams family',2,NULL,'Adams family',NULL,NULL,NULL,0,NULL,'Adams family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:46'),(184,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Dimitrov, Esta','Mrs. Esta Dimitrov',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1897476',NULL,'Sample Data','Esta','I','Dimitrov',1,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Mrs. Esta Dimitrov',NULL,1,'1947-01-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:22'),(185,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Łąchowski, Kenny','Kenny Łąchowski Sr.',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','3898932687',NULL,'Sample Data','Kenny','D','Łąchowski',NULL,2,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Łąchowski Sr.',NULL,NULL,'1933-04-21',1,'2015-01-14',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:26'),(186,'Organization',NULL,1,1,0,0,1,0,NULL,NULL,'Martin Luther King Technology Systems','Martin Luther King Technology Systems',NULL,NULL,NULL,NULL,NULL,'Both','1690637967',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Martin Luther King Technology Systems',NULL,NULL,NULL,0,NULL,NULL,NULL,'Martin Luther King Technology Systems',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:51'),(187,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Maxwell','Maxwell Patel Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1864121617',NULL,'Sample Data','Maxwell','','Patel',NULL,1,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Patel Jr.',NULL,2,'1965-02-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:39'),(188,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Parker, Brittney','Brittney Parker',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1485964652',NULL,'Sample Data','Brittney','','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Parker',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:23'),(189,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Wattson, Bob','Bob Wattson III',NULL,NULL,NULL,NULL,NULL,'Both','194645235',NULL,'Sample Data','Bob','I','Wattson',NULL,4,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Wattson III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:34'),(190,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Magan','Dr. Magan Samson',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2138748254',NULL,'Sample Data','Magan','','Samson',4,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Dr. Magan Samson',NULL,NULL,'1986-10-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:27'),(191,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Miguel','Miguel Blackwell III',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','3534576145',NULL,'Sample Data','Miguel','B','Blackwell',NULL,4,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Blackwell III',NULL,NULL,'2004-02-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:26'),(192,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Reynolds, Rodrigo','Rodrigo Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','393523623',NULL,'Sample Data','Rodrigo','','Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Reynolds',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:29'),(193,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Nielsen, Jerome','Mr. Jerome Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','3652715063',NULL,'Sample Data','Jerome','','Nielsen',3,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Mr. Jerome Nielsen',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:42'),(194,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Madisonville Wellness Center','Madisonville Wellness Center',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','3643657576',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Madisonville Wellness Center',NULL,NULL,NULL,0,NULL,NULL,67,'Madisonville Wellness Center',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:47'),(195,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Scott','Scott Bachman',NULL,NULL,NULL,NULL,NULL,'Both','3146978953',NULL,'Sample Data','Scott','','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Bachman',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:23'),(196,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'terrells85@infomail.info','terrells85@infomail.info',NULL,NULL,NULL,NULL,NULL,'Both','324900645',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear terrells85@infomail.info',1,NULL,'Dear terrells85@infomail.info',1,NULL,'terrells85@infomail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:44'),(197,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Kathleen','Kathleen Barkley',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','560974379',NULL,'Sample Data','Kathleen','F','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Kathleen Barkley',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:19'),(198,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Cruz-Deforest, Valene','Valene Cruz-Deforest',NULL,NULL,NULL,NULL,NULL,'Both','54632736',NULL,'Sample Data','Valene','M','Cruz-Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Cruz-Deforest',NULL,1,'2004-04-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:42'),(199,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Dimitrov family','Dimitrov family',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3351288571',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Dimitrov family',5,NULL,'Dear Dimitrov family',2,NULL,'Dimitrov family',NULL,NULL,NULL,0,NULL,'Dimitrov family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:45'),(200,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terry, Billy','Billy Terry',NULL,NULL,NULL,NULL,NULL,'Both','808293154',NULL,'Sample Data','Billy','J','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Terry',NULL,2,'1984-10-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:36'),(201,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Minnesota Family Partnership','Minnesota Family Partnership',NULL,NULL,NULL,NULL,NULL,'Both','472597779',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Minnesota Family Partnership',NULL,NULL,NULL,0,NULL,NULL,180,'Minnesota Family Partnership',NULL,NULL,NULL,0,NULL,'2015-05-08 06:54:51');
 -INSERT INTO `civicrm_contact` (`id`, `contact_type`, `contact_sub_type`, `do_not_email`, `do_not_phone`, `do_not_mail`, `do_not_sms`, `do_not_trade`, `is_opt_out`, `legal_identifier`, `external_identifier`, `sort_name`, `display_name`, `nick_name`, `legal_name`, `image_URL`, `preferred_communication_method`, `preferred_language`, `preferred_mail_format`, `hash`, `api_key`, `source`, `first_name`, `middle_name`, `last_name`, `prefix_id`, `suffix_id`, `formal_title`, `communication_style_id`, `email_greeting_id`, `email_greeting_custom`, `email_greeting_display`, `postal_greeting_id`, `postal_greeting_custom`, `postal_greeting_display`, `addressee_id`, `addressee_custom`, `addressee_display`, `job_title`, `gender_id`, `birth_date`, `is_deceased`, `deceased_date`, `household_name`, `primary_contact_id`, `organization_name`, `sic_code`, `user_unique_id`, `employer_id`, `is_deleted`, `created_date`, `modified_date`) VALUES (1,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Default Organization','Default Organization',NULL,'Default Organization',NULL,NULL,NULL,'Both',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'Default Organization',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:13'),(2,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Nielsen, Kenny','Kenny Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','1252986162',NULL,'Sample Data','Kenny','A','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Nielsen',NULL,2,'1987-10-22',0,NULL,NULL,NULL,'Elizabeth Food Fund',NULL,NULL,187,0,NULL,'2015-04-29 03:27:34'),(3,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Łąchowski, Andrew','Andrew Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','1575830932',NULL,'Sample Data','Andrew','I','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Łąchowski',NULL,2,'1954-01-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(4,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Main Empowerment Solutions','Main Empowerment Solutions',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','312506539',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Main Empowerment Solutions',NULL,NULL,NULL,0,NULL,NULL,106,'Main Empowerment Solutions',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:35'),(5,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'González family','González family',NULL,NULL,NULL,NULL,NULL,'Both','3263723758',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear González family',5,NULL,'Dear González family',2,NULL,'González family',NULL,NULL,NULL,0,NULL,'González family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(6,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz family','Cruz family',NULL,NULL,NULL,NULL,NULL,'Both','2326538497',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cruz family',5,NULL,'Dear Cruz family',2,NULL,'Cruz family',NULL,NULL,NULL,0,NULL,'Cruz family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:33'),(7,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'McReynolds, Eleonor','Eleonor McReynolds',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1720935960',NULL,'Sample Data','Eleonor','','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor McReynolds',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(8,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith-Müller, Damaris','Damaris Smith-Müller',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1340303097',NULL,'Sample Data','Damaris','','Smith-Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Damaris Smith-Müller',NULL,1,'1955-02-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(9,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Scarlet','Dr. Scarlet Bachman',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2562721421',NULL,'Sample Data','Scarlet','E','Bachman',4,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Dr. Scarlet Bachman',NULL,1,'1989-12-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(10,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope, Troy','Mr. Troy Zope',NULL,NULL,NULL,NULL,NULL,'Both','3534860834',NULL,'Sample Data','Troy','','Zope',3,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Mr. Troy Zope',NULL,2,'1951-06-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(11,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Terry family','Terry family',NULL,NULL,NULL,NULL,NULL,'Both','558108751',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terry family',5,NULL,'Dear Terry family',2,NULL,'Terry family',NULL,NULL,NULL,0,NULL,'Terry family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(12,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs-Jones, Lincoln','Lincoln Jacobs-Jones Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2605320599',NULL,'Sample Data','Lincoln','L','Jacobs-Jones',NULL,2,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Lincoln Jacobs-Jones Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(13,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Magan','Magan Blackwell',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3548232286',NULL,'Sample Data','Magan','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Blackwell',NULL,1,'1956-07-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(14,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Irvin','Irvin Robertson',NULL,NULL,NULL,NULL,NULL,'Both','3287904826',NULL,'Sample Data','Irvin','D','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Irvin Robertson',NULL,2,'1970-11-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(15,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González, Arlyne','Arlyne González',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','359823371',NULL,'Sample Data','Arlyne','D','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne González',NULL,1,'1965-08-15',1,'2015-03-14',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:29'),(16,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'patel.q.elbert@sample.co.uk','patel.q.elbert@sample.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','1178037798',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear patel.q.elbert@sample.co.uk',1,NULL,'Dear patel.q.elbert@sample.co.uk',1,NULL,'patel.q.elbert@sample.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:30'),(17,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Roland','Roland Reynolds III',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3254347372',NULL,'Sample Data','Roland','N','Reynolds',NULL,4,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Reynolds III',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(18,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Norris','Norris Smith Jr.',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','2590850940',NULL,'Sample Data','Norris','','Smith',NULL,1,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Smith Jr.',NULL,NULL,'1953-12-08',1,'2015-01-03',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(19,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Troy','Mr. Troy Terry Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3036104778',NULL,'Sample Data','Troy','X','Terry',3,1,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Mr. Troy Terry Jr.',NULL,2,'1959-11-28',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(20,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Łąchowski-Cooper, Santina','Santina Łąchowski-Cooper',NULL,NULL,NULL,NULL,NULL,'Both','1159159953',NULL,'Sample Data','Santina','Q','Łąchowski-Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Santina Łąchowski-Cooper',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(21,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson, Beula','Dr. Beula Jameson',NULL,NULL,NULL,NULL,NULL,'Both','3713419157',NULL,'Sample Data','Beula','W','Jameson',4,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Dr. Beula Jameson',NULL,1,'1988-06-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(22,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Müller, Carlos','Carlos Müller',NULL,NULL,NULL,NULL,NULL,'Both','457253515',NULL,'Sample Data','Carlos','Z','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Müller',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(23,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Round Pond Health Collective','Round Pond Health Collective',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','2792844217',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Round Pond Health Collective',NULL,NULL,NULL,0,NULL,NULL,199,'Round Pond Health Collective',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:35'),(24,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Emlyn Software Solutions','Emlyn Software Solutions',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1830190306',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Emlyn Software Solutions',NULL,NULL,NULL,0,NULL,NULL,NULL,'Emlyn Software Solutions',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:35'),(25,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Princess','Princess Reynolds',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','2219276168',NULL,'Sample Data','Princess','','Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Reynolds',NULL,1,'1970-06-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(26,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Parker, Herminia','Ms. Herminia Parker',NULL,NULL,NULL,NULL,NULL,'Both','1918952535',NULL,'Sample Data','Herminia','N','Parker',2,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Ms. Herminia Parker',NULL,1,'1984-09-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(27,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Arlyne','Arlyne Parker',NULL,NULL,NULL,NULL,NULL,'Both','3184424840',NULL,'Sample Data','Arlyne','A','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Parker',NULL,1,'1985-12-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(28,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Dimitrov, Billy','Billy Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','3601406358',NULL,'Sample Data','Billy','','Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Dimitrov',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:30'),(29,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Tanya','Tanya Samson',NULL,NULL,NULL,NULL,NULL,'Both','268435178',NULL,'Sample Data','Tanya','R','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Tanya Samson',NULL,NULL,'1983-09-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:26'),(30,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'wattson.sonny42@testmail.co.uk','wattson.sonny42@testmail.co.uk',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','4026024921',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear wattson.sonny42@testmail.co.uk',1,NULL,'Dear wattson.sonny42@testmail.co.uk',1,NULL,'wattson.sonny42@testmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(31,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Robertson, Roland','Dr. Roland Robertson Jr.',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','2663656740',NULL,'Sample Data','Roland','','Robertson',4,1,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Dr. Roland Robertson Jr.',NULL,2,'1989-07-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(32,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Friends Arts School','Friends Arts School',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1488917593',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Arts School',NULL,NULL,NULL,0,NULL,NULL,152,'Friends Arts School',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:35'),(33,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Nielsen, Damaris','Dr. Damaris Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','3513005932',NULL,'Sample Data','Damaris','','Nielsen',4,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Dr. Damaris Nielsen',NULL,1,'1959-09-22',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:29'),(34,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Maxwell','Maxwell Adams Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1901327060',NULL,'Sample Data','Maxwell','U','Adams',NULL,1,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Adams Jr.',NULL,2,'1995-06-29',0,NULL,NULL,NULL,'El Camino Software Solutions',NULL,NULL,124,0,NULL,'2015-04-29 03:27:34'),(35,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Robertson, Kenny','Kenny Robertson',NULL,NULL,NULL,NULL,NULL,'Both','2857414580',NULL,'Sample Data','Kenny','P','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Robertson',NULL,2,'1976-05-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:29'),(36,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Kiara','Kiara Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','637719043',NULL,'Sample Data','Kiara','T','Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Reynolds',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:26'),(37,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Progressive Development School','Progressive Development School',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','3629841605',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Progressive Development School',NULL,NULL,NULL,0,NULL,NULL,200,'Progressive Development School',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:35'),(38,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Arizona Sustainability Association','Arizona Sustainability Association',NULL,NULL,NULL,NULL,NULL,'Both','3499437931',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Arizona Sustainability Association',NULL,NULL,NULL,0,NULL,NULL,NULL,'Arizona Sustainability Association',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:34'),(39,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'prentice.errol@infomail.co.pl','prentice.errol@infomail.co.pl',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2199432191',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear prentice.errol@infomail.co.pl',1,NULL,'Dear prentice.errol@infomail.co.pl',1,NULL,'prentice.errol@infomail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:26'),(40,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Truman','Truman Prentice Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3922272167',NULL,'Sample Data','Truman','I','Prentice',NULL,1,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Prentice Jr.',NULL,2,NULL,0,NULL,NULL,NULL,'Tennessee Sustainability Fund',NULL,NULL,97,0,NULL,'2015-04-29 03:27:34'),(41,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Łąchowski-Cooper family','Łąchowski-Cooper family',NULL,NULL,NULL,NULL,NULL,'Both','2602821584',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Łąchowski-Cooper family',5,NULL,'Dear Łąchowski-Cooper family',2,NULL,'Łąchowski-Cooper family',NULL,NULL,NULL,0,NULL,'Łąchowski-Cooper family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(42,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Billy','Billy Adams Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1261993357',NULL,'Sample Data','Billy','W','Adams',NULL,2,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Adams Sr.',NULL,2,'2001-01-22',0,NULL,NULL,NULL,'Texas Sustainability School',NULL,NULL,88,0,NULL,'2015-04-29 03:27:34'),(43,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Bolt Culture School','Bolt Culture School',NULL,NULL,NULL,NULL,NULL,'Both','3099385974',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Bolt Culture School',NULL,NULL,NULL,0,NULL,NULL,NULL,'Bolt Culture School',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:34'),(44,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Teresa','Teresa Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','1054810060',NULL,'Sample Data','Teresa','R','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Nielsen',NULL,1,'1945-08-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:28'),(45,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cruz, Herminia','Dr. Herminia Cruz',NULL,NULL,NULL,NULL,NULL,'Both','3479995875',NULL,'Sample Data','Herminia','','Cruz',4,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Dr. Herminia Cruz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(46,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Grant family','Grant family',NULL,NULL,NULL,NULL,NULL,'Both','3228000340',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Grant family',5,NULL,'Dear Grant family',2,NULL,'Grant family',NULL,NULL,NULL,0,NULL,'Grant family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(47,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Prentice, Ashlie','Ashlie Prentice',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','2064126922',NULL,'Sample Data','Ashlie','','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Prentice',NULL,1,'1964-09-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(48,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Van Ness Peace Fellowship','Van Ness Peace Fellowship',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2784484960',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Van Ness Peace Fellowship',NULL,NULL,NULL,0,NULL,NULL,NULL,'Van Ness Peace Fellowship',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:34'),(49,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'cruzl@spamalot.net','cruzl@spamalot.net',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3540624207',NULL,'Sample Data',NULL,NULL,NULL,3,2,NULL,NULL,1,NULL,'Dear cruzl@spamalot.net',1,NULL,'Dear cruzl@spamalot.net',1,NULL,'cruzl@spamalot.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(50,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'terry.p.felisha@mymail.co.pl','terry.p.felisha@mymail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','2459614188',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear terry.p.felisha@mymail.co.pl',1,NULL,'Dear terry.p.felisha@mymail.co.pl',1,NULL,'terry.p.felisha@mymail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(51,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Jerome','Dr. Jerome Samuels III',NULL,NULL,NULL,NULL,NULL,'Both','2129032486',NULL,'Sample Data','Jerome','','Samuels',4,4,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Dr. Jerome Samuels III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:30'),(52,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Landon','Landon Olsen',NULL,NULL,NULL,NULL,NULL,'Both','496664817',NULL,'Sample Data','Landon','C','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Olsen',NULL,2,'1958-10-11',1,'2014-11-27',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(53,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Arlyne','Mrs. Arlyne Terry',NULL,NULL,NULL,NULL,NULL,'Both','3024103197',NULL,'Sample Data','Arlyne','','Terry',1,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Mrs. Arlyne Terry',NULL,1,'1973-10-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(54,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'rolandy10@testing.com','rolandy10@testing.com',NULL,NULL,NULL,NULL,NULL,'Both','3083801380',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear rolandy10@testing.com',1,NULL,'Dear rolandy10@testing.com',1,NULL,'rolandy10@testing.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:30'),(55,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Terre Haute Poetry Collective','Terre Haute Poetry Collective',NULL,NULL,NULL,NULL,NULL,'Both','2288095349',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Terre Haute Poetry Collective',NULL,NULL,NULL,0,NULL,NULL,147,'Terre Haute Poetry Collective',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:34'),(56,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson, Kenny','Kenny Jameson',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3782185889',NULL,'Sample Data','Kenny','X','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Jameson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(57,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González-Blackwell, Omar','Omar González-Blackwell',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1518020004',NULL,'Sample Data','Omar','U','González-Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar González-Blackwell',NULL,2,'1972-01-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(58,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wilson, Troy','Troy Wilson',NULL,NULL,NULL,NULL,NULL,'Both','2702259042',NULL,'Sample Data','Troy','','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Wilson',NULL,2,'1935-01-10',1,'2015-02-23',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:26'),(59,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Robertson, Jina','Jina Robertson',NULL,NULL,NULL,NULL,NULL,'Both','1955600545',NULL,'Sample Data','Jina','C','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Robertson',NULL,1,'1980-10-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(60,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Nicole','Nicole Cruz',NULL,NULL,NULL,NULL,NULL,'Both','2971081443',NULL,'Sample Data','Nicole','','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Cruz',NULL,NULL,'1988-02-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(61,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Roland','Roland Wagner Sr.',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1173293758',NULL,'Sample Data','Roland','','Wagner',NULL,2,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Wagner Sr.',NULL,2,'1966-03-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:30'),(62,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Samson-Wilson, Ivey','Ivey Samson-Wilson',NULL,NULL,NULL,NULL,NULL,'Both','2559269095',NULL,'Sample Data','Ivey','','Samson-Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Samson-Wilson',NULL,NULL,'1973-01-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(63,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'González-Blackwell, Josefa','Josefa González-Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','13668595',NULL,'Sample Data','Josefa','','González-Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa González-Blackwell',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(64,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Ashlie','Ashlie Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','297953864',NULL,'Sample Data','Ashlie','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Blackwell',NULL,1,'1946-05-08',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:26'),(65,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'González-Blackwell family','González-Blackwell family',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2419607238',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear González-Blackwell family',5,NULL,'Dear González-Blackwell family',2,NULL,'González-Blackwell family',NULL,NULL,NULL,0,NULL,'González-Blackwell family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(66,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Lincoln','Dr. Lincoln Olsen',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','4045218702',NULL,'Sample Data','Lincoln','','Olsen',4,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Dr. Lincoln Olsen',NULL,2,'1984-09-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:30'),(67,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Allen','Allen Müller Jr.',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2000293400',NULL,'Sample Data','Allen','Y','Müller',NULL,1,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen Müller Jr.',NULL,NULL,'1996-08-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(68,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts, Errol','Errol Roberts Jr.',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','152825771',NULL,'Sample Data','Errol','E','Roberts',NULL,1,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Roberts Jr.',NULL,2,'1933-05-29',1,'2014-06-20',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:29'),(69,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds family','Reynolds family',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','4119726021',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Reynolds family',5,NULL,'Dear Reynolds family',2,NULL,'Reynolds family',NULL,NULL,NULL,0,NULL,'Reynolds family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(70,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Grant, Junko','Junko Grant',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1134606119',NULL,'Sample Data','Junko','E','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Grant',NULL,1,'1994-05-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(71,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Justina','Justina Bachman',NULL,NULL,NULL,NULL,NULL,'Both','144726755',NULL,'Sample Data','Justina','G','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Bachman',NULL,NULL,'1973-11-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(72,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Ashley','Ashley Ivanov',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2740657237',NULL,'Sample Data','Ashley','','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Ivanov',NULL,NULL,'1929-08-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:30'),(73,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice-Robertson, Rebekah','Rebekah Prentice-Robertson',NULL,NULL,NULL,NULL,NULL,'Both','981518463',NULL,'Sample Data','Rebekah','Q','Prentice-Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Rebekah Prentice-Robertson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(74,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Rodrigo','Rodrigo González III',NULL,NULL,NULL,NULL,NULL,'Both','2713589605',NULL,'Sample Data','Rodrigo','','González',NULL,4,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo González III',NULL,2,'1973-11-25',0,NULL,NULL,NULL,'Pine Sustainability Collective',NULL,NULL,113,0,NULL,'2015-04-29 03:27:35'),(75,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Allen','Dr. Allen Jensen',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','478269877',NULL,'Sample Data','Allen','','Jensen',4,NULL,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Dr. Allen Jensen',NULL,NULL,'1928-07-27',1,'2015-03-08',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:28'),(76,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Müller, Clint','Mr. Clint Müller II',NULL,NULL,NULL,NULL,NULL,'Both','363314978',NULL,'Sample Data','Clint','','Müller',3,3,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Mr. Clint Müller II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:29'),(77,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Rolando','Rolando Olsen III',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','2121296962',NULL,'Sample Data','Rolando','W','Olsen',NULL,4,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Olsen III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(78,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Elbert','Mr. Elbert Bachman',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','4290654833',NULL,'Sample Data','Elbert','','Bachman',3,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Mr. Elbert Bachman',NULL,2,'1958-03-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:28'),(79,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'cooper.lawerence@spamalot.biz','cooper.lawerence@spamalot.biz',NULL,NULL,NULL,NULL,NULL,'Both','1998555202',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear cooper.lawerence@spamalot.biz',1,NULL,'Dear cooper.lawerence@spamalot.biz',1,NULL,'cooper.lawerence@spamalot.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:30'),(80,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Kathlyn','Kathlyn Samuels',NULL,NULL,NULL,NULL,NULL,'Both','1656714123',NULL,'Sample Data','Kathlyn','Z','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Kathlyn Samuels',NULL,1,'1996-01-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:26'),(81,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Rodrigo','Dr. Rodrigo Grant',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2901986286',NULL,'Sample Data','Rodrigo','J','Grant',4,NULL,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Dr. Rodrigo Grant',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(82,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Ashley','Ashley Cruz',NULL,NULL,NULL,NULL,NULL,'Both','2056649035',NULL,'Sample Data','Ashley','W','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Cruz',NULL,1,'2006-11-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(83,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Kenny','Kenny Jameson',NULL,NULL,NULL,NULL,NULL,'Both','3782185889',NULL,'Sample Data','Kenny','E','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Jameson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(84,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'arlynec@fishmail.co.pl','arlynec@fishmail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','3106523973',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear arlynec@fishmail.co.pl',1,NULL,'Dear arlynec@fishmail.co.pl',1,NULL,'arlynec@fishmail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(85,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'jacobs-jones.b.elizabeth@notmail.org','jacobs-jones.b.elizabeth@notmail.org',NULL,NULL,NULL,NULL,NULL,'Both','2925085875',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear jacobs-jones.b.elizabeth@notmail.org',1,NULL,'Dear jacobs-jones.b.elizabeth@notmail.org',1,NULL,'jacobs-jones.b.elizabeth@notmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,'New Mexico Culture Initiative',NULL,NULL,144,0,NULL,'2015-04-29 03:27:35'),(86,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Erik','Erik Jensen',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3788466038',NULL,'Sample Data','Erik','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Jensen',NULL,NULL,'1957-10-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(87,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Damaris','Ms. Damaris Prentice',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','4205720753',NULL,'Sample Data','Damaris','','Prentice',2,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Ms. Damaris Prentice',NULL,1,'1981-08-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:25'),(88,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Texas Sustainability School','Texas Sustainability School',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2061874607',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Texas Sustainability School',NULL,NULL,NULL,0,NULL,NULL,42,'Texas Sustainability School',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:34'),(89,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Teddy','Teddy Cruz II',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','4168723526',NULL,'Sample Data','Teddy','Z','Cruz',NULL,3,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Cruz II',NULL,2,'1978-08-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(90,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Samuels, Elina','Mrs. Elina Samuels',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2816803566',NULL,'Sample Data','Elina','','Samuels',1,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Mrs. Elina Samuels',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(91,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'jacksongrant13@testmail.org','jacksongrant13@testmail.org',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','123232224',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear jacksongrant13@testmail.org',1,NULL,'Dear jacksongrant13@testmail.org',1,NULL,'jacksongrant13@testmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(92,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Müller family','Müller family',NULL,NULL,NULL,NULL,NULL,'Both','1144797465',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Müller family',5,NULL,'Dear Müller family',2,NULL,'Müller family',NULL,NULL,NULL,0,NULL,'Müller family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:33'),(93,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Cruz family','Cruz family',NULL,NULL,NULL,NULL,NULL,'Both','2326538497',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cruz family',5,NULL,'Dear Cruz family',2,NULL,'Cruz family',NULL,NULL,NULL,0,NULL,'Cruz family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:33'),(94,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Rosario','Rosario Adams',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','628774619',NULL,'Sample Data','Rosario','S','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Adams',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(95,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Maxwell','Maxwell González',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3943391638',NULL,'Sample Data','Maxwell','N','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell González',NULL,2,'1985-02-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(96,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson, Margaret','Dr. Margaret Wattson',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','2865119341',NULL,'Sample Data','Margaret','Q','Wattson',4,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Dr. Margaret Wattson',NULL,1,'1945-12-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:29'),(97,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Tennessee Sustainability Fund','Tennessee Sustainability Fund',NULL,NULL,NULL,NULL,NULL,'Both','471461907',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Tennessee Sustainability Fund',NULL,NULL,NULL,0,NULL,NULL,40,'Tennessee Sustainability Fund',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:34'),(98,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson family','Jameson family',NULL,NULL,NULL,NULL,NULL,'Both','2255649769',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson family',5,NULL,'Dear Jameson family',2,NULL,'Jameson family',NULL,NULL,NULL,0,NULL,'Jameson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:33'),(99,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Bryon','Bryon Cruz III',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2932788589',NULL,'Sample Data','Bryon','','Cruz',NULL,4,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Cruz III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(100,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samson, Jacob','Mr. Jacob Samson II',NULL,NULL,NULL,NULL,NULL,'Both','1567006775',NULL,'Sample Data','Jacob','T','Samson',3,3,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Mr. Jacob Samson II',NULL,2,'1968-02-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(101,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Craig','Dr. Craig Samuels Sr.',NULL,NULL,NULL,NULL,NULL,'Both','810726824',NULL,'Sample Data','Craig','','Samuels',4,2,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Dr. Craig Samuels Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(102,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'jones.f.angelika@testing.net','jones.f.angelika@testing.net',NULL,NULL,NULL,NULL,NULL,'Both','2803862816',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear jones.f.angelika@testing.net',1,NULL,'Dear jones.f.angelika@testing.net',1,NULL,'jones.f.angelika@testing.net',NULL,NULL,NULL,0,NULL,NULL,NULL,'Montana Poetry Partnership',NULL,NULL,109,0,NULL,'2015-04-29 03:27:35'),(103,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'González, Jacob','Jacob González',NULL,NULL,NULL,NULL,NULL,'Both','2352039359',NULL,'Sample Data','Jacob','','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob González',NULL,2,NULL,1,'2014-10-05',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(104,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Carlos','Carlos Robertson Sr.',NULL,NULL,NULL,NULL,NULL,'Both','3416802562',NULL,'Sample Data','Carlos','','Robertson',NULL,2,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Robertson Sr.',NULL,2,'1990-09-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(105,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Ashley','Mr. Ashley Jones',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3141302765',NULL,'Sample Data','Ashley','','Jones',3,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mr. Ashley Jones',NULL,2,NULL,1,'2014-12-08',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(106,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson, Bryon','Bryon Jameson Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2718998405',NULL,'Sample Data','Bryon','N','Jameson',NULL,2,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Jameson Sr.',NULL,2,'1996-07-21',0,NULL,NULL,NULL,'Main Empowerment Solutions',NULL,NULL,4,0,NULL,'2015-04-29 03:27:35'),(107,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Lee, Lashawnda','Lashawnda Lee',NULL,NULL,NULL,NULL,NULL,'Both','3960912806',NULL,'Sample Data','Lashawnda','','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Lee',NULL,NULL,'2001-02-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(108,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González, Damaris','Damaris González',NULL,NULL,NULL,NULL,NULL,'Both','1257732273',NULL,'Sample Data','Damaris','Y','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Damaris González',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(109,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Montana Poetry Partnership','Montana Poetry Partnership',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','2217721742',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Montana Poetry Partnership',NULL,NULL,NULL,0,NULL,NULL,102,'Montana Poetry Partnership',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:35'),(110,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Craig','Craig Jones Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1719665673',NULL,'Sample Data','Craig','N','Jones',NULL,1,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Jones Jr.',NULL,2,'2002-10-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:26'),(111,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs-Jones family','Jacobs-Jones family',NULL,NULL,NULL,NULL,NULL,'Both','3294104962',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jacobs-Jones family',5,NULL,'Dear Jacobs-Jones family',2,NULL,'Jacobs-Jones family',NULL,NULL,NULL,0,NULL,'Jacobs-Jones family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:33'),(112,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'colsen@example.co.in','colsen@example.co.in',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1086111802',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear colsen@example.co.in',1,NULL,'Dear colsen@example.co.in',1,NULL,'colsen@example.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(113,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Pine Sustainability Collective','Pine Sustainability Collective',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','896679269',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Pine Sustainability Collective',NULL,NULL,NULL,0,NULL,NULL,74,'Pine Sustainability Collective',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:35'),(114,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Robertson family','Robertson family',NULL,NULL,NULL,NULL,NULL,'Both','3444393980',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Robertson family',5,NULL,'Dear Robertson family',2,NULL,'Robertson family',NULL,NULL,NULL,0,NULL,'Robertson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:33'),(115,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Lincoln','Lincoln Barkley',NULL,NULL,NULL,NULL,NULL,'Both','1151829541',NULL,'Sample Data','Lincoln','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Lincoln Barkley',NULL,2,'1987-11-10',0,NULL,NULL,NULL,'Iowa Literacy School',NULL,NULL,126,0,NULL,'2015-04-29 03:27:35'),(116,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Robertson family','Robertson family',NULL,NULL,NULL,NULL,NULL,'Both','3444393980',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Robertson family',5,NULL,'Dear Robertson family',2,NULL,'Robertson family',NULL,NULL,NULL,0,NULL,'Robertson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:33'),(117,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs, Kathleen','Kathleen Jacobs',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2367611893',NULL,'Sample Data','Kathleen','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Kathleen Jacobs',NULL,1,'1981-07-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:25'),(118,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Robertson, Elina','Elina Robertson',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2118897804',NULL,'Sample Data','Elina','','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina Robertson',NULL,NULL,'1970-04-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(119,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Bachman, Erik','Erik Bachman',NULL,NULL,NULL,NULL,NULL,'Both','620728720',NULL,'Sample Data','Erik','','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Bachman',NULL,2,'1942-08-26',1,'2015-03-10',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:25'),(120,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Zope, Kiara','Kiara Zope',NULL,NULL,NULL,NULL,NULL,'Both','2982636057',NULL,'Sample Data','Kiara','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Zope',NULL,1,'1998-08-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:30'),(121,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Robertson, Jed','Jed Robertson II',NULL,NULL,NULL,NULL,NULL,'Both','1656810966',NULL,'Sample Data','Jed','','Robertson',NULL,3,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Robertson II',NULL,2,'1984-11-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(122,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Jones-González, Ashlie','Ashlie Jones-González',NULL,NULL,NULL,NULL,NULL,'Both','4263563309',NULL,'Sample Data','Ashlie','H','Jones-González',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Jones-González',NULL,NULL,'1975-03-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(123,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cruz, Alexia','Mrs. Alexia Cruz',NULL,NULL,NULL,NULL,NULL,'Both','3468295475',NULL,'Sample Data','Alexia','P','Cruz',1,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Mrs. Alexia Cruz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:30'),(124,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'El Camino Software Solutions','El Camino Software Solutions',NULL,NULL,NULL,NULL,NULL,'Both','52128382',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'El Camino Software Solutions',NULL,NULL,NULL,0,NULL,NULL,34,'El Camino Software Solutions',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:34'),(125,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Sharyn','Sharyn Prentice',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2491817184',NULL,'Sample Data','Sharyn','','Prentice',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Prentice',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(126,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Iowa Literacy School','Iowa Literacy School',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2287401071',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Iowa Literacy School',NULL,NULL,NULL,0,NULL,NULL,115,'Iowa Literacy School',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:35'),(127,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Urban Action Partnership','Urban Action Partnership',NULL,NULL,NULL,NULL,NULL,'Both','1849693125',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Action Partnership',NULL,NULL,NULL,0,NULL,NULL,NULL,'Urban Action Partnership',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:34'),(128,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'jacobmller9@infomail.co.nz','jacobmller9@infomail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','3112076887',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear jacobmller9@infomail.co.nz',1,NULL,'Dear jacobmller9@infomail.co.nz',1,NULL,'jacobmller9@infomail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(129,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Prentice-Cruz, Herminia','Herminia Prentice-Cruz',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','3968683343',NULL,'Sample Data','Herminia','P','Prentice-Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Prentice-Cruz',NULL,1,'1971-10-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(130,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González, Sherman','Sherman González',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','33045013',NULL,'Sample Data','Sherman','','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Sherman González',NULL,2,'1984-11-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(131,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Craig','Craig Samuels II',NULL,NULL,NULL,NULL,NULL,'Both','810726824',NULL,'Sample Data','Craig','','Samuels',NULL,3,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Samuels II',NULL,NULL,'1954-11-06',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:28'),(132,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Elizabeth','Elizabeth Patel',NULL,NULL,NULL,NULL,NULL,'Both','87465579',NULL,'Sample Data','Elizabeth','','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth Patel',NULL,1,'1948-03-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(133,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Rolando','Rolando Cruz Jr.',NULL,NULL,NULL,NULL,NULL,'Both','948578294',NULL,'Sample Data','Rolando','D','Cruz',NULL,1,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Cruz Jr.',NULL,NULL,'1968-12-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(134,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Parker family','Parker family',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','425242179',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Parker family',5,NULL,'Dear Parker family',2,NULL,'Parker family',NULL,NULL,NULL,0,NULL,'Parker family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(135,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Green Sports Services','Green Sports Services',NULL,NULL,NULL,NULL,NULL,'Both','11314515',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Green Sports Services',NULL,NULL,NULL,0,NULL,NULL,193,'Green Sports Services',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:34'),(136,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Adams-Jones family','Adams-Jones family',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1082658225',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Adams-Jones family',5,NULL,'Dear Adams-Jones family',2,NULL,'Adams-Jones family',NULL,NULL,NULL,0,NULL,'Adams-Jones family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:33'),(137,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Lincoln','Dr. Lincoln Parker Sr.',NULL,NULL,NULL,NULL,NULL,'Both','108314826',NULL,'Sample Data','Lincoln','','Parker',4,2,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Dr. Lincoln Parker Sr.',NULL,NULL,'1970-01-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:26'),(138,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson-Wilson, Omar','Mr. Omar Samson-Wilson',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1580029734',NULL,'Sample Data','Omar','','Samson-Wilson',3,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Mr. Omar Samson-Wilson',NULL,2,NULL,1,'2014-04-29',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(139,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Norris','Norris Reynolds Jr.',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3621358089',NULL,'Sample Data','Norris','W','Reynolds',NULL,1,NULL,NULL,1,NULL,'Dear Norris',1,NULL,'Dear Norris',1,NULL,'Norris Reynolds Jr.',NULL,2,'1984-12-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(140,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Rosario','Mr. Rosario Cooper',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3676210412',NULL,'Sample Data','Rosario','','Cooper',3,NULL,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Mr. Rosario Cooper',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:28'),(141,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Barry','Barry Cruz Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2626171686',NULL,'Sample Data','Barry','','Cruz',NULL,2,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Barry Cruz Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(142,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Allan','Dr. Allan Samuels',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1133078427',NULL,'Sample Data','Allan','G','Samuels',4,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Dr. Allan Samuels',NULL,2,NULL,1,'2014-11-11',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(143,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'ei.cruz@fakemail.co.uk','ei.cruz@fakemail.co.uk',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','119988089',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear ei.cruz@fakemail.co.uk',1,NULL,'Dear ei.cruz@fakemail.co.uk',1,NULL,'ei.cruz@fakemail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(144,'Organization',NULL,0,1,0,0,1,0,NULL,NULL,'New Mexico Culture Initiative','New Mexico Culture Initiative',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1611852411',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'New Mexico Culture Initiative',NULL,NULL,NULL,0,NULL,NULL,85,'New Mexico Culture Initiative',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:35'),(145,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cruz, Bernadette','Bernadette Cruz',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','264367501',NULL,'Sample Data','Bernadette','Z','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Bernadette Cruz',NULL,1,'1983-02-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(146,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Omar','Omar Patel',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','2759109046',NULL,'Sample Data','Omar','B','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar Patel',NULL,2,'1956-07-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:28'),(147,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Scott','Mr. Scott Bachman II',NULL,NULL,NULL,NULL,NULL,'Both','3146978953',NULL,'Sample Data','Scott','J','Bachman',3,3,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Mr. Scott Bachman II',NULL,2,'1961-10-02',0,NULL,NULL,NULL,'Terre Haute Poetry Collective',NULL,NULL,55,0,NULL,'2015-04-29 03:27:34'),(148,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Deforest, Troy','Troy Deforest Jr.',NULL,NULL,NULL,NULL,NULL,'Both','696795137',NULL,'Sample Data','Troy','','Deforest',NULL,1,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Deforest Jr.',NULL,2,'1967-12-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(149,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Rolando','Mr. Rolando Prentice Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1297722771',NULL,'Sample Data','Rolando','','Prentice',3,2,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Mr. Rolando Prentice Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(150,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Jerome','Jerome Yadav Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2655948882',NULL,'Sample Data','Jerome','','Yadav',NULL,2,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Yadav Sr.',NULL,2,'2005-02-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(151,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Omar','Omar Grant Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2919380',NULL,'Sample Data','Omar','','Grant',NULL,2,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar Grant Sr.',NULL,2,'1941-07-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:30'),(152,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'josefamcreynolds@spamalot.net','josefamcreynolds@spamalot.net',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3024939816',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear josefamcreynolds@spamalot.net',1,NULL,'Dear josefamcreynolds@spamalot.net',1,NULL,'josefamcreynolds@spamalot.net',NULL,NULL,NULL,0,NULL,NULL,NULL,'Friends Arts School',NULL,NULL,32,0,NULL,'2015-04-29 03:27:35'),(153,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Deforest, Margaret','Margaret Deforest',NULL,NULL,NULL,NULL,NULL,'Both','2531077628',NULL,'Sample Data','Margaret','B','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Deforest',NULL,1,'1946-02-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(154,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'yadavl15@sample.org','yadavl15@sample.org',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','4089895255',NULL,'Sample Data',NULL,NULL,NULL,3,1,NULL,NULL,1,NULL,'Dear yadavl15@sample.org',1,NULL,'Dear yadavl15@sample.org',1,NULL,'yadavl15@sample.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:30'),(155,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov-Olsen, Allan','Allan Ivanov-Olsen II',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3384741334',NULL,'Sample Data','Allan','Q','Ivanov-Olsen',NULL,3,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Ivanov-Olsen II',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(156,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Reynolds, Landon','Mr. Landon Reynolds Jr.',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','303655385',NULL,'Sample Data','Landon','','Reynolds',3,1,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Mr. Landon Reynolds Jr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(157,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Winford','Dr. Winford Dimitrov Jr.',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1833902224',NULL,'Sample Data','Winford','','Dimitrov',4,1,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Dr. Winford Dimitrov Jr.',NULL,2,'1939-12-12',1,'2014-05-18',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:29'),(158,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Łąchowski, Josefa','Josefa Łąchowski',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','18129062',NULL,'Sample Data','Josefa','D','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Łąchowski',NULL,1,'1963-09-03',1,'2014-09-20',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:29'),(159,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Truman','Mr. Truman Jameson',NULL,NULL,NULL,NULL,NULL,'Both','4265431677',NULL,'Sample Data','Truman','','Jameson',3,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Mr. Truman Jameson',NULL,NULL,'1975-03-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(160,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jacobs-Jones, Lawerence','Lawerence Jacobs-Jones III',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1737473395',NULL,'Sample Data','Lawerence','','Jacobs-Jones',NULL,4,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Jacobs-Jones III',NULL,2,'1985-12-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(161,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Grant, Felisha','Felisha Grant',NULL,NULL,NULL,NULL,NULL,'Both','1477172324',NULL,'Sample Data','Felisha','S','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Felisha Grant',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(162,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Reynolds, Elbert','Mr. Elbert Reynolds',NULL,NULL,NULL,NULL,NULL,'Both','2224864329',NULL,'Sample Data','Elbert','D','Reynolds',3,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Mr. Elbert Reynolds',NULL,2,'1975-08-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:28'),(163,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz family','Cruz family',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2326538497',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cruz family',5,NULL,'Dear Cruz family',2,NULL,'Cruz family',NULL,NULL,NULL,0,NULL,'Cruz family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:33'),(164,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'robertson.lawerence39@sample.co.uk','robertson.lawerence39@sample.co.uk',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2961307888',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear robertson.lawerence39@sample.co.uk',1,NULL,'Dear robertson.lawerence39@sample.co.uk',1,NULL,'robertson.lawerence39@sample.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(165,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Samuels, Princess','Princess Samuels',NULL,NULL,NULL,NULL,NULL,'Both','2497332037',NULL,'Sample Data','Princess','','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Samuels',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(166,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Elina','Ms. Elina Jensen',NULL,NULL,NULL,NULL,NULL,'Both','2625728964',NULL,'Sample Data','Elina','','Jensen',2,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Ms. Elina Jensen',NULL,1,'1969-09-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:28'),(167,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wagner, Merrie','Mrs. Merrie Wagner',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1799305605',NULL,'Sample Data','Merrie','','Wagner',1,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Mrs. Merrie Wagner',NULL,1,'1992-08-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:29'),(168,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'González, Teddy','Teddy González',NULL,NULL,NULL,NULL,NULL,'Both','2958949801',NULL,'Sample Data','Teddy','','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy González',NULL,2,'1987-03-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(169,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov, Juliann','Juliann Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','1998622954',NULL,'Sample Data','Juliann','','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Ivanov',NULL,1,'1931-10-15',1,'2014-07-23',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:26'),(170,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Claudio','Claudio Zope Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3870428103',NULL,'Sample Data','Claudio','','Zope',NULL,1,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio Zope Jr.',NULL,2,'1942-02-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(171,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Parker, Lashawnda','Mrs. Lashawnda Parker',NULL,NULL,NULL,NULL,NULL,'Both','1469017621',NULL,'Sample Data','Lashawnda','S','Parker',1,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Mrs. Lashawnda Parker',NULL,1,'1988-07-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:26'),(172,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Samuels family','Samuels family',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','350459294',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samuels family',5,NULL,'Dear Samuels family',2,NULL,'Samuels family',NULL,NULL,NULL,0,NULL,'Samuels family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(173,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Samson-Wilson family','Samson-Wilson family',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2475356856',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samson-Wilson family',5,NULL,'Dear Samson-Wilson family',2,NULL,'Samson-Wilson family',NULL,NULL,NULL,0,NULL,'Samson-Wilson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:33'),(174,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Brzęczysław','Mr. Brzęczysław Prentice',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','218953873',NULL,'Sample Data','Brzęczysław','W','Prentice',3,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Mr. Brzęczysław Prentice',NULL,NULL,'1964-07-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(175,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'alidac91@mymail.co.uk','alidac91@mymail.co.uk',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','680102435',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear alidac91@mymail.co.uk',1,NULL,'Dear alidac91@mymail.co.uk',1,NULL,'alidac91@mymail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(176,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Olsen family','Olsen family',NULL,NULL,NULL,NULL,NULL,'Both','1990073228',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Olsen family',5,NULL,'Dear Olsen family',2,NULL,'Olsen family',NULL,NULL,NULL,0,NULL,'Olsen family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:32'),(177,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams-Jones, Omar','Mr. Omar Adams-Jones Jr.',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2317788481',NULL,'Sample Data','Omar','','Adams-Jones',3,1,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Mr. Omar Adams-Jones Jr.',NULL,NULL,'1969-05-22',1,'2015-01-25',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(178,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Margaret','Margaret Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','3984018462',NULL,'Sample Data','Margaret','O','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Nielsen',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(179,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'kandacew@lol.co.in','kandacew@lol.co.in',NULL,NULL,NULL,NULL,NULL,'Both','1348579190',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear kandacew@lol.co.in',1,NULL,'Dear kandacew@lol.co.in',1,NULL,'kandacew@lol.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(180,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'mllerm@lol.co.in','mllerm@lol.co.in',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','4028187602',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear mllerm@lol.co.in',1,NULL,'Dear mllerm@lol.co.in',1,NULL,'mllerm@lol.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(181,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Allen','Allen Parker II',NULL,NULL,NULL,NULL,NULL,'Both','710842690',NULL,'Sample Data','Allen','','Parker',NULL,3,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen Parker II',NULL,2,'1999-05-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(182,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams-Jones, Jacob','Jacob Adams-Jones Sr.',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','238104800',NULL,'Sample Data','Jacob','G','Adams-Jones',NULL,2,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Adams-Jones Sr.',NULL,2,'1984-07-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(183,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'grant.herminia@mymail.co.in','grant.herminia@mymail.co.in',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3373713140',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear grant.herminia@mymail.co.in',1,NULL,'Dear grant.herminia@mymail.co.in',1,NULL,'grant.herminia@mymail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(184,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'eu.mcreynolds@sample.co.uk','eu.mcreynolds@sample.co.uk',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1977815231',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear eu.mcreynolds@sample.co.uk',1,NULL,'Dear eu.mcreynolds@sample.co.uk',1,NULL,'eu.mcreynolds@sample.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:28'),(185,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'jameson.jacob@testmail.info','jameson.jacob@testmail.info',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2549897217',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jameson.jacob@testmail.info',1,NULL,'Dear jameson.jacob@testmail.info',1,NULL,'jameson.jacob@testmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(186,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Global Advocacy Center','Global Advocacy Center',NULL,NULL,NULL,NULL,NULL,'Both','1476641254',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Advocacy Center',NULL,NULL,NULL,0,NULL,NULL,NULL,'Global Advocacy Center',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:35'),(187,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Elizabeth Food Fund','Elizabeth Food Fund',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','3127863625',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Elizabeth Food Fund',NULL,NULL,NULL,0,NULL,NULL,2,'Elizabeth Food Fund',NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:34'),(188,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Patel, Kathleen','Ms. Kathleen Patel',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3805387262',NULL,'Sample Data','Kathleen','','Patel',2,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Ms. Kathleen Patel',NULL,1,'1978-11-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:30'),(189,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice family','Prentice family',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3313623671',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Prentice family',5,NULL,'Dear Prentice family',2,NULL,'Prentice family',NULL,NULL,NULL,0,NULL,'Prentice family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:33'),(190,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Díaz, Betty','Dr. Betty Díaz',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1256027759',NULL,'Sample Data','Betty','','Díaz',4,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Dr. Betty Díaz',NULL,1,'1987-10-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:29'),(191,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Bryon','Mr. Bryon Díaz',NULL,NULL,NULL,NULL,NULL,'Both','2771305543',NULL,'Sample Data','Bryon','G','Díaz',3,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Mr. Bryon Díaz',NULL,NULL,'1964-12-03',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:26'),(192,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'kathleend73@sample.biz','kathleend73@sample.biz',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1875849444',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear kathleend73@sample.biz',1,NULL,'Dear kathleend73@sample.biz',1,NULL,'kathleend73@sample.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:29'),(193,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Claudio','Claudio Yadav II',NULL,NULL,NULL,NULL,NULL,'Both','2212747069',NULL,'Sample Data','Claudio','','Yadav',NULL,3,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Claudio Yadav II',NULL,NULL,'1946-09-21',0,NULL,NULL,NULL,'Green Sports Services',NULL,NULL,135,0,NULL,'2015-04-29 03:27:34'),(194,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terry, Alexia','Alexia Terry',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1601599901',NULL,'Sample Data','Alexia','C','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Terry',NULL,1,'1986-07-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(195,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Brzęczysław','Dr. Brzęczysław Barkley Sr.',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2169122499',NULL,'Sample Data','Brzęczysław','Y','Barkley',4,2,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Dr. Brzęczysław Barkley Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:29'),(196,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Díaz, Alida','Mrs. Alida Díaz',NULL,NULL,NULL,NULL,NULL,'Both','1025898769',NULL,'Sample Data','Alida','T','Díaz',1,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Mrs. Alida Díaz',NULL,1,'1965-05-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:29'),(197,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'mller.jay@lol.co.in','mller.jay@lol.co.in',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3217961911',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear mller.jay@lol.co.in',1,NULL,'Dear mller.jay@lol.co.in',1,NULL,'mller.jay@lol.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:31'),(198,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Dimitrov, Alexia','Alexia Dimitrov',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2476509826',NULL,'Sample Data','Alexia','','Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Dimitrov',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:27'),(199,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Łąchowski-Cooper, Brittney','Mrs. Brittney Łąchowski-Cooper',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1101750207',NULL,'Sample Data','Brittney','','Łąchowski-Cooper',1,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Mrs. Brittney Łąchowski-Cooper',NULL,NULL,'1982-04-08',0,NULL,NULL,NULL,'Round Pond Health Collective',NULL,NULL,23,0,NULL,'2015-04-29 03:27:35'),(200,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jones, Delana','Ms. Delana Jones',NULL,NULL,NULL,NULL,NULL,'Both','1936969701',NULL,'Sample Data','Delana','','Jones',2,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Ms. Delana Jones',NULL,1,NULL,0,NULL,NULL,NULL,'Progressive Development School',NULL,NULL,37,0,NULL,'2015-04-29 03:27:35'),(201,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Daren','Daren Patel',NULL,NULL,NULL,NULL,NULL,'Both','2085344980',NULL,'Sample Data','Daren','F','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Patel',NULL,NULL,'2002-05-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-04-29 03:27:26');
++INSERT INTO `civicrm_contact` (`id`, `contact_type`, `contact_sub_type`, `do_not_email`, `do_not_phone`, `do_not_mail`, `do_not_sms`, `do_not_trade`, `is_opt_out`, `legal_identifier`, `external_identifier`, `sort_name`, `display_name`, `nick_name`, `legal_name`, `image_URL`, `preferred_communication_method`, `preferred_language`, `preferred_mail_format`, `hash`, `api_key`, `source`, `first_name`, `middle_name`, `last_name`, `prefix_id`, `suffix_id`, `formal_title`, `communication_style_id`, `email_greeting_id`, `email_greeting_custom`, `email_greeting_display`, `postal_greeting_id`, `postal_greeting_custom`, `postal_greeting_display`, `addressee_id`, `addressee_custom`, `addressee_display`, `job_title`, `gender_id`, `birth_date`, `is_deceased`, `deceased_date`, `household_name`, `primary_contact_id`, `organization_name`, `sic_code`, `user_unique_id`, `employer_id`, `is_deleted`, `created_date`, `modified_date`) VALUES (1,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Default Organization','Default Organization',NULL,'Default Organization',NULL,NULL,NULL,'Both',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'Default Organization',NULL,NULL,NULL,0,NULL,'2015-05-10 10:34:52'),(2,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Kiara','Dr. Kiara Müller',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2544954591',NULL,'Sample Data','Kiara','','Müller',4,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Dr. Kiara Müller',NULL,NULL,'1977-11-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(3,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jacobs, Rolando','Rolando Jacobs III',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','102389698',NULL,'Sample Data','Rolando','S','Jacobs',NULL,4,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Jacobs III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(4,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Daren','Dr. Daren Ivanov',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2368144702',NULL,'Sample Data','Daren','','Ivanov',4,NULL,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Dr. Daren Ivanov',NULL,2,'1939-06-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(5,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'González, Justina','Dr. Justina González',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2517853745',NULL,'Sample Data','Justina','G','González',4,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Dr. Justina González',NULL,1,'1929-06-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(6,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Łąchowski, Errol','Errol Łąchowski III',NULL,NULL,NULL,NULL,NULL,'Both','4217414454',NULL,'Sample Data','Errol','Y','Łąchowski',NULL,4,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Łąchowski III',NULL,2,'1926-04-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(7,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Nicole','Dr. Nicole Díaz',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1789342524',NULL,'Sample Data','Nicole','I','Díaz',4,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Dr. Nicole Díaz',NULL,NULL,'1988-09-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(8,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Blackwell, Andrew','Mr. Andrew Blackwell Sr.',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','2328901373',NULL,'Sample Data','Andrew','I','Blackwell',3,2,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Mr. Andrew Blackwell Sr.',NULL,2,'1984-05-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(9,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Roberts, Barry','Dr. Barry Roberts Sr.',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1797669693',NULL,'Sample Data','Barry','Z','Roberts',4,2,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Dr. Barry Roberts Sr.',NULL,2,'1979-09-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(10,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Scott','Scott Blackwell III',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1650464224',NULL,'Sample Data','Scott','M','Blackwell',NULL,4,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Blackwell III',NULL,NULL,NULL,0,NULL,NULL,NULL,'Jacksonville Software Academy',NULL,NULL,19,0,NULL,'2015-05-10 10:35:03'),(11,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Herminia','Herminia González',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','4067531506',NULL,'Sample Data','Herminia','','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia González',NULL,NULL,'1950-04-12',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(12,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Margaret','Margaret Yadav',NULL,NULL,NULL,NULL,NULL,'Both','3959187042',NULL,'Sample Data','Margaret','','Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Yadav',NULL,NULL,'1975-11-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(13,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'McReynolds, Brigette','Brigette McReynolds',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','393115724',NULL,'Sample Data','Brigette','D','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette McReynolds',NULL,1,'1946-06-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(14,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Ivey','Ms. Ivey Grant',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','3330966549',NULL,'Sample Data','Ivey','','Grant',2,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ms. Ivey Grant',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(15,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Lashawnda','Lashawnda Bachman',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1842507173',NULL,'Sample Data','Lashawnda','','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Bachman',NULL,1,'2014-05-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(16,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'Barkley family','Barkley family',NULL,NULL,NULL,NULL,NULL,'Both','2888062109',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Barkley family',5,NULL,'Dear Barkley family',2,NULL,'Barkley family',NULL,NULL,NULL,0,NULL,'Barkley family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(17,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Díaz-McReynolds, Betty','Betty Díaz-McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','2444218032',NULL,'Sample Data','Betty','V','Díaz-McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Díaz-McReynolds',NULL,NULL,'2003-04-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(18,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Brzęczysław','Dr. Brzęczysław Terrell Sr.',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','2155865046',NULL,'Sample Data','Brzęczysław','','Terrell',4,2,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Dr. Brzęczysław Terrell Sr.',NULL,NULL,'1979-04-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(19,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Jacksonville Software Academy','Jacksonville Software Academy',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1295691925',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Jacksonville Software Academy',NULL,NULL,NULL,0,NULL,NULL,10,'Jacksonville Software Academy',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(20,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson family','Wilson family',NULL,NULL,NULL,NULL,NULL,'Both','350510798',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wilson family',5,NULL,'Dear Wilson family',2,NULL,'Wilson family',NULL,NULL,NULL,0,NULL,'Wilson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(21,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Bachman, Margaret','Margaret Bachman',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2110616060',NULL,'Sample Data','Margaret','F','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Margaret Bachman',NULL,NULL,'2011-08-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(22,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Bachman, Tanya','Mrs. Tanya Bachman',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','2047603331',NULL,'Sample Data','Tanya','','Bachman',1,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Mrs. Tanya Bachman',NULL,1,'1990-06-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(23,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Brent','Dr. Brent Jensen',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','4204826871',NULL,'Sample Data','Brent','D','Jensen',4,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Dr. Brent Jensen',NULL,NULL,'1965-02-07',1,'2014-12-03',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(24,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Arlyne','Ms. Arlyne Terrell',NULL,NULL,NULL,NULL,NULL,'Both','1402664219',NULL,'Sample Data','Arlyne','','Terrell',2,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Ms. Arlyne Terrell',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(25,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman family','Bachman family',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1714131215',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Bachman family',5,NULL,'Dear Bachman family',2,NULL,'Bachman family',NULL,NULL,NULL,0,NULL,'Bachman family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(26,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Arlyne','Arlyne Wilson',NULL,NULL,NULL,NULL,NULL,'Both','785003749',NULL,'Sample Data','Arlyne','N','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Wilson',NULL,1,'1974-11-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(27,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Barkley, Tanya','Ms. Tanya Barkley',NULL,NULL,NULL,NULL,NULL,'Both','2953066257',NULL,'Sample Data','Tanya','I','Barkley',2,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Ms. Tanya Barkley',NULL,1,'1971-05-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(28,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'shaunao@notmail.com','shaunao@notmail.com',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1174696122',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear shaunao@notmail.com',1,NULL,'Dear shaunao@notmail.com',1,NULL,'shaunao@notmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(29,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Bryon','Bryon Cruz Jr.',NULL,NULL,NULL,NULL,NULL,'Both','2932788589',NULL,'Sample Data','Bryon','','Cruz',NULL,1,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon Cruz Jr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(30,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Barkley, Josefa','Josefa Barkley',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','4233430173',NULL,'Sample Data','Josefa','I','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Barkley',NULL,1,'1977-05-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(31,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson family','Jameson family',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','2255649769',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jameson family',5,NULL,'Dear Jameson family',2,NULL,'Jameson family',NULL,NULL,NULL,0,NULL,'Jameson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(32,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Local Software Center','Local Software Center',NULL,NULL,NULL,NULL,NULL,'Both','3124900494',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Software Center',NULL,NULL,NULL,0,NULL,NULL,100,'Local Software Center',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(33,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Shad','Shad Cruz',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','4228907053',NULL,'Sample Data','Shad','C','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Cruz',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(34,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Russell','Russell Wilson III',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1575033929',NULL,'Sample Data','Russell','I','Wilson',NULL,4,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Wilson III',NULL,2,'2008-06-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(35,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Nielsen-Yadav family','Nielsen-Yadav family',NULL,NULL,NULL,NULL,NULL,'Both','1441781167',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Nielsen-Yadav family',5,NULL,'Dear Nielsen-Yadav family',2,NULL,'Nielsen-Yadav family',NULL,NULL,NULL,0,NULL,'Nielsen-Yadav family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(36,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Parker, Sharyn','Sharyn Parker',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','3052286233',NULL,'Sample Data','Sharyn','','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Parker',NULL,1,'1978-08-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(37,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Parker-Wilson, Shauna','Ms. Shauna Parker-Wilson',NULL,NULL,NULL,NULL,NULL,'Both','1851828335',NULL,'Sample Data','Shauna','','Parker-Wilson',2,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Ms. Shauna Parker-Wilson',NULL,NULL,NULL,0,NULL,NULL,NULL,'Rural Development Initiative',NULL,NULL,38,0,NULL,'2015-05-10 10:35:03'),(38,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Rural Development Initiative','Rural Development Initiative',NULL,NULL,NULL,NULL,NULL,'Both','3637214668',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Rural Development Initiative',NULL,NULL,NULL,0,NULL,NULL,37,'Rural Development Initiative',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(39,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell family','Blackwell family',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3218641510',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Blackwell family',5,NULL,'Dear Blackwell family',2,NULL,'Blackwell family',NULL,NULL,NULL,0,NULL,'Blackwell family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(40,'Organization',NULL,1,0,0,0,1,0,NULL,NULL,'United Family Partners','United Family Partners',NULL,NULL,NULL,NULL,NULL,'Both','3324621109',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'United Family Partners',NULL,NULL,NULL,0,NULL,NULL,124,'United Family Partners',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(41,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jensen-Patel, Nicole','Nicole Jensen-Patel',NULL,NULL,NULL,NULL,NULL,'Both','1086199875',NULL,'Sample Data','Nicole','','Jensen-Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Jensen-Patel',NULL,1,'2003-02-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(42,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Dimitrov, Beula','Dr. Beula Dimitrov',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2632230535',NULL,'Sample Data','Beula','','Dimitrov',4,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Dr. Beula Dimitrov',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(43,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'carylonterrell@notmail.info','carylonterrell@notmail.info',NULL,NULL,NULL,NULL,NULL,'Both','1260752179',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear carylonterrell@notmail.info',1,NULL,'Dear carylonterrell@notmail.info',1,NULL,'carylonterrell@notmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(44,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Barkley, Troy','Mr. Troy Barkley',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3703467861',NULL,'Sample Data','Troy','','Barkley',3,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Mr. Troy Barkley',NULL,2,'1992-11-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(45,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'McReynolds, Shauna','Mrs. Shauna McReynolds',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3277027646',NULL,'Sample Data','Shauna','','McReynolds',1,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Mrs. Shauna McReynolds',NULL,1,'1983-05-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(46,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wilson, Laree','Mrs. Laree Wilson',NULL,NULL,NULL,NULL,NULL,'Both','2893161041',NULL,'Sample Data','Laree','E','Wilson',1,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Mrs. Laree Wilson',NULL,NULL,'1966-06-27',0,NULL,NULL,NULL,'Urban Education Academy',NULL,NULL,191,0,NULL,'2015-05-10 10:35:03'),(47,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Rebekah','Rebekah Cooper',NULL,NULL,NULL,NULL,NULL,'Both','3979151803',NULL,'Sample Data','Rebekah','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Rebekah Cooper',NULL,1,'1975-09-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(48,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Arlyne','Arlyne Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','3808368075',NULL,'Sample Data','Arlyne','H','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Nielsen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(49,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Díaz, Elizabeth','Elizabeth Díaz',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1884711539',NULL,'Sample Data','Elizabeth','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth Díaz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(50,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Bachman, Elizabeth','Dr. Elizabeth Bachman',NULL,NULL,NULL,NULL,NULL,'Both','2403880070',NULL,'Sample Data','Elizabeth','B','Bachman',4,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Dr. Elizabeth Bachman',NULL,1,'1964-06-01',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(51,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'deforest.maria@testing.info','deforest.maria@testing.info',NULL,NULL,NULL,NULL,NULL,'Both','961477560',NULL,'Sample Data',NULL,NULL,NULL,3,3,NULL,NULL,1,NULL,'Dear deforest.maria@testing.info',1,NULL,'Dear deforest.maria@testing.info',1,NULL,'deforest.maria@testing.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(52,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Jed','Dr. Jed Blackwell Sr.',NULL,NULL,NULL,NULL,NULL,'Both','38907930',NULL,'Sample Data','Jed','','Blackwell',4,2,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Dr. Jed Blackwell Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(53,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Landon','Landon Zope',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','4025242907',NULL,'Sample Data','Landon','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Zope',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(54,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Díaz, Bernadette','Bernadette Díaz',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3014565065',NULL,'Sample Data','Bernadette','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Bernadette',1,NULL,'Dear Bernadette',1,NULL,'Bernadette Díaz',NULL,NULL,'2000-09-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(55,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Ashlie','Ashlie McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','3165583766',NULL,'Sample Data','Ashlie','Y','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie McReynolds',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(56,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Jina','Mrs. Jina Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','800326808',NULL,'Sample Data','Jina','H','Ivanov',1,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Mrs. Jina Ivanov',NULL,1,'1944-02-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(57,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Global Empowerment Partnership','Global Empowerment Partnership',NULL,NULL,NULL,NULL,NULL,'Both','808094991',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Empowerment Partnership',NULL,NULL,NULL,0,NULL,NULL,NULL,'Global Empowerment Partnership',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(58,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Deforest, Alida','Alida Deforest',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2092838501',NULL,'Sample Data','Alida','F','Deforest',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Deforest',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(59,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell-Wattson, Rodrigo','Rodrigo Terrell-Wattson',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2612941709',NULL,'Sample Data','Rodrigo','H','Terrell-Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Terrell-Wattson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(60,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Justina','Mrs. Justina Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','288351947',NULL,'Sample Data','Justina','Q','Łąchowski',1,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Mrs. Justina Łąchowski',NULL,1,'1935-03-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(61,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Truman','Dr. Truman McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','779089403',NULL,'Sample Data','Truman','','McReynolds',4,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Dr. Truman McReynolds',NULL,2,'1956-09-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(62,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Eleonor','Ms. Eleonor Cooper',NULL,NULL,NULL,NULL,NULL,'Both','3505180760',NULL,'Sample Data','Eleonor','P','Cooper',2,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Ms. Eleonor Cooper',NULL,1,'1982-04-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(63,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Connecticut Advocacy Alliance','Connecticut Advocacy Alliance',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3156466991',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Connecticut Advocacy Alliance',NULL,NULL,NULL,0,NULL,NULL,NULL,'Connecticut Advocacy Alliance',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(64,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Lou','Lou Díaz',NULL,NULL,NULL,NULL,NULL,'Both','1546158286',NULL,'Sample Data','Lou','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Díaz',NULL,NULL,'2000-03-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(65,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Barkley, Kenny','Mr. Kenny Barkley III',NULL,NULL,NULL,NULL,NULL,'Both','3409558741',NULL,'Sample Data','Kenny','D','Barkley',3,4,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Mr. Kenny Barkley III',NULL,2,NULL,0,NULL,NULL,NULL,'Urban Sports Services',NULL,NULL,157,0,NULL,'2015-05-10 10:35:03'),(66,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Russell','Mr. Russell Olsen III',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2568545963',NULL,'Sample Data','Russell','','Olsen',3,4,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Mr. Russell Olsen III',NULL,NULL,'1951-08-08',1,'2014-12-05',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(67,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'wilson.k.rebekah@example.biz','wilson.k.rebekah@example.biz',NULL,NULL,NULL,NULL,NULL,'Both','2205256189',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear wilson.k.rebekah@example.biz',1,NULL,'Dear wilson.k.rebekah@example.biz',1,NULL,'wilson.k.rebekah@example.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(68,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman family','Bachman family',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1714131215',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Bachman family',5,NULL,'Dear Bachman family',2,NULL,'Bachman family',NULL,NULL,NULL,0,NULL,'Bachman family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(69,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Wilson, Beula','Beula Wilson',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1338008242',NULL,'Sample Data','Beula','','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Wilson',NULL,1,'1950-06-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(70,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds-Wagner, Allen','Allen McReynolds-Wagner Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3015900878',NULL,'Sample Data','Allen','N','McReynolds-Wagner',NULL,1,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen McReynolds-Wagner Jr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(71,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jones, Carylon','Carylon Jones',NULL,NULL,NULL,NULL,NULL,'Both','559355137',NULL,'Sample Data','Carylon','','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Jones',NULL,NULL,'1926-07-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(72,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'nielsen.erik1@fishmail.co.in','nielsen.erik1@fishmail.co.in',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3582571376',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear nielsen.erik1@fishmail.co.in',1,NULL,'Dear nielsen.erik1@fishmail.co.in',1,NULL,'nielsen.erik1@fishmail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(73,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'troyparker@fishmail.biz','troyparker@fishmail.biz',NULL,NULL,NULL,NULL,NULL,'Both','3247540743',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear troyparker@fishmail.biz',1,NULL,'Dear troyparker@fishmail.biz',1,NULL,'troyparker@fishmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(74,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Roberts, Beula','Beula Roberts',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','640050534',NULL,'Sample Data','Beula','','Roberts',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Roberts',NULL,1,'1994-09-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(75,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Olsen, Brittney','Brittney Olsen',NULL,NULL,NULL,NULL,NULL,'Both','701819142',NULL,'Sample Data','Brittney','E','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Olsen',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(76,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Shad','Mr. Shad Łąchowski Jr.',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','695965162',NULL,'Sample Data','Shad','','Łąchowski',3,1,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Mr. Shad Łąchowski Jr.',NULL,2,'1989-03-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(77,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Andrew','Andrew Smith III',NULL,NULL,NULL,NULL,NULL,'Both','2297505615',NULL,'Sample Data','Andrew','','Smith',NULL,4,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Smith III',NULL,NULL,'1974-06-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(78,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'Wilson family','Wilson family',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','350510798',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wilson family',5,NULL,'Dear Wilson family',2,NULL,'Wilson family',NULL,NULL,NULL,0,NULL,'Wilson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(79,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper family','Cooper family',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1133003930',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper family',5,NULL,'Dear Cooper family',2,NULL,'Cooper family',NULL,NULL,NULL,0,NULL,'Cooper family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(80,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Clint','Mr. Clint Wilson',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1166006517',NULL,'Sample Data','Clint','','Wilson',3,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Mr. Clint Wilson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(81,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Martin Luther King Sustainability Association','Martin Luther King Sustainability Association',NULL,NULL,NULL,NULL,NULL,'Both','4080117325',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Martin Luther King Sustainability Association',NULL,NULL,NULL,0,NULL,NULL,180,'Martin Luther King Sustainability Association',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(82,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'bettywagner10@notmail.biz','bettywagner10@notmail.biz',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3194695677',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear bettywagner10@notmail.biz',1,NULL,'Dear bettywagner10@notmail.biz',1,NULL,'bettywagner10@notmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,'Pine Action Systems',NULL,NULL,192,0,NULL,'2015-05-10 10:35:03'),(83,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Lee, Sharyn','Dr. Sharyn Lee',NULL,NULL,NULL,NULL,NULL,'Both','1422629875',NULL,'Sample Data','Sharyn','D','Lee',4,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Dr. Sharyn Lee',NULL,NULL,'1980-02-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(84,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Díaz, Jed','Mr. Jed Díaz II',NULL,NULL,NULL,NULL,NULL,'Both','3371840516',NULL,'Sample Data','Jed','M','Díaz',3,3,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Mr. Jed Díaz II',NULL,NULL,'1948-11-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(85,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Rolando','Mr. Rolando González Jr.',NULL,NULL,NULL,NULL,NULL,'Both','4244693395',NULL,'Sample Data','Rolando','','González',3,1,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Mr. Rolando González Jr.',NULL,NULL,'1932-01-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(86,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Díaz family','Díaz family',NULL,NULL,NULL,NULL,NULL,'Both','2169249835',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Díaz family',5,NULL,'Dear Díaz family',2,NULL,'Díaz family',NULL,NULL,NULL,0,NULL,'Díaz family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(87,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samson, Clint','Clint Samson Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1111759709',NULL,'Sample Data','Clint','N','Samson',NULL,2,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Samson Sr.',NULL,2,'1966-02-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(88,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wattson, Troy','Troy Wattson Sr.',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','189159826',NULL,'Sample Data','Troy','P','Wattson',NULL,2,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Wattson Sr.',NULL,NULL,'1960-10-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(89,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen-Yadav, Jerome','Jerome Nielsen-Yadav',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','796490076',NULL,'Sample Data','Jerome','P','Nielsen-Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Nielsen-Yadav',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(90,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Maxwell','Maxwell Barkley Sr.',NULL,NULL,NULL,NULL,NULL,'Both','3720432108',NULL,'Sample Data','Maxwell','','Barkley',NULL,2,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Barkley Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(91,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Eleonor','Eleonor Parker',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3234463672',NULL,'Sample Data','Eleonor','R','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Eleonor Parker',NULL,NULL,'1976-10-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(92,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Andrew','Mr. Andrew Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','2655191237',NULL,'Sample Data','Andrew','','Nielsen',3,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Mr. Andrew Nielsen',NULL,2,'1982-03-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(93,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Bob','Bob Wilson II',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1455203229',NULL,'Sample Data','Bob','Q','Wilson',NULL,3,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Wilson II',NULL,2,'1994-10-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(94,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Arlyne','Arlyne Nielsen',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3808368075',NULL,'Sample Data','Arlyne','O','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Nielsen',NULL,1,'1954-03-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(95,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Winford','Dr. Winford Müller',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1322827856',NULL,'Sample Data','Winford','I','Müller',4,NULL,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Dr. Winford Müller',NULL,2,'1968-02-29',1,'2015-01-18',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(96,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Craig','Craig Wilson',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','810909432',NULL,'Sample Data','Craig','O','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Wilson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(97,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Deforest, Kathleen','Ms. Kathleen Deforest',NULL,NULL,NULL,NULL,NULL,'Both','316327141',NULL,'Sample Data','Kathleen','','Deforest',2,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Ms. Kathleen Deforest',NULL,1,'1951-06-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(98,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Allen','Dr. Allen Cooper',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1888383899',NULL,'Sample Data','Allen','N','Cooper',4,NULL,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Dr. Allen Cooper',NULL,2,'1967-12-16',1,'2015-04-06',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(99,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Jensen-Patel family','Jensen-Patel family',NULL,NULL,NULL,NULL,NULL,'Both','4149005264',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen-Patel family',5,NULL,'Dear Jensen-Patel family',2,NULL,'Jensen-Patel family',NULL,NULL,NULL,0,NULL,'Jensen-Patel family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(100,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'terrello@sample.com','terrello@sample.com',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1805211205',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear terrello@sample.com',1,NULL,'Dear terrello@sample.com',1,NULL,'terrello@sample.com',NULL,NULL,NULL,0,NULL,NULL,NULL,'Local Software Center',NULL,NULL,32,0,NULL,'2015-05-10 10:35:03'),(101,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Tanya','Mrs. Tanya Deforest',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3707213011',NULL,'Sample Data','Tanya','G','Deforest',1,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Mrs. Tanya Deforest',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(102,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Jones, Ivey','Dr. Ivey Jones',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','2553949763',NULL,'Sample Data','Ivey','J','Jones',4,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Dr. Ivey Jones',NULL,1,'1952-06-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(103,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jameson, Kathleen','Kathleen Jameson',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','3800286753',NULL,'Sample Data','Kathleen','K','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Kathleen Jameson',NULL,1,'1937-09-06',1,'2014-08-18',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(104,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Damaris','Damaris Jameson',NULL,NULL,NULL,NULL,NULL,'Both','2629827382',NULL,'Sample Data','Damaris','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Damaris',1,NULL,'Dear Damaris',1,NULL,'Damaris Jameson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(105,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Jina','Jina Lee',NULL,NULL,NULL,NULL,NULL,'Both','1558289528',NULL,'Sample Data','Jina','B','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Lee',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(106,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson family','Wilson family',NULL,NULL,NULL,NULL,NULL,'Both','350510798',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Wilson family',5,NULL,'Dear Wilson family',2,NULL,'Wilson family',NULL,NULL,NULL,0,NULL,'Wilson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(107,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Jackson','Dr. Jackson Bachman Jr.',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1617477715',NULL,'Sample Data','Jackson','','Bachman',4,1,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Dr. Jackson Bachman Jr.',NULL,2,'1986-09-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(108,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Iris','Iris Wilson',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','3052270264',NULL,'Sample Data','Iris','','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Wilson',NULL,1,'1951-02-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(109,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Community Health Systems','Community Health Systems',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','348951228',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Community Health Systems',NULL,NULL,NULL,0,NULL,NULL,NULL,'Community Health Systems',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(110,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Parker, Kathleen','Kathleen Parker',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','295233156',NULL,'Sample Data','Kathleen','','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Kathleen Parker',NULL,1,'1998-01-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(111,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Lou','Dr. Lou Bachman',NULL,NULL,NULL,NULL,NULL,'Both','2699316578',NULL,'Sample Data','Lou','A','Bachman',4,NULL,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Dr. Lou Bachman',NULL,2,'1978-06-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(112,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Dunnellon Health Alliance','Dunnellon Health Alliance',NULL,NULL,NULL,NULL,NULL,'Both','636539057',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Dunnellon Health Alliance',NULL,NULL,NULL,0,NULL,NULL,NULL,'Dunnellon Health Alliance',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(113,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Lee, Elizabeth','Elizabeth Lee',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','244095621',NULL,'Sample Data','Elizabeth','A','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth Lee',NULL,1,'1961-04-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(114,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Winford','Dr. Winford Yadav',NULL,NULL,NULL,NULL,NULL,'Both','3002231808',NULL,'Sample Data','Winford','','Yadav',4,NULL,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Dr. Winford Yadav',NULL,2,'1989-08-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(115,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Global Literacy Alliance','Global Literacy Alliance',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','1176095176',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Literacy Alliance',NULL,NULL,NULL,0,NULL,NULL,128,'Global Literacy Alliance',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(116,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Blackwell, Russell','Dr. Russell Blackwell',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2850885391',NULL,'Sample Data','Russell','','Blackwell',4,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Dr. Russell Blackwell',NULL,2,'1961-03-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(117,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Felisha','Felisha Samuels',NULL,NULL,NULL,NULL,NULL,'Both','2764648887',NULL,'Sample Data','Felisha','U','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Felisha Samuels',NULL,1,'1984-03-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(118,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Valene','Dr. Valene Cooper',NULL,NULL,NULL,NULL,NULL,'Both','1848920183',NULL,'Sample Data','Valene','','Cooper',4,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Dr. Valene Cooper',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(119,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'irvindaz-mcreynolds@fakemail.co.uk','irvindaz-mcreynolds@fakemail.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','3558958292',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear irvindaz-mcreynolds@fakemail.co.uk',1,NULL,'Dear irvindaz-mcreynolds@fakemail.co.uk',1,NULL,'irvindaz-mcreynolds@fakemail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(120,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Elizabeth','Mrs. Elizabeth Smith',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3537144682',NULL,'Sample Data','Elizabeth','','Smith',1,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Mrs. Elizabeth Smith',NULL,NULL,'1928-11-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(121,'Household',NULL,1,1,0,0,1,0,NULL,NULL,'Parker-Dimitrov family','Parker-Dimitrov family',NULL,NULL,NULL,NULL,NULL,'Both','1321945166',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Parker-Dimitrov family',5,NULL,'Dear Parker-Dimitrov family',2,NULL,'Parker-Dimitrov family',NULL,NULL,NULL,0,NULL,'Parker-Dimitrov family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(122,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wattson, Teresa','Teresa Wattson',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1261567310',NULL,'Sample Data','Teresa','E','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Wattson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(123,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'González, Sanford','Sanford González',NULL,NULL,NULL,NULL,NULL,'Both','216196838',NULL,'Sample Data','Sanford','X','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford González',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(124,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Brent','Mr. Brent Cooper',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2528064217',NULL,'Sample Data','Brent','','Cooper',3,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Mr. Brent Cooper',NULL,2,'1974-11-04',0,NULL,NULL,NULL,'United Family Partners',NULL,NULL,40,0,NULL,'2015-05-10 10:35:03'),(125,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wilson, Sonny','Mr. Sonny Wilson',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1288997537',NULL,'Sample Data','Sonny','','Wilson',3,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Mr. Sonny Wilson',NULL,2,'1960-06-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(126,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Sanford','Sanford Prentice III',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','3166415590',NULL,'Sample Data','Sanford','G','Prentice',NULL,4,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Sanford Prentice III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(127,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wilson, Ashley','Ashley Wilson II',NULL,NULL,NULL,NULL,NULL,'Both','1909485085',NULL,'Sample Data','Ashley','','Wilson',NULL,3,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Wilson II',NULL,2,'1988-12-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(128,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Łąchowski, Irvin','Irvin Łąchowski',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2177704001',NULL,'Sample Data','Irvin','L','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Irvin Łąchowski',NULL,NULL,'1945-08-13',1,'2014-10-05',NULL,NULL,'Global Literacy Alliance',NULL,NULL,115,0,NULL,'2015-05-10 10:35:03'),(129,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'States Food Initiative','States Food Initiative',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3422084393',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'States Food Initiative',NULL,NULL,NULL,0,NULL,NULL,NULL,'States Food Initiative',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(130,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'wagnera@airmail.org','wagnera@airmail.org',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','2302276874',NULL,'Sample Data',NULL,NULL,NULL,3,1,NULL,NULL,1,NULL,'Dear wagnera@airmail.org',1,NULL,'Dear wagnera@airmail.org',1,NULL,'wagnera@airmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(131,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams-Barkley, Junko','Dr. Junko Adams-Barkley',NULL,NULL,NULL,NULL,NULL,'Both','3360795902',NULL,'Sample Data','Junko','X','Adams-Barkley',4,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Dr. Junko Adams-Barkley',NULL,1,'1948-01-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(132,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Deforest, Rodrigo','Rodrigo Deforest Jr.',NULL,NULL,NULL,NULL,NULL,'Both','560403570',NULL,'Sample Data','Rodrigo','F','Deforest',NULL,1,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Deforest Jr.',NULL,NULL,'1998-09-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(133,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Blackwell, Brzęczysław','Brzęczysław Blackwell',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3382098014',NULL,'Sample Data','Brzęczysław','S','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Blackwell',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(134,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Megan','Megan Zope',NULL,NULL,NULL,NULL,NULL,'Both','2173436080',NULL,'Sample Data','Megan','F','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Zope',NULL,1,'1977-04-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(135,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'junkowagner@mymail.biz','junkowagner@mymail.biz',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','486266437',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear junkowagner@mymail.biz',1,NULL,'Dear junkowagner@mymail.biz',1,NULL,'junkowagner@mymail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(136,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'jinaj@notmail.co.nz','jinaj@notmail.co.nz',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','3886963903',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear jinaj@notmail.co.nz',1,NULL,'Dear jinaj@notmail.co.nz',1,NULL,'jinaj@notmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(137,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Sharyn','Sharyn Bachman',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3405467549',NULL,'Sample Data','Sharyn','C','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Bachman',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(138,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Parker family','Parker family',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','425242179',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Parker family',5,NULL,'Dear Parker family',2,NULL,'Parker family',NULL,NULL,NULL,0,NULL,'Parker family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(139,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'lee.mei@testmail.org','lee.mei@testmail.org',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','2058507931',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear lee.mei@testmail.org',1,NULL,'Dear lee.mei@testmail.org',1,NULL,'lee.mei@testmail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(140,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Müller, Erik','Mr. Erik Müller',NULL,NULL,NULL,NULL,NULL,'Both','826359334',NULL,'Sample Data','Erik','','Müller',3,NULL,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Mr. Erik Müller',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(141,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Parker-Dimitrov, Jerome','Jerome Parker-Dimitrov III',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','4168060719',NULL,'Sample Data','Jerome','','Parker-Dimitrov',NULL,4,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Parker-Dimitrov III',NULL,2,'2000-03-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(142,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Nielsen, Billy','Mr. Billy Nielsen Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1021011479',NULL,'Sample Data','Billy','','Nielsen',3,1,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Mr. Billy Nielsen Jr.',NULL,2,'1931-03-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(143,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Friends Arts Network','Friends Arts Network',NULL,NULL,NULL,NULL,NULL,'Both','773924134',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Arts Network',NULL,NULL,NULL,0,NULL,NULL,NULL,'Friends Arts Network',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(144,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Junko','Mrs. Junko Wagner',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','3731152037',NULL,'Sample Data','Junko','','Wagner',1,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Mrs. Junko Wagner',NULL,NULL,'1955-08-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(145,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Lee, Craig','Mr. Craig Lee Jr.',NULL,NULL,NULL,NULL,NULL,'Both','383482942',NULL,'Sample Data','Craig','C','Lee',3,1,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Mr. Craig Lee Jr.',NULL,2,'1976-11-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(146,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Tanya','Mrs. Tanya Nielsen',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','831686390',NULL,'Sample Data','Tanya','G','Nielsen',1,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Mrs. Tanya Nielsen',NULL,NULL,'1986-06-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(147,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Delana','Mrs. Delana Barkley',NULL,NULL,NULL,NULL,NULL,'Both','1262819409',NULL,'Sample Data','Delana','U','Barkley',1,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Mrs. Delana Barkley',NULL,1,'1963-01-15',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(148,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Rolando','Mr. Rolando Wilson',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3129579168',NULL,'Sample Data','Rolando','Y','Wilson',3,NULL,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Mr. Rolando Wilson',NULL,NULL,'1972-06-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(149,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Nielsen, Ashlie','Ashlie Nielsen',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','89218160',NULL,'Sample Data','Ashlie','M','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Nielsen',NULL,1,'2004-04-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(150,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Iris','Dr. Iris Bachman',NULL,NULL,NULL,NULL,NULL,'Both','2101720702',NULL,'Sample Data','Iris','','Bachman',4,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Dr. Iris Bachman',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(151,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Okeechobee Family Collective','Okeechobee Family Collective',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3425882461',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Okeechobee Family Collective',NULL,NULL,NULL,0,NULL,NULL,NULL,'Okeechobee Family Collective',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(152,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Jacob','Jacob Bachman II',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','680701022',NULL,'Sample Data','Jacob','L','Bachman',NULL,3,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Bachman II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(153,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terrell, Elina','Elina Terrell',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','4038952497',NULL,'Sample Data','Elina','','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina Terrell',NULL,1,'1944-12-03',1,'2014-12-13',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(154,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'deforest.kiara57@sample.co.uk','deforest.kiara57@sample.co.uk',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','3441420685',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear deforest.kiara57@sample.co.uk',1,NULL,'Dear deforest.kiara57@sample.co.uk',1,NULL,'deforest.kiara57@sample.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(155,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Eleonor','Dr. Eleonor Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','2341250254',NULL,'Sample Data','Eleonor','','Ivanov',4,NULL,NULL,NULL,1,NULL,'Dear Eleonor',1,NULL,'Dear Eleonor',1,NULL,'Dr. Eleonor Ivanov',NULL,1,'1962-10-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(156,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Lashawnda','Lashawnda Parker',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','1469017621',NULL,'Sample Data','Lashawnda','X','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Parker',NULL,1,'2007-08-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(157,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Urban Sports Services','Urban Sports Services',NULL,NULL,NULL,NULL,NULL,'Both','3994741391',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Sports Services',NULL,NULL,NULL,0,NULL,NULL,65,'Urban Sports Services',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(158,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'eb.wilson@example.org','eb.wilson@example.org',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','2659956227',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear eb.wilson@example.org',1,NULL,'Dear eb.wilson@example.org',1,NULL,'eb.wilson@example.org',NULL,NULL,NULL,0,NULL,NULL,NULL,'Urban Sports Trust',NULL,NULL,173,0,NULL,'2015-05-10 10:35:03'),(159,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Bachman, Juliann','Juliann Bachman',NULL,NULL,NULL,NULL,NULL,'Both','3603929563',NULL,'Sample Data','Juliann','H','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Bachman',NULL,1,'1965-04-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(160,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Bachman, Omar','Omar Bachman',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','4035622769',NULL,'Sample Data','Omar','S','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar Bachman',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(161,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell-Wattson family','Terrell-Wattson family',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','123807827',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Terrell-Wattson family',5,NULL,'Dear Terrell-Wattson family',2,NULL,'Terrell-Wattson family',NULL,NULL,NULL,0,NULL,'Terrell-Wattson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(162,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wilson, Justina','Justina Wilson',NULL,NULL,NULL,NULL,NULL,'Both','3516535042',NULL,'Sample Data','Justina','E','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Wilson',NULL,1,'1960-05-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(163,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Prentice, Sanford','Mr. Sanford Prentice',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','3166415590',NULL,'Sample Data','Sanford','','Prentice',3,NULL,NULL,NULL,1,NULL,'Dear Sanford',1,NULL,'Dear Sanford',1,NULL,'Mr. Sanford Prentice',NULL,2,'1987-08-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(164,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen family','Nielsen family',NULL,NULL,NULL,NULL,NULL,'Both','766698874',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Nielsen family',5,NULL,'Dear Nielsen family',2,NULL,'Nielsen family',NULL,NULL,NULL,0,NULL,'Nielsen family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(165,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Parker-Dimitrov, Iris','Iris Parker-Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','2669963590',NULL,'Sample Data','Iris','','Parker-Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Parker-Dimitrov',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(166,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Arlyne','Mrs. Arlyne Barkley',NULL,NULL,NULL,NULL,NULL,'Both','3692098721',NULL,'Sample Data','Arlyne','','Barkley',1,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Mrs. Arlyne Barkley',NULL,NULL,'1982-09-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(167,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'shadp97@notmail.co.nz','shadp97@notmail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','1532656363',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear shadp97@notmail.co.nz',1,NULL,'Dear shadp97@notmail.co.nz',1,NULL,'shadp97@notmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(168,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest family','Deforest family',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3235379039',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Deforest family',5,NULL,'Dear Deforest family',2,NULL,'Deforest family',NULL,NULL,NULL,0,NULL,'Deforest family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(169,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Maxwell','Mr. Maxwell Nielsen II',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','1889021515',NULL,'Sample Data','Maxwell','','Nielsen',3,3,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Mr. Maxwell Nielsen II',NULL,2,'1935-11-06',1,'2014-12-08',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(170,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Barkley family','Barkley family',NULL,NULL,NULL,NULL,NULL,'Both','2888062109',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Barkley family',5,NULL,'Dear Barkley family',2,NULL,'Barkley family',NULL,NULL,NULL,0,NULL,'Barkley family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(171,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jameson, Omar','Omar Jameson',NULL,NULL,NULL,NULL,NULL,'Both','2089373563',NULL,'Sample Data','Omar','P','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar Jameson',NULL,NULL,'1997-02-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(172,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terrell, Betty','Mrs. Betty Terrell',NULL,NULL,NULL,NULL,NULL,'Both','2284472069',NULL,'Sample Data','Betty','','Terrell',1,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Mrs. Betty Terrell',NULL,1,'1952-10-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(173,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Urban Sports Trust','Urban Sports Trust',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','2734059817',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Sports Trust',NULL,NULL,NULL,0,NULL,NULL,158,'Urban Sports Trust',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(174,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'eparker1@airmail.info','eparker1@airmail.info',NULL,NULL,NULL,NULL,NULL,'Both','2658957905',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear eparker1@airmail.info',1,NULL,'Dear eparker1@airmail.info',1,NULL,'eparker1@airmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(175,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Santina','Ms. Santina Patel',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','3765825557',NULL,'Sample Data','Santina','B','Patel',2,NULL,NULL,NULL,1,NULL,'Dear Santina',1,NULL,'Dear Santina',1,NULL,'Ms. Santina Patel',NULL,1,'1980-08-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(176,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Rosario','Mr. Rosario Robertson',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','1907398578',NULL,'Sample Data','Rosario','','Robertson',3,NULL,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Mr. Rosario Robertson',NULL,NULL,NULL,1,'2014-06-21',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(177,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds-Wagner, Angelika','Angelika McReynolds-Wagner',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','936261416',NULL,'Sample Data','Angelika','','McReynolds-Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika McReynolds-Wagner',NULL,1,'1991-05-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(178,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds-Wagner family','McReynolds-Wagner family',NULL,NULL,NULL,NULL,NULL,'Both','2160380367',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear McReynolds-Wagner family',5,NULL,'Dear McReynolds-Wagner family',2,NULL,'McReynolds-Wagner family',NULL,NULL,NULL,0,NULL,'McReynolds-Wagner family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(179,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'ajacobs44@infomail.biz','ajacobs44@infomail.biz',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','648317419',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear ajacobs44@infomail.biz',1,NULL,'Dear ajacobs44@infomail.biz',1,NULL,'ajacobs44@infomail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(180,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Blackwell, Allan','Allan Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','3904004195',NULL,'Sample Data','Allan','','Blackwell',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Blackwell',NULL,2,'1994-04-24',0,NULL,NULL,NULL,'Martin Luther King Sustainability Association',NULL,NULL,81,0,NULL,'2015-05-10 10:35:03'),(181,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Nielsen-Yadav, Jacob','Jacob Nielsen-Yadav II',NULL,NULL,NULL,NULL,NULL,'Both','458680574',NULL,'Sample Data','Jacob','','Nielsen-Yadav',NULL,3,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Nielsen-Yadav II',NULL,NULL,'1996-02-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(182,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Juliann','Juliann Parker',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1013304220',NULL,'Sample Data','Juliann','Y','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Parker',NULL,1,'1983-03-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(183,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Princess','Ms. Princess Barkley',NULL,NULL,NULL,NULL,NULL,'Both','1098730680',NULL,'Sample Data','Princess','Q','Barkley',2,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Ms. Princess Barkley',NULL,NULL,'1950-12-19',1,'2015-01-29',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(184,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Laree','Mrs. Laree Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','3788424198',NULL,'Sample Data','Laree','','Jacobs',1,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Mrs. Laree Jacobs',NULL,1,'1934-09-26',1,'2015-02-21',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(185,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Barkley, Jay','Jay Barkley',NULL,NULL,NULL,NULL,NULL,'Both','3834351816',NULL,'Sample Data','Jay','S','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Barkley',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(186,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson, Jed','Dr. Jed Jameson Jr.',NULL,NULL,NULL,'\ 12\ 1',NULL,'Both','3836870902',NULL,'Sample Data','Jed','A','Jameson',4,1,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Dr. Jed Jameson Jr.',NULL,2,'1953-05-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(187,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Ashlie','Ashlie Samuels',NULL,NULL,NULL,NULL,NULL,'Both','2718903137',NULL,'Sample Data','Ashlie','','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Samuels',NULL,1,'1998-06-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(188,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Delia Software Fund','Delia Software Fund',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','3608296060',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Delia Software Fund',NULL,NULL,NULL,0,NULL,NULL,NULL,'Delia Software Fund',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(189,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell-Wattson, Kenny','Kenny Terrell-Wattson',NULL,NULL,NULL,NULL,NULL,'Both','1618788379',NULL,'Sample Data','Kenny','K','Terrell-Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Terrell-Wattson',NULL,NULL,'1995-12-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(190,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Lawerence','Lawerence González Sr.',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','740179801',NULL,'Sample Data','Lawerence','U','González',NULL,2,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence González Sr.',NULL,NULL,'1999-12-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:02'),(191,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Urban Education Academy','Urban Education Academy',NULL,NULL,NULL,NULL,NULL,'Both','2677034203',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Education Academy',NULL,NULL,NULL,0,NULL,NULL,46,'Urban Education Academy',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(192,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Pine Action Systems','Pine Action Systems',NULL,NULL,NULL,NULL,NULL,'Both','2139874443',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Pine Action Systems',NULL,NULL,NULL,0,NULL,NULL,82,'Pine Action Systems',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(193,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Yadav, Landon','Landon Yadav III',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','250177859',NULL,'Sample Data','Landon','O','Yadav',NULL,4,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Yadav III',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(194,'Organization',NULL,1,1,0,0,0,0,NULL,NULL,'Creative Development Initiative','Creative Development Initiative',NULL,NULL,NULL,NULL,NULL,'Both','3246341479',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Creative Development Initiative',NULL,NULL,NULL,0,NULL,NULL,NULL,'Creative Development Initiative',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(195,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Magan','Ms. Magan Bachman',NULL,NULL,NULL,'\ 13\ 1',NULL,'Both','177125687',NULL,'Sample Data','Magan','','Bachman',2,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Ms. Magan Bachman',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(196,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Bryon','Mr. Bryon Bachman',NULL,NULL,NULL,NULL,NULL,'Both','1112110435',NULL,'Sample Data','Bryon','S','Bachman',3,NULL,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Mr. Bryon Bachman',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(197,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Progressive Legal Association','Progressive Legal Association',NULL,NULL,NULL,NULL,NULL,'Both','827914790',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Progressive Legal Association',NULL,NULL,NULL,0,NULL,NULL,NULL,'Progressive Legal Association',NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(198,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Rodrigo','Rodrigo Wilson III',NULL,NULL,NULL,'\ 15\ 1',NULL,'Both','3862388822',NULL,'Sample Data','Rodrigo','N','Wilson',NULL,4,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Wilson III',NULL,2,'1972-10-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(199,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'roberts-jameson.eleonor@spamalot.com','roberts-jameson.eleonor@spamalot.com',NULL,NULL,NULL,'\ 11\ 1',NULL,'Both','885478818',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear roberts-jameson.eleonor@spamalot.com',1,NULL,'Dear roberts-jameson.eleonor@spamalot.com',1,NULL,'roberts-jameson.eleonor@spamalot.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(200,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Junko','Junko Bachman',NULL,NULL,NULL,NULL,NULL,'Both','3857467004',NULL,'Sample Data','Junko','M','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Bachman',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03'),(201,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Díaz-McReynolds family','Díaz-McReynolds family',NULL,NULL,NULL,'\ 14\ 1',NULL,'Both','1514051828',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Díaz-McReynolds family',5,NULL,'Dear Díaz-McReynolds family',2,NULL,'Díaz-McReynolds family',NULL,NULL,NULL,0,NULL,'Díaz-McReynolds family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-05-10 10:35:03');
  /*!40000 ALTER TABLE `civicrm_contact` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -229,7 -229,7 +229,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_contribution` WRITE;
  /*!40000 ALTER TABLE `civicrm_contribution` DISABLE KEYS */;
- INSERT INTO `civicrm_contribution` (`id`, `contact_id`, `financial_type_id`, `contribution_page_id`, `payment_instrument_id`, `receive_date`, `non_deductible_amount`, `total_amount`, `fee_amount`, `net_amount`, `trxn_id`, `invoice_id`, `currency`, `cancel_date`, `cancel_reason`, `receipt_date`, `thankyou_date`, `source`, `amount_level`, `contribution_recur_id`, `is_test`, `is_pay_later`, `contribution_status_id`, `address_id`, `check_number`, `campaign_id`, `creditnote_id`, `tax_amount`) VALUES (1,2,1,NULL,4,'2010-04-11 00:00:00',0.00,125.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL,NULL,NULL),(2,4,1,NULL,1,'2010-03-21 00:00:00',0.00,50.00,NULL,NULL,'P20901X1',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(3,6,1,NULL,4,'2010-04-29 00:00:00',0.00,25.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL,NULL,NULL),(4,8,1,NULL,4,'2010-04-11 00:00:00',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'10552',NULL,NULL,NULL),(5,16,1,NULL,4,'2010-04-15 00:00:00',0.00,500.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL,NULL,NULL),(6,19,1,NULL,4,'2010-04-11 00:00:00',0.00,175.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'102',NULL,NULL,NULL),(7,82,1,NULL,1,'2010-03-27 00:00:00',0.00,50.00,NULL,NULL,'P20193L2',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(8,92,1,NULL,1,'2010-03-08 00:00:00',0.00,10.00,NULL,NULL,'P40232Y3',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(9,34,1,NULL,1,'2010-04-22 00:00:00',0.00,250.00,NULL,NULL,'P20193L6',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(10,71,1,NULL,1,'2009-07-01 11:53:50',0.00,500.00,NULL,NULL,'PL71',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(11,43,1,NULL,1,'2009-07-01 12:55:41',0.00,200.00,NULL,NULL,'PL43II',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(12,32,1,NULL,1,'2009-10-01 11:53:50',0.00,200.00,NULL,NULL,'PL32I',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(13,32,1,NULL,1,'2009-12-01 12:55:41',0.00,200.00,NULL,NULL,'PL32II',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(14,111,2,NULL,1,'2015-05-08 12:26:23',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(15,171,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(16,63,2,NULL,1,'2015-05-08 12:26:23',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(17,145,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(18,175,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(19,5,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(20,9,2,NULL,1,'2015-05-08 12:26:23',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(21,117,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(22,97,2,NULL,1,'2015-05-08 12:26:23',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(23,178,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(24,148,2,NULL,1,'2015-05-08 12:26:23',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(25,71,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(26,116,2,NULL,1,'2015-05-08 12:26:23',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(27,161,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(28,24,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(29,100,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(30,40,2,NULL,1,'2015-05-08 12:26:23',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(31,155,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(32,29,2,NULL,1,'2015-05-08 12:26:23',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(33,78,2,NULL,1,'2015-05-08 12:26:23',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(34,105,2,NULL,1,'2015-05-08 12:26:23',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(35,54,2,NULL,1,'2015-05-08 12:26:23',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(36,135,2,NULL,1,'2015-05-08 12:26:23',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(37,189,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(38,126,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(39,51,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(40,162,2,NULL,1,'2015-05-08 12:26:23',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(41,136,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(42,43,2,NULL,1,'2015-05-08 12:26:23',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(43,48,2,NULL,1,'2015-05-08 12:26:23',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(45,1,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(46,8,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(47,10,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(48,12,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(49,19,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(50,20,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(51,25,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(52,29,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(53,30,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(54,36,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(55,43,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(56,58,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(57,62,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(58,63,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(59,66,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(60,67,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(61,75,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(62,77,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(63,78,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(64,80,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(65,81,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(66,88,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(67,96,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(68,97,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(69,105,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(70,107,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(71,109,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(72,110,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(73,115,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(74,122,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(75,127,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(76,128,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(77,131,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(78,139,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(79,147,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(80,148,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(81,149,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(82,157,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(83,161,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(84,162,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(85,163,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(86,164,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(87,165,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(88,166,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(89,181,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(90,183,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(91,190,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(92,192,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(93,195,4,NULL,1,'2015-05-08 12:26:27',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(94,197,4,NULL,1,'2015-05-08 12:26:27',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-08 12:26:27',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL);
 -INSERT INTO `civicrm_contribution` (`id`, `contact_id`, `financial_type_id`, `contribution_page_id`, `payment_instrument_id`, `receive_date`, `non_deductible_amount`, `total_amount`, `fee_amount`, `net_amount`, `trxn_id`, `invoice_id`, `currency`, `cancel_date`, `cancel_reason`, `receipt_date`, `thankyou_date`, `source`, `amount_level`, `contribution_recur_id`, `is_test`, `is_pay_later`, `contribution_status_id`, `address_id`, `check_number`, `campaign_id`, `creditnote_id`, `tax_amount`) VALUES (1,2,1,NULL,4,'2010-04-11 00:00:00',0.00,125.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL,NULL,NULL),(2,4,1,NULL,1,'2010-03-21 00:00:00',0.00,50.00,NULL,NULL,'P20901X1',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(3,6,1,NULL,4,'2010-04-29 00:00:00',0.00,25.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL,NULL,NULL),(4,8,1,NULL,4,'2010-04-11 00:00:00',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'10552',NULL,NULL,NULL),(5,16,1,NULL,4,'2010-04-15 00:00:00',0.00,500.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL,NULL,NULL),(6,19,1,NULL,4,'2010-04-11 00:00:00',0.00,175.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'102',NULL,NULL,NULL),(7,82,1,NULL,1,'2010-03-27 00:00:00',0.00,50.00,NULL,NULL,'P20193L2',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(8,92,1,NULL,1,'2010-03-08 00:00:00',0.00,10.00,NULL,NULL,'P40232Y3',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(9,34,1,NULL,1,'2010-04-22 00:00:00',0.00,250.00,NULL,NULL,'P20193L6',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(10,71,1,NULL,1,'2009-07-01 11:53:50',0.00,500.00,NULL,NULL,'PL71',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(11,43,1,NULL,1,'2009-07-01 12:55:41',0.00,200.00,NULL,NULL,'PL43II',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(12,32,1,NULL,1,'2009-10-01 11:53:50',0.00,200.00,NULL,NULL,'PL32I',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(13,32,1,NULL,1,'2009-12-01 12:55:41',0.00,200.00,NULL,NULL,'PL32II',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(14,139,2,NULL,1,'2015-04-29 03:27:40',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(15,61,2,NULL,1,'2015-04-29 03:27:40',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(16,79,2,NULL,1,'2015-04-29 03:27:40',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(17,147,2,NULL,1,'2015-04-29 03:27:40',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(18,36,2,NULL,1,'2015-04-29 03:27:40',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(19,76,2,NULL,1,'2015-04-29 03:27:40',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(20,102,2,NULL,1,'2015-04-29 03:27:40',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(21,99,2,NULL,1,'2015-04-29 03:27:40',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(22,200,2,NULL,1,'2015-04-29 03:27:40',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(23,108,2,NULL,1,'2015-04-29 03:27:40',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(24,183,2,NULL,1,'2015-04-29 03:27:40',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(25,125,2,NULL,1,'2015-04-29 03:27:40',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(26,174,2,NULL,1,'2015-04-29 03:27:40',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(27,94,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(28,123,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(29,150,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(30,82,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(31,184,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(32,39,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(33,130,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(34,54,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(35,16,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(36,151,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(37,181,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(38,179,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(39,20,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(40,34,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(41,18,2,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(42,26,2,NULL,1,'2015-04-29 03:27:40',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(43,3,2,NULL,1,'2015-04-29 03:27:40',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(45,5,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(46,8,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(47,15,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(48,17,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(49,19,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(50,22,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(51,31,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(52,35,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(53,36,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(54,39,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(55,40,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(56,41,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(57,42,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(58,47,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(59,62,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(60,63,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(61,67,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(62,69,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(63,71,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(64,74,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(65,78,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(66,82,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(67,85,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(68,87,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(69,92,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(70,93,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(71,96,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(72,116,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(73,123,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(74,126,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(75,131,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(76,137,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(77,139,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(78,144,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(79,145,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(80,152,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(81,156,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(82,157,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(83,160,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(84,163,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(85,164,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(86,167,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(87,178,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(88,180,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(89,190,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(90,191,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(91,192,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(92,196,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(93,197,4,NULL,1,'2015-04-29 03:27:40',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(94,199,4,NULL,1,'2015-04-29 03:27:40',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-04-29 03:27:40',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL);
++INSERT INTO `civicrm_contribution` (`id`, `contact_id`, `financial_type_id`, `contribution_page_id`, `payment_instrument_id`, `receive_date`, `non_deductible_amount`, `total_amount`, `fee_amount`, `net_amount`, `trxn_id`, `invoice_id`, `currency`, `cancel_date`, `cancel_reason`, `receipt_date`, `thankyou_date`, `source`, `amount_level`, `contribution_recur_id`, `is_test`, `is_pay_later`, `contribution_status_id`, `address_id`, `check_number`, `campaign_id`, `creditnote_id`, `tax_amount`) VALUES (1,2,1,NULL,4,'2010-04-11 00:00:00',0.00,125.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'1041',NULL,NULL,NULL),(2,4,1,NULL,1,'2010-03-21 00:00:00',0.00,50.00,NULL,NULL,'P20901X1',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(3,6,1,NULL,4,'2010-04-29 00:00:00',0.00,25.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'2095',NULL,NULL,NULL),(4,8,1,NULL,4,'2010-04-11 00:00:00',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'10552',NULL,NULL,NULL),(5,16,1,NULL,4,'2010-04-15 00:00:00',0.00,500.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'509',NULL,NULL,NULL),(6,19,1,NULL,4,'2010-04-11 00:00:00',0.00,175.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Apr 2007 Mailer 1',NULL,NULL,0,0,1,NULL,'102',NULL,NULL,NULL),(7,82,1,NULL,1,'2010-03-27 00:00:00',0.00,50.00,NULL,NULL,'P20193L2',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Save the Penguins',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(8,92,1,NULL,1,'2010-03-08 00:00:00',0.00,10.00,NULL,NULL,'P40232Y3',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(9,34,1,NULL,1,'2010-04-22 00:00:00',0.00,250.00,NULL,NULL,'P20193L6',NULL,'USD',NULL,NULL,NULL,NULL,'Online: Help CiviCRM',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(10,71,1,NULL,1,'2009-07-01 11:53:50',0.00,500.00,NULL,NULL,'PL71',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(11,43,1,NULL,1,'2009-07-01 12:55:41',0.00,200.00,NULL,NULL,'PL43II',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(12,32,1,NULL,1,'2009-10-01 11:53:50',0.00,200.00,NULL,NULL,'PL32I',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(13,32,1,NULL,1,'2009-12-01 12:55:41',0.00,200.00,NULL,NULL,'PL32II',NULL,'USD',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(14,153,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(15,85,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(16,21,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(17,156,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(18,123,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(19,136,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(20,73,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(21,60,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(22,3,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(23,124,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(24,117,2,NULL,1,'2015-05-10 06:35:05',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(25,4,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(26,58,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(27,130,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(28,54,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(29,42,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(30,160,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(31,167,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(32,75,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(33,132,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(34,102,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(35,141,2,NULL,1,'2015-05-10 06:35:05',0.00,1200.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Lifetime Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(36,96,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(37,108,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(38,144,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(39,200,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(40,97,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(41,180,2,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'Student Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(42,110,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(43,47,2,NULL,1,'2015-05-10 06:35:05',0.00,100.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,NULL,NULL,'General Membership: Offline signup',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(45,1,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(46,7,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(47,13,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(48,20,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(49,21,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(50,25,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(51,34,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(52,38,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(53,44,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(54,58,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(55,60,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(56,63,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(57,64,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(58,65,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(59,71,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(60,72,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(61,80,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(62,83,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(63,86,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(64,87,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(65,88,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(66,92,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(67,97,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(68,101,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(69,107,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(70,117,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(71,124,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(72,129,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(73,133,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(74,137,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(75,138,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(76,141,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(77,142,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(78,144,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(79,146,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(80,154,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(81,158,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(82,161,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(83,166,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(84,175,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(85,176,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(86,181,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(87,183,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(88,187,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(89,189,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(90,191,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(91,192,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(92,193,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(93,194,4,NULL,1,'2015-05-10 06:35:05',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(94,200,4,NULL,1,'2015-05-10 06:35:05',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-05-10 06:35:05',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL);
  /*!40000 ALTER TABLE `civicrm_contribution` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -267,7 -267,7 +267,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_contribution_soft` WRITE;
  /*!40000 ALTER TABLE `civicrm_contribution_soft` DISABLE KEYS */;
- INSERT INTO `civicrm_contribution_soft` (`id`, `contribution_id`, `contact_id`, `amount`, `currency`, `pcp_id`, `pcp_display_in_roll`, `pcp_roll_nickname`, `pcp_personal_note`, `soft_credit_type_id`) VALUES (1,8,179,10.00,'USD',1,1,'Jones Family','Helping Hands',10),(2,9,179,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10);
 -INSERT INTO `civicrm_contribution_soft` (`id`, `contribution_id`, `contact_id`, `amount`, `currency`, `pcp_id`, `pcp_display_in_roll`, `pcp_roll_nickname`, `pcp_personal_note`, `soft_credit_type_id`) VALUES (1,8,106,10.00,'USD',1,1,'Jones Family','Helping Hands',10),(2,9,106,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10);
++INSERT INTO `civicrm_contribution_soft` (`id`, `contribution_id`, `contact_id`, `amount`, `currency`, `pcp_id`, `pcp_display_in_roll`, `pcp_roll_nickname`, `pcp_personal_note`, `soft_credit_type_id`) VALUES (1,8,4,10.00,'USD',1,1,'Jones Family','Helping Hands',10),(2,9,4,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10);
  /*!40000 ALTER TABLE `civicrm_contribution_soft` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -391,7 -391,7 +391,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_domain` WRITE;
  /*!40000 ALTER TABLE `civicrm_domain` DISABLE KEYS */;
- INSERT INTO `civicrm_domain` (`id`, `name`, `description`, `config_backend`, `version`, `contact_id`, `locales`, `locale_custom_strings`) VALUES (1,'Default Domain Name',NULL,NULL,'4.6.3',1,NULL,NULL);
 -INSERT INTO `civicrm_domain` (`id`, `name`, `description`, `config_backend`, `version`, `contact_id`, `locales`, `locale_custom_strings`) VALUES (1,'Default Domain Name',NULL,NULL,'4.7.alpha1',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}');
++INSERT INTO `civicrm_domain` (`id`, `name`, `description`, `config_backend`, `version`, `contact_id`, `locales`, `locale_custom_strings`) VALUES (1,'Default Domain Name',NULL,NULL,'4.6.3',1,NULL,'a:1:{s:5:\"en_US\";a:0:{}}');
  /*!40000 ALTER TABLE `civicrm_domain` ENABLE KEYS */;
  UNLOCK TABLES;
  
  
  LOCK TABLES `civicrm_email` WRITE;
  /*!40000 ALTER TABLE `civicrm_email` DISABLE KEYS */;
- INSERT INTO `civicrm_email` (`id`, `contact_id`, `location_type_id`, `email`, `is_primary`, `is_billing`, `on_hold`, `is_bulkmail`, `hold_date`, `reset_date`, `signature_text`, `signature_html`) VALUES (1,1,1,'fixme.domainemail@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(2,89,1,'jayterrell40@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(3,89,1,'terrell.jay@infomail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(4,142,1,'ju.wilson36@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(5,142,1,'juliannwilson37@notmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(6,179,1,'smith.k.brent@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(7,179,1,'brents26@airmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(8,120,1,'sl.smith@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(9,135,1,'mcreynolds.elizabeth@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(10,47,1,'princessa@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(11,47,1,'pt.adams@spamalot.net',0,0,0,0,NULL,NULL,NULL,NULL),(12,136,1,'jacobs.josefa94@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(13,167,1,'angelikaolsen@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(14,167,1,'olsen.c.angelika54@mymail.org',0,0,0,0,NULL,NULL,NULL,NULL),(15,145,1,'chowski.j.kandace@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(16,145,1,'kandace11@sample.info',0,0,0,0,NULL,NULL,NULL,NULL),(17,146,1,'irvint60@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(18,146,1,'irvint@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(19,122,1,'ep.chowski@testing.info',1,0,0,0,NULL,NULL,NULL,NULL),(20,122,1,'chowskie@notmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(21,155,1,'wagner.c.truman78@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(22,155,1,'wagner.truman68@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL),(23,121,1,'samsonj@sample.net',1,0,0,0,NULL,NULL,NULL,NULL),(24,113,1,'blackwell.errol24@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL),(25,184,1,'dimitrove@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(26,171,1,'wagner.allen@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(27,171,1,'allenw@airmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(28,141,1,'smithw64@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(29,159,1,'leea@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(30,80,1,'ivanov.betty@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(31,188,1,'parkerb@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(32,66,1,'herminiaroberts@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(33,66,1,'roberts.herminia53@airmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(34,40,1,'dm.mcreynolds@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),(35,16,1,'terryo@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(36,16,1,'terry.omar@airmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(37,177,1,'parker.scott@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(38,34,1,'cooperj@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(39,181,1,'rodrigos92@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),(40,72,1,'norriswattson17@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(41,72,1,'norrisw23@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(42,76,1,'na.terrell7@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(43,76,1,'nicolet1@testmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(44,185,1,'chowskik@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(45,185,1,'chowski.kenny@fakemail.net',0,0,0,0,NULL,NULL,NULL,NULL),(46,30,1,'jacobb@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(47,191,1,'blackwellm@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(48,107,1,'norrisjones@example.info',1,0,0,0,NULL,NULL,NULL,NULL),(49,105,1,'terrye@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(50,24,1,'mller.k.craig@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(51,24,1,'craigm@lol.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(52,156,1,'juliannbarkley61@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(53,156,1,'juliannb39@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(54,161,1,'rolandd58@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(55,90,1,'coopern@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(56,21,1,'daz.ashley58@lol.com',1,0,0,0,NULL,NULL,NULL,NULL),(57,21,1,'ashleydaz@fakemail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(58,46,1,'kaceyd77@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(59,46,1,'kaceydeforest65@testing.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(60,15,1,'maganreynolds@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(61,15,1,'mreynolds@mymail.org',0,0,0,0,NULL,NULL,NULL,NULL),(62,97,1,'rchowski@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(63,150,1,'elizabethj@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(64,150,1,'elizabethjones@mymail.net',0,0,0,0,NULL,NULL,NULL,NULL),(65,65,1,'reynoldss74@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(66,7,1,'mc.chowski88@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL),(67,7,1,'chowski.maria@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(68,104,1,'deforest.errol@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(69,104,1,'ee.deforest@lol.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(70,41,1,'gonzlez.jackson@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(71,192,1,'reynoldsr@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(72,63,1,'maxwellb81@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(73,63,1,'blackwellm@fishmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(74,138,1,'beulabachman@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(75,138,1,'bp.bachman@testmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(76,128,1,'adams.h.rosario@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(77,128,1,'rosarioa97@testmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(78,131,1,'wagner.kathlyn40@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(79,132,1,'jed@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(80,92,1,'daz.jay60@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(81,92,1,'daz.jay@lol.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(82,115,1,'deforest.l.herminia23@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),(83,174,1,'ashliegrant4@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(84,111,1,'adams.h.rebekah@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),(85,111,1,'rebekahadams47@fakemail.com',0,0,0,0,NULL,NULL,NULL,NULL),(86,4,1,'samsone@example.info',1,0,0,0,NULL,NULL,NULL,NULL),(87,4,1,'elinasamson77@mymail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(88,95,1,'sadams@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(89,11,1,'olsenc60@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(90,32,1,'reynolds.josefa@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(91,9,1,'ag.olsen-reynolds@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(92,9,1,'alidao@example.biz',0,0,0,0,NULL,NULL,NULL,NULL),(93,12,1,'rt.olsen-reynolds@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(94,12,1,'olsen-reynolds.t.roland@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(95,163,1,'sjacobs@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(96,67,1,'justinaj@testing.info',1,0,0,0,NULL,NULL,NULL,NULL),(97,8,1,'jm.jacobs@testing.info',1,0,0,0,NULL,NULL,NULL,NULL),(98,78,1,'awattson@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(99,39,1,'wattsoni@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(100,39,1,'irisw@lol.biz',0,0,0,0,NULL,NULL,NULL,NULL),(101,165,1,'kb.blackwell@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(102,165,1,'kandaceblackwell@infomail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(103,73,1,'cruz-blackwell.w.billy@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(104,73,1,'cruz-blackwellb62@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(105,71,1,'bernadetter@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(106,71,1,'roberts.bernadette64@example.net',0,0,0,0,NULL,NULL,NULL,NULL),(107,77,1,'terry.kathlyn@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(108,77,1,'kathlynterry@example.biz',0,0,0,0,NULL,NULL,NULL,NULL),(109,59,1,'scarletterry37@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(110,172,1,'olsen-bachman.junko@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(111,172,1,'olsen-bachman.n.junko42@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(112,100,1,'bachmans21@lol.com',1,0,0,0,NULL,NULL,NULL,NULL),(113,54,1,'jacobb8@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(114,50,1,'dimitrov.ashley64@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(115,50,1,'dimitrov.ashley46@fishmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(116,60,1,'ad.dimitrov50@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(117,60,1,'dimitrov.d.andrew98@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(118,170,1,'dimitrov.arlyne@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL),(119,170,1,'arlyned@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL),(120,84,1,'teddyj@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(121,84,1,'jacobs.teddy@lol.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(122,187,1,'maxwellpatel@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(123,26,1,'lv.terrell-patel@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(124,98,1,'patel.norris23@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(125,106,1,'mpatel91@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(126,106,1,'maxwellpatel@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL),(127,109,1,'blackwellr@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(128,109,1,'rosariob@lol.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(129,31,1,'tblackwell@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(130,20,1,'blackwell.erik@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(131,129,1,'tanyaadams@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(132,123,1,'merriea@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(133,123,1,'adams.merrie@fishmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(134,55,1,'beulaadams80@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(135,147,1,'kacey@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(136,147,1,'kaceychowski78@testing.net',0,0,0,0,NULL,NULL,NULL,NULL),(137,42,1,'felisha@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(138,42,1,'chowskif@fishmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(139,143,1,'craigchowski65@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),(140,74,1,'toby@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),(141,74,1,'chowskit@spamalot.net',0,0,0,0,NULL,NULL,NULL,NULL),(142,28,1,'cruz.sonny40@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(143,28,1,'cruzs@testmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(144,18,1,'deforesti@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(145,18,1,'il.deforest@airmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(146,57,1,'nielsenn81@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(147,5,1,'troynielsen70@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(148,158,1,'bobdeforest@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(149,96,1,'deforest.esta94@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(150,96,1,'deforest.esta55@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(151,53,1,'eleonordeforest@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(152,53,1,'deforest.eleonor@notmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(153,196,1,'terrells85@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL),(154,178,1,'terrella@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(155,180,1,'trumanterrell@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(156,148,1,'terrelll@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(157,148,1,'terrell.landon16@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(158,75,3,'feedback@demaenvironmental.org',1,0,0,0,NULL,NULL,NULL,NULL),(159,194,3,'info@madisonvillewellnesscenter.org',1,0,0,0,NULL,NULL,NULL,NULL),(160,67,2,'je.jacobs@madisonvillewellnesscenter.org',0,0,0,0,NULL,NULL,NULL,NULL),(161,10,3,'service@urbanempowermentpartners.org',1,0,0,0,NULL,NULL,NULL,NULL),(162,118,3,'sales@beltonempowermentacademy.org',1,0,0,0,NULL,NULL,NULL,NULL),(163,120,2,'sl.smith@beltonempowermentacademy.org',0,0,0,0,NULL,NULL,NULL,NULL),(164,125,3,'info@washingtonmusicinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL),(165,128,2,'rh.adams@washingtonmusicinitiative.org',0,0,0,0,NULL,NULL,NULL,NULL),(166,45,3,'feedback@ruraltechnologypartnership.org',1,0,0,0,NULL,NULL,NULL,NULL),(167,107,2,'68@ruraltechnologypartnership.org',0,0,0,0,NULL,NULL,NULL,NULL),(168,6,3,'info@dowlensoftware.org',1,0,0,0,NULL,NULL,NULL,NULL),(169,16,2,'@dowlensoftware.org',0,0,0,0,NULL,NULL,NULL,NULL),(170,23,3,'info@ruralmusic.org',1,0,0,0,NULL,NULL,NULL,NULL),(171,51,2,'eg.adams8@ruralmusic.org',1,0,0,0,NULL,NULL,NULL,NULL),(172,112,3,'feedback@mapleempowermentschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(173,52,3,'sales@louisianatechnologyservices.org',1,0,0,0,NULL,NULL,NULL,NULL),(174,64,2,'norrisbachman78@louisianatechnologyservices.org',1,0,0,0,NULL,NULL,NULL,NULL),(175,149,3,'feedback@urbanhealth.org',1,0,0,0,NULL,NULL,NULL,NULL),(176,60,2,'ad.dimitrov47@urbanhealth.org',0,0,0,0,NULL,NULL,NULL,NULL),(177,201,3,'feedback@minnesotapartnership.org',1,0,0,0,NULL,NULL,NULL,NULL),(178,180,2,'terrell.i.truman@minnesotapartnership.org',0,0,0,0,NULL,NULL,NULL,NULL),(179,82,3,'feedback@globalacademy.org',1,0,0,0,NULL,NULL,NULL,NULL),(180,20,2,'eblackwell@globalacademy.org',0,0,0,0,NULL,NULL,NULL,NULL),(181,101,3,'service@progressiveeducation.org',1,0,0,0,NULL,NULL,NULL,NULL),(182,59,2,'scarletterry46@progressiveeducation.org',0,0,0,0,NULL,NULL,NULL,NULL),(183,186,3,'info@mlkingtechnology.org',1,0,0,0,NULL,NULL,NULL,NULL),(184,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(185,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(186,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL);
 -INSERT INTO `civicrm_email` (`id`, `contact_id`, `location_type_id`, `email`, `is_primary`, `is_billing`, `on_hold`, `is_bulkmail`, `hold_date`, `reset_date`, `signature_text`, `signature_html`) VALUES (1,1,1,'fixme.domainemail@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(2,117,1,'kjacobs@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(3,117,1,'kathleenjacobs7@sample.com',0,0,0,0,NULL,NULL,NULL,NULL),(4,119,1,'erikbachman@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(5,87,1,'damarisprentice41@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(6,106,1,'bryonj86@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(7,106,1,'jameson.bryon@infomail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(8,201,1,'patel.f.daren78@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(9,201,1,'pateld@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(10,58,1,'troyw@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(11,137,1,'lincolnparker@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(12,137,1,'lincolnparker@fishmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(13,36,1,'kiarareynolds@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(14,36,1,'reynoldsk@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(15,191,1,'dazb@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(16,191,1,'daz.g.bryon85@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(17,169,1,'julianni19@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(18,169,1,'julianni1@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(19,171,1,'parkerl@fishmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(20,64,1,'ablackwell9@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(21,64,1,'blackwell.ashlie60@fishmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(22,80,1,'samuels.kathlyn85@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(23,80,1,'kathlyns@testmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(24,110,1,'jonesc@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(25,29,1,'tr.samson33@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(26,39,1,'errolprentice58@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(27,39,1,'prentice.errol@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(28,150,1,'yadav.jerome@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(29,150,1,'yadavj@infomail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(30,86,1,'jensene@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(31,86,1,'jensene54@notmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(32,178,1,'nielsenm13@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(33,168,1,'teddygonzlez@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(34,30,1,'wattson.sonny42@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(35,198,1,'adimitrov@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(36,47,1,'prenticea@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(37,47,1,'ashliep26@lol.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(38,71,1,'jg.bachman7@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(39,183,1,'grant.herminia@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(40,67,1,'mller.y.allen@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(41,67,1,'mllera27@spamalot.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(42,185,1,'jameson.jacob46@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),(43,185,1,'jameson.jacob@testmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(44,9,1,'bachmans63@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(45,146,1,'omarp@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(46,42,1,'adams.w.billy@notmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(47,42,1,'adamsb@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL),(48,166,1,'ejensen@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL),(49,75,1,'jensena@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(50,75,1,'jensen.allen@fakemail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(51,44,1,'nielsen.r.teresa2@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(52,131,1,'samuelsc@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(53,162,1,'reynoldse@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL),(54,184,1,'eu.mcreynolds@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(55,196,1,'alidadaz7@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(56,157,1,'dimitrov.winford@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(57,157,1,'winforddimitrov69@lol.info',0,0,0,0,NULL,NULL,NULL,NULL),(58,76,1,'clintmller33@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(59,192,1,'deforest.kathleen@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(60,192,1,'kathleend73@sample.biz',0,0,0,0,NULL,NULL,NULL,NULL),(61,96,1,'wattson.margaret54@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(62,158,1,'chowski.josefa11@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(63,35,1,'robertson.kenny@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(64,35,1,'kennyr29@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL),(65,193,1,'claudioyadav57@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),(66,152,1,'mcreynolds.o.josefa32@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(67,152,1,'josefamcreynolds@spamalot.net',0,0,0,0,NULL,NULL,NULL,NULL),(68,190,1,'bettydaz@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(69,190,1,'daz.betty@fakemail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(70,16,1,'patel.q.elbert@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(71,51,1,'samuels.jerome49@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(72,51,1,'samuelsj@lol.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(73,34,1,'maxwelladams@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),(74,34,1,'maxwella@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(75,79,1,'cooper.u.lawerence50@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(76,79,1,'cooper.lawerence@spamalot.biz',0,0,0,0,NULL,NULL,NULL,NULL),(77,154,1,'yadavl15@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(78,188,1,'kathleenpatel@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(79,54,1,'rolandy@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(80,54,1,'rolandy10@testing.com',0,0,0,0,NULL,NULL,NULL,NULL),(81,123,1,'cruz.alexia34@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),(82,123,1,'ap.cruz54@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(83,18,1,'smith.norris40@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(84,18,1,'smith.norris@example.info',0,0,0,0,NULL,NULL,NULL,NULL),(85,26,1,'parkerh14@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(86,26,1,'parker.herminia98@sample.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(87,52,1,'landonolsen94@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(88,155,1,'ivanov-olsen.q.allan74@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(89,77,1,'olsen.rolando@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL),(90,77,1,'rolandoolsen@lol.info',0,0,0,0,NULL,NULL,NULL,NULL),(91,112,1,'colsen@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(92,74,1,'rodrigogonzlez75@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(93,122,1,'ashliej@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(94,122,1,'ah.jones-gonzlez@testing.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(95,130,1,'shermang@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(96,130,1,'sgonzlez@example.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(97,108,1,'gonzlezd@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(98,84,1,'arlynec@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(99,199,1,'brittney@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(100,199,1,'brittneychowski-cooper8@testing.info',0,0,0,0,NULL,NULL,NULL,NULL),(101,20,1,'sq.chowski-cooper@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(102,20,1,'santina@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(103,25,1,'preynolds24@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(104,25,1,'reynoldsp@testing.biz',0,0,0,0,NULL,NULL,NULL,NULL),(105,17,1,'reynolds.roland@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(106,17,1,'reynolds.n.roland@testmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(107,95,1,'maxwellgonzlez91@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(108,95,1,'gonzlezm@spamalot.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(109,57,1,'gonzlez-blackwell.u.omar62@spamalot.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(110,57,1,'omarg@lol.biz',0,0,0,0,NULL,NULL,NULL,NULL),(111,19,1,'troyterry@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),(112,19,1,'troyterry11@spamalot.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(113,53,1,'terrya@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(114,50,1,'terry.p.felisha@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(115,142,1,'samuelsa@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(116,142,1,'samuels.allan41@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(117,165,1,'samuels.princess56@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(118,90,1,'elinasamuels65@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(119,90,1,'elinasamuels52@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(120,101,1,'craigs@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL),(121,101,1,'samuelsc60@testing.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(122,81,1,'grant.j.rodrigo@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(123,81,1,'grant.rodrigo@lol.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(124,161,1,'grantf@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(125,161,1,'fs.grant@sample.org',0,0,0,0,NULL,NULL,NULL,NULL),(126,91,1,'jacksongrant13@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(127,49,1,'lawerencec@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(128,49,1,'cruzl@spamalot.net',0,0,0,0,NULL,NULL,NULL,NULL),(129,60,1,'nicolecruz@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(130,164,1,'robertson.lawerence39@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(131,73,1,'prentice-robertsonr@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(132,73,1,'rq.prentice-robertson@testing.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(133,104,1,'robertson.carlos@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(134,174,1,'brzczysawp@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(135,174,1,'brzczysawprentice@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL),(136,40,1,'ti.prentice@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(137,141,1,'cruz.barry@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(138,143,1,'ei.cruz@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(139,45,1,'herminiac@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(140,128,1,'jacobmller9@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(141,8,1,'smith-mller.damaris7@sample.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(142,8,1,'smith-mller.damaris16@notmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(143,197,1,'mller.jay@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(144,197,1,'mller.jay@lol.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(145,180,1,'margaretm96@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(146,180,1,'mllerm@lol.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(147,129,1,'prentice-cruz.p.herminia@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(148,129,1,'prentice-cruzh6@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(149,175,1,'alidac91@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(150,145,1,'cruzb@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(151,102,1,'angelikaj@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(152,102,1,'jones.f.angelika@testing.net',0,0,0,0,NULL,NULL,NULL,NULL),(153,179,1,'kandacew@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(154,62,1,'samson-wilson.ivey54@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(155,62,1,'iveys36@airmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(156,138,1,'omars@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(157,138,1,'omars63@lol.com',0,0,0,0,NULL,NULL,NULL,NULL),(158,118,1,'robertsone@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(159,31,1,'rolandrobertson@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(160,31,1,'rolandr47@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(161,159,1,'jameson.truman@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(162,159,1,'trumanjameson51@testing.biz',0,0,0,0,NULL,NULL,NULL,NULL),(163,21,1,'bw.jameson@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(164,21,1,'bw.jameson82@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(165,56,1,'jameson.kenny@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(166,105,1,'ashleyj@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(167,105,1,'ashleyjones@mymail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(168,85,1,'jacobs-jones.elizabeth12@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(169,85,1,'jacobs-jones.b.elizabeth@notmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(170,12,1,'lincolnj@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(171,43,3,'service@boltschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(172,48,3,'feedback@vnpeacefellowship.org',1,0,0,0,NULL,NULL,NULL,NULL),(173,124,3,'service@ecsoftwaresolutions.org',1,0,0,0,NULL,NULL,NULL,NULL),(174,34,2,'adams.u.maxwell@ecsoftwaresolutions.org',0,0,0,0,NULL,NULL,NULL,NULL),(175,38,3,'feedback@arizonasustainability.org',1,0,0,0,NULL,NULL,NULL,NULL),(176,187,3,'service@elizabethfoodfund.org',1,0,0,0,NULL,NULL,NULL,NULL),(177,2,2,'kennynielsen67@elizabethfoodfund.org',1,0,0,0,NULL,NULL,NULL,NULL),(178,55,3,'sales@thpoetrycollective.org',1,0,0,0,NULL,NULL,NULL,NULL),(179,147,2,'sj.bachman56@thpoetrycollective.org',1,0,0,0,NULL,NULL,NULL,NULL),(180,127,3,'service@urbanaction.org',1,0,0,0,NULL,NULL,NULL,NULL),(181,135,3,'info@greensportsservices.org',1,0,0,0,NULL,NULL,NULL,NULL),(182,193,2,'yadav.claudio19@greensportsservices.org',0,0,0,0,NULL,NULL,NULL,NULL),(183,97,3,'sales@tennesseesustainability.org',1,0,0,0,NULL,NULL,NULL,NULL),(184,40,2,'ti.prentice52@tennesseesustainability.org',0,0,0,0,NULL,NULL,NULL,NULL),(185,186,3,'feedback@globaladvocacy.org',1,0,0,0,NULL,NULL,NULL,NULL),(186,32,3,'feedback@friendsartsschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(187,152,2,'59@friendsartsschool.org',0,0,0,0,NULL,NULL,NULL,NULL),(188,37,3,'sales@progressivedevelopmentschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(189,200,2,'djones@progressivedevelopmentschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(190,24,3,'service@emlynsoftware.org',1,0,0,0,NULL,NULL,NULL,NULL),(191,23,3,'info@rphealthcollective.org',1,0,0,0,NULL,NULL,NULL,NULL),(192,199,2,'brittney@rphealthcollective.org',0,0,0,0,NULL,NULL,NULL,NULL),(193,4,3,'feedback@mainsolutions.org',1,0,0,0,NULL,NULL,NULL,NULL),(194,106,2,'jameson.n.bryon@mainsolutions.org',0,0,0,0,NULL,NULL,NULL,NULL),(195,109,3,'info@montanapoetrypartnership.org',1,0,0,0,NULL,NULL,NULL,NULL),(196,102,2,'.51@montanapoetrypartnership.org',0,0,0,0,NULL,NULL,NULL,NULL),(197,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(198,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(199,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL);
++INSERT INTO `civicrm_email` (`id`, `contact_id`, `location_type_id`, `email`, `is_primary`, `is_billing`, `on_hold`, `is_bulkmail`, `hold_date`, `reset_date`, `signature_text`, `signature_html`) VALUES (1,1,1,'fixme.domainemail@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(2,166,1,'barkley.arlyne@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(3,128,1,'chowskii@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(4,4,1,'ivanov.daren@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(5,4,1,'ivanovd@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(6,71,1,'jones.carylon67@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL),(7,110,1,'parker.kathleen@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(8,152,1,'jacobbachman@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(9,182,1,'juliannp42@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(10,182,1,'parkerj@fishmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(11,142,1,'billyn@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(12,176,1,'rrobertson98@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(13,88,1,'troyw34@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(14,33,1,'cruz.c.shad59@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(15,169,1,'nielsenm@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(16,163,1,'prentice.sanford11@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(17,163,1,'sanfordp41@testing.net',0,0,0,0,NULL,NULL,NULL,NULL),(18,179,1,'jacobsa@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(19,179,1,'ajacobs44@infomail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(20,55,1,'ashliemcreynolds86@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(21,55,1,'mcreynolds.ashlie@example.info',0,0,0,0,NULL,NULL,NULL,NULL),(22,190,1,'gonzlez.lawerence@example.org',1,0,0,0,NULL,NULL,NULL,NULL),(23,190,1,'lu.gonzlez@sample.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(24,95,1,'mller.winford@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(25,95,1,'mller.i.winford76@example.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(26,85,1,'rolandog@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),(27,85,1,'rgonzlez24@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(28,29,1,'cruzb@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(29,120,1,'esmith@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(30,67,1,'wilson.k.rebekah@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(31,67,1,'wilson.k.rebekah@example.biz',0,0,0,0,NULL,NULL,NULL,NULL),(32,43,1,'carylont26@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(33,43,1,'carylonterrell@notmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(34,76,1,'schowski77@airmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(35,47,1,'rebekahcooper@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(36,9,1,'barryroberts69@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(37,9,1,'robertsb43@lol.biz',0,0,0,0,NULL,NULL,NULL,NULL),(38,111,1,'bachman.a.lou@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(39,111,1,'bachmanl@spamalot.org',0,0,0,0,NULL,NULL,NULL,NULL),(40,58,1,'alidadeforest@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(41,77,1,'smith.andrew@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(42,77,1,'asmith88@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(43,130,1,'awagner@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(44,130,1,'wagnera@airmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(45,36,1,'sharynparker@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(46,11,1,'gonzlezh36@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(47,172,1,'terrell.betty94@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),(48,172,1,'bettyt@testing.net',0,0,0,0,NULL,NULL,NULL,NULL),(49,134,1,'meganz@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(50,133,1,'blackwell.brzczysaw@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(51,180,1,'blackwell.allan4@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(52,139,1,'lee.mei@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(53,114,1,'yadav.winford@infomail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(54,114,1,'winfordy83@testing.info',0,0,0,0,NULL,NULL,NULL,NULL),(55,69,1,'wilsonb20@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(56,137,1,'bachman.c.sharyn@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(57,137,1,'sc.bachman@notmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(58,82,1,'wagner.betty33@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(59,82,1,'bettywagner10@notmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(60,145,1,'craiglee@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(61,5,1,'gonzlezj@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(62,6,1,'errolchowski78@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(63,158,1,'wilsone75@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(64,158,1,'eb.wilson@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(65,159,1,'juliannbachman@testmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(66,184,1,'jacobs.laree22@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(67,184,1,'ljacobs55@testmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(68,56,1,'jinai32@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),(69,56,1,'jinai7@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(70,193,1,'lo.yadav81@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(71,193,1,'yadav.o.landon78@airmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(72,97,1,'deforest.kathleen80@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(73,97,1,'kdeforest@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(74,53,1,'zope.landon@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(75,53,1,'landonz@fakemail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(76,13,1,'mcreynolds.d.brigette64@example.info',1,0,0,0,NULL,NULL,NULL,NULL),(77,13,1,'brigettem@testing.biz',0,0,0,0,NULL,NULL,NULL,NULL),(78,83,1,'sharynl@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(79,83,1,'sharynl@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(80,14,1,'grant.ivey@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(81,28,1,'shaunao@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(82,28,1,'shaunao@notmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(83,2,1,'mller.kiara@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(84,49,1,'daz.elizabeth@example.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(85,7,1,'dazn@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(86,54,1,'daz.bernadette@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(87,23,1,'bd.jensen@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(88,23,1,'bd.jensen78@testmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(89,175,1,'patel.santina38@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(90,175,1,'santinapatel@fishmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(91,136,1,'jinaj@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(92,94,1,'arlynen50@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(93,12,1,'yadav.margaret26@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(94,12,1,'yadav.margaret@testmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(95,181,1,'nielsen-yadavj@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(96,181,1,'jacobn@airmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(97,162,1,'justinaw17@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(98,162,1,'je.wilson@example.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(99,80,1,'clintwilson41@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(100,80,1,'wilson.clint@testing.biz',0,0,0,0,NULL,NULL,NULL,NULL),(101,46,1,'wilson.laree@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),(102,46,1,'wilsonl23@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(103,8,1,'ai.blackwell@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(104,116,1,'blackwellr@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(105,116,1,'russellblackwell@mymail.org',0,0,0,0,NULL,NULL,NULL,NULL),(106,52,1,'blackwell.jed94@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),(107,10,1,'sm.blackwell50@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(108,148,1,'rolandowilson@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(109,37,1,'parker-wilson.shauna50@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),(110,34,1,'wilson.russell@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(111,96,1,'craigwilson@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(112,96,1,'wilson.craig@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL),(113,90,1,'barkley.maxwell77@testing.info',1,0,0,0,NULL,NULL,NULL,NULL),(114,27,1,'barkleyt19@infomail.net',1,0,0,0,NULL,NULL,NULL,NULL),(115,44,1,'barkleyt@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(116,44,1,'barkley.troy@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL),(117,21,1,'mf.bachman@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(118,21,1,'margaretbachman26@fakemail.com',0,0,0,0,NULL,NULL,NULL,NULL),(119,150,1,'irisbachman50@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(120,150,1,'bachman.iris@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(121,167,1,'sz.parker@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),(122,167,1,'shadp97@notmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(123,42,1,'dimitrov.beula37@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(124,141,1,'parker-dimitrov.jerome@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(125,17,1,'bettyd6@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(126,119,1,'daz-mcreynolds.irvin95@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(127,119,1,'irvindaz-mcreynolds@fakemail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(128,92,1,'nielsen.andrew@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(129,48,1,'nielsen.arlyne@fakemail.org',1,0,0,0,NULL,NULL,NULL,NULL),(130,48,1,'ah.nielsen@example.info',0,0,0,0,NULL,NULL,NULL,NULL),(131,72,1,'eriknielsen34@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(132,72,1,'nielsen.erik1@fishmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(133,149,1,'ashlien92@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(134,51,1,'mariad@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(135,51,1,'deforest.maria@testing.info',0,0,0,0,NULL,NULL,NULL,NULL),(136,154,1,'deforest.kiara@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(137,154,1,'deforest.kiara57@sample.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(138,101,1,'deforest.tanya26@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(139,132,1,'rf.deforest9@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(140,160,1,'bachman.omar76@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(141,160,1,'bachman.omar@fakemail.org',0,0,0,0,NULL,NULL,NULL,NULL),(142,22,1,'bachman.tanya55@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(143,22,1,'bachman.tanya12@fishmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(144,107,1,'jacksonb76@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(145,73,1,'troyparker@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(146,174,1,'eparker1@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(147,61,1,'mcreynolds.truman65@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(148,61,1,'mcreynoldst@airmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(149,135,1,'junkowagner@mymail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(150,70,1,'allenmcreynolds-wagner13@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(151,186,1,'jedjameson@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(152,186,1,'jamesonj8@mymail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(153,199,1,'roberts-jameson.eleonor@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(154,199,1,'roberts-jameson.eleonor@spamalot.com',0,0,0,0,NULL,NULL,NULL,NULL),(155,104,1,'damarisj91@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(156,171,1,'jameson.p.omar@testmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(157,171,1,'omarj17@sample.biz',0,0,0,0,NULL,NULL,NULL,NULL),(158,100,1,'omart@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(159,100,1,'terrello@sample.com',0,0,0,0,NULL,NULL,NULL,NULL),(160,122,1,'te.wattson46@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(161,122,1,'wattsont@fishmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(162,59,1,'rodrigot73@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(163,189,1,'kennyterrell-wattson97@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(164,118,1,'valenecooper52@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL),(165,124,1,'cooperb85@testmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(166,185,1,'js.barkley@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(167,131,1,'junkoadams-barkley80@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(168,131,1,'jx.adams-barkley@sample.com',0,0,0,0,NULL,NULL,NULL,NULL),(169,32,3,'info@localsoftware.org',1,0,0,0,NULL,NULL,NULL,NULL),(170,100,2,'@localsoftware.org',0,0,0,0,NULL,NULL,NULL,NULL),(171,194,3,'contact@creativedevelopment.org',1,0,0,0,NULL,NULL,NULL,NULL),(172,63,3,'service@connecticutadvocacy.org',1,0,0,0,NULL,NULL,NULL,NULL),(173,197,3,'service@progressivelegal.org',1,0,0,0,NULL,NULL,NULL,NULL),(174,115,3,'contact@globalliteracy.org',1,0,0,0,NULL,NULL,NULL,NULL),(175,128,2,'il.chowski@globalliteracy.org',0,0,0,0,NULL,NULL,NULL,NULL),(176,191,3,'service@urbaneducation.org',1,0,0,0,NULL,NULL,NULL,NULL),(177,46,2,'wilson.laree17@urbaneducation.org',0,0,0,0,NULL,NULL,NULL,NULL),(178,57,3,'service@globalempowermentpartnership.org',1,0,0,0,NULL,NULL,NULL,NULL),(179,112,3,'info@dunnellonalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(180,38,3,'feedback@ruraldevelopment.org',1,0,0,0,NULL,NULL,NULL,NULL),(181,37,2,'shaunap@ruraldevelopment.org',0,0,0,0,NULL,NULL,NULL,NULL),(182,81,3,'info@mlkingsustainability.org',1,0,0,0,NULL,NULL,NULL,NULL),(183,180,2,'ablackwell@mlkingsustainability.org',0,0,0,0,NULL,NULL,NULL,NULL),(184,188,3,'feedback@deliafund.org',1,0,0,0,NULL,NULL,NULL,NULL),(185,129,3,'contact@statesfoodinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL),(186,109,3,'service@communityhealth.org',1,0,0,0,NULL,NULL,NULL,NULL),(187,19,3,'feedback@jacksonvilleacademy.org',1,0,0,0,NULL,NULL,NULL,NULL),(188,10,2,'scottb@jacksonvilleacademy.org',0,0,0,0,NULL,NULL,NULL,NULL),(189,151,3,'info@okeechobeecollective.org',1,0,0,0,NULL,NULL,NULL,NULL),(190,173,3,'info@urbansports.org',1,0,0,0,NULL,NULL,NULL,NULL),(191,158,2,'.@urbansports.org',0,0,0,0,NULL,NULL,NULL,NULL),(192,40,3,'feedback@unitedfamily.org',1,0,0,0,NULL,NULL,NULL,NULL),(193,124,2,'brentc@unitedfamily.org',0,0,0,0,NULL,NULL,NULL,NULL),(194,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(195,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(196,NULL,1,'celebration@example.org',0,0,0,0,NULL,NULL,NULL,NULL);
  /*!40000 ALTER TABLE `civicrm_email` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -439,7 -439,7 +439,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_entity_financial_trxn` WRITE;
  /*!40000 ALTER TABLE `civicrm_entity_financial_trxn` DISABLE KEYS */;
- INSERT INTO `civicrm_entity_financial_trxn` (`id`, `entity_table`, `entity_id`, `financial_trxn_id`, `amount`) VALUES (1,'civicrm_contribution',1,1,125.00),(2,'civicrm_financial_item',1,1,125.00),(3,'civicrm_contribution',2,2,50.00),(4,'civicrm_financial_item',2,2,50.00),(5,'civicrm_contribution',3,3,25.00),(6,'civicrm_financial_item',3,3,25.00),(7,'civicrm_contribution',4,4,50.00),(8,'civicrm_financial_item',4,4,50.00),(9,'civicrm_contribution',5,5,500.00),(10,'civicrm_financial_item',5,5,500.00),(11,'civicrm_contribution',6,6,175.00),(12,'civicrm_financial_item',6,6,175.00),(13,'civicrm_contribution',7,7,50.00),(14,'civicrm_financial_item',7,7,50.00),(15,'civicrm_contribution',8,8,10.00),(16,'civicrm_financial_item',8,8,10.00),(17,'civicrm_contribution',9,9,250.00),(18,'civicrm_financial_item',9,9,250.00),(19,'civicrm_contribution',10,10,500.00),(20,'civicrm_financial_item',10,10,500.00),(21,'civicrm_contribution',11,11,200.00),(22,'civicrm_financial_item',11,11,200.00),(23,'civicrm_contribution',12,12,200.00),(24,'civicrm_financial_item',12,12,200.00),(25,'civicrm_contribution',13,13,200.00),(26,'civicrm_financial_item',13,13,200.00),(27,'civicrm_contribution',57,14,50.00),(28,'civicrm_financial_item',14,14,50.00),(29,'civicrm_contribution',79,15,50.00),(30,'civicrm_financial_item',15,15,50.00),(31,'civicrm_contribution',66,16,50.00),(32,'civicrm_financial_item',16,16,50.00),(33,'civicrm_contribution',71,17,50.00),(34,'civicrm_financial_item',17,17,50.00),(35,'civicrm_contribution',77,18,50.00),(36,'civicrm_financial_item',18,18,50.00),(37,'civicrm_contribution',63,19,50.00),(38,'civicrm_financial_item',19,19,50.00),(39,'civicrm_contribution',58,20,50.00),(40,'civicrm_financial_item',20,20,50.00),(41,'civicrm_contribution',68,21,50.00),(42,'civicrm_financial_item',21,21,50.00),(43,'civicrm_contribution',49,22,50.00),(44,'civicrm_financial_item',22,22,50.00),(45,'civicrm_contribution',92,23,50.00),(46,'civicrm_financial_item',23,23,50.00),(47,'civicrm_contribution',50,24,50.00),(48,'civicrm_financial_item',24,24,50.00),(49,'civicrm_contribution',64,25,50.00),(50,'civicrm_financial_item',25,25,50.00),(51,'civicrm_contribution',53,26,50.00),(52,'civicrm_financial_item',26,26,50.00),(53,'civicrm_contribution',60,27,50.00),(54,'civicrm_financial_item',27,27,50.00),(55,'civicrm_contribution',46,28,50.00),(56,'civicrm_financial_item',28,28,50.00),(57,'civicrm_contribution',78,29,50.00),(58,'civicrm_financial_item',29,29,50.00),(59,'civicrm_contribution',67,30,800.00),(60,'civicrm_financial_item',30,30,800.00),(61,'civicrm_contribution',73,31,800.00),(62,'civicrm_financial_item',31,31,800.00),(63,'civicrm_contribution',94,32,800.00),(64,'civicrm_financial_item',32,32,800.00),(65,'civicrm_contribution',51,33,800.00),(66,'civicrm_financial_item',33,33,800.00),(67,'civicrm_contribution',91,34,800.00),(68,'civicrm_financial_item',34,34,800.00),(69,'civicrm_contribution',59,35,800.00),(70,'civicrm_financial_item',35,35,800.00),(71,'civicrm_contribution',74,36,800.00),(72,'civicrm_financial_item',36,36,800.00),(73,'civicrm_contribution',48,37,800.00),(74,'civicrm_financial_item',37,37,800.00),(75,'civicrm_contribution',69,38,800.00),(76,'civicrm_financial_item',38,38,800.00),(77,'civicrm_contribution',72,39,800.00),(78,'civicrm_financial_item',39,39,800.00),(79,'civicrm_contribution',86,40,800.00),(80,'civicrm_financial_item',40,40,800.00),(81,'civicrm_contribution',70,41,800.00),(82,'civicrm_financial_item',41,41,800.00),(83,'civicrm_contribution',54,42,800.00),(84,'civicrm_financial_item',42,42,800.00),(85,'civicrm_contribution',89,43,800.00),(86,'civicrm_financial_item',43,43,800.00),(87,'civicrm_contribution',82,44,800.00),(88,'civicrm_financial_item',44,44,800.00),(89,'civicrm_contribution',88,45,800.00),(90,'civicrm_financial_item',45,45,800.00),(91,'civicrm_contribution',47,46,800.00),(92,'civicrm_financial_item',46,46,800.00),(93,'civicrm_contribution',84,47,800.00),(94,'civicrm_financial_item',47,47,800.00),(95,'civicrm_contribution',83,48,50.00),(96,'civicrm_financial_item',48,48,50.00),(97,'civicrm_contribution',80,49,50.00),(98,'civicrm_financial_item',49,49,50.00),(99,'civicrm_contribution',45,50,50.00),(100,'civicrm_financial_item',50,50,50.00),(101,'civicrm_contribution',56,51,50.00),(102,'civicrm_financial_item',51,51,50.00),(103,'civicrm_contribution',61,52,50.00),(104,'civicrm_financial_item',52,52,50.00),(105,'civicrm_contribution',75,53,50.00),(106,'civicrm_financial_item',53,53,50.00),(107,'civicrm_contribution',85,54,50.00),(108,'civicrm_financial_item',54,54,50.00),(109,'civicrm_contribution',81,55,50.00),(110,'civicrm_financial_item',55,55,50.00),(111,'civicrm_contribution',90,56,50.00),(112,'civicrm_financial_item',56,56,50.00),(113,'civicrm_contribution',87,57,50.00),(114,'civicrm_financial_item',57,57,50.00),(115,'civicrm_contribution',55,58,50.00),(116,'civicrm_financial_item',58,58,50.00),(117,'civicrm_contribution',62,59,50.00),(118,'civicrm_financial_item',59,59,50.00),(119,'civicrm_contribution',65,60,50.00),(120,'civicrm_financial_item',60,60,50.00),(121,'civicrm_contribution',76,61,50.00),(122,'civicrm_financial_item',61,61,50.00),(123,'civicrm_contribution',93,62,50.00),(124,'civicrm_financial_item',62,62,50.00),(125,'civicrm_contribution',52,63,50.00),(126,'civicrm_financial_item',63,63,50.00);
 -INSERT INTO `civicrm_entity_financial_trxn` (`id`, `entity_table`, `entity_id`, `financial_trxn_id`, `amount`) VALUES (1,'civicrm_contribution',1,1,125.00),(2,'civicrm_financial_item',1,1,125.00),(3,'civicrm_contribution',2,2,50.00),(4,'civicrm_financial_item',2,2,50.00),(5,'civicrm_contribution',3,3,25.00),(6,'civicrm_financial_item',3,3,25.00),(7,'civicrm_contribution',4,4,50.00),(8,'civicrm_financial_item',4,4,50.00),(9,'civicrm_contribution',5,5,500.00),(10,'civicrm_financial_item',5,5,500.00),(11,'civicrm_contribution',6,6,175.00),(12,'civicrm_financial_item',6,6,175.00),(13,'civicrm_contribution',7,7,50.00),(14,'civicrm_financial_item',7,7,50.00),(15,'civicrm_contribution',8,8,10.00),(16,'civicrm_financial_item',8,8,10.00),(17,'civicrm_contribution',9,9,250.00),(18,'civicrm_financial_item',9,9,250.00),(19,'civicrm_contribution',10,10,500.00),(20,'civicrm_financial_item',10,10,500.00),(21,'civicrm_contribution',11,11,200.00),(22,'civicrm_financial_item',11,11,200.00),(23,'civicrm_contribution',12,12,200.00),(24,'civicrm_financial_item',12,12,200.00),(25,'civicrm_contribution',13,13,200.00),(26,'civicrm_financial_item',13,13,200.00),(27,'civicrm_contribution',61,14,50.00),(28,'civicrm_financial_item',14,14,50.00),(29,'civicrm_contribution',81,15,50.00),(30,'civicrm_financial_item',15,15,50.00),(31,'civicrm_contribution',73,16,50.00),(32,'civicrm_financial_item',16,16,50.00),(33,'civicrm_contribution',66,17,50.00),(34,'civicrm_financial_item',17,17,50.00),(35,'civicrm_contribution',70,18,50.00),(36,'civicrm_financial_item',18,18,50.00),(37,'civicrm_contribution',86,19,50.00),(38,'civicrm_financial_item',19,19,50.00),(39,'civicrm_contribution',79,20,50.00),(40,'civicrm_financial_item',20,20,50.00),(41,'civicrm_contribution',51,21,50.00),(42,'civicrm_financial_item',21,21,50.00),(43,'civicrm_contribution',58,22,50.00),(44,'civicrm_financial_item',22,22,50.00),(45,'civicrm_contribution',69,23,50.00),(46,'civicrm_financial_item',23,23,50.00),(47,'civicrm_contribution',80,24,50.00),(48,'civicrm_financial_item',24,24,50.00),(49,'civicrm_contribution',75,25,50.00),(50,'civicrm_financial_item',25,25,50.00),(51,'civicrm_contribution',60,26,50.00),(52,'civicrm_financial_item',26,26,50.00),(53,'civicrm_contribution',77,27,50.00),(54,'civicrm_financial_item',27,27,50.00),(55,'civicrm_contribution',92,28,50.00),(56,'civicrm_financial_item',28,28,50.00),(57,'civicrm_contribution',68,29,50.00),(58,'civicrm_financial_item',29,29,50.00),(59,'civicrm_contribution',93,30,800.00),(60,'civicrm_financial_item',30,30,800.00),(61,'civicrm_contribution',85,31,800.00),(62,'civicrm_financial_item',31,31,800.00),(63,'civicrm_contribution',52,32,800.00),(64,'civicrm_financial_item',32,32,800.00),(65,'civicrm_contribution',71,33,800.00),(66,'civicrm_financial_item',33,33,800.00),(67,'civicrm_contribution',63,34,800.00),(68,'civicrm_financial_item',34,34,800.00),(69,'civicrm_contribution',57,35,800.00),(70,'civicrm_financial_item',35,35,800.00),(71,'civicrm_contribution',87,36,800.00),(72,'civicrm_financial_item',36,36,800.00),(73,'civicrm_contribution',48,37,800.00),(74,'civicrm_financial_item',37,37,800.00),(75,'civicrm_contribution',49,38,800.00),(76,'civicrm_financial_item',38,38,800.00),(77,'civicrm_contribution',45,39,800.00),(78,'civicrm_financial_item',39,39,800.00),(79,'civicrm_contribution',82,40,800.00),(80,'civicrm_financial_item',40,40,800.00),(81,'civicrm_contribution',72,41,800.00),(82,'civicrm_financial_item',41,41,800.00),(83,'civicrm_contribution',84,42,800.00),(84,'civicrm_financial_item',42,42,800.00),(85,'civicrm_contribution',64,43,800.00),(86,'civicrm_financial_item',43,43,800.00),(87,'civicrm_contribution',89,44,800.00),(88,'civicrm_financial_item',44,44,800.00),(89,'civicrm_contribution',88,45,800.00),(90,'civicrm_financial_item',45,45,800.00),(91,'civicrm_contribution',74,46,800.00),(92,'civicrm_financial_item',46,46,800.00),(93,'civicrm_contribution',76,47,800.00),(94,'civicrm_financial_item',47,47,800.00),(95,'civicrm_contribution',83,48,50.00),(96,'civicrm_financial_item',48,48,50.00),(97,'civicrm_contribution',65,49,50.00),(98,'civicrm_financial_item',49,49,50.00),(99,'civicrm_contribution',94,50,50.00),(100,'civicrm_financial_item',50,50,50.00),(101,'civicrm_contribution',46,51,50.00),(102,'civicrm_financial_item',51,51,50.00),(103,'civicrm_contribution',67,52,50.00),(104,'civicrm_financial_item',52,52,50.00),(105,'civicrm_contribution',50,53,50.00),(106,'civicrm_financial_item',53,53,50.00),(107,'civicrm_contribution',55,54,50.00),(108,'civicrm_financial_item',54,54,50.00),(109,'civicrm_contribution',53,55,50.00),(110,'civicrm_financial_item',55,55,50.00),(111,'civicrm_contribution',62,56,50.00),(112,'civicrm_financial_item',56,56,50.00),(113,'civicrm_contribution',78,57,50.00),(114,'civicrm_financial_item',57,57,50.00),(115,'civicrm_contribution',90,58,50.00),(116,'civicrm_financial_item',58,58,50.00),(117,'civicrm_contribution',56,59,50.00),(118,'civicrm_financial_item',59,59,50.00),(119,'civicrm_contribution',54,60,50.00),(120,'civicrm_financial_item',60,60,50.00),(121,'civicrm_contribution',47,61,50.00),(122,'civicrm_financial_item',61,61,50.00),(123,'civicrm_contribution',91,62,50.00),(124,'civicrm_financial_item',62,62,50.00),(125,'civicrm_contribution',59,63,50.00),(126,'civicrm_financial_item',63,63,50.00);
++INSERT INTO `civicrm_entity_financial_trxn` (`id`, `entity_table`, `entity_id`, `financial_trxn_id`, `amount`) VALUES (1,'civicrm_contribution',1,1,125.00),(2,'civicrm_financial_item',1,1,125.00),(3,'civicrm_contribution',2,2,50.00),(4,'civicrm_financial_item',2,2,50.00),(5,'civicrm_contribution',3,3,25.00),(6,'civicrm_financial_item',3,3,25.00),(7,'civicrm_contribution',4,4,50.00),(8,'civicrm_financial_item',4,4,50.00),(9,'civicrm_contribution',5,5,500.00),(10,'civicrm_financial_item',5,5,500.00),(11,'civicrm_contribution',6,6,175.00),(12,'civicrm_financial_item',6,6,175.00),(13,'civicrm_contribution',7,7,50.00),(14,'civicrm_financial_item',7,7,50.00),(15,'civicrm_contribution',8,8,10.00),(16,'civicrm_financial_item',8,8,10.00),(17,'civicrm_contribution',9,9,250.00),(18,'civicrm_financial_item',9,9,250.00),(19,'civicrm_contribution',10,10,500.00),(20,'civicrm_financial_item',10,10,500.00),(21,'civicrm_contribution',11,11,200.00),(22,'civicrm_financial_item',11,11,200.00),(23,'civicrm_contribution',12,12,200.00),(24,'civicrm_financial_item',12,12,200.00),(25,'civicrm_contribution',13,13,200.00),(26,'civicrm_financial_item',13,13,200.00),(27,'civicrm_contribution',62,14,50.00),(28,'civicrm_financial_item',14,14,50.00),(29,'civicrm_contribution',66,15,50.00),(30,'civicrm_financial_item',15,15,50.00),(31,'civicrm_contribution',46,16,50.00),(32,'civicrm_financial_item',16,16,50.00),(33,'civicrm_contribution',47,17,50.00),(34,'civicrm_financial_item',17,17,50.00),(35,'civicrm_contribution',70,18,50.00),(36,'civicrm_financial_item',18,18,50.00),(37,'civicrm_contribution',74,19,50.00),(38,'civicrm_financial_item',19,19,50.00),(39,'civicrm_contribution',91,20,50.00),(40,'civicrm_financial_item',20,20,50.00),(41,'civicrm_contribution',50,21,50.00),(42,'civicrm_financial_item',21,21,50.00),(43,'civicrm_contribution',54,22,50.00),(44,'civicrm_financial_item',22,22,50.00),(45,'civicrm_contribution',84,23,50.00),(46,'civicrm_financial_item',23,23,50.00),(47,'civicrm_contribution',56,24,50.00),(48,'civicrm_financial_item',24,24,50.00),(49,'civicrm_contribution',68,25,50.00),(50,'civicrm_financial_item',25,25,50.00),(51,'civicrm_contribution',71,26,50.00),(52,'civicrm_financial_item',26,26,50.00),(53,'civicrm_contribution',59,27,50.00),(54,'civicrm_financial_item',27,27,50.00),(55,'civicrm_contribution',61,28,50.00),(56,'civicrm_financial_item',28,28,50.00),(57,'civicrm_contribution',83,29,50.00),(58,'civicrm_financial_item',29,29,50.00),(59,'civicrm_contribution',92,30,800.00),(60,'civicrm_financial_item',30,30,800.00),(61,'civicrm_contribution',48,31,800.00),(62,'civicrm_financial_item',31,31,800.00),(63,'civicrm_contribution',76,32,800.00),(64,'civicrm_financial_item',32,32,800.00),(65,'civicrm_contribution',78,33,800.00),(66,'civicrm_financial_item',33,33,800.00),(67,'civicrm_contribution',73,34,800.00),(68,'civicrm_financial_item',34,34,800.00),(69,'civicrm_contribution',55,35,800.00),(70,'civicrm_financial_item',35,35,800.00),(71,'civicrm_contribution',64,36,800.00),(72,'civicrm_financial_item',36,36,800.00),(73,'civicrm_contribution',53,37,800.00),(74,'civicrm_financial_item',37,37,800.00),(75,'civicrm_contribution',85,38,800.00),(76,'civicrm_financial_item',38,38,800.00),(77,'civicrm_contribution',72,39,800.00),(78,'civicrm_financial_item',39,39,800.00),(79,'civicrm_contribution',45,40,800.00),(80,'civicrm_financial_item',40,40,800.00),(81,'civicrm_contribution',51,41,800.00),(82,'civicrm_financial_item',41,41,800.00),(83,'civicrm_contribution',81,42,800.00),(84,'civicrm_financial_item',42,42,800.00),(85,'civicrm_contribution',88,43,800.00),(86,'civicrm_financial_item',43,43,800.00),(87,'civicrm_contribution',49,44,800.00),(88,'civicrm_financial_item',44,44,800.00),(89,'civicrm_contribution',82,45,800.00),(90,'civicrm_financial_item',45,45,800.00),(91,'civicrm_contribution',93,46,800.00),(92,'civicrm_financial_item',46,46,800.00),(93,'civicrm_contribution',87,47,800.00),(94,'civicrm_financial_item',47,47,800.00),(95,'civicrm_contribution',67,48,50.00),(96,'civicrm_financial_item',48,48,50.00),(97,'civicrm_contribution',90,49,50.00),(98,'civicrm_financial_item',49,49,50.00),(99,'civicrm_contribution',79,50,50.00),(100,'civicrm_financial_item',50,50,50.00),(101,'civicrm_contribution',57,51,50.00),(102,'civicrm_financial_item',51,51,50.00),(103,'civicrm_contribution',63,52,50.00),(104,'civicrm_financial_item',52,52,50.00),(105,'civicrm_contribution',58,53,50.00),(106,'civicrm_financial_item',53,53,50.00),(107,'civicrm_contribution',75,54,50.00),(108,'civicrm_financial_item',54,54,50.00),(109,'civicrm_contribution',89,55,50.00),(110,'civicrm_financial_item',55,55,50.00),(111,'civicrm_contribution',77,56,50.00),(112,'civicrm_financial_item',56,56,50.00),(113,'civicrm_contribution',65,57,50.00),(114,'civicrm_financial_item',57,57,50.00),(115,'civicrm_contribution',94,58,50.00),(116,'civicrm_financial_item',58,58,50.00),(117,'civicrm_contribution',69,59,50.00),(118,'civicrm_financial_item',59,59,50.00),(119,'civicrm_contribution',60,60,50.00),(120,'civicrm_financial_item',60,60,50.00),(121,'civicrm_contribution',80,61,50.00),(122,'civicrm_financial_item',61,61,50.00),(123,'civicrm_contribution',52,62,50.00),(124,'civicrm_financial_item',62,62,50.00),(125,'civicrm_contribution',86,63,50.00),(126,'civicrm_financial_item',63,63,50.00);
  /*!40000 ALTER TABLE `civicrm_entity_financial_trxn` ENABLE KEYS */;
  UNLOCK TABLES;
  
  
  LOCK TABLES `civicrm_entity_tag` WRITE;
  /*!40000 ALTER TABLE `civicrm_entity_tag` DISABLE KEYS */;
- INSERT INTO `civicrm_entity_tag` (`id`, `entity_table`, `entity_id`, `tag_id`) VALUES (7,'civicrm_contact',2,3),(66,'civicrm_contact',4,4),(70,'civicrm_contact',9,4),(71,'civicrm_contact',9,5),(2,'civicrm_contact',10,1),(69,'civicrm_contact',11,4),(30,'civicrm_contact',13,5),(47,'civicrm_contact',14,5),(34,'civicrm_contact',16,5),(102,'civicrm_contact',20,4),(48,'civicrm_contact',21,4),(49,'civicrm_contact',21,5),(96,'civicrm_contact',22,5),(5,'civicrm_contact',23,3),(26,'civicrm_contact',27,4),(27,'civicrm_contact',27,5),(110,'civicrm_contact',28,5),(94,'civicrm_contact',33,4),(95,'civicrm_contact',33,5),(78,'civicrm_contact',35,5),(12,'civicrm_contact',36,4),(13,'civicrm_contact',36,5),(4,'civicrm_contact',45,3),(50,'civicrm_contact',46,4),(17,'civicrm_contact',47,5),(80,'civicrm_contact',48,4),(81,'civicrm_contact',48,5),(89,'civicrm_contact',50,4),(6,'civicrm_contact',52,1),(51,'civicrm_contact',58,5),(84,'civicrm_contact',59,5),(90,'civicrm_contact',60,4),(91,'civicrm_contact',60,5),(33,'civicrm_contact',64,5),(53,'civicrm_contact',65,4),(79,'civicrm_contact',73,5),(1,'civicrm_contact',75,1),(83,'civicrm_contact',77,4),(76,'civicrm_contact',78,4),(77,'civicrm_contact',78,5),(29,'civicrm_contact',80,4),(67,'civicrm_contact',81,4),(68,'civicrm_contact',81,5),(9,'civicrm_contact',82,1),(92,'civicrm_contact',84,4),(93,'civicrm_contact',84,5),(97,'civicrm_contact',87,4),(98,'civicrm_contact',87,5),(11,'civicrm_contact',89,4),(113,'civicrm_contact',94,5),(52,'civicrm_contact',97,4),(100,'civicrm_contact',98,5),(103,'civicrm_contact',99,4),(104,'civicrm_contact',99,5),(86,'civicrm_contact',100,4),(62,'civicrm_contact',102,4),(63,'civicrm_contact',102,5),(54,'civicrm_contact',104,5),(42,'civicrm_contact',105,4),(43,'civicrm_contact',105,5),(101,'civicrm_contact',109,5),(23,'civicrm_contact',113,4),(105,'civicrm_contact',123,4),(106,'civicrm_contact',123,5),(21,'civicrm_contact',124,4),(3,'civicrm_contact',125,1),(15,'civicrm_contact',126,4),(16,'civicrm_contact',126,5),(59,'civicrm_contact',128,5),(14,'civicrm_contact',130,4),(60,'civicrm_contact',132,4),(61,'civicrm_contact',132,5),(18,'civicrm_contact',136,5),(73,'civicrm_contact',139,4),(109,'civicrm_contact',143,5),(38,'civicrm_contact',144,4),(39,'civicrm_contact',144,5),(20,'civicrm_contact',146,4),(107,'civicrm_contact',147,4),(108,'civicrm_contact',147,5),(8,'civicrm_contact',149,1),(87,'civicrm_contact',151,5),(85,'civicrm_contact',152,5),(115,'civicrm_contact',153,4),(116,'civicrm_contact',153,5),(22,'civicrm_contact',155,5),(44,'civicrm_contact',156,4),(45,'civicrm_contact',156,5),(114,'civicrm_contact',158,4),(57,'civicrm_contact',162,4),(58,'civicrm_contact',162,5),(72,'civicrm_contact',163,4),(19,'civicrm_contact',167,4),(88,'civicrm_contact',169,4),(24,'civicrm_contact',171,4),(25,'civicrm_contact',171,5),(64,'civicrm_contact',174,4),(65,'civicrm_contact',174,5),(82,'civicrm_contact',175,5),(28,'civicrm_contact',176,5),(35,'civicrm_contact',177,4),(36,'civicrm_contact',177,5),(118,'civicrm_contact',180,4),(119,'civicrm_contact',180,5),(37,'civicrm_contact',181,5),(111,'civicrm_contact',182,4),(40,'civicrm_contact',185,4),(10,'civicrm_contact',186,1),(99,'civicrm_contact',187,5),(74,'civicrm_contact',189,4),(75,'civicrm_contact',189,5),(46,'civicrm_contact',190,4),(41,'civicrm_contact',191,4),(55,'civicrm_contact',192,4),(56,'civicrm_contact',192,5),(112,'civicrm_contact',193,5),(31,'civicrm_contact',195,4),(32,'civicrm_contact',195,5),(117,'civicrm_contact',196,5);
 -INSERT INTO `civicrm_entity_tag` (`id`, `entity_table`, `entity_id`, `tag_id`) VALUES (74,'civicrm_contact',3,4),(75,'civicrm_contact',3,5),(10,'civicrm_contact',4,2),(30,'civicrm_contact',7,5),(116,'civicrm_contact',12,4),(117,'civicrm_contact',12,5),(94,'civicrm_contact',14,4),(45,'civicrm_contact',15,4),(46,'civicrm_contact',15,5),(83,'civicrm_contact',19,5),(37,'civicrm_contact',22,4),(9,'civicrm_contact',24,2),(68,'civicrm_contact',27,4),(69,'civicrm_contact',27,5),(58,'civicrm_contact',28,5),(24,'civicrm_contact',29,5),(7,'civicrm_contact',32,3),(18,'civicrm_contact',36,4),(19,'civicrm_contact',36,5),(8,'civicrm_contact',37,2),(97,'civicrm_contact',40,5),(1,'civicrm_contact',43,3),(40,'civicrm_contact',44,5),(34,'civicrm_contact',47,4),(91,'civicrm_contact',49,4),(70,'civicrm_contact',52,4),(61,'civicrm_contact',54,4),(62,'civicrm_contact',54,5),(4,'civicrm_contact',55,1),(81,'civicrm_contact',57,4),(82,'civicrm_contact',57,5),(17,'civicrm_contact',58,4),(110,'civicrm_contact',59,5),(59,'civicrm_contact',61,4),(108,'civicrm_contact',62,5),(36,'civicrm_contact',67,5),(90,'civicrm_contact',70,4),(55,'civicrm_contact',72,4),(56,'civicrm_contact',72,5),(72,'civicrm_contact',74,5),(71,'civicrm_contact',77,5),(23,'civicrm_contact',80,5),(88,'civicrm_contact',81,4),(89,'civicrm_contact',81,5),(100,'civicrm_contact',82,5),(113,'civicrm_contact',83,5),(13,'civicrm_contact',87,4),(14,'civicrm_contact',87,5),(3,'civicrm_contact',88,2),(103,'civicrm_contact',89,5),(86,'civicrm_contact',90,4),(87,'civicrm_contact',90,5),(105,'civicrm_contact',94,4),(80,'civicrm_contact',95,5),(50,'civicrm_contact',96,4),(51,'civicrm_contact',96,5),(107,'civicrm_contact',100,4),(114,'civicrm_contact',105,4),(115,'civicrm_contact',105,5),(65,'civicrm_contact',107,5),(11,'civicrm_contact',117,4),(12,'civicrm_contact',117,5),(63,'civicrm_contact',120,4),(64,'civicrm_contact',120,5),(109,'civicrm_contact',121,4),(2,'civicrm_contact',124,3),(101,'civicrm_contact',128,4),(73,'civicrm_contact',130,4),(31,'civicrm_contact',132,4),(32,'civicrm_contact',132,5),(92,'civicrm_contact',133,4),(5,'civicrm_contact',135,1),(79,'civicrm_contact',139,5),(43,'civicrm_contact',140,4),(98,'civicrm_contact',141,4),(99,'civicrm_contact',141,5),(85,'civicrm_contact',142,4),(38,'civicrm_contact',146,4),(21,'civicrm_contact',147,4),(22,'civicrm_contact',147,5),(27,'civicrm_contact',148,5),(25,'civicrm_contact',150,4),(26,'civicrm_contact',150,5),(57,'civicrm_contact',151,4),(66,'civicrm_contact',153,4),(67,'civicrm_contact',153,5),(60,'civicrm_contact',154,4),(77,'civicrm_contact',156,4),(78,'civicrm_contact',156,5),(47,'civicrm_contact',157,5),(52,'civicrm_contact',158,4),(111,'civicrm_contact',159,4),(112,'civicrm_contact',159,5),(41,'civicrm_contact',162,4),(42,'civicrm_contact',162,5),(93,'civicrm_contact',164,5),(39,'civicrm_contact',166,5),(28,'civicrm_contact',168,4),(29,'civicrm_contact',168,5),(20,'civicrm_contact',169,4),(35,'civicrm_contact',170,4),(95,'civicrm_contact',174,4),(96,'civicrm_contact',174,5),(104,'civicrm_contact',175,5),(106,'civicrm_contact',182,4),(6,'civicrm_contact',186,1),(54,'civicrm_contact',190,4),(48,'civicrm_contact',192,4),(49,'civicrm_contact',192,5),(53,'civicrm_contact',193,5),(84,'civicrm_contact',194,4),(44,'civicrm_contact',196,5),(102,'civicrm_contact',197,4),(76,'civicrm_contact',199,5),(33,'civicrm_contact',200,4),(15,'civicrm_contact',201,4),(16,'civicrm_contact',201,5);
++INSERT INTO `civicrm_entity_tag` (`id`, `entity_table`, `entity_id`, `tag_id`) VALUES (58,'civicrm_contact',2,5),(59,'civicrm_contact',7,4),(70,'civicrm_contact',8,5),(39,'civicrm_contact',11,5),(55,'civicrm_contact',13,5),(56,'civicrm_contact',14,4),(87,'civicrm_contact',17,5),(21,'civicrm_contact',18,4),(22,'civicrm_contact',18,5),(9,'civicrm_contact',19,1),(80,'civicrm_contact',21,4),(81,'civicrm_contact',21,5),(60,'civicrm_contact',23,5),(17,'civicrm_contact',24,4),(18,'civicrm_contact',24,5),(76,'civicrm_contact',27,4),(77,'civicrm_contact',27,5),(57,'civicrm_contact',28,5),(28,'civicrm_contact',29,4),(109,'civicrm_contact',30,4),(110,'civicrm_contact',30,5),(1,'civicrm_contact',32,1),(73,'civicrm_contact',34,4),(6,'civicrm_contact',38,1),(61,'civicrm_contact',41,5),(31,'civicrm_contact',47,5),(50,'civicrm_contact',50,4),(91,'civicrm_contact',51,4),(92,'civicrm_contact',51,5),(71,'civicrm_contact',52,5),(54,'civicrm_contact',53,4),(24,'civicrm_contact',55,4),(5,'civicrm_contact',57,2),(35,'civicrm_contact',58,5),(105,'civicrm_contact',59,5),(33,'civicrm_contact',60,4),(34,'civicrm_contact',60,5),(98,'civicrm_contact',61,4),(107,'civicrm_contact',62,4),(2,'civicrm_contact',63,3),(27,'civicrm_contact',64,4),(29,'civicrm_contact',67,5),(46,'civicrm_contact',69,4),(47,'civicrm_contact',69,5),(13,'civicrm_contact',71,4),(89,'civicrm_contact',72,4),(90,'civicrm_contact',72,5),(96,'civicrm_contact',73,4),(30,'civicrm_contact',76,4),(37,'civicrm_contact',77,5),(65,'civicrm_contact',80,4),(48,'civicrm_contact',82,4),(85,'civicrm_contact',84,4),(86,'civicrm_contact',84,5),(20,'civicrm_contact',88,5),(74,'civicrm_contact',90,4),(75,'civicrm_contact',90,5),(97,'civicrm_contact',91,4),(88,'civicrm_contact',92,5),(68,'civicrm_contact',93,4),(69,'civicrm_contact',93,5),(62,'civicrm_contact',94,4),(106,'civicrm_contact',98,4),(104,'civicrm_contact',100,4),(93,'civicrm_contact',101,5),(103,'civicrm_contact',104,5),(95,'civicrm_contact',107,4),(44,'civicrm_contact',114,4),(45,'civicrm_contact',114,5),(4,'civicrm_contact',115,1),(25,'civicrm_contact',123,4),(26,'civicrm_contact',123,5),(64,'civicrm_contact',125,4),(12,'civicrm_contact',128,4),(8,'civicrm_contact',129,2),(38,'civicrm_contact',130,5),(41,'civicrm_contact',133,4),(40,'civicrm_contact',134,4),(43,'civicrm_contact',139,5),(3,'civicrm_contact',143,3),(49,'civicrm_contact',145,4),(42,'civicrm_contact',146,4),(72,'civicrm_contact',148,5),(14,'civicrm_contact',153,4),(15,'civicrm_contact',153,5),(32,'civicrm_contact',155,5),(51,'civicrm_contact',158,4),(94,'civicrm_contact',160,4),(23,'civicrm_contact',163,4),(83,'civicrm_contact',165,4),(84,'civicrm_contact',165,5),(11,'civicrm_contact',166,5),(82,'civicrm_contact',167,4),(10,'civicrm_contact',173,1),(19,'civicrm_contact',176,4),(99,'civicrm_contact',177,4),(100,'civicrm_contact',177,5),(63,'civicrm_contact',181,5),(16,'civicrm_contact',182,5),(52,'civicrm_contact',184,5),(108,'civicrm_contact',185,4),(101,'civicrm_contact',186,4),(102,'civicrm_contact',186,5),(7,'civicrm_contact',188,2),(53,'civicrm_contact',193,5),(78,'civicrm_contact',195,4),(79,'civicrm_contact',195,5),(36,'civicrm_contact',196,4),(66,'civicrm_contact',198,4),(67,'civicrm_contact',198,5);
  /*!40000 ALTER TABLE `civicrm_entity_tag` ENABLE KEYS */;
  UNLOCK TABLES;
  
  
  LOCK TABLES `civicrm_event` WRITE;
  /*!40000 ALTER TABLE `civicrm_event` DISABLE KEYS */;
- INSERT INTO `civicrm_event` (`id`, `title`, `summary`, `description`, `event_type_id`, `participant_listing_id`, `is_public`, `start_date`, `end_date`, `is_online_registration`, `registration_link_text`, `registration_start_date`, `registration_end_date`, `max_participants`, `event_full_text`, `is_monetary`, `financial_type_id`, `payment_processor`, `is_map`, `is_active`, `fee_label`, `is_show_location`, `loc_block_id`, `default_role_id`, `intro_text`, `footer_text`, `confirm_title`, `confirm_text`, `confirm_footer_text`, `is_email_confirm`, `confirm_email_text`, `confirm_from_name`, `confirm_from_email`, `cc_confirm`, `bcc_confirm`, `default_fee_id`, `default_discount_fee_id`, `thankyou_title`, `thankyou_text`, `thankyou_footer_text`, `is_pay_later`, `pay_later_text`, `pay_later_receipt`, `is_partial_payment`, `initial_amount_label`, `initial_amount_help_text`, `min_initial_amount`, `is_multiple_registrations`, `allow_same_participant_emails`, `has_waitlist`, `requires_approval`, `expiration_time`, `waitlist_text`, `approval_req_text`, `is_template`, `template_title`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `is_confirm_enabled`, `parent_event_id`, `slot_label_id`, `dedupe_rule_group_id`, `is_billing_required`) VALUES (1,'Fall Fundraiser Dinner','Kick up your heels at our Fall Fundraiser Dinner/Dance at Glen Echo Park! Come by yourself or bring a partner, friend or the entire family!','This event benefits our teen programs. Admission includes a full 3 course meal and wine or soft drinks. Grab your dancing shoes, bring the kids and come join the party!',3,1,1,'2015-11-08 17:00:00','2015-11-10 17:00:00',1,'Register Now',NULL,NULL,100,'Sorry! The Fall Fundraiser Dinner is full. Please call Jane at 204 222-1000 ext 33 if you want to be added to the waiting list.',1,4,NULL,1,1,'Dinner Contribution',1,1,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','<p>Thank you for your support. Your contribution will help us build even better tools.</p><p>Please tell your friends and colleagues about this wonderful event.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(2,'Summer Solstice Festival Day Concert','Festival Day is coming! Join us and help support your parks.','We will gather at noon, learn a song all together,  and then join in a joyous procession to the pavilion. We will be one of many groups performing at this wonderful concert which benefits our city parks.',5,1,1,'2015-05-07 12:00:00','2015-05-07 17:00:00',1,'Register Now',NULL,NULL,50,'We have all the singers we can handle. Come to the pavilion anyway and join in from the audience.',1,2,NULL,NULL,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','<p>Thank you for your support. Your participation will help build new parks.</p><p>Please tell your friends and colleagues about the concert.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(3,'Rain-forest Cup Youth Soccer Tournament','Sign up your team to participate in this fun tournament which benefits several Rain-forest protection groups in the Amazon basin.','This is a FYSA Sanctioned Tournament, which is open to all USSF/FIFA affiliated organizations for boys and girls in age groups: U9-U10 (6v6), U11-U12 (8v8), and U13-U17 (Full Sided).',3,1,1,'2015-12-08 07:00:00','2015-12-11 17:00:00',1,'Register Now',NULL,NULL,500,'Sorry! All available team slots for this tournament have been filled. Contact Jill Futbol for information about the waiting list and next years event.',1,4,NULL,NULL,1,'Tournament Fees',1,3,1,'Complete the form below to register your team for this year\'s tournament.','<em>A Soccer Youth Event</em>','Review and Confirm Your Registration Information','','<em>A Soccer Youth Event</em>',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','<p>Thank you for your support. Your participation will help save thousands of acres of rainforest.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(4,NULL,NULL,NULL,4,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'Free Meeting without Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(5,NULL,NULL,NULL,4,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,1,'Free Meeting with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(6,NULL,NULL,NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,4,NULL,0,1,'Conference Fee',1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,1,NULL,'Event Template Dept.','event_templates@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,1,'Paid Conference with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0);
 -INSERT INTO `civicrm_event` (`id`, `title`, `summary`, `description`, `event_type_id`, `participant_listing_id`, `is_public`, `start_date`, `end_date`, `is_online_registration`, `registration_link_text`, `registration_start_date`, `registration_end_date`, `max_participants`, `event_full_text`, `is_monetary`, `financial_type_id`, `payment_processor`, `is_map`, `is_active`, `fee_label`, `is_show_location`, `loc_block_id`, `default_role_id`, `intro_text`, `footer_text`, `confirm_title`, `confirm_text`, `confirm_footer_text`, `is_email_confirm`, `confirm_email_text`, `confirm_from_name`, `confirm_from_email`, `cc_confirm`, `bcc_confirm`, `default_fee_id`, `default_discount_fee_id`, `thankyou_title`, `thankyou_text`, `thankyou_footer_text`, `is_pay_later`, `pay_later_text`, `pay_later_receipt`, `is_partial_payment`, `initial_amount_label`, `initial_amount_help_text`, `min_initial_amount`, `is_multiple_registrations`, `allow_same_participant_emails`, `has_waitlist`, `requires_approval`, `expiration_time`, `waitlist_text`, `approval_req_text`, `is_template`, `template_title`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `is_confirm_enabled`, `parent_event_id`, `slot_label_id`, `dedupe_rule_group_id`, `is_billing_required`) VALUES (1,'Fall Fundraiser Dinner','Kick up your heels at our Fall Fundraiser Dinner/Dance at Glen Echo Park! Come by yourself or bring a partner, friend or the entire family!','This event benefits our teen programs. Admission includes a full 3 course meal and wine or soft drinks. Grab your dancing shoes, bring the kids and come join the party!',3,1,1,'2015-10-29 17:00:00','2015-10-31 17:00:00',1,'Register Now',NULL,NULL,100,'Sorry! The Fall Fundraiser Dinner is full. Please call Jane at 204 222-1000 ext 33 if you want to be added to the waiting list.',1,4,NULL,1,1,'Dinner Contribution',1,1,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','<p>Thank you for your support. Your contribution will help us build even better tools.</p><p>Please tell your friends and colleagues about this wonderful event.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(2,'Summer Solstice Festival Day Concert','Festival Day is coming! Join us and help support your parks.','We will gather at noon, learn a song all together,  and then join in a joyous procession to the pavilion. We will be one of many groups performing at this wonderful concert which benefits our city parks.',5,1,1,'2015-04-28 12:00:00','2015-04-28 17:00:00',1,'Register Now',NULL,NULL,50,'We have all the singers we can handle. Come to the pavilion anyway and join in from the audience.',1,2,NULL,NULL,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','<p>Thank you for your support. Your participation will help build new parks.</p><p>Please tell your friends and colleagues about the concert.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(3,'Rain-forest Cup Youth Soccer Tournament','Sign up your team to participate in this fun tournament which benefits several Rain-forest protection groups in the Amazon basin.','This is a FYSA Sanctioned Tournament, which is open to all USSF/FIFA affiliated organizations for boys and girls in age groups: U9-U10 (6v6), U11-U12 (8v8), and U13-U17 (Full Sided).',3,1,1,'2015-11-29 07:00:00','2015-12-02 17:00:00',1,'Register Now',NULL,NULL,500,'Sorry! All available team slots for this tournament have been filled. Contact Jill Futbol for information about the waiting list and next years event.',1,4,NULL,NULL,1,'Tournament Fees',1,3,1,'Complete the form below to register your team for this year\'s tournament.','<em>A Soccer Youth Event</em>','Review and Confirm Your Registration Information','','<em>A Soccer Youth Event</em>',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','<p>Thank you for your support. Your participation will help save thousands of acres of rainforest.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(4,NULL,NULL,NULL,4,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'Free Meeting without Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(5,NULL,NULL,NULL,4,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,1,'Free Meeting with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(6,NULL,NULL,NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,4,NULL,0,1,'Conference Fee',1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,1,NULL,'Event Template Dept.','event_templates@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,1,'Paid Conference with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0);
++INSERT INTO `civicrm_event` (`id`, `title`, `summary`, `description`, `event_type_id`, `participant_listing_id`, `is_public`, `start_date`, `end_date`, `is_online_registration`, `registration_link_text`, `registration_start_date`, `registration_end_date`, `max_participants`, `event_full_text`, `is_monetary`, `financial_type_id`, `payment_processor`, `is_map`, `is_active`, `fee_label`, `is_show_location`, `loc_block_id`, `default_role_id`, `intro_text`, `footer_text`, `confirm_title`, `confirm_text`, `confirm_footer_text`, `is_email_confirm`, `confirm_email_text`, `confirm_from_name`, `confirm_from_email`, `cc_confirm`, `bcc_confirm`, `default_fee_id`, `default_discount_fee_id`, `thankyou_title`, `thankyou_text`, `thankyou_footer_text`, `is_pay_later`, `pay_later_text`, `pay_later_receipt`, `is_partial_payment`, `initial_amount_label`, `initial_amount_help_text`, `min_initial_amount`, `is_multiple_registrations`, `allow_same_participant_emails`, `has_waitlist`, `requires_approval`, `expiration_time`, `waitlist_text`, `approval_req_text`, `is_template`, `template_title`, `created_id`, `created_date`, `currency`, `campaign_id`, `is_share`, `is_confirm_enabled`, `parent_event_id`, `slot_label_id`, `dedupe_rule_group_id`, `is_billing_required`) VALUES (1,'Fall Fundraiser Dinner','Kick up your heels at our Fall Fundraiser Dinner/Dance at Glen Echo Park! Come by yourself or bring a partner, friend or the entire family!','This event benefits our teen programs. Admission includes a full 3 course meal and wine or soft drinks. Grab your dancing shoes, bring the kids and come join the party!',3,1,1,'2015-11-10 17:00:00','2015-11-12 17:00:00',1,'Register Now',NULL,NULL,100,'Sorry! The Fall Fundraiser Dinner is full. Please call Jane at 204 222-1000 ext 33 if you want to be added to the waiting list.',1,4,NULL,1,1,'Dinner Contribution',1,1,1,'Fill in the information below to join as at this wonderful dinner event.',NULL,'Confirm Your Registration Information','Review the information below carefully.',NULL,1,'Contact the Development Department if you need to make any changes to your registration.','Fundraising Dept.','development@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!','<p>Thank you for your support. Your contribution will help us build even better tools.</p><p>Please tell your friends and colleagues about this wonderful event.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',1,'I will send payment by check','Send a check payable to Our Organization within 3 business days to hold your reservation. Checks should be sent to: 100 Main St., Suite 3, San Francisco CA 94110',0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(2,'Summer Solstice Festival Day Concert','Festival Day is coming! Join us and help support your parks.','We will gather at noon, learn a song all together,  and then join in a joyous procession to the pavilion. We will be one of many groups performing at this wonderful concert which benefits our city parks.',5,1,1,'2015-05-09 12:00:00','2015-05-09 17:00:00',1,'Register Now',NULL,NULL,50,'We have all the singers we can handle. Come to the pavilion anyway and join in from the audience.',1,2,NULL,NULL,1,'Festival Fee',1,2,1,'Complete the form below and click Continue to register online for the festival. Or you can register by calling us at 204 222-1000 ext 22.','','Confirm Your Registration Information','','',1,'This email confirms your registration. If you have questions or need to change your registration - please do not hesitate to call us.','Event Dept.','events@example.org','',NULL,NULL,NULL,'Thanks for Your Joining In!','<p>Thank you for your support. Your participation will help build new parks.</p><p>Please tell your friends and colleagues about the concert.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,1,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(3,'Rain-forest Cup Youth Soccer Tournament','Sign up your team to participate in this fun tournament which benefits several Rain-forest protection groups in the Amazon basin.','This is a FYSA Sanctioned Tournament, which is open to all USSF/FIFA affiliated organizations for boys and girls in age groups: U9-U10 (6v6), U11-U12 (8v8), and U13-U17 (Full Sided).',3,1,1,'2015-12-10 07:00:00','2015-12-13 17:00:00',1,'Register Now',NULL,NULL,500,'Sorry! All available team slots for this tournament have been filled. Contact Jill Futbol for information about the waiting list and next years event.',1,4,NULL,NULL,1,'Tournament Fees',1,3,1,'Complete the form below to register your team for this year\'s tournament.','<em>A Soccer Youth Event</em>','Review and Confirm Your Registration Information','','<em>A Soccer Youth Event</em>',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','<p>Thank you for your support. Your participation will help save thousands of acres of rainforest.</p>','<p><a href=http://civicrm.org>Back to CiviCRM Home Page</a></p>',0,NULL,NULL,0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(4,NULL,NULL,NULL,4,1,1,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,'Free Meeting without Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(5,NULL,NULL,NULL,4,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,1,NULL,1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,1,'Free Meeting with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0),(6,NULL,NULL,NULL,1,1,1,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,1,4,NULL,0,1,'Conference Fee',1,NULL,1,NULL,NULL,'Confirm Your Registration Information',NULL,NULL,1,NULL,'Event Template Dept.','event_templates@example.org',NULL,NULL,NULL,NULL,'Thanks for Registering!',NULL,NULL,0,NULL,NULL,0,NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,1,'Paid Conference with Online Registration',NULL,NULL,'USD',NULL,1,1,NULL,NULL,NULL,0);
  /*!40000 ALTER TABLE `civicrm_event` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -515,7 -515,7 +515,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_financial_item` WRITE;
  /*!40000 ALTER TABLE `civicrm_financial_item` DISABLE KEYS */;
- INSERT INTO `civicrm_financial_item` (`id`, `created_date`, `transaction_date`, `contact_id`, `description`, `amount`, `currency`, `financial_account_id`, `status_id`, `entity_table`, `entity_id`) VALUES (1,'2015-05-08 06:56:25','2010-04-11 00:00:00',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),(2,'2015-05-08 06:56:25','2010-03-21 00:00:00',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),(3,'2015-05-08 06:56:25','2010-04-29 00:00:00',6,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',3),(4,'2015-05-08 06:56:26','2010-04-11 00:00:00',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),(5,'2015-05-08 06:56:26','2010-04-15 00:00:00',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',5),(6,'2015-05-08 06:56:26','2010-04-11 00:00:00',19,'Contribution Amount',175.00,'USD',1,1,'civicrm_line_item',6),(7,'2015-05-08 06:56:26','2010-03-27 00:00:00',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',7),(8,'2015-05-08 06:56:26','2010-03-08 00:00:00',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',8),(9,'2015-05-08 06:56:26','2010-04-22 00:00:00',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',9),(10,'2015-05-08 06:56:27','2009-07-01 11:53:50',71,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',10),(11,'2015-05-08 06:56:27','2009-07-01 12:55:41',43,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',11),(12,'2015-05-08 06:56:27','2009-10-01 11:53:50',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',12),(13,'2015-05-08 06:56:27','2009-12-01 12:55:41',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',13),(14,'2015-05-08 06:56:28','2015-05-08 12:26:27',62,'Soprano',50.00,'USD',2,1,'civicrm_line_item',81),(15,'2015-05-08 06:56:28','2015-05-08 12:26:27',147,'Soprano',50.00,'USD',2,1,'civicrm_line_item',82),(16,'2015-05-08 06:56:28','2015-05-08 12:26:27',88,'Soprano',50.00,'USD',2,1,'civicrm_line_item',83),(17,'2015-05-08 06:56:28','2015-05-08 12:26:27',109,'Soprano',50.00,'USD',2,1,'civicrm_line_item',84),(18,'2015-05-08 06:56:28','2015-05-08 12:26:27',131,'Soprano',50.00,'USD',2,1,'civicrm_line_item',85),(19,'2015-05-08 06:56:29','2015-05-08 12:26:27',78,'Soprano',50.00,'USD',2,1,'civicrm_line_item',86),(20,'2015-05-08 06:56:29','2015-05-08 12:26:27',63,'Soprano',50.00,'USD',2,1,'civicrm_line_item',87),(21,'2015-05-08 06:56:29','2015-05-08 12:26:27',97,'Soprano',50.00,'USD',2,1,'civicrm_line_item',88),(22,'2015-05-08 06:56:29','2015-05-08 12:26:27',19,'Soprano',50.00,'USD',2,1,'civicrm_line_item',89),(23,'2015-05-08 06:56:30','2015-05-08 12:26:27',192,'Soprano',50.00,'USD',2,1,'civicrm_line_item',90),(24,'2015-05-08 06:56:30','2015-05-08 12:26:27',20,'Soprano',50.00,'USD',2,1,'civicrm_line_item',91),(25,'2015-05-08 06:56:30','2015-05-08 12:26:27',80,'Soprano',50.00,'USD',2,1,'civicrm_line_item',92),(26,'2015-05-08 06:56:30','2015-05-08 12:26:27',30,'Soprano',50.00,'USD',2,1,'civicrm_line_item',93),(27,'2015-05-08 06:56:30','2015-05-08 12:26:27',67,'Soprano',50.00,'USD',2,1,'civicrm_line_item',94),(28,'2015-05-08 06:56:31','2015-05-08 12:26:27',8,'Soprano',50.00,'USD',2,1,'civicrm_line_item',95),(29,'2015-05-08 06:56:31','2015-05-08 12:26:27',139,'Soprano',50.00,'USD',2,1,'civicrm_line_item',96),(30,'2015-05-08 06:56:31','2015-05-08 12:26:27',96,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',47),(31,'2015-05-08 06:56:31','2015-05-08 12:26:27',115,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',48),(32,'2015-05-08 06:56:31','2015-05-08 12:26:27',197,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',49),(33,'2015-05-08 06:56:31','2015-05-08 12:26:27',25,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',50),(34,'2015-05-08 06:56:32','2015-05-08 12:26:27',190,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',51),(35,'2015-05-08 06:56:32','2015-05-08 12:26:27',66,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',52),(36,'2015-05-08 06:56:32','2015-05-08 12:26:27',122,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',53),(37,'2015-05-08 06:56:32','2015-05-08 12:26:27',12,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',54),(38,'2015-05-08 06:56:32','2015-05-08 12:26:27',105,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',55),(39,'2015-05-08 06:56:33','2015-05-08 12:26:27',110,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',56),(40,'2015-05-08 06:56:33','2015-05-08 12:26:27',164,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',57),(41,'2015-05-08 06:56:33','2015-05-08 12:26:27',107,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',58),(42,'2015-05-08 06:56:33','2015-05-08 12:26:27',36,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',59),(43,'2015-05-08 06:56:33','2015-05-08 12:26:27',181,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',60),(44,'2015-05-08 06:56:34','2015-05-08 12:26:27',157,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',61),(45,'2015-05-08 06:56:35','2015-05-08 12:26:27',166,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',62),(46,'2015-05-08 06:56:35','2015-05-08 12:26:27',10,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),(47,'2015-05-08 06:56:35','2015-05-08 12:26:27',162,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),(48,'2015-05-08 06:56:35','2015-05-08 12:26:27',161,'Single',50.00,'USD',4,1,'civicrm_line_item',65),(49,'2015-05-08 06:56:35','2015-05-08 12:26:27',148,'Single',50.00,'USD',4,1,'civicrm_line_item',66),(50,'2015-05-08 06:56:36','2015-05-08 12:26:27',1,'Single',50.00,'USD',4,1,'civicrm_line_item',67),(51,'2015-05-08 06:56:36','2015-05-08 12:26:27',58,'Single',50.00,'USD',4,1,'civicrm_line_item',68),(52,'2015-05-08 06:56:36','2015-05-08 12:26:27',75,'Single',50.00,'USD',4,1,'civicrm_line_item',69),(53,'2015-05-08 06:56:36','2015-05-08 12:26:27',127,'Single',50.00,'USD',4,1,'civicrm_line_item',70),(54,'2015-05-08 06:56:36','2015-05-08 12:26:27',163,'Single',50.00,'USD',4,1,'civicrm_line_item',71),(55,'2015-05-08 06:56:36','2015-05-08 12:26:27',149,'Single',50.00,'USD',4,1,'civicrm_line_item',72),(56,'2015-05-08 06:56:37','2015-05-08 12:26:27',183,'Single',50.00,'USD',4,1,'civicrm_line_item',73),(57,'2015-05-08 06:56:37','2015-05-08 12:26:27',165,'Single',50.00,'USD',4,1,'civicrm_line_item',74),(58,'2015-05-08 06:56:37','2015-05-08 12:26:27',43,'Single',50.00,'USD',4,1,'civicrm_line_item',75),(59,'2015-05-08 06:56:37','2015-05-08 12:26:27',77,'Single',50.00,'USD',4,1,'civicrm_line_item',76),(60,'2015-05-08 06:56:37','2015-05-08 12:26:27',81,'Single',50.00,'USD',4,1,'civicrm_line_item',77),(61,'2015-05-08 06:56:38','2015-05-08 12:26:27',128,'Single',50.00,'USD',4,1,'civicrm_line_item',78),(62,'2015-05-08 06:56:38','2015-05-08 12:26:27',195,'Single',50.00,'USD',4,1,'civicrm_line_item',79),(63,'2015-05-08 06:56:38','2015-05-08 12:26:27',29,'Single',50.00,'USD',4,1,'civicrm_line_item',80);
 -INSERT INTO `civicrm_financial_item` (`id`, `created_date`, `transaction_date`, `contact_id`, `description`, `amount`, `currency`, `financial_account_id`, `status_id`, `entity_table`, `entity_id`) VALUES (1,'2015-04-29 03:27:40','2010-04-11 00:00:00',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),(2,'2015-04-29 03:27:40','2010-03-21 00:00:00',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),(3,'2015-04-29 03:27:40','2010-04-29 00:00:00',6,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',3),(4,'2015-04-29 03:27:40','2010-04-11 00:00:00',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),(5,'2015-04-29 03:27:40','2010-04-15 00:00:00',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',5),(6,'2015-04-29 03:27:40','2010-04-11 00:00:00',19,'Contribution Amount',175.00,'USD',1,1,'civicrm_line_item',6),(7,'2015-04-29 03:27:40','2010-03-27 00:00:00',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',7),(8,'2015-04-29 03:27:40','2010-03-08 00:00:00',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',8),(9,'2015-04-29 03:27:40','2010-04-22 00:00:00',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',9),(10,'2015-04-29 03:27:40','2009-07-01 11:53:50',71,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',10),(11,'2015-04-29 03:27:40','2009-07-01 12:55:41',43,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',11),(12,'2015-04-29 03:27:40','2009-10-01 11:53:50',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',12),(13,'2015-04-29 03:27:40','2009-12-01 12:55:41',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',13),(14,'2015-04-29 03:27:40','2015-04-29 03:27:40',67,'Soprano',50.00,'USD',2,1,'civicrm_line_item',81),(15,'2015-04-29 03:27:40','2015-04-29 03:27:40',156,'Soprano',50.00,'USD',2,1,'civicrm_line_item',82),(16,'2015-04-29 03:27:41','2015-04-29 03:27:40',123,'Soprano',50.00,'USD',2,1,'civicrm_line_item',83),(17,'2015-04-29 03:27:41','2015-04-29 03:27:40',82,'Soprano',50.00,'USD',2,1,'civicrm_line_item',84),(18,'2015-04-29 03:27:41','2015-04-29 03:27:40',93,'Soprano',50.00,'USD',2,1,'civicrm_line_item',85),(19,'2015-04-29 03:27:41','2015-04-29 03:27:40',167,'Soprano',50.00,'USD',2,1,'civicrm_line_item',86),(20,'2015-04-29 03:27:41','2015-04-29 03:27:40',145,'Soprano',50.00,'USD',2,1,'civicrm_line_item',87),(21,'2015-04-29 03:27:41','2015-04-29 03:27:40',31,'Soprano',50.00,'USD',2,1,'civicrm_line_item',88),(22,'2015-04-29 03:27:41','2015-04-29 03:27:40',47,'Soprano',50.00,'USD',2,1,'civicrm_line_item',89),(23,'2015-04-29 03:27:41','2015-04-29 03:27:40',92,'Soprano',50.00,'USD',2,1,'civicrm_line_item',90),(24,'2015-04-29 03:27:41','2015-04-29 03:27:40',152,'Soprano',50.00,'USD',2,1,'civicrm_line_item',91),(25,'2015-04-29 03:27:41','2015-04-29 03:27:40',131,'Soprano',50.00,'USD',2,1,'civicrm_line_item',92),(26,'2015-04-29 03:27:41','2015-04-29 03:27:40',63,'Soprano',50.00,'USD',2,1,'civicrm_line_item',93),(27,'2015-04-29 03:27:41','2015-04-29 03:27:40',139,'Soprano',50.00,'USD',2,1,'civicrm_line_item',94),(28,'2015-04-29 03:27:41','2015-04-29 03:27:40',196,'Soprano',50.00,'USD',2,1,'civicrm_line_item',95),(29,'2015-04-29 03:27:41','2015-04-29 03:27:40',87,'Soprano',50.00,'USD',2,1,'civicrm_line_item',96),(30,'2015-04-29 03:27:41','2015-04-29 03:27:40',197,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',47),(31,'2015-04-29 03:27:41','2015-04-29 03:27:40',164,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',48),(32,'2015-04-29 03:27:41','2015-04-29 03:27:40',35,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',49),(33,'2015-04-29 03:27:41','2015-04-29 03:27:40',96,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',50),(34,'2015-04-29 03:27:41','2015-04-29 03:27:40',71,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',51),(35,'2015-04-29 03:27:41','2015-04-29 03:27:40',42,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',52),(36,'2015-04-29 03:27:41','2015-04-29 03:27:40',178,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',53),(37,'2015-04-29 03:27:41','2015-04-29 03:27:40',17,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',54),(38,'2015-04-29 03:27:41','2015-04-29 03:27:40',19,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',55),(39,'2015-04-29 03:27:41','2015-04-29 03:27:40',5,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',56),(40,'2015-04-29 03:27:41','2015-04-29 03:27:40',157,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',57),(41,'2015-04-29 03:27:41','2015-04-29 03:27:40',116,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',58),(42,'2015-04-29 03:27:41','2015-04-29 03:27:40',163,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',59),(43,'2015-04-29 03:27:41','2015-04-29 03:27:40',74,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',60),(44,'2015-04-29 03:27:41','2015-04-29 03:27:40',190,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',61),(45,'2015-04-29 03:27:41','2015-04-29 03:27:40',180,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',62),(46,'2015-04-29 03:27:41','2015-04-29 03:27:40',126,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),(47,'2015-04-29 03:27:41','2015-04-29 03:27:40',137,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),(48,'2015-04-29 03:27:41','2015-04-29 03:27:40',160,'Single',50.00,'USD',4,1,'civicrm_line_item',65),(49,'2015-04-29 03:27:41','2015-04-29 03:27:40',78,'Single',50.00,'USD',4,1,'civicrm_line_item',66),(50,'2015-04-29 03:27:41','2015-04-29 03:27:40',199,'Single',50.00,'USD',4,1,'civicrm_line_item',67),(51,'2015-04-29 03:27:41','2015-04-29 03:27:40',8,'Single',50.00,'USD',4,1,'civicrm_line_item',68),(52,'2015-04-29 03:27:41','2015-04-29 03:27:40',85,'Single',50.00,'USD',4,1,'civicrm_line_item',69),(53,'2015-04-29 03:27:41','2015-04-29 03:27:40',22,'Single',50.00,'USD',4,1,'civicrm_line_item',70),(54,'2015-04-29 03:27:41','2015-04-29 03:27:40',40,'Single',50.00,'USD',4,1,'civicrm_line_item',71),(55,'2015-04-29 03:27:41','2015-04-29 03:27:40',36,'Single',50.00,'USD',4,1,'civicrm_line_item',72),(56,'2015-04-29 03:27:41','2015-04-29 03:27:40',69,'Single',50.00,'USD',4,1,'civicrm_line_item',73),(57,'2015-04-29 03:27:41','2015-04-29 03:27:40',144,'Single',50.00,'USD',4,1,'civicrm_line_item',74),(58,'2015-04-29 03:27:41','2015-04-29 03:27:40',191,'Single',50.00,'USD',4,1,'civicrm_line_item',75),(59,'2015-04-29 03:27:41','2015-04-29 03:27:40',41,'Single',50.00,'USD',4,1,'civicrm_line_item',76),(60,'2015-04-29 03:27:41','2015-04-29 03:27:40',39,'Single',50.00,'USD',4,1,'civicrm_line_item',77),(61,'2015-04-29 03:27:41','2015-04-29 03:27:40',15,'Single',50.00,'USD',4,1,'civicrm_line_item',78),(62,'2015-04-29 03:27:41','2015-04-29 03:27:40',192,'Single',50.00,'USD',4,1,'civicrm_line_item',79),(63,'2015-04-29 03:27:41','2015-04-29 03:27:40',62,'Single',50.00,'USD',4,1,'civicrm_line_item',80);
++INSERT INTO `civicrm_financial_item` (`id`, `created_date`, `transaction_date`, `contact_id`, `description`, `amount`, `currency`, `financial_account_id`, `status_id`, `entity_table`, `entity_id`) VALUES (1,'2015-05-10 10:35:05','2010-04-11 00:00:00',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),(2,'2015-05-10 10:35:05','2010-03-21 00:00:00',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),(3,'2015-05-10 10:35:05','2010-04-29 00:00:00',6,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',3),(4,'2015-05-10 10:35:05','2010-04-11 00:00:00',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),(5,'2015-05-10 10:35:05','2010-04-15 00:00:00',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',5),(6,'2015-05-10 10:35:05','2010-04-11 00:00:00',19,'Contribution Amount',175.00,'USD',1,1,'civicrm_line_item',6),(7,'2015-05-10 10:35:05','2010-03-27 00:00:00',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',7),(8,'2015-05-10 10:35:05','2010-03-08 00:00:00',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',8),(9,'2015-05-10 10:35:05','2010-04-22 00:00:00',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',9),(10,'2015-05-10 10:35:05','2009-07-01 11:53:50',71,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',10),(11,'2015-05-10 10:35:05','2009-07-01 12:55:41',43,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',11),(12,'2015-05-10 10:35:05','2009-10-01 11:53:50',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',12),(13,'2015-05-10 10:35:05','2009-12-01 12:55:41',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',13),(14,'2015-05-10 10:35:05','2015-05-10 06:35:05',83,'Soprano',50.00,'USD',2,1,'civicrm_line_item',81),(15,'2015-05-10 10:35:05','2015-05-10 06:35:05',92,'Soprano',50.00,'USD',2,1,'civicrm_line_item',82),(16,'2015-05-10 10:35:05','2015-05-10 06:35:05',7,'Soprano',50.00,'USD',2,1,'civicrm_line_item',83),(17,'2015-05-10 10:35:05','2015-05-10 06:35:05',13,'Soprano',50.00,'USD',2,1,'civicrm_line_item',84),(18,'2015-05-10 10:35:05','2015-05-10 06:35:05',117,'Soprano',50.00,'USD',2,1,'civicrm_line_item',85),(19,'2015-05-10 10:35:05','2015-05-10 06:35:05',137,'Soprano',50.00,'USD',2,1,'civicrm_line_item',86),(20,'2015-05-10 10:35:05','2015-05-10 06:35:05',192,'Soprano',50.00,'USD',2,1,'civicrm_line_item',87),(21,'2015-05-10 10:35:05','2015-05-10 06:35:05',25,'Soprano',50.00,'USD',2,1,'civicrm_line_item',88),(22,'2015-05-10 10:35:05','2015-05-10 06:35:05',58,'Soprano',50.00,'USD',2,1,'civicrm_line_item',89),(23,'2015-05-10 10:35:05','2015-05-10 06:35:05',175,'Soprano',50.00,'USD',2,1,'civicrm_line_item',90),(24,'2015-05-10 10:35:05','2015-05-10 06:35:05',63,'Soprano',50.00,'USD',2,1,'civicrm_line_item',91),(25,'2015-05-10 10:35:05','2015-05-10 06:35:05',101,'Soprano',50.00,'USD',2,1,'civicrm_line_item',92),(26,'2015-05-10 10:35:05','2015-05-10 06:35:05',124,'Soprano',50.00,'USD',2,1,'civicrm_line_item',93),(27,'2015-05-10 10:35:05','2015-05-10 06:35:05',71,'Soprano',50.00,'USD',2,1,'civicrm_line_item',94),(28,'2015-05-10 10:35:05','2015-05-10 06:35:05',80,'Soprano',50.00,'USD',2,1,'civicrm_line_item',95),(29,'2015-05-10 10:35:05','2015-05-10 06:35:05',166,'Soprano',50.00,'USD',2,1,'civicrm_line_item',96),(30,'2015-05-10 10:35:05','2015-05-10 06:35:05',193,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',47),(31,'2015-05-10 10:35:05','2015-05-10 06:35:05',20,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',48),(32,'2015-05-10 10:35:05','2015-05-10 06:35:05',141,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',49),(33,'2015-05-10 10:35:05','2015-05-10 06:35:05',144,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',50),(34,'2015-05-10 10:35:05','2015-05-10 06:35:05',133,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',51),(35,'2015-05-10 10:35:05','2015-05-10 06:35:05',60,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',52),(36,'2015-05-10 10:35:05','2015-05-10 06:35:05',87,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',53),(37,'2015-05-10 10:35:05','2015-05-10 06:35:05',44,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',54),(38,'2015-05-10 10:35:05','2015-05-10 06:35:05',176,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',55),(39,'2015-05-10 10:35:05','2015-05-10 06:35:05',129,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',56),(40,'2015-05-10 10:35:05','2015-05-10 06:35:05',1,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',57),(41,'2015-05-10 10:35:05','2015-05-10 06:35:05',34,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',58),(42,'2015-05-10 10:35:05','2015-05-10 06:35:05',158,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',59),(43,'2015-05-10 10:35:05','2015-05-10 06:35:05',187,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',60),(44,'2015-05-10 10:35:05','2015-05-10 06:35:05',21,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',61),(45,'2015-05-10 10:35:05','2015-05-10 06:35:05',161,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',62),(46,'2015-05-10 10:35:05','2015-05-10 06:35:05',194,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),(47,'2015-05-10 10:35:05','2015-05-10 06:35:05',183,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),(48,'2015-05-10 10:35:05','2015-05-10 06:35:05',97,'Single',50.00,'USD',4,1,'civicrm_line_item',65),(49,'2015-05-10 10:35:05','2015-05-10 06:35:05',191,'Single',50.00,'USD',4,1,'civicrm_line_item',66),(50,'2015-05-10 10:35:05','2015-05-10 06:35:05',146,'Single',50.00,'USD',4,1,'civicrm_line_item',67),(51,'2015-05-10 10:35:05','2015-05-10 06:35:05',64,'Single',50.00,'USD',4,1,'civicrm_line_item',68),(52,'2015-05-10 10:35:05','2015-05-10 06:35:05',86,'Single',50.00,'USD',4,1,'civicrm_line_item',69),(53,'2015-05-10 10:35:05','2015-05-10 06:35:05',65,'Single',50.00,'USD',4,1,'civicrm_line_item',70),(54,'2015-05-10 10:35:05','2015-05-10 06:35:05',138,'Single',50.00,'USD',4,1,'civicrm_line_item',71),(55,'2015-05-10 10:35:05','2015-05-10 06:35:05',189,'Single',50.00,'USD',4,1,'civicrm_line_item',72),(56,'2015-05-10 10:35:05','2015-05-10 06:35:05',142,'Single',50.00,'USD',4,1,'civicrm_line_item',73),(57,'2015-05-10 10:35:05','2015-05-10 06:35:05',88,'Single',50.00,'USD',4,1,'civicrm_line_item',74),(58,'2015-05-10 10:35:05','2015-05-10 06:35:05',200,'Single',50.00,'USD',4,1,'civicrm_line_item',75),(59,'2015-05-10 10:35:05','2015-05-10 06:35:05',107,'Single',50.00,'USD',4,1,'civicrm_line_item',76),(60,'2015-05-10 10:35:05','2015-05-10 06:35:05',72,'Single',50.00,'USD',4,1,'civicrm_line_item',77),(61,'2015-05-10 10:35:05','2015-05-10 06:35:05',154,'Single',50.00,'USD',4,1,'civicrm_line_item',78),(62,'2015-05-10 10:35:05','2015-05-10 06:35:05',38,'Single',50.00,'USD',4,1,'civicrm_line_item',79),(63,'2015-05-10 10:35:05','2015-05-10 06:35:05',181,'Single',50.00,'USD',4,1,'civicrm_line_item',80);
  /*!40000 ALTER TABLE `civicrm_financial_item` ENABLE KEYS */;
  UNLOCK TABLES;
  
  
  LOCK TABLES `civicrm_financial_trxn` WRITE;
  /*!40000 ALTER TABLE `civicrm_financial_trxn` DISABLE KEYS */;
- INSERT INTO `civicrm_financial_trxn` (`id`, `from_financial_account_id`, `to_financial_account_id`, `trxn_date`, `total_amount`, `fee_amount`, `net_amount`, `currency`, `trxn_id`, `trxn_result_code`, `status_id`, `payment_processor_id`, `payment_instrument_id`, `check_number`) VALUES (1,NULL,6,'2010-04-11 00:00:00',125.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'1041'),(2,NULL,12,'2010-03-21 00:00:00',50.00,NULL,NULL,'USD','P20901X1',NULL,1,NULL,1,NULL),(3,NULL,6,'2010-04-29 00:00:00',25.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'2095'),(4,NULL,6,'2010-04-11 00:00:00',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'10552'),(5,NULL,6,'2010-04-15 00:00:00',500.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'509'),(6,NULL,6,'2010-04-11 00:00:00',175.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'102'),(7,NULL,12,'2010-03-27 00:00:00',50.00,NULL,NULL,'USD','P20193L2',NULL,1,NULL,1,NULL),(8,NULL,12,'2010-03-08 00:00:00',10.00,NULL,NULL,'USD','P40232Y3',NULL,1,NULL,1,NULL),(9,NULL,12,'2010-04-22 00:00:00',250.00,NULL,NULL,'USD','P20193L6',NULL,1,NULL,1,NULL),(10,NULL,12,'2009-07-01 11:53:50',500.00,NULL,NULL,'USD','PL71',NULL,1,NULL,1,NULL),(11,NULL,12,'2009-07-01 12:55:41',200.00,NULL,NULL,'USD','PL43II',NULL,1,NULL,1,NULL),(12,NULL,12,'2009-10-01 11:53:50',200.00,NULL,NULL,'USD','PL32I',NULL,1,NULL,1,NULL),(13,NULL,12,'2009-12-01 12:55:41',200.00,NULL,NULL,'USD','PL32II',NULL,1,NULL,1,NULL),(14,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(15,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(16,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(17,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(18,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(19,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(20,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(21,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(22,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(23,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(24,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(25,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(26,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(27,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(28,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(29,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(30,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(31,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(32,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(33,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(34,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(35,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(36,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(37,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(38,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(39,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(40,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(41,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(42,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(43,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(44,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(45,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(46,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(47,NULL,1,'2015-05-08 12:26:27',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(48,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(49,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(50,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(51,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(52,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(53,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(54,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(55,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(56,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(57,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(58,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(59,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(60,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(61,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(62,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(63,NULL,1,'2015-05-08 12:26:27',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL);
 -INSERT INTO `civicrm_financial_trxn` (`id`, `from_financial_account_id`, `to_financial_account_id`, `trxn_date`, `total_amount`, `fee_amount`, `net_amount`, `currency`, `trxn_id`, `trxn_result_code`, `status_id`, `payment_processor_id`, `payment_instrument_id`, `check_number`) VALUES (1,NULL,6,'2010-04-11 00:00:00',125.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'1041'),(2,NULL,12,'2010-03-21 00:00:00',50.00,NULL,NULL,'USD','P20901X1',NULL,1,NULL,1,NULL),(3,NULL,6,'2010-04-29 00:00:00',25.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'2095'),(4,NULL,6,'2010-04-11 00:00:00',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'10552'),(5,NULL,6,'2010-04-15 00:00:00',500.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'509'),(6,NULL,6,'2010-04-11 00:00:00',175.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'102'),(7,NULL,12,'2010-03-27 00:00:00',50.00,NULL,NULL,'USD','P20193L2',NULL,1,NULL,1,NULL),(8,NULL,12,'2010-03-08 00:00:00',10.00,NULL,NULL,'USD','P40232Y3',NULL,1,NULL,1,NULL),(9,NULL,12,'2010-04-22 00:00:00',250.00,NULL,NULL,'USD','P20193L6',NULL,1,NULL,1,NULL),(10,NULL,12,'2009-07-01 11:53:50',500.00,NULL,NULL,'USD','PL71',NULL,1,NULL,1,NULL),(11,NULL,12,'2009-07-01 12:55:41',200.00,NULL,NULL,'USD','PL43II',NULL,1,NULL,1,NULL),(12,NULL,12,'2009-10-01 11:53:50',200.00,NULL,NULL,'USD','PL32I',NULL,1,NULL,1,NULL),(13,NULL,12,'2009-12-01 12:55:41',200.00,NULL,NULL,'USD','PL32II',NULL,1,NULL,1,NULL),(14,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(15,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(16,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(17,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(18,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(19,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(20,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(21,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(22,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(23,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(24,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(25,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(26,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(27,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(28,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(29,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(30,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(31,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(32,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(33,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(34,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(35,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(36,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(37,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(38,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(39,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(40,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(41,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(42,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(43,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(44,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(45,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(46,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(47,NULL,1,'2015-04-29 03:27:40',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(48,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(49,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(50,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(51,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(52,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(53,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(54,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(55,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(56,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(57,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(58,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(59,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(60,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(61,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(62,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(63,NULL,1,'2015-04-29 03:27:40',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL);
++INSERT INTO `civicrm_financial_trxn` (`id`, `from_financial_account_id`, `to_financial_account_id`, `trxn_date`, `total_amount`, `fee_amount`, `net_amount`, `currency`, `trxn_id`, `trxn_result_code`, `status_id`, `payment_processor_id`, `payment_instrument_id`, `check_number`) VALUES (1,NULL,6,'2010-04-11 00:00:00',125.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'1041'),(2,NULL,12,'2010-03-21 00:00:00',50.00,NULL,NULL,'USD','P20901X1',NULL,1,NULL,1,NULL),(3,NULL,6,'2010-04-29 00:00:00',25.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'2095'),(4,NULL,6,'2010-04-11 00:00:00',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'10552'),(5,NULL,6,'2010-04-15 00:00:00',500.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'509'),(6,NULL,6,'2010-04-11 00:00:00',175.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,'102'),(7,NULL,12,'2010-03-27 00:00:00',50.00,NULL,NULL,'USD','P20193L2',NULL,1,NULL,1,NULL),(8,NULL,12,'2010-03-08 00:00:00',10.00,NULL,NULL,'USD','P40232Y3',NULL,1,NULL,1,NULL),(9,NULL,12,'2010-04-22 00:00:00',250.00,NULL,NULL,'USD','P20193L6',NULL,1,NULL,1,NULL),(10,NULL,12,'2009-07-01 11:53:50',500.00,NULL,NULL,'USD','PL71',NULL,1,NULL,1,NULL),(11,NULL,12,'2009-07-01 12:55:41',200.00,NULL,NULL,'USD','PL43II',NULL,1,NULL,1,NULL),(12,NULL,12,'2009-10-01 11:53:50',200.00,NULL,NULL,'USD','PL32I',NULL,1,NULL,1,NULL),(13,NULL,12,'2009-12-01 12:55:41',200.00,NULL,NULL,'USD','PL32II',NULL,1,NULL,1,NULL),(14,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(15,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(16,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(17,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(18,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(19,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(20,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(21,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(22,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(23,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(24,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(25,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(26,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(27,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(28,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(29,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(30,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(31,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(32,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(33,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(34,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(35,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(36,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(37,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(38,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(39,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(40,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(41,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(42,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(43,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(44,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(45,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(46,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(47,NULL,1,'2015-05-10 06:35:05',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(48,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(49,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(50,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(51,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(52,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(53,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(54,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(55,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(56,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(57,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(58,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(59,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(60,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(61,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(62,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(63,NULL,1,'2015-05-10 06:35:05',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL);
  /*!40000 ALTER TABLE `civicrm_financial_trxn` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -564,7 -564,7 +564,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_group_contact` WRITE;
  /*!40000 ALTER TABLE `civicrm_group_contact` DISABLE KEYS */;
- INSERT INTO `civicrm_group_contact` (`id`, `group_id`, `contact_id`, `status`, `location_id`, `email_id`) VALUES (1,2,89,'Added',NULL,NULL),(2,2,142,'Added',NULL,NULL),(3,2,36,'Added',NULL,NULL),(4,2,179,'Added',NULL,NULL),(5,2,130,'Added',NULL,NULL),(6,2,120,'Added',NULL,NULL),(7,2,126,'Added',NULL,NULL),(8,2,135,'Added',NULL,NULL),(9,2,47,'Added',NULL,NULL),(10,2,43,'Added',NULL,NULL),(11,2,136,'Added',NULL,NULL),(12,2,197,'Added',NULL,NULL),(13,2,167,'Added',NULL,NULL),(14,2,145,'Added',NULL,NULL),(15,2,146,'Added',NULL,NULL),(16,2,68,'Added',NULL,NULL),(17,2,124,'Added',NULL,NULL),(18,2,122,'Added',NULL,NULL),(19,2,155,'Added',NULL,NULL),(20,2,121,'Added',NULL,NULL),(21,2,113,'Added',NULL,NULL),(22,2,184,'Added',NULL,NULL),(23,2,171,'Added',NULL,NULL),(24,2,91,'Added',NULL,NULL),(25,2,27,'Added',NULL,NULL),(26,2,141,'Added',NULL,NULL),(27,2,176,'Added',NULL,NULL),(28,2,159,'Added',NULL,NULL),(29,2,80,'Added',NULL,NULL),(30,2,110,'Added',NULL,NULL),(31,2,13,'Added',NULL,NULL),(32,2,188,'Added',NULL,NULL),(33,2,195,'Added',NULL,NULL),(34,2,66,'Added',NULL,NULL),(35,2,64,'Added',NULL,NULL),(36,2,40,'Added',NULL,NULL),(37,2,16,'Added',NULL,NULL),(38,2,29,'Added',NULL,NULL),(39,2,177,'Added',NULL,NULL),(40,2,34,'Added',NULL,NULL),(41,2,181,'Added',NULL,NULL),(42,2,72,'Added',NULL,NULL),(43,2,144,'Added',NULL,NULL),(44,2,76,'Added',NULL,NULL),(45,2,185,'Added',NULL,NULL),(46,2,30,'Added',NULL,NULL),(47,2,191,'Added',NULL,NULL),(48,2,107,'Added',NULL,NULL),(49,2,105,'Added',NULL,NULL),(50,2,24,'Added',NULL,NULL),(51,2,156,'Added',NULL,NULL),(52,2,166,'Added',NULL,NULL),(53,2,190,'Added',NULL,NULL),(54,2,161,'Added',NULL,NULL),(55,2,14,'Added',NULL,NULL),(56,2,90,'Added',NULL,NULL),(57,2,21,'Added',NULL,NULL),(58,2,134,'Added',NULL,NULL),(59,2,46,'Added',NULL,NULL),(60,2,15,'Added',NULL,NULL),(61,3,58,'Added',NULL,NULL),(62,3,3,'Added',NULL,NULL),(63,3,97,'Added',NULL,NULL),(64,3,150,'Added',NULL,NULL),(65,3,65,'Added',NULL,NULL),(66,3,7,'Added',NULL,NULL),(67,3,104,'Added',NULL,NULL),(68,3,41,'Added',NULL,NULL),(69,3,192,'Added',NULL,NULL),(70,3,63,'Added',NULL,NULL),(71,3,162,'Added',NULL,NULL),(72,3,138,'Added',NULL,NULL),(73,3,128,'Added',NULL,NULL),(74,3,131,'Added',NULL,NULL),(75,3,132,'Added',NULL,NULL),(76,4,89,'Added',NULL,NULL),(77,4,135,'Added',NULL,NULL),(78,4,146,'Added',NULL,NULL),(79,4,184,'Added',NULL,NULL),(80,4,80,'Added',NULL,NULL),(81,4,40,'Added',NULL,NULL),(82,4,144,'Added',NULL,NULL),(83,4,24,'Added',NULL,NULL);
 -INSERT INTO `civicrm_group_contact` (`id`, `group_id`, `contact_id`, `status`, `location_id`, `email_id`) VALUES (1,2,117,'Added',NULL,NULL),(2,2,119,'Added',NULL,NULL),(3,2,87,'Added',NULL,NULL),(4,2,106,'Added',NULL,NULL),(5,2,201,'Added',NULL,NULL),(6,2,2,'Added',NULL,NULL),(7,2,58,'Added',NULL,NULL),(8,2,137,'Added',NULL,NULL),(9,2,36,'Added',NULL,NULL),(10,2,191,'Added',NULL,NULL),(11,2,169,'Added',NULL,NULL),(12,2,171,'Added',NULL,NULL),(13,2,147,'Added',NULL,NULL),(14,2,64,'Added',NULL,NULL),(15,2,80,'Added',NULL,NULL),(16,2,110,'Added',NULL,NULL),(17,2,29,'Added',NULL,NULL),(18,2,39,'Added',NULL,NULL),(19,2,150,'Added',NULL,NULL),(20,2,86,'Added',NULL,NULL),(21,2,148,'Added',NULL,NULL),(22,2,178,'Added',NULL,NULL),(23,2,168,'Added',NULL,NULL),(24,2,30,'Added',NULL,NULL),(25,2,7,'Added',NULL,NULL),(26,2,103,'Added',NULL,NULL),(27,2,132,'Added',NULL,NULL),(28,2,115,'Added',NULL,NULL),(29,2,200,'Added',NULL,NULL),(30,2,198,'Added',NULL,NULL),(31,2,47,'Added',NULL,NULL),(32,2,71,'Added',NULL,NULL),(33,2,170,'Added',NULL,NULL),(34,2,183,'Added',NULL,NULL),(35,2,67,'Added',NULL,NULL),(36,2,185,'Added',NULL,NULL),(37,2,22,'Added',NULL,NULL),(38,2,9,'Added',NULL,NULL),(39,2,146,'Added',NULL,NULL),(40,2,42,'Added',NULL,NULL),(41,2,166,'Added',NULL,NULL),(42,2,75,'Added',NULL,NULL),(43,2,44,'Added',NULL,NULL),(44,2,131,'Added',NULL,NULL),(45,2,162,'Added',NULL,NULL),(46,2,184,'Added',NULL,NULL),(47,2,140,'Added',NULL,NULL),(48,2,78,'Added',NULL,NULL),(49,2,196,'Added',NULL,NULL),(50,2,167,'Added',NULL,NULL),(51,2,15,'Added',NULL,NULL),(52,2,33,'Added',NULL,NULL),(53,2,157,'Added',NULL,NULL),(54,2,76,'Added',NULL,NULL),(55,2,192,'Added',NULL,NULL),(56,2,68,'Added',NULL,NULL),(57,2,96,'Added',NULL,NULL),(58,2,195,'Added',NULL,NULL),(59,2,158,'Added',NULL,NULL),(60,2,35,'Added',NULL,NULL),(61,3,193,'Added',NULL,NULL),(62,3,152,'Added',NULL,NULL),(63,3,190,'Added',NULL,NULL),(64,3,66,'Added',NULL,NULL),(65,3,72,'Added',NULL,NULL),(66,3,16,'Added',NULL,NULL),(67,3,151,'Added',NULL,NULL),(68,3,51,'Added',NULL,NULL),(69,3,28,'Added',NULL,NULL),(70,3,34,'Added',NULL,NULL),(71,3,61,'Added',NULL,NULL),(72,3,79,'Added',NULL,NULL),(73,3,154,'Added',NULL,NULL),(74,3,188,'Added',NULL,NULL),(75,3,54,'Added',NULL,NULL),(76,4,117,'Added',NULL,NULL),(77,4,137,'Added',NULL,NULL),(78,4,80,'Added',NULL,NULL),(79,4,178,'Added',NULL,NULL),(80,4,200,'Added',NULL,NULL),(81,4,185,'Added',NULL,NULL),(82,4,44,'Added',NULL,NULL),(83,4,167,'Added',NULL,NULL);
++INSERT INTO `civicrm_group_contact` (`id`, `group_id`, `contact_id`, `status`, `location_id`, `email_id`) VALUES (1,2,166,'Added',NULL,NULL),(2,2,3,'Added',NULL,NULL),(3,2,128,'Added',NULL,NULL),(4,2,4,'Added',NULL,NULL),(5,2,71,'Added',NULL,NULL),(6,2,110,'Added',NULL,NULL),(7,2,153,'Added',NULL,NULL),(8,2,152,'Added',NULL,NULL),(9,2,182,'Added',NULL,NULL),(10,2,108,'Added',NULL,NULL),(11,2,24,'Added',NULL,NULL),(12,2,142,'Added',NULL,NULL),(13,2,176,'Added',NULL,NULL),(14,2,117,'Added',NULL,NULL),(15,2,88,'Added',NULL,NULL),(16,2,33,'Added',NULL,NULL),(17,2,18,'Added',NULL,NULL),(18,2,169,'Added',NULL,NULL),(19,2,163,'Added',NULL,NULL),(20,2,179,'Added',NULL,NULL),(21,2,55,'Added',NULL,NULL),(22,2,190,'Added',NULL,NULL),(23,2,123,'Added',NULL,NULL),(24,2,95,'Added',NULL,NULL),(25,2,64,'Added',NULL,NULL),(26,2,85,'Added',NULL,NULL),(27,2,29,'Added',NULL,NULL),(28,2,120,'Added',NULL,NULL),(29,2,67,'Added',NULL,NULL),(30,2,43,'Added',NULL,NULL),(31,2,76,'Added',NULL,NULL),(32,2,144,'Added',NULL,NULL),(33,2,47,'Added',NULL,NULL),(34,2,9,'Added',NULL,NULL),(35,2,155,'Added',NULL,NULL),(36,2,111,'Added',NULL,NULL),(37,2,60,'Added',NULL,NULL),(38,2,183,'Added',NULL,NULL),(39,2,58,'Added',NULL,NULL),(40,2,105,'Added',NULL,NULL),(41,2,196,'Added',NULL,NULL),(42,2,102,'Added',NULL,NULL),(43,2,77,'Added',NULL,NULL),(44,2,74,'Added',NULL,NULL),(45,2,130,'Added',NULL,NULL),(46,2,36,'Added',NULL,NULL),(47,2,11,'Added',NULL,NULL),(48,2,172,'Added',NULL,NULL),(49,2,134,'Added',NULL,NULL),(50,2,103,'Added',NULL,NULL),(51,2,133,'Added',NULL,NULL),(52,2,87,'Added',NULL,NULL),(53,2,146,'Added',NULL,NULL),(54,2,180,'Added',NULL,NULL),(55,2,139,'Added',NULL,NULL),(56,2,113,'Added',NULL,NULL),(57,2,114,'Added',NULL,NULL),(58,2,187,'Added',NULL,NULL),(59,2,69,'Added',NULL,NULL),(60,2,137,'Added',NULL,NULL),(61,3,82,'Added',NULL,NULL),(62,3,75,'Added',NULL,NULL),(63,3,145,'Added',NULL,NULL),(64,3,5,'Added',NULL,NULL),(65,3,50,'Added',NULL,NULL),(66,3,6,'Added',NULL,NULL),(67,3,158,'Added',NULL,NULL),(68,3,159,'Added',NULL,NULL),(69,3,184,'Added',NULL,NULL),(70,3,56,'Added',NULL,NULL),(71,3,193,'Added',NULL,NULL),(72,3,97,'Added',NULL,NULL),(73,3,53,'Added',NULL,NULL),(74,3,140,'Added',NULL,NULL),(75,3,13,'Added',NULL,NULL),(76,4,166,'Added',NULL,NULL),(77,4,152,'Added',NULL,NULL),(78,4,88,'Added',NULL,NULL),(79,4,190,'Added',NULL,NULL),(80,4,67,'Added',NULL,NULL),(81,4,111,'Added',NULL,NULL),(82,4,77,'Added',NULL,NULL),(83,4,103,'Added',NULL,NULL);
  /*!40000 ALTER TABLE `civicrm_group_contact` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -629,7 -629,7 +629,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_line_item` WRITE;
  /*!40000 ALTER TABLE `civicrm_line_item` DISABLE KEYS */;
- INSERT INTO `civicrm_line_item` (`id`, `entity_table`, `entity_id`, `contribution_id`, `price_field_id`, `label`, `qty`, `unit_price`, `line_total`, `participant_count`, `price_field_value_id`, `financial_type_id`, `deductible_amount`, `tax_amount`) VALUES (1,'civicrm_contribution',1,1,1,'Contribution Amount',1.00,125.00,125.00,0,1,1,0.00,NULL),(2,'civicrm_contribution',2,2,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(3,'civicrm_contribution',3,3,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,NULL),(4,'civicrm_contribution',4,4,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(5,'civicrm_contribution',5,5,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,NULL),(6,'civicrm_contribution',6,6,1,'Contribution Amount',1.00,175.00,175.00,0,1,1,0.00,NULL),(7,'civicrm_contribution',7,7,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(8,'civicrm_contribution',8,8,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,NULL),(9,'civicrm_contribution',9,9,1,'Contribution Amount',1.00,250.00,250.00,0,1,1,0.00,NULL),(10,'civicrm_contribution',10,10,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,NULL),(11,'civicrm_contribution',11,11,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(12,'civicrm_contribution',12,12,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(13,'civicrm_contribution',13,13,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(16,'civicrm_membership',1,14,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(17,'civicrm_membership',3,16,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(18,'civicrm_membership',7,20,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(19,'civicrm_membership',9,22,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(20,'civicrm_membership',13,26,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(21,'civicrm_membership',17,30,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(22,'civicrm_membership',19,32,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(23,'civicrm_membership',20,33,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(24,'civicrm_membership',21,34,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(25,'civicrm_membership',23,36,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(26,'civicrm_membership',27,40,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(27,'civicrm_membership',29,42,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(28,'civicrm_membership',2,15,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(29,'civicrm_membership',4,17,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(30,'civicrm_membership',5,18,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(31,'civicrm_membership',6,19,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(32,'civicrm_membership',8,21,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(33,'civicrm_membership',10,23,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(34,'civicrm_membership',12,25,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(35,'civicrm_membership',14,27,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(36,'civicrm_membership',15,28,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(37,'civicrm_membership',16,29,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(38,'civicrm_membership',18,31,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(39,'civicrm_membership',24,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(40,'civicrm_membership',25,38,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(41,'civicrm_membership',26,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(42,'civicrm_membership',28,41,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(43,'civicrm_membership',30,43,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(44,'civicrm_membership',11,24,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL),(45,'civicrm_membership',22,35,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL),(47,'civicrm_participant',3,67,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(48,'civicrm_participant',6,73,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(49,'civicrm_participant',9,94,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(50,'civicrm_participant',12,51,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(51,'civicrm_participant',15,91,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(52,'civicrm_participant',18,59,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(53,'civicrm_participant',21,74,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(54,'civicrm_participant',24,48,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(55,'civicrm_participant',25,69,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(56,'civicrm_participant',28,72,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(57,'civicrm_participant',31,86,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(58,'civicrm_participant',34,70,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(59,'civicrm_participant',37,54,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(60,'civicrm_participant',40,89,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(61,'civicrm_participant',43,82,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(62,'civicrm_participant',46,88,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(63,'civicrm_participant',49,47,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(64,'civicrm_participant',50,84,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(65,'civicrm_participant',1,83,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(66,'civicrm_participant',4,80,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(67,'civicrm_participant',7,45,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(68,'civicrm_participant',10,56,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(69,'civicrm_participant',13,61,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(70,'civicrm_participant',16,75,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(71,'civicrm_participant',19,85,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(72,'civicrm_participant',22,81,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(73,'civicrm_participant',26,90,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(74,'civicrm_participant',29,87,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(75,'civicrm_participant',32,55,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(76,'civicrm_participant',35,62,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(77,'civicrm_participant',38,65,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(78,'civicrm_participant',41,76,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(79,'civicrm_participant',44,93,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(80,'civicrm_participant',47,52,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(81,'civicrm_participant',2,57,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(82,'civicrm_participant',5,79,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(83,'civicrm_participant',8,66,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(84,'civicrm_participant',11,71,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(85,'civicrm_participant',14,77,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(86,'civicrm_participant',17,63,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(87,'civicrm_participant',20,58,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(88,'civicrm_participant',23,68,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(89,'civicrm_participant',27,49,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(90,'civicrm_participant',30,92,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(91,'civicrm_participant',33,50,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(92,'civicrm_participant',36,64,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(93,'civicrm_participant',39,53,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(94,'civicrm_participant',42,60,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(95,'civicrm_participant',45,46,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(96,'civicrm_participant',48,78,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL);
 -INSERT INTO `civicrm_line_item` (`id`, `entity_table`, `entity_id`, `contribution_id`, `price_field_id`, `label`, `qty`, `unit_price`, `line_total`, `participant_count`, `price_field_value_id`, `financial_type_id`, `deductible_amount`, `tax_amount`) VALUES (1,'civicrm_contribution',1,1,1,'Contribution Amount',1.00,125.00,125.00,0,1,1,0.00,NULL),(2,'civicrm_contribution',2,2,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(3,'civicrm_contribution',3,3,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,NULL),(4,'civicrm_contribution',4,4,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(5,'civicrm_contribution',5,5,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,NULL),(6,'civicrm_contribution',6,6,1,'Contribution Amount',1.00,175.00,175.00,0,1,1,0.00,NULL),(7,'civicrm_contribution',7,7,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(8,'civicrm_contribution',8,8,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,NULL),(9,'civicrm_contribution',9,9,1,'Contribution Amount',1.00,250.00,250.00,0,1,1,0.00,NULL),(10,'civicrm_contribution',10,10,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,NULL),(11,'civicrm_contribution',11,11,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(12,'civicrm_contribution',12,12,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(13,'civicrm_contribution',13,13,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(16,'civicrm_membership',1,14,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(17,'civicrm_membership',3,15,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(18,'civicrm_membership',5,16,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(19,'civicrm_membership',7,17,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(20,'civicrm_membership',9,18,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(21,'civicrm_membership',13,19,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(22,'civicrm_membership',17,20,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(23,'civicrm_membership',19,21,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(24,'civicrm_membership',21,22,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(25,'civicrm_membership',23,23,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(26,'civicrm_membership',25,24,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(27,'civicrm_membership',27,25,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(28,'civicrm_membership',29,26,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(29,'civicrm_membership',2,27,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(30,'civicrm_membership',4,28,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(31,'civicrm_membership',6,29,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(32,'civicrm_membership',8,30,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(33,'civicrm_membership',10,31,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(34,'civicrm_membership',12,32,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(35,'civicrm_membership',14,33,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(36,'civicrm_membership',15,34,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(37,'civicrm_membership',16,35,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(38,'civicrm_membership',18,36,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(39,'civicrm_membership',20,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(40,'civicrm_membership',24,38,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(41,'civicrm_membership',26,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(42,'civicrm_membership',28,40,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(43,'civicrm_membership',30,41,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(44,'civicrm_membership',11,42,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL),(45,'civicrm_membership',22,43,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL),(47,'civicrm_participant',3,93,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(48,'civicrm_participant',6,85,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(49,'civicrm_participant',9,52,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(50,'civicrm_participant',12,71,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(51,'civicrm_participant',15,63,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(52,'civicrm_participant',18,57,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(53,'civicrm_participant',21,87,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(54,'civicrm_participant',24,48,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(55,'civicrm_participant',25,49,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(56,'civicrm_participant',28,45,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(57,'civicrm_participant',31,82,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(58,'civicrm_participant',34,72,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(59,'civicrm_participant',37,84,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(60,'civicrm_participant',40,64,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(61,'civicrm_participant',43,89,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(62,'civicrm_participant',46,88,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(63,'civicrm_participant',49,74,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(64,'civicrm_participant',50,76,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(65,'civicrm_participant',1,83,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(66,'civicrm_participant',4,65,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(67,'civicrm_participant',7,94,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(68,'civicrm_participant',10,46,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(69,'civicrm_participant',13,67,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(70,'civicrm_participant',16,50,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(71,'civicrm_participant',19,55,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(72,'civicrm_participant',22,53,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(73,'civicrm_participant',26,62,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(74,'civicrm_participant',29,78,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(75,'civicrm_participant',32,90,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(76,'civicrm_participant',35,56,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(77,'civicrm_participant',38,54,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(78,'civicrm_participant',41,47,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(79,'civicrm_participant',44,91,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(80,'civicrm_participant',47,59,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(81,'civicrm_participant',2,61,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(82,'civicrm_participant',5,81,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(83,'civicrm_participant',8,73,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(84,'civicrm_participant',11,66,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(85,'civicrm_participant',14,70,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(86,'civicrm_participant',17,86,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(87,'civicrm_participant',20,79,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(88,'civicrm_participant',23,51,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(89,'civicrm_participant',27,58,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(90,'civicrm_participant',30,69,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(91,'civicrm_participant',33,80,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(92,'civicrm_participant',36,75,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(93,'civicrm_participant',39,60,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(94,'civicrm_participant',42,77,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(95,'civicrm_participant',45,92,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(96,'civicrm_participant',48,68,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL);
++INSERT INTO `civicrm_line_item` (`id`, `entity_table`, `entity_id`, `contribution_id`, `price_field_id`, `label`, `qty`, `unit_price`, `line_total`, `participant_count`, `price_field_value_id`, `financial_type_id`, `deductible_amount`, `tax_amount`) VALUES (1,'civicrm_contribution',1,1,1,'Contribution Amount',1.00,125.00,125.00,0,1,1,0.00,NULL),(2,'civicrm_contribution',2,2,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(3,'civicrm_contribution',3,3,1,'Contribution Amount',1.00,25.00,25.00,0,1,1,0.00,NULL),(4,'civicrm_contribution',4,4,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(5,'civicrm_contribution',5,5,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,NULL),(6,'civicrm_contribution',6,6,1,'Contribution Amount',1.00,175.00,175.00,0,1,1,0.00,NULL),(7,'civicrm_contribution',7,7,1,'Contribution Amount',1.00,50.00,50.00,0,1,1,0.00,NULL),(8,'civicrm_contribution',8,8,1,'Contribution Amount',1.00,10.00,10.00,0,1,1,0.00,NULL),(9,'civicrm_contribution',9,9,1,'Contribution Amount',1.00,250.00,250.00,0,1,1,0.00,NULL),(10,'civicrm_contribution',10,10,1,'Contribution Amount',1.00,500.00,500.00,0,1,1,0.00,NULL),(11,'civicrm_contribution',11,11,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(12,'civicrm_contribution',12,12,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(13,'civicrm_contribution',13,13,1,'Contribution Amount',1.00,200.00,200.00,0,1,1,0.00,NULL),(16,'civicrm_membership',1,14,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(17,'civicrm_membership',3,16,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(18,'civicrm_membership',7,20,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(19,'civicrm_membership',9,22,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(20,'civicrm_membership',13,26,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(21,'civicrm_membership',15,28,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(22,'civicrm_membership',17,30,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(23,'civicrm_membership',19,32,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(24,'civicrm_membership',21,34,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(25,'civicrm_membership',23,36,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(26,'civicrm_membership',25,38,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(27,'civicrm_membership',27,40,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(28,'civicrm_membership',29,42,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(29,'civicrm_membership',30,43,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(30,'civicrm_membership',2,15,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(31,'civicrm_membership',4,17,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(32,'civicrm_membership',5,18,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(33,'civicrm_membership',6,19,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(34,'civicrm_membership',8,21,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(35,'civicrm_membership',10,23,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(36,'civicrm_membership',12,25,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(37,'civicrm_membership',14,27,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(38,'civicrm_membership',16,29,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(39,'civicrm_membership',18,31,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(40,'civicrm_membership',20,33,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(41,'civicrm_membership',24,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(42,'civicrm_membership',26,39,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(43,'civicrm_membership',28,41,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(44,'civicrm_membership',11,24,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL),(45,'civicrm_membership',22,35,4,'Lifetime',1.00,1200.00,1200.00,NULL,9,2,0.00,NULL),(47,'civicrm_participant',3,92,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(48,'civicrm_participant',6,48,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(49,'civicrm_participant',9,76,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(50,'civicrm_participant',12,78,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(51,'civicrm_participant',15,73,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(52,'civicrm_participant',18,55,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(53,'civicrm_participant',21,64,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(54,'civicrm_participant',24,53,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(55,'civicrm_participant',25,85,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(56,'civicrm_participant',28,72,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(57,'civicrm_participant',31,45,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(58,'civicrm_participant',34,51,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(59,'civicrm_participant',37,81,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(60,'civicrm_participant',40,88,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(61,'civicrm_participant',43,49,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(62,'civicrm_participant',46,82,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(63,'civicrm_participant',49,93,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(64,'civicrm_participant',50,87,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(65,'civicrm_participant',1,67,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(66,'civicrm_participant',4,90,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(67,'civicrm_participant',7,79,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(68,'civicrm_participant',10,57,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(69,'civicrm_participant',13,63,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(70,'civicrm_participant',16,58,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(71,'civicrm_participant',19,75,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(72,'civicrm_participant',22,89,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(73,'civicrm_participant',26,77,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(74,'civicrm_participant',29,65,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(75,'civicrm_participant',32,94,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(76,'civicrm_participant',35,69,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(77,'civicrm_participant',38,60,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(78,'civicrm_participant',41,80,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(79,'civicrm_participant',44,52,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(80,'civicrm_participant',47,86,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(81,'civicrm_participant',2,62,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(82,'civicrm_participant',5,66,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(83,'civicrm_participant',8,46,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(84,'civicrm_participant',11,47,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(85,'civicrm_participant',14,70,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(86,'civicrm_participant',17,74,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(87,'civicrm_participant',20,91,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(88,'civicrm_participant',23,50,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(89,'civicrm_participant',27,54,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(90,'civicrm_participant',30,84,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(91,'civicrm_participant',33,56,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(92,'civicrm_participant',36,68,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(93,'civicrm_participant',39,71,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(94,'civicrm_participant',42,59,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(95,'civicrm_participant',45,61,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(96,'civicrm_participant',48,83,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL);
  /*!40000 ALTER TABLE `civicrm_line_item` ENABLE KEYS */;
  UNLOCK TABLES;
  
  
  LOCK TABLES `civicrm_loc_block` WRITE;
  /*!40000 ALTER TABLE `civicrm_loc_block` DISABLE KEYS */;
- INSERT INTO `civicrm_loc_block` (`id`, `address_id`, `email_id`, `phone_id`, `im_id`, `address_2_id`, `email_2_id`, `phone_2_id`, `im_2_id`) VALUES (1,179,184,149,NULL,NULL,NULL,NULL,NULL),(2,180,185,150,NULL,NULL,NULL,NULL,NULL),(3,181,186,151,NULL,NULL,NULL,NULL,NULL);
 -INSERT INTO `civicrm_loc_block` (`id`, `address_id`, `email_id`, `phone_id`, `im_id`, `address_2_id`, `email_2_id`, `phone_2_id`, `im_2_id`) VALUES (1,185,197,166,NULL,NULL,NULL,NULL,NULL),(2,186,198,167,NULL,NULL,NULL,NULL,NULL),(3,187,199,168,NULL,NULL,NULL,NULL,NULL);
++INSERT INTO `civicrm_loc_block` (`id`, `address_id`, `email_id`, `phone_id`, `im_id`, `address_2_id`, `email_2_id`, `phone_2_id`, `im_2_id`) VALUES (1,170,194,159,NULL,NULL,NULL,NULL,NULL),(2,171,195,160,NULL,NULL,NULL,NULL,NULL),(3,172,196,161,NULL,NULL,NULL,NULL,NULL);
  /*!40000 ALTER TABLE `civicrm_loc_block` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -888,7 -888,7 +888,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_membership` WRITE;
  /*!40000 ALTER TABLE `civicrm_membership` DISABLE KEYS */;
- INSERT INTO `civicrm_membership` (`id`, `contact_id`, `membership_type_id`, `join_date`, `start_date`, `end_date`, `source`, `status_id`, `is_override`, `owner_membership_id`, `max_related`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES (1,111,1,'2015-05-08','2015-05-08','2017-05-07','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(2,171,2,'2015-05-07','2015-05-07','2016-05-06','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(3,63,1,'2015-05-06','2015-05-06','2017-05-05','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(4,145,2,'2015-05-05','2015-05-05','2016-05-04','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(5,175,2,'2014-05-04','2014-05-04','2015-05-03','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL),(6,5,2,'2015-05-03','2015-05-03','2016-05-02','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(7,9,1,'2015-05-02','2015-05-02','2017-05-01','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(8,117,2,'2015-05-01','2015-05-01','2016-04-30','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(9,97,1,'2015-04-30','2015-04-30','2017-04-29','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(10,178,2,'2014-04-29','2014-04-29','2015-04-28','Payment',4,NULL,NULL,NULL,0,0,NULL,NULL),(11,148,3,'2015-04-28','2015-04-28',NULL,'Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(12,71,2,'2015-04-27','2015-04-27','2016-04-26','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(13,116,1,'2015-04-26','2015-04-26','2017-04-25','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(14,161,2,'2015-04-25','2015-04-25','2016-04-24','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(15,24,2,'2014-04-24','2014-04-24','2015-04-23','Payment',4,NULL,NULL,NULL,0,0,NULL,NULL),(16,100,2,'2015-04-23','2015-04-23','2016-04-22','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(17,40,1,'2015-04-22','2015-04-22','2017-04-21','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(18,155,2,'2015-04-21','2015-04-21','2016-04-20','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(19,29,1,'2015-04-20','2015-04-20','2017-04-19','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(20,78,1,'2012-12-07','2012-12-07','2014-12-06','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(21,105,1,'2015-04-18','2015-04-18','2017-04-17','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(22,54,3,'2015-04-17','2015-04-17',NULL,'Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(23,135,1,'2015-04-16','2015-04-16','2017-04-15','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(24,189,2,'2015-04-15','2015-04-15','2016-04-14','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(25,126,2,'2014-04-14','2014-04-14','2015-04-13','Payment',4,NULL,NULL,NULL,0,0,NULL,NULL),(26,51,2,'2015-04-13','2015-04-13','2016-04-12','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(27,162,1,'2015-04-12','2015-04-12','2017-04-11','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(28,136,2,'2015-04-11','2015-04-11','2016-04-10','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(29,43,1,'2015-04-10','2015-04-10','2017-04-09','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(30,48,2,'2014-04-09','2014-04-09','2015-04-08','Payment',4,NULL,NULL,NULL,0,0,NULL,NULL);
 -INSERT INTO `civicrm_membership` (`id`, `contact_id`, `membership_type_id`, `join_date`, `start_date`, `end_date`, `source`, `status_id`, `is_override`, `owner_membership_id`, `max_related`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES (1,139,1,'2015-04-29','2015-04-29','2017-04-28','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(2,94,2,'2015-04-28','2015-04-28','2016-04-27','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(3,61,1,'2015-04-27','2015-04-27','2017-04-26','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(4,123,2,'2015-04-26','2015-04-26','2016-04-25','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(5,79,1,'2013-03-28','2013-03-28','2015-03-27','Payment',3,NULL,NULL,NULL,0,0,NULL,NULL),(6,150,2,'2015-04-24','2015-04-24','2016-04-23','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(7,147,1,'2015-04-23','2015-04-23','2017-04-22','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(8,82,2,'2015-04-22','2015-04-22','2016-04-21','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(9,36,1,'2015-04-21','2015-04-21','2017-04-20','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(10,184,2,'2014-04-20','2014-04-20','2015-04-19','Check',4,NULL,NULL,NULL,0,0,NULL,NULL),(11,26,3,'2015-04-19','2015-04-19',NULL,'Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(12,39,2,'2015-04-18','2015-04-18','2016-04-17','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(13,76,1,'2015-04-17','2015-04-17','2017-04-16','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(14,130,2,'2015-04-16','2015-04-16','2016-04-15','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(15,54,2,'2014-04-15','2014-04-15','2015-04-14','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL),(16,16,2,'2015-04-14','2015-04-14','2016-04-13','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(17,102,1,'2015-04-13','2015-04-13','2017-04-12','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(18,151,2,'2015-04-12','2015-04-12','2016-04-11','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(19,99,1,'2015-04-11','2015-04-11','2017-04-10','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(20,181,2,'2014-04-10','2014-04-10','2015-04-09','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL),(21,200,1,'2015-04-09','2015-04-09','2017-04-08','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(22,3,3,'2015-04-08','2015-04-08',NULL,'Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(23,108,1,'2015-04-07','2015-04-07','2017-04-06','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(24,179,2,'2015-04-06','2015-04-06','2016-04-05','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(25,183,1,'2012-10-19','2012-10-19','2014-10-18','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(26,20,2,'2015-04-04','2015-04-04','2016-04-03','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(27,125,1,'2015-04-03','2015-04-03','2017-04-02','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(28,34,2,'2015-04-02','2015-04-02','2016-04-01','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(29,174,1,'2015-04-01','2015-04-01','2017-03-31','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(30,18,2,'2014-03-31','2014-03-31','2015-03-30','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL);
++INSERT INTO `civicrm_membership` (`id`, `contact_id`, `membership_type_id`, `join_date`, `start_date`, `end_date`, `source`, `status_id`, `is_override`, `owner_membership_id`, `max_related`, `is_test`, `is_pay_later`, `contribution_recur_id`, `campaign_id`) VALUES (1,153,1,'2015-05-10','2015-05-10','2017-05-09','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(2,85,2,'2015-05-09','2015-05-09','2016-05-08','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(3,21,1,'2015-05-08','2015-05-08','2017-05-07','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(4,156,2,'2015-05-07','2015-05-07','2016-05-06','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(5,123,2,'2014-05-06','2014-05-06','2015-05-05','Payment',4,NULL,NULL,NULL,0,0,NULL,NULL),(6,136,2,'2015-05-05','2015-05-05','2016-05-04','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(7,73,1,'2015-05-04','2015-05-04','2017-05-03','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(8,60,2,'2015-05-03','2015-05-03','2016-05-02','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(9,3,1,'2015-05-02','2015-05-02','2017-05-01','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(10,124,2,'2014-05-01','2014-05-01','2015-04-30','Check',4,NULL,NULL,NULL,0,0,NULL,NULL),(11,117,3,'2015-04-30','2015-04-30',NULL,'Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(12,4,2,'2015-04-29','2015-04-29','2016-04-28','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(13,58,1,'2015-04-28','2015-04-28','2017-04-27','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(14,130,2,'2015-04-27','2015-04-27','2016-04-26','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(15,54,1,'2013-01-18','2013-01-18','2015-01-17','Donation',3,NULL,NULL,NULL,0,0,NULL,NULL),(16,42,2,'2015-04-25','2015-04-25','2016-04-24','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(17,160,1,'2015-04-24','2015-04-24','2017-04-23','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(18,167,2,'2015-04-23','2015-04-23','2016-04-22','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(19,75,1,'2015-04-22','2015-04-22','2017-04-21','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(20,132,2,'2014-04-21','2014-04-21','2015-04-20','Payment',4,NULL,NULL,NULL,0,0,NULL,NULL),(21,102,1,'2015-04-20','2015-04-20','2017-04-19','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(22,141,3,'2015-04-19','2015-04-19',NULL,'Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(23,96,1,'2015-04-18','2015-04-18','2017-04-17','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(24,108,2,'2015-04-17','2015-04-17','2016-04-16','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(25,144,1,'2012-10-30','2012-10-30','2014-10-29','Donation',3,NULL,NULL,NULL,0,0,NULL,NULL),(26,200,2,'2015-04-15','2015-04-15','2016-04-14','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(27,97,1,'2015-04-14','2015-04-14','2017-04-13','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(28,180,2,'2015-04-13','2015-04-13','2016-04-12','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(29,110,1,'2015-04-12','2015-04-12','2017-04-11','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(30,47,1,'2012-09-20','2012-09-20','2014-09-19','Check',3,NULL,NULL,NULL,0,0,NULL,NULL);
  /*!40000 ALTER TABLE `civicrm_membership` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -908,7 -908,7 +908,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_membership_log` WRITE;
  /*!40000 ALTER TABLE `civicrm_membership_log` DISABLE KEYS */;
- INSERT INTO `civicrm_membership_log` (`id`, `membership_id`, `status_id`, `start_date`, `end_date`, `modified_id`, `modified_date`, `membership_type_id`, `max_related`) VALUES (1,6,1,'2015-05-03','2016-05-02',5,'2015-05-08',2,NULL),(2,7,1,'2015-05-02','2017-05-01',9,'2015-05-08',1,NULL),(3,15,4,'2014-04-24','2015-04-23',24,'2015-05-08',2,NULL),(4,19,1,'2015-04-20','2017-04-19',29,'2015-05-08',1,NULL),(5,17,1,'2015-04-22','2017-04-21',40,'2015-05-08',1,NULL),(6,29,1,'2015-04-10','2017-04-09',43,'2015-05-08',1,NULL),(7,30,4,'2014-04-09','2015-04-08',48,'2015-05-08',2,NULL),(8,26,1,'2015-04-13','2016-04-12',51,'2015-05-08',2,NULL),(9,22,1,'2015-04-17',NULL,54,'2015-05-08',3,NULL),(10,3,1,'2015-05-06','2017-05-05',63,'2015-05-08',1,NULL),(11,12,1,'2015-04-27','2016-04-26',71,'2015-05-08',2,NULL),(12,20,3,'2012-12-07','2014-12-06',78,'2015-05-08',1,NULL),(13,9,1,'2015-04-30','2017-04-29',97,'2015-05-08',1,NULL),(14,16,1,'2015-04-23','2016-04-22',100,'2015-05-08',2,NULL),(15,21,1,'2015-04-18','2017-04-17',105,'2015-05-08',1,NULL),(16,1,1,'2015-05-08','2017-05-07',111,'2015-05-08',1,NULL),(17,13,1,'2015-04-26','2017-04-25',116,'2015-05-08',1,NULL),(18,8,1,'2015-05-01','2016-04-30',117,'2015-05-08',2,NULL),(19,25,4,'2014-04-14','2015-04-13',126,'2015-05-08',2,NULL),(20,23,1,'2015-04-16','2017-04-15',135,'2015-05-08',1,NULL),(21,28,1,'2015-04-11','2016-04-10',136,'2015-05-08',2,NULL),(22,4,1,'2015-05-05','2016-05-04',145,'2015-05-08',2,NULL),(23,11,1,'2015-04-28',NULL,148,'2015-05-08',3,NULL),(24,18,1,'2015-04-21','2016-04-20',155,'2015-05-08',2,NULL),(25,14,1,'2015-04-25','2016-04-24',161,'2015-05-08',2,NULL),(26,27,1,'2015-04-12','2017-04-11',162,'2015-05-08',1,NULL),(27,2,1,'2015-05-07','2016-05-06',171,'2015-05-08',2,NULL),(28,5,4,'2014-05-04','2015-05-03',175,'2015-05-08',2,NULL),(29,10,4,'2014-04-29','2015-04-28',178,'2015-05-08',2,NULL),(30,24,1,'2015-04-15','2016-04-14',189,'2015-05-08',2,NULL);
 -INSERT INTO `civicrm_membership_log` (`id`, `membership_id`, `status_id`, `start_date`, `end_date`, `modified_id`, `modified_date`, `membership_type_id`, `max_related`) VALUES (1,22,1,'2015-04-08',NULL,3,'2015-04-29',3,NULL),(2,16,1,'2015-04-14','2016-04-13',16,'2015-04-29',2,NULL),(3,30,4,'2014-03-31','2015-03-30',18,'2015-04-29',2,NULL),(4,26,1,'2015-04-04','2016-04-03',20,'2015-04-29',2,NULL),(5,11,1,'2015-04-19',NULL,26,'2015-04-29',3,NULL),(6,28,1,'2015-04-02','2016-04-01',34,'2015-04-29',2,NULL),(7,9,1,'2015-04-21','2017-04-20',36,'2015-04-29',1,NULL),(8,12,1,'2015-04-18','2016-04-17',39,'2015-04-29',2,NULL),(9,15,4,'2014-04-15','2015-04-14',54,'2015-04-29',2,NULL),(10,3,1,'2015-04-27','2017-04-26',61,'2015-04-29',1,NULL),(11,13,1,'2015-04-17','2017-04-16',76,'2015-04-29',1,NULL),(12,5,3,'2013-03-28','2015-03-27',79,'2015-04-29',1,NULL),(13,8,1,'2015-04-22','2016-04-21',82,'2015-04-29',2,NULL),(14,2,1,'2015-04-28','2016-04-27',94,'2015-04-29',2,NULL),(15,19,1,'2015-04-11','2017-04-10',99,'2015-04-29',1,NULL),(16,17,1,'2015-04-13','2017-04-12',102,'2015-04-29',1,NULL),(17,23,1,'2015-04-07','2017-04-06',108,'2015-04-29',1,NULL),(18,4,1,'2015-04-26','2016-04-25',123,'2015-04-29',2,NULL),(19,27,1,'2015-04-03','2017-04-02',125,'2015-04-29',1,NULL),(20,14,1,'2015-04-16','2016-04-15',130,'2015-04-29',2,NULL),(21,1,1,'2015-04-29','2017-04-28',139,'2015-04-29',1,NULL),(22,7,1,'2015-04-23','2017-04-22',147,'2015-04-29',1,NULL),(23,6,1,'2015-04-24','2016-04-23',150,'2015-04-29',2,NULL),(24,18,1,'2015-04-12','2016-04-11',151,'2015-04-29',2,NULL),(25,29,1,'2015-04-01','2017-03-31',174,'2015-04-29',1,NULL),(26,24,1,'2015-04-06','2016-04-05',179,'2015-04-29',2,NULL),(27,20,4,'2014-04-10','2015-04-09',181,'2015-04-29',2,NULL),(28,25,3,'2012-10-19','2014-10-18',183,'2015-04-29',1,NULL),(29,10,4,'2014-04-20','2015-04-19',184,'2015-04-29',2,NULL),(30,21,1,'2015-04-09','2017-04-08',200,'2015-04-29',1,NULL);
++INSERT INTO `civicrm_membership_log` (`id`, `membership_id`, `status_id`, `start_date`, `end_date`, `modified_id`, `modified_date`, `membership_type_id`, `max_related`) VALUES (1,9,1,'2015-05-02','2017-05-01',3,'2015-05-10',1,NULL),(2,12,1,'2015-04-29','2016-04-28',4,'2015-05-10',2,NULL),(3,3,1,'2015-05-08','2017-05-07',21,'2015-05-10',1,NULL),(4,16,1,'2015-04-25','2016-04-24',42,'2015-05-10',2,NULL),(5,30,3,'2012-09-20','2014-09-19',47,'2015-05-10',1,NULL),(6,15,3,'2013-01-18','2015-01-17',54,'2015-05-10',1,NULL),(7,13,1,'2015-04-28','2017-04-27',58,'2015-05-10',1,NULL),(8,8,1,'2015-05-03','2016-05-02',60,'2015-05-10',2,NULL),(9,7,1,'2015-05-04','2017-05-03',73,'2015-05-10',1,NULL),(10,19,1,'2015-04-22','2017-04-21',75,'2015-05-10',1,NULL),(11,2,1,'2015-05-09','2016-05-08',85,'2015-05-10',2,NULL),(12,23,1,'2015-04-18','2017-04-17',96,'2015-05-10',1,NULL),(13,27,1,'2015-04-14','2017-04-13',97,'2015-05-10',1,NULL),(14,21,1,'2015-04-20','2017-04-19',102,'2015-05-10',1,NULL),(15,24,1,'2015-04-17','2016-04-16',108,'2015-05-10',2,NULL),(16,29,1,'2015-04-12','2017-04-11',110,'2015-05-10',1,NULL),(17,11,1,'2015-04-30',NULL,117,'2015-05-10',3,NULL),(18,5,4,'2014-05-06','2015-05-05',123,'2015-05-10',2,NULL),(19,10,4,'2014-05-01','2015-04-30',124,'2015-05-10',2,NULL),(20,14,1,'2015-04-27','2016-04-26',130,'2015-05-10',2,NULL),(21,20,4,'2014-04-21','2015-04-20',132,'2015-05-10',2,NULL),(22,6,1,'2015-05-05','2016-05-04',136,'2015-05-10',2,NULL),(23,22,1,'2015-04-19',NULL,141,'2015-05-10',3,NULL),(24,25,3,'2012-10-30','2014-10-29',144,'2015-05-10',1,NULL),(25,1,1,'2015-05-10','2017-05-09',153,'2015-05-10',1,NULL),(26,4,1,'2015-05-07','2016-05-06',156,'2015-05-10',2,NULL),(27,17,1,'2015-04-24','2017-04-23',160,'2015-05-10',1,NULL),(28,18,1,'2015-04-23','2016-04-22',167,'2015-05-10',2,NULL),(29,28,1,'2015-04-13','2016-04-12',180,'2015-05-10',2,NULL),(30,26,1,'2015-04-15','2016-04-14',200,'2015-05-10',2,NULL);
  /*!40000 ALTER TABLE `civicrm_membership_log` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -948,6 -948,7 +948,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_menu` WRITE;
  /*!40000 ALTER TABLE `civicrm_menu` DISABLE KEYS */;
 -INSERT INTO `civicrm_menu` (`id`, `domain_id`, `path`, `path_arguments`, `title`, `access_callback`, `access_arguments`, `page_callback`, `page_arguments`, `breadcrumb`, `return_url`, `return_url_args`, `component_id`, `is_active`, `is_public`, `is_exposed`, `is_ssl`, `weight`, `type`, `page_type`, `skipBreadcrumb`) VALUES (1,1,'civicrm/upgrade',NULL,'Upgrade CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Upgrade_Page_Upgrade\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(2,1,'civicrm/export',NULL,'Download Errors','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(3,1,'civicrm/export/contact',NULL,'Export Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,NULL),(4,1,'civicrm/admin/options/acl_role',NULL,'ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(5,1,'civicrm/acl',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Page_ACL\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(6,1,'civicrm/acl/entityrole',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Page_EntityRole\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(7,1,'civicrm/acl/basic',NULL,'ACL','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_ACL_Page_ACLBasic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(8,1,'civicrm/standalone/register',NULL,'Registration Page','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Standalone_Form_Register\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(9,1,'civicrm/file',NULL,'Browse Uploaded files','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_Page_File\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(10,1,'civicrm/file/delete',NULL,'Delete File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:17:\"CRM_Core_BAO_File\";i:1;s:16:\"deleteAttachment\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:21:\"Browse Uploaded files\";s:3:\"url\";s:21:\"/civicrm/file?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(11,1,'civicrm/friend',NULL,'Tell a Friend','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:15:\"CRM_Friend_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(12,1,'civicrm/logout',NULL,'Log out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:6:\"logout\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,9999,1,1,NULL),(13,1,'civicrm/i18n',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"translate CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_I18n_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(14,1,'civicrm/ajax/attachment',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:29:\"CRM_Core_Page_AJAX_Attachment\";i:1;s:10:\"attachFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(15,1,'civicrm/api',NULL,'CiviCRM API','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_APIExplorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(16,1,'civicrm/ajax/apiexample',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:14:\"getExampleFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(17,1,'civicrm/ajax/apidoc',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:6:\"getDoc\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(18,1,'civicrm/ajax/rest',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:4:\"ajax\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(19,1,'civicrm/api/json',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:8:\"ajaxJson\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"CiviCRM API\";s:3:\"url\";s:20:\"/civicrm/api?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(20,1,'civicrm/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:12:\"loadTemplate\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(21,1,'civicrm/ajax/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(22,1,'civicrm/contribute/ajax/tableview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(23,1,'civicrm/payment/ipn',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Core_Payment\";i:1;s:9:\"handleIPN\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&amp;action=add\";}}',NULL,NULL,2,NULL,1,NULL,0,1,1,0,NULL),(24,1,'civicrm/batch',NULL,'Batch Data Entry','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(25,1,'civicrm/batch/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Batch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(26,1,'civicrm/batch/entry',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Entry\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(27,1,'civicrm/ajax/batch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:9:\"batchSave\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(28,1,'civicrm/ajax/batchlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:12:\"getBatchList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(29,1,'civicrm/ajax/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Page_AJAX\";i:1;s:3:\"run\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(30,1,'civicrm/dev/qunit',NULL,'QUnit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_Core_Page_QUnit\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(31,1,'civicrm/profile-editor/schema',NULL,'ProfileEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:25:\"CRM_UF_Page_ProfileEditor\";i:1;s:13:\"getSchemaJSON\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(32,1,'civicrm/a',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"\\Civi\\Angular\\Page\\Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(33,1,'civicrm/ajax/angular-modules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"\\Civi\\Angular\\Page\\Modules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(34,1,'civicrm/ajax/recurringentity/update-mode',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:34:\"CRM_Core_Page_AJAX_RecurringEntity\";i:1;s:10:\"updateMode\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(35,1,'civicrm/recurringentity/preview',NULL,'Confirm dates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Core_Page_RecurringEntityPreview\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(36,1,'civicrm/ajax/l10n-js',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Resources\";i:1;s:20:\"outputLocalizationJS\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(37,1,'civicrm/activity','action=add&context=standalone','New Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(38,1,'civicrm/activity/view',NULL,'View Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Form_ActivityView\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(39,1,'civicrm/ajax/activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:15:\"getCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(40,1,'civicrm/ajax/globalrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseGlobalRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(41,1,'civicrm/ajax/clientrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseClientRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(42,1,'civicrm/ajax/caseroles',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:12:\"getCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(43,1,'civicrm/ajax/contactactivity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:18:\"getContactActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(44,1,'civicrm/ajax/activity/convert',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:21:\"convertToCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL),(45,1,'civicrm/activity/search',NULL,'Find Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Controller_Search\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(46,1,'civicrm/profile',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL),(47,1,'civicrm/profile/create',NULL,'CiviCRM Profile Create','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL),(48,1,'civicrm/profile/view',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Profile_Page_View\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(49,1,'civicrm/admin/custom/group',NULL,'Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(50,1,'civicrm/admin/custom/group/field',NULL,'Custom Data Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,11,1,0,0),(51,1,'civicrm/admin/custom/group/field/option',NULL,'Custom Field - Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Custom_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(52,1,'civicrm/admin/custom/group/field/add',NULL,'Custom Field - Add','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(53,1,'civicrm/admin/custom/group/field/update',NULL,'Custom Field - Edit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(54,1,'civicrm/admin/custom/group/field/move',NULL,'Custom Field - Move','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Custom_Form_MoveField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(55,1,'civicrm/admin/custom/group/field/changetype',NULL,'Custom Field - Change Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Custom_Form_ChangeFieldType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(56,1,'civicrm/admin/uf/group',NULL,'Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL),(57,1,'civicrm/admin/uf/group/field',NULL,'CiviCRM Profile Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,21,1,0,0),(58,1,'civicrm/admin/uf/group/field/add',NULL,'Add Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,22,1,0,NULL),(59,1,'civicrm/admin/uf/group/field/update',NULL,'Edit Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,23,1,0,NULL),(60,1,'civicrm/admin/uf/group/add',NULL,'New CiviCRM Profile','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,24,1,0,NULL),(61,1,'civicrm/admin/uf/group/update',NULL,'Profile Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,25,1,0,NULL),(62,1,'civicrm/admin/uf/group/setting',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_UF_Form_AdvanceSetting\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,NULL),(63,1,'civicrm/admin/tag',NULL,'Tags (Categories)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,25,1,0,NULL),(64,1,'civicrm/admin/tag/add','action=add','New Tag','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Tag\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Tags (Categories)\";s:3:\"url\";s:26:\"/civicrm/admin/tag?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(65,1,'civicrm/admin/options/activity_type',NULL,'Activity Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL),(66,1,'civicrm/admin/reltype',NULL,'Relationship Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_RelationshipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,35,1,0,NULL),(67,1,'civicrm/admin/options/subtype',NULL,'Contact Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_ContactType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL),(68,1,'civicrm/admin/options/gender',NULL,'Gender Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,45,1,0,NULL),(69,1,'civicrm/admin/options/individual_prefix',NULL,'Individual Prefixes (Ms, Mr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,50,1,0,NULL),(70,1,'civicrm/admin/options/individual_suffix',NULL,'Individual Suffixes (Jr, Sr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,55,1,0,NULL),(71,1,'civicrm/admin/locationType',NULL,'Location Types (Home, Work...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LocationType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,60,1,0,NULL),(72,1,'civicrm/admin/options/website_type',NULL,'Website Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,65,1,0,NULL),(73,1,'civicrm/admin/options/instant_messenger_service',NULL,'Instant Messenger Services','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,70,1,0,NULL),(74,1,'civicrm/admin/options/mobile_provider',NULL,'Mobile Phone Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,75,1,0,NULL),(75,1,'civicrm/admin/options/phone_type',NULL,'Phone Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,80,1,0,NULL),(76,1,'civicrm/admin/setting/preferences/display',NULL,'Display Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Display\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,90,1,0,NULL),(77,1,'civicrm/admin/setting/search',NULL,'Search Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Form_Setting_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,95,1,0,NULL),(78,1,'civicrm/admin/setting/preferences/date',NULL,'View Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Page_PreferencesDate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(79,1,'civicrm/admin/menu',NULL,'Navigation Menu','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Navigation\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,100,1,0,NULL),(80,1,'civicrm/admin/options/wordreplacements',NULL,'Word Replacements','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_WordReplacements\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,105,1,0,NULL),(81,1,'civicrm/admin/options/custom_search',NULL,'Manage Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,110,1,0,NULL),(82,1,'civicrm/admin/domain','action=update','Organization Address and Contact Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contact_Form_Domain\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(83,1,'civicrm/admin/options/from_email_address',NULL,'From Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL),(84,1,'civicrm/admin/messageTemplates',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:22:\"edit message templates\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_MessageTemplates\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL),(85,1,'civicrm/admin/messageTemplates/add',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:22:\"edit message templates\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_MessageTemplates\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Message Templates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,262,1,0,NULL),(86,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ScheduleReminders\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL),(87,1,'civicrm/admin/weight',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_Weight\";i:1;s:8:\"fixOrder\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(88,1,'civicrm/admin/options/preferred_communication_method',NULL,'Preferred Communication Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,50,1,0,NULL),(89,1,'civicrm/admin/labelFormats',NULL,'Label Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,60,1,0,NULL),(90,1,'civicrm/admin/pdfFormats',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,70,1,0,NULL),(91,1,'civicrm/admin/options/communication_style',NULL,'Communication Style Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,75,1,0,NULL),(92,1,'civicrm/admin/options/email_greeting',NULL,'Email Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,80,1,0,NULL),(93,1,'civicrm/admin/options/postal_greeting',NULL,'Postal Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,90,1,0,NULL),(94,1,'civicrm/admin/options/addressee',NULL,'Addressee Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,100,1,0,NULL),(95,1,'civicrm/admin/setting/localization',NULL,'Languages, Currency, Locations','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Setting_Localization\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(96,1,'civicrm/admin/setting/preferences/address',NULL,'Address Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Address\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL),(97,1,'civicrm/admin/setting/date',NULL,'Date Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Date\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL),(98,1,'civicrm/admin/options/languages',NULL,'Preferred Languages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL),(99,1,'civicrm/admin/access',NULL,'Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_Access\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(100,1,'civicrm/admin/access/wp-permissions',NULL,'WordPress Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_ACL_Form_WordPress_Permissions\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Access Control\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(101,1,'civicrm/admin/synchUser',NULL,'Synchronize Users to Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_CMSUser\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL),(102,1,'civicrm/admin/configtask',NULL,'Configuration Checklist','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_ConfigTaskList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}','civicrm/admin/configtask',NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(103,1,'civicrm/admin/setting/component',NULL,'Enable CiviCRM Components','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(104,1,'civicrm/admin/extensions',NULL,'Manage Extensions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Extensions\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,120,1,0,NULL),(105,1,'civicrm/admin/extensions/upgrade',NULL,'Database Upgrades','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ExtensionsUpgrade\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Manage Extensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(106,1,'civicrm/admin/setting/smtp',NULL,'Outbound Email Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Smtp\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL),(107,1,'civicrm/admin/paymentProcessor',NULL,'Payment Processor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_PaymentProcessor\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL),(108,1,'civicrm/admin/setting/mapping',NULL,'Mapping and Geocoding','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_Setting_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL),(109,1,'civicrm/admin/setting/misc',NULL,'Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Setting_Miscellaneous\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,50,1,0,NULL),(110,1,'civicrm/admin/setting/path',NULL,'Directories','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Path\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,60,1,0,NULL),(111,1,'civicrm/admin/setting/url',NULL,'Resource URLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_Setting_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,70,1,0,NULL),(112,1,'civicrm/admin/setting/updateConfigBackend',NULL,'Cleanup Caches and Update Paths','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Admin_Form_Setting_UpdateConfigBackend\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,80,1,0,NULL),(113,1,'civicrm/admin/setting/uf',NULL,'CMS Database Integration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Setting_UF\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,90,1,0,NULL),(114,1,'civicrm/admin/options/safe_file_extension',NULL,'Safe File Extension Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,100,1,0,NULL),(115,1,'civicrm/admin/options',NULL,'Option Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,105,1,0,NULL),(116,1,'civicrm/admin/mapping',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,110,1,0,NULL),(117,1,'civicrm/admin/setting/debug',NULL,'Debugging','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Debugging\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,120,1,0,NULL),(118,1,'civicrm/admin/setting/preferences/multisite',NULL,'Multi Site Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Preferences_Multisite\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,130,1,0,NULL),(119,1,'civicrm/admin/setting/preferences/campaign',NULL,'CiviCampaign Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Preferences_Campaign\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(120,1,'civicrm/admin/setting/preferences/event',NULL,'CiviEvent Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Preferences_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,420,1,0,NULL),(121,1,'civicrm/admin/setting/preferences/mailing',NULL,'CiviMail Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Mailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,430,1,0,NULL),(122,1,'civicrm/admin/setting/preferences/member',NULL,'CiviMember Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Admin_Form_Preferences_Member\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL),(123,1,'civicrm/admin/runjobs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:20:\"executeScheduledJobs\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(124,1,'civicrm/admin/job',NULL,'Scheduled Jobs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1370,1,0,NULL),(125,1,'civicrm/admin/joblog',NULL,'Scheduled Jobs Log','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_JobLog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1380,1,0,NULL),(126,1,'civicrm/admin/options/grant_type',NULL,'Grant Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,385,1,0,NULL),(127,1,'civicrm/admin/paymentProcessorType',NULL,'Payment Processor Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Page_PaymentProcessorType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL),(128,1,'civicrm/admin',NULL,'Administer CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Admin_Page_Admin\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,9000,1,1,NULL),(129,1,'civicrm/ajax/menujs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:17:\"getNavigationMenu\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(130,1,'civicrm/ajax/menu',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:17:\"getNavigationList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL),(131,1,'civicrm/ajax/menutree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:8:\"menuTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL),(132,1,'civicrm/ajax/statusmsg',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"getStatusMsg\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(133,1,'civicrm/ajax/mergeTags',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:9:\"mergeTags\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(134,1,'civicrm/admin/price',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL),(135,1,'civicrm/admin/price/add','action=add','New Price Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(136,1,'civicrm/admin/price/field',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0),(137,1,'civicrm/admin/price/field/option',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(138,1,'civicrm/ajax/mergeTagList',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"mergeTagList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(139,1,'civicrm/admin/tplstrings/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Persistent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(140,1,'civicrm/admin/tplstrings',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Persistent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(141,1,'civicrm/ajax/mapping',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:11:\"mappingList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(142,1,'civicrm/ajax/mapping1',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"mappingList1\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(143,1,'civicrm/admin/sms/provider',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Provider\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,500,1,0,NULL),(144,1,'civicrm/sms/send',NULL,'New Mass SMS','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_SMS_Controller_Send\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,610,1,1,NULL),(145,1,'civicrm/sms/callback',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Callback\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(146,1,'civicrm/admin/badgelayout','action=browse','Event Name Badge Layouts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Page_Layout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,399,1,0,NULL),(147,1,'civicrm/admin/badgelayout/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Form_Layout\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?reset=1&amp;action=browse\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(148,1,'civicrm/custom/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Custom_Form_CustomData\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(149,1,'civicrm',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:0:{}',NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,NULL),(150,1,'civicrm/dashboard',NULL,'CiviCRM Home','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,NULL),(151,1,'civicrm/dashlet',NULL,'CiviCRM Dashlets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Page_Dashlet\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,1,NULL),(152,1,'civicrm/contact/search',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,10,1,1,NULL),(153,1,'civicrm/contact/image',NULL,'Process Uploaded Images','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"CRM_Contact_BAO_Contact\";i:1;s:12:\"processImage\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(154,1,'civicrm/contact/imagefile',NULL,'Get Image File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_ImageFile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(155,1,'civicrm/contact/search/basic',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(156,1,'civicrm/contact/search/advanced',NULL,'Advanced Search','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=512\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,12,1,1,NULL),(157,1,'civicrm/contact/search/builder',NULL,'Search Builder','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:9:\"mode=8192\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,14,1,1,NULL),(158,1,'civicrm/contact/search/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:10:\"mode=16384\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(159,1,'civicrm/contact/search/custom/list',NULL,'Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Page_CustomSearch\";','s:10:\"mode=16384\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,16,1,1,NULL),(160,1,'civicrm/contact/add',NULL,'New Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(161,1,'civicrm/contact/add/individual','ct=Individual','New Individual','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(162,1,'civicrm/contact/add/household','ct=Household','New Household','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(163,1,'civicrm/contact/add/organization','ct=Organization','New Organization','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(164,1,'civicrm/contact/relatedcontact',NULL,'Edit Related Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_RelatedContact\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(165,1,'civicrm/contact/merge',NULL,'Merge Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Contact_Form_Merge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(166,1,'civicrm/contact/email',NULL,'Email a Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(167,1,'civicrm/contact/map',NULL,'Map Location(s)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_Map\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(168,1,'civicrm/contact/map/event',NULL,'Map Event Location','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_Task_Map_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Map Location(s)\";s:3:\"url\";s:28:\"/civicrm/contact/map?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(169,1,'civicrm/contact/view','cid=%%cid%%','Contact Summary','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Summary\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(170,1,'civicrm/contact/view/delete',NULL,'Delete Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(171,1,'civicrm/contact/view/activity','show=1,cid=%%cid%%','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:21:\"CRM_Activity_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(172,1,'civicrm/activity/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(173,1,'civicrm/activity/email/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(174,1,'civicrm/activity/pdf/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(175,1,'civicrm/contact/view/rel','cid=%%cid%%','Relationships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_Relationship\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(176,1,'civicrm/contact/view/group','cid=%%cid%%','Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_GroupContact\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(177,1,'civicrm/contact/view/smartgroup','cid=%%cid%%','Smart Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:39:\"CRM_Contact_Page_View_ContactSmartGroup\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(178,1,'civicrm/contact/view/sunlight',NULL,'Sunlight','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:30:\"CRM_Contact_Page_View_Sunlight\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(179,1,'civicrm/contact/view/note','cid=%%cid%%','Notes','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:26:\"CRM_Contact_Page_View_Note\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(180,1,'civicrm/contact/view/tag','cid=%%cid%%','Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(181,1,'civicrm/contact/view/cd',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:32:\"CRM_Contact_Page_View_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(182,1,'civicrm/contact/view/cd/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Form_CustomData\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(183,1,'civicrm/contact/view/vcard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Vcard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(184,1,'civicrm/contact/view/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Print\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(185,1,'civicrm/contact/view/log',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Log\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(186,1,'civicrm/user',NULL,'Contact Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Page_View_UserDashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL),(187,1,'civicrm/dashlet/activity',NULL,'Activity Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_Activity\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(188,1,'civicrm/dashlet/blog',NULL,'CiviCRM Blog','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Dashlet_Page_Blog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(189,1,'civicrm/ajax/relation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"relationship\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL),(190,1,'civicrm/ajax/groupTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"groupTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(191,1,'civicrm/ajax/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:11:\"customField\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(192,1,'civicrm/ajax/customvalue',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:17:\"deleteCustomValue\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL),(193,1,'civicrm/ajax/cmsuser',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"checkUserName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(194,1,'civicrm/ajax/checkemail',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactEmail\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(195,1,'civicrm/ajax/checkphone',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactPhone\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(196,1,'civicrm/ajax/subtype',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"buildSubTypes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(197,1,'civicrm/ajax/dashboard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"dashboard\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL),(198,1,'civicrm/ajax/signature',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"getSignature\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(199,1,'civicrm/ajax/pdfFormat',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"pdfFormat\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(200,1,'civicrm/ajax/paperSize',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"paperSize\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(201,1,'civicrm/ajax/contactref',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:31:\"access contact reference fields\";i:1;s:15:\" access CiviCRM\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"contactReference\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(202,1,'civicrm/dashlet/myCases',NULL,'Case Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Dashlet_Page_MyCases\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(203,1,'civicrm/dashlet/allCases',NULL,'All Cases Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_AllCases\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(204,1,'civicrm/dashlet/casedashboard',NULL,'Case Dashboard Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Dashlet_Page_CaseDashboard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(205,1,'civicrm/contact/deduperules',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer dedupe rules\";i:1;s:24:\"merge duplicate contacts\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Page_DedupeRules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,105,1,0,NULL),(206,1,'civicrm/contact/dedupefind',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Page_DedupeFind\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(207,1,'civicrm/ajax/dedupefind',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:10:\"getDedupes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(208,1,'civicrm/dedupe/exception',NULL,'Dedupe Exceptions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Page_DedupeException\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,110,1,0,NULL),(209,1,'civicrm/ajax/dedupeRules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"buildDedupeRules\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(210,1,'civicrm/contact/view/useradd','cid=%%cid%%','Add User','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Useradd\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(211,1,'civicrm/ajax/markSelection',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:22:\"selectUnselectContacts\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(212,1,'civicrm/activity/sms/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_SMS\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(213,1,'civicrm/ajax/contactrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"view my contact\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:23:\"getContactRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(214,1,'civicrm/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(215,1,'civicrm/pcp/campaign',NULL,'Setup a Personal Campaign Page - Account Information','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL),(216,1,'civicrm/pcp/info',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_PCP_Page_PCPInfo\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(217,1,'civicrm/admin/pcp','context=contribute','Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Page_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,362,1,0,NULL),(218,1,'civicrm/import',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,400,1,1,NULL),(219,1,'civicrm/import/contact',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,410,1,1,NULL),(220,1,'civicrm/import/activity',NULL,'Import Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,420,1,1,NULL),(221,1,'civicrm/import/custom','id=%%id%%','Import Multi-value Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Custom_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,420,1,1,NULL),(222,1,'civicrm/ajax/status',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Contact_Import_Page_AJAX\";i:1;s:6:\"status\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(223,1,'civicrm/group',NULL,'Manage Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Page_Group\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,30,1,1,NULL),(224,1,'civicrm/group/search',NULL,'Group Members','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(225,1,'civicrm/group/add',NULL,'New Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(226,1,'civicrm/ajax/grouplist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Group_Page_AJAX\";i:1;s:12:\"getGroupList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(227,1,'civicrm/ajax/jqState',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:7:\"jqState\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(228,1,'civicrm/ajax/jqCounty',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:8:\"jqCounty\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(229,1,'civicrm/event/manage/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_PCP_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,540,1,1,NULL),(230,1,'civicrm/event/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL),(231,1,'civicrm/event/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,0,1,0,NULL),(232,1,'civicrm/event',NULL,'CiviEvent Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,800,1,1,NULL),(233,1,'civicrm/participant/add','action=add','Register New Participant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(234,1,'civicrm/event/info',NULL,'Event Information','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL),(235,1,'civicrm/event/register',NULL,'Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Controller_Registration\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,1,1,1,0,NULL),(236,1,'civicrm/event/confirm',NULL,'Confirm Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:46:\"CRM_Event_Form_Registration_ParticipantConfirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,1,1,1,0,NULL),(237,1,'civicrm/event/ical',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_ICalendar\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,0,1,0,NULL),(238,1,'civicrm/event/participant',NULL,'Event Participants List','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"view event participants\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Page_ParticipantListing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,0,1,0,NULL),(239,1,'civicrm/admin/event',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,370,1,0,NULL),(240,1,'civicrm/admin/eventTemplate',NULL,'Event Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Admin_Page_EventTemplate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,375,1,0,NULL),(241,1,'civicrm/admin/options/event_type',NULL,'Event Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,385,1,0,NULL),(242,1,'civicrm/admin/participant_status',NULL,'Participant Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Page_ParticipantStatusType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL),(243,1,'civicrm/admin/options/participant_role',NULL,'Participant Role','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,395,1,0,NULL),(244,1,'civicrm/admin/options/participant_listing',NULL,'Participant Listing Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,398,1,0,NULL),(245,1,'civicrm/admin/conference_slots','group=conference_slot','Conference Slot Labels','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,415,1,0,NULL),(246,1,'civicrm/event/search',NULL,'Find Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,810,1,1,NULL),(247,1,'civicrm/event/manage',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,820,1,1,NULL),(248,1,'civicrm/event/badge',NULL,'Print Event Name Badge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:25:\"CRM_Event_Form_Task_Badge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,1,1,0,NULL),(249,1,'civicrm/event/manage/settings',NULL,'Event Info and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,910,1,0,NULL),(250,1,'civicrm/event/manage/location',NULL,'Event Location','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:35:\"CRM_Event_Form_ManageEvent_Location\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,930,1,0,NULL),(251,1,'civicrm/event/manage/fee',NULL,'Event Fees','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_ManageEvent_Fee\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,920,1,0,NULL),(252,1,'civicrm/event/manage/registration',NULL,'Event Online Registration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:39:\"CRM_Event_Form_ManageEvent_Registration\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,930,1,0,NULL),(253,1,'civicrm/event/manage/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Friend_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,940,1,0,NULL),(254,1,'civicrm/event/manage/reminder',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:44:\"CRM_Event_Form_ManageEvent_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,950,1,0,NULL),(255,1,'civicrm/event/manage/repeat',NULL,'Repeat Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_ManageEvent_Repeat\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,960,1,0,NULL),(256,1,'civicrm/event/manage/conference',NULL,'Conference Slots','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:37:\"CRM_Event_Form_ManageEvent_Conference\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,950,1,0,NULL),(257,1,'civicrm/event/add','action=add','New Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,830,1,0,NULL),(258,1,'civicrm/event/import',NULL,'Import Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:23:\"edit event participants\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,840,1,1,NULL),(259,1,'civicrm/event/price',NULL,'Manage Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,850,1,1,NULL),(260,1,'civicrm/contact/view/participant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,4,1,0,NULL),(261,1,'civicrm/ajax/eventFee',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_Page_AJAX\";i:1;s:8:\"eventFee\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(262,1,'civicrm/ajax/locBlock',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:11:\"getLocBlock\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(263,1,'civicrm/ajax/event/add_participant_to_cart',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Event_Cart_Page_CheckoutAJAX\";i:1;s:23:\"add_participant_to_cart\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(264,1,'civicrm/ajax/event/remove_participant_from_cart',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Event_Cart_Page_CheckoutAJAX\";i:1;s:28:\"remove_participant_from_cart\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(265,1,'civicrm/event/add_to_cart',NULL,'Add Event To Cart','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:29:\"CRM_Event_Cart_Page_AddToCart\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL),(266,1,'civicrm/event/cart_checkout',NULL,'Cart Checkout','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:34:\"CRM_Event_Cart_Controller_Checkout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,1,1,1,0,NULL),(267,1,'civicrm/event/remove_from_cart',NULL,'Remove From Cart','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:34:\"CRM_Event_Cart_Page_RemoveFromCart\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL),(268,1,'civicrm/event/view_cart',NULL,'View Cart','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Event_Cart_Page_ViewCart\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL),(269,1,'civicrm/event/participant/feeselection',NULL,'Change Registration Selections','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:38:\"CRM_Event_Form_ParticipantFeeSelection\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:34:\"/civicrm/event/participant?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,1,1,0,NULL),(270,1,'civicrm/contribute',NULL,'CiviContribute Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,500,1,1,NULL),(271,1,'civicrm/contribute/add','action=add','New Contribution','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,1,NULL),(272,1,'civicrm/contribute/chart',NULL,'Contribution Summary - Chart View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(273,1,'civicrm/contribute/transact',NULL,'CiviContribute','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Controller_Contribution\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,1,NULL,1,0,1,0,NULL),(274,1,'civicrm/admin/contribute',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,360,1,0,NULL),(275,1,'civicrm/admin/contribute/settings',NULL,'Title and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_Settings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL),(276,1,'civicrm/admin/contribute/amount',NULL,'Contribution Amounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Amount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,410,1,0,NULL),(277,1,'civicrm/admin/contribute/membership',NULL,'Membership Section','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Member_Form_MembershipBlock\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,420,1,0,NULL),(278,1,'civicrm/admin/contribute/custom',NULL,'Include Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Custom\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,430,1,0,NULL),(279,1,'civicrm/admin/contribute/thankyou',NULL,'Thank-you and Receipting','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_ThankYou\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,430,1,0,NULL),(280,1,'civicrm/admin/contribute/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Friend_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,440,1,0,NULL),(281,1,'civicrm/admin/contribute/widget',NULL,'Configure Widget','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Widget\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,460,1,0,NULL),(282,1,'civicrm/admin/contribute/premium',NULL,'Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:44:\"CRM_Contribute_Form_ContributionPage_Premium\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,470,1,0,NULL),(283,1,'civicrm/admin/contribute/addProductToPage',NULL,'Add Products to This Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:47:\"CRM_Contribute_Form_ContributionPage_AddProduct\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,480,1,0,NULL),(284,1,'civicrm/admin/contribute/add','action=add','New Contribution Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Contribute_Controller_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(285,1,'civicrm/admin/contribute/managePremiums',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Page_ManagePremiums\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,365,1,0,NULL),(286,1,'civicrm/admin/financial/financialType',NULL,'Financial Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Page_FinancialType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,580,1,0,NULL),(287,1,'civicrm/payment','action=add','New Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Form_AdditionalPayment\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,1,NULL),(288,1,'civicrm/admin/financial/financialAccount',NULL,'Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_FinancialAccount\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,370,1,0,NULL),(289,1,'civicrm/admin/options/payment_instrument',NULL,'Payment Instruments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL),(290,1,'civicrm/admin/options/accept_creditcard',NULL,'Accepted Credit Cards','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,395,1,0,NULL),(291,1,'civicrm/admin/options/soft_credit_type',NULL,'Soft Credit Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(292,1,'civicrm/contact/view/contribution',NULL,'Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(293,1,'civicrm/contact/view/contributionrecur',NULL,'Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:37:\"CRM_Contribute_Page_ContributionRecur\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(294,1,'civicrm/contact/view/contribution/additionalinfo',NULL,'Additional Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:13:\"Contributions\";s:3:\"url\";s:42:\"/civicrm/contact/view/contribution?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(295,1,'civicrm/contribute/search',NULL,'Find Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,510,1,1,NULL),(296,1,'civicrm/contribute/searchBatch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Controller_SearchBatch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,588,1,1,NULL),(297,1,'civicrm/contribute/import',NULL,'Import Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"edit contributions\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,520,1,1,NULL),(298,1,'civicrm/contribute/manage',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,530,1,1,NULL),(299,1,'civicrm/contribute/additionalinfo',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,0,1,0,NULL),(300,1,'civicrm/ajax/permlocation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:23:\"getPermissionedLocation\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(301,1,'civicrm/contribute/unsubscribe',NULL,'Cancel Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_CancelSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(302,1,'civicrm/contribute/onbehalf',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_Contribution_OnBehalfOf\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(303,1,'civicrm/contribute/updatebilling',NULL,'Update Billing Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contribute_Form_UpdateBilling\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(304,1,'civicrm/contribute/updaterecur',NULL,'Update Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_UpdateSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(305,1,'civicrm/contribute/subscriptionstatus',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Page_SubscriptionStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(306,1,'civicrm/admin/financial/financialType/accounts',NULL,'Financial Type Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:39:\"CRM_Financial_Page_FinancialTypeAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,581,1,0,NULL),(307,1,'civicrm/financial/batch',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:33:\"CRM_Financial_Page_FinancialBatch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,585,1,0,NULL),(308,1,'civicrm/financial/financialbatches',NULL,'Accounting Batches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Financial_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,586,1,0,NULL),(309,1,'civicrm/batchtransaction',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_BatchTransaction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,600,1,0,NULL),(310,1,'civicrm/financial/batch/export',NULL,'Accounting Batch Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:25:\"CRM_Financial_Form_Export\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Accounting Batch\";s:3:\"url\";s:32:\"/civicrm/financial/batch?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,610,1,0,NULL),(311,1,'civicrm/payment/view','action=view','View Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contribute_Page_PaymentInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&amp;action=add\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,1,NULL),(312,1,'civicrm/admin/setting/preferences/contribute',NULL,'CiviContribute Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Admin_Form_Preferences_Contribute\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(313,1,'civicrm/contribute/invoice',NULL,'PDF Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Contribute_Form_Task_Invoice\";i:1;s:11:\"getPrintPDF\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,620,1,1,NULL),(314,1,'civicrm/contribute/invoice/email',NULL,'Email Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Form_Task_Invoice\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"PDF Invoice\";s:3:\"url\";s:35:\"/civicrm/contribute/invoice?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,630,1,1,NULL),(315,1,'civicrm/admin/contribute/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_PCP_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,450,1,0,NULL),(316,1,'civicrm/contribute/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,1,NULL,0,0,1,0,NULL),(317,1,'civicrm/member',NULL,'CiviMember Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:25:\"CRM_Member_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,700,1,1,NULL),(318,1,'civicrm/member/add','action=add','New Membership','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,1,1,0,NULL),(319,1,'civicrm/admin/member/membershipType',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Page_MembershipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,370,1,0,NULL),(320,1,'civicrm/admin/member/membershipStatus',NULL,'Membership Status Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Member_Page_MembershipStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL),(321,1,'civicrm/contact/view/membership','force=1,cid=%%cid%%','Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,2,1,0,NULL),(322,1,'civicrm/membership/view',NULL,'Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipView\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,390,1,0,NULL),(323,1,'civicrm/member/search',NULL,'Find Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:28:\"CRM_Member_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,710,1,1,NULL),(324,1,'civicrm/member/import',NULL,'Import Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:16:\"edit memberships\";}i:1;s:3:\"and\";}','s:28:\"CRM_Member_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,720,1,1,NULL),(325,1,'civicrm/ajax/memType',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Member_Page_AJAX\";i:1;s:21:\"getMemberTypeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(326,1,'civicrm/admin/member/membershipType/add',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:16:\"Membership Types\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(327,1,'civicrm/mailing',NULL,'CiviMail','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,600,1,1,NULL),(328,1,'civicrm/admin/mail',NULL,'Mailer Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Mail\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL),(329,1,'civicrm/admin/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,410,1,0,NULL),(330,1,'civicrm/admin/options/from_email_address/civimail',NULL,'From Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}i:3;a:2:{s:5:\"title\";s:20:\"From Email Addresses\";s:3:\"url\";s:49:\"/civicrm/admin/options/from_email_address?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,415,1,0,NULL),(331,1,'civicrm/admin/mailSettings',NULL,'Mail Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_MailSettings\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,420,1,0,NULL),(332,1,'civicrm/mailing/send',NULL,'New Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:27:\"CRM_Mailing_Controller_Send\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,610,1,1,NULL),(333,1,'civicrm/mailing/browse/scheduled','scheduled=true','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";i:2;s:15:\"create mailings\";i:3;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,620,1,1,NULL),(334,1,'civicrm/mailing/browse/unscheduled','scheduled=false','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,620,1,1,NULL),(335,1,'civicrm/mailing/browse/archived',NULL,'Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,625,1,1,NULL),(336,1,'civicrm/mailing/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,630,1,1,NULL),(337,1,'civicrm/mailing/unsubscribe',NULL,'Unsubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Form_Unsubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,640,1,0,NULL),(338,1,'civicrm/mailing/resubscribe',NULL,'Resubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Page_Resubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,645,1,0,NULL),(339,1,'civicrm/mailing/optout',NULL,'Opt-out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:23:\"CRM_Mailing_Form_Optout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,650,1,0,NULL),(340,1,'civicrm/mailing/confirm',NULL,'Confirm','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:24:\"CRM_Mailing_Page_Confirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,660,1,0,NULL),(341,1,'civicrm/mailing/subscribe',NULL,'Subscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Form_Subscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,660,1,0,NULL),(342,1,'civicrm/mailing/preview',NULL,'Preview Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";i:2;s:15:\"create mailings\";i:3;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:24:\"CRM_Mailing_Page_Preview\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,670,1,0,NULL),(343,1,'civicrm/mailing/report','mid=%%mid%%','Mailing Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,680,1,0,NULL),(344,1,'civicrm/mailing/forward',NULL,'Forward Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:31:\"CRM_Mailing_Form_ForwardMailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,685,1,0,NULL),(345,1,'civicrm/mailing/queue',NULL,'Sending Mail','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,690,1,0,NULL),(346,1,'civicrm/mailing/report/event',NULL,'Mailing Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:22:\"CRM_Mailing_Page_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Mailing Report\";s:3:\"url\";s:47:\"/civicrm/mailing/report?reset=1&amp;mid=%%mid%%\";}}',NULL,NULL,4,NULL,NULL,NULL,0,695,1,0,NULL),(347,1,'civicrm/ajax/template',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:8:\"template\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(348,1,'civicrm/mailing/schedule',NULL,'Schedule Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:25:\"CRM_Mailing_Form_Schedule\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,700,1,0,NULL),(349,1,'civicrm/mailing/view',NULL,'View Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:28:\"view public CiviMail content\";i:1;s:15:\"access CiviMail\";i:2;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:21:\"CRM_Mailing_Page_View\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,800,1,0,NULL),(350,1,'civicrm/mailing/approve',NULL,'Approve Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:24:\"CRM_Mailing_Form_Approve\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,850,1,0,NULL),(351,1,'civicrm/contact/view/mailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:20:\"CRM_Mailing_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(352,1,'civicrm/ajax/contactmailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:18:\"getContactMailings\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(353,1,'civicrm/grant',NULL,'CiviGrant Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:24:\"CRM_Grant_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,1000,1,1,NULL),(354,1,'civicrm/grant/info',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:24:\"CRM_Grant_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviGrant Dashboard\";s:3:\"url\";s:22:\"/civicrm/grant?reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,0,1,0,NULL),(355,1,'civicrm/grant/search',NULL,'Find Grants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:27:\"CRM_Grant_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviGrant Dashboard\";s:3:\"url\";s:22:\"/civicrm/grant?reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,1010,1,1,NULL),(356,1,'civicrm/grant/add','action=add','New Grant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:18:\"CRM_Grant_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviGrant Dashboard\";s:3:\"url\";s:22:\"/civicrm/grant?reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,1,1,1,NULL),(357,1,'civicrm/contact/view/grant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:18:\"CRM_Grant_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(358,1,'civicrm/pledge',NULL,'CiviPledge Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:25:\"CRM_Pledge_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,550,1,1,NULL),(359,1,'civicrm/pledge/search',NULL,'Find Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:28:\"CRM_Pledge_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,560,1,1,NULL),(360,1,'civicrm/contact/view/pledge','force=1,cid=%%cid%%','Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,570,1,0,NULL),(361,1,'civicrm/pledge/add','action=add','New Pledge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,1,1,1,NULL),(362,1,'civicrm/pledge/payment',NULL,'Pledge Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:23:\"CRM_Pledge_Page_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,580,1,0,NULL),(363,1,'civicrm/ajax/pledgeName',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Pledge_Page_AJAX\";i:1;s:10:\"pledgeName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(364,1,'civicrm/ajax/pledgeAmount',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviPledge\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Pledge_Page_AJAX\";i:1;s:17:\"getPledgeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(365,1,'civicrm/case',NULL,'CiviCase Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Case_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,900,1,1,NULL),(366,1,'civicrm/case/add',NULL,'Open Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Case_Form_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,1,NULL),(367,1,'civicrm/case/search',NULL,'Find Cases','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,910,1,1,NULL),(368,1,'civicrm/case/activity',NULL,'Case Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Case_Form_Activity\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(369,1,'civicrm/case/report',NULL,'Case Activity Audit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:20:\"CRM_Case_Form_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(370,1,'civicrm/case/cd/edit',NULL,'Case Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Case_Form_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(371,1,'civicrm/contact/view/case',NULL,'Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:17:\"CRM_Case_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(372,1,'civicrm/case/activity/view',NULL,'Activity View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Form_ActivityView\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Case Activity\";s:3:\"url\";s:30:\"/civicrm/case/activity?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(373,1,'civicrm/contact/view/case/editClient',NULL,'Assign to Another Client','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Case_Form_EditClient\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:4:\"Case\";s:3:\"url\";s:34:\"/civicrm/contact/view/case?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(374,1,'civicrm/case/addToCase',NULL,'Build Activity To Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Case_Form_ActivityToCase\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(375,1,'civicrm/case/details',NULL,'Case Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Case_Page_CaseDetails\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(376,1,'civicrm/admin/options/case_type',NULL,'Case Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:24:\"url=civicrm/a/#/caseType\";','a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL),(377,1,'civicrm/admin/options/redaction_rule',NULL,'Redaction Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL),(378,1,'civicrm/admin/options/case_status',NULL,'Case Statuses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL),(379,1,'civicrm/admin/options/encounter_medium',NULL,'Encounter Mediums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL),(380,1,'civicrm/case/report/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Case_XMLProcessor_Report\";i:1;s:15:\"printCaseReport\";}',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:19:\"Case Activity Audit\";s:3:\"url\";s:28:\"/civicrm/case/report?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(381,1,'civicrm/case/ajax/unclosed',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:13:\"unclosedCases\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(382,1,'civicrm/case/ajax/addclient',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:9:\"addClient\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(383,1,'civicrm/case/ajax/processtags',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"processCaseTags\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,3,NULL),(384,1,'civicrm/case/ajax/details',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:11:\"CaseDetails\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(385,1,'civicrm/ajax/delcaserole',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"deleteCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(386,1,'civicrm/report',NULL,'CiviReport','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:22:\"CRM_Report_Page_Report\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1200,1,1,NULL),(387,1,'civicrm/report/list',NULL,'CiviCRM Reports','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1,1,0,NULL),(388,1,'civicrm/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1220,1,1,NULL),(389,1,'civicrm/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1241,1,1,NULL),(390,1,'civicrm/admin/report/register',NULL,'Register Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Form_Register\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(391,1,'civicrm/report/instance',NULL,'Report','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Page_Instance\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1,1,0,NULL),(392,1,'civicrm/admin/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(393,1,'civicrm/admin/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(394,1,'civicrm/admin/report/list',NULL,'Reports Listing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(395,1,'civicrm/report/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','a:2:{i:0;s:15:\"CRM_Report_Form\";i:1;s:16:\"uploadChartImage\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1,1,0,NULL),(396,1,'civicrm/campaign',NULL,'Campaign Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:27:\"CRM_Campaign_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL),(397,1,'civicrm/campaign/add',NULL,'New Campaign','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Campaign\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:25:\"/civicrm/campaign?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL),(398,1,'civicrm/survey/add',NULL,'New Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(399,1,'civicrm/campaign/vote',NULL,'Conduct Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"reserve campaign contacts\";i:3;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Page_Vote\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:25:\"/civicrm/campaign?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL),(400,1,'civicrm/admin/campaign/surveyType',NULL,'Survey Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCampaign\";}i:1;s:3:\"and\";}','s:28:\"CRM_Campaign_Page_SurveyType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(401,1,'civicrm/admin/options/campaign_type',NULL,'Campaign Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,2,1,0,NULL),(402,1,'civicrm/admin/options/campaign_status',NULL,'Campaign Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,3,1,0,NULL),(403,1,'civicrm/admin/options/engagement_index',NULL,'Engagement Index','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,4,1,0,NULL),(404,1,'civicrm/survey/search','op=interview','Record Respondents Interview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:30:\"CRM_Campaign_Controller_Search\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(405,1,'civicrm/campaign/gotv',NULL,'GOTV (Track Voters)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"release campaign contacts\";i:3;s:22:\"gotv campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Form_Gotv\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:25:\"/civicrm/campaign?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL),(406,1,'civicrm/petition/add',NULL,'New Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(407,1,'civicrm/petition/sign',NULL,'Sign Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:36:\"CRM_Campaign_Form_Petition_Signature\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(408,1,'civicrm/petition/browse',NULL,'View Petition Signatures','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Campaign_Page_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(409,1,'civicrm/petition/confirm',NULL,'Email address verified','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:34:\"CRM_Campaign_Page_Petition_Confirm\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(410,1,'civicrm/petition/thankyou',NULL,'Thank You','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:35:\"CRM_Campaign_Page_Petition_ThankYou\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(411,1,'civicrm/campaign/registerInterview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','a:2:{i:0;s:22:\"CRM_Campaign_Page_AJAX\";i:1;s:17:\"registerInterview\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:25:\"/civicrm/campaign?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL),(412,1,'civicrm/survey/configure/main',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(413,1,'civicrm/survey/configure/questions',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:34:\"CRM_Campaign_Form_Survey_Questions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(414,1,'civicrm/survey/configure/results',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:32:\"CRM_Campaign_Form_Survey_Results\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(415,1,'civicrm/survey/delete',NULL,'Delete Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:31:\"CRM_Campaign_Form_Survey_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(416,1,'admin',NULL,NULL,NULL,NULL,NULL,NULL,'a:15:{s:26:\"Customize Data and Screens\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:19:{s:20:\"{weight}.Custom Data\";a:6:{s:5:\"title\";s:11:\"Custom Data\";s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:2:\"id\";s:10:\"CustomData\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";s:4:\"icon\";s:26:\"admin/small/custm_data.png\";s:5:\"extra\";N;}s:17:\"{weight}.Profiles\";a:6:{s:5:\"title\";s:8:\"Profiles\";s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:2:\"id\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";s:5:\"extra\";N;}s:26:\"{weight}.Tags (Categories)\";a:6:{s:5:\"title\";s:17:\"Tags (Categories)\";s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:2:\"id\";s:15:\"Tags_Categories\";s:3:\"url\";s:26:\"/civicrm/admin/tag?reset=1\";s:4:\"icon\";s:18:\"admin/small/11.png\";s:5:\"extra\";N;}s:23:\"{weight}.Activity Types\";a:6:{s:5:\"title\";s:14:\"Activity Types\";s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:2:\"id\";s:13:\"ActivityTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/activity_type?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:27:\"{weight}.Relationship Types\";a:6:{s:5:\"title\";s:18:\"Relationship Types\";s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:2:\"id\";s:17:\"RelationshipTypes\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";s:4:\"icon\";s:25:\"admin/small/rela_type.png\";s:5:\"extra\";N;}s:22:\"{weight}.Contact Types\";a:6:{s:5:\"title\";s:13:\"Contact Types\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ContactTypes\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";s:4:\"icon\";s:18:\"admin/small/09.png\";s:5:\"extra\";N;}s:23:\"{weight}.Gender Options\";a:6:{s:5:\"title\";s:14:\"Gender Options\";s:4:\"desc\";s:85:\"Options for assigning gender to individual contacts (e.g. Male, Female, Transgender).\";s:2:\"id\";s:13:\"GenderOptions\";s:3:\"url\";s:37:\"/civicrm/admin/options/gender?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:40:\"{weight}.Individual Prefixes (Ms, Mr...)\";a:6:{s:5:\"title\";s:31:\"Individual Prefixes (Ms, Mr...)\";s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:2:\"id\";s:27:\"IndividualPrefixes_Ms_Mr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_prefix?reset=1\";s:4:\"icon\";s:21:\"admin/small/title.png\";s:5:\"extra\";N;}s:40:\"{weight}.Individual Suffixes (Jr, Sr...)\";a:6:{s:5:\"title\";s:31:\"Individual Suffixes (Jr, Sr...)\";s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:2:\"id\";s:27:\"IndividualSuffixes_Jr_Sr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_suffix?reset=1\";s:4:\"icon\";s:18:\"admin/small/10.png\";s:5:\"extra\";N;}s:39:\"{weight}.Location Types (Home, Work...)\";a:6:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:2:\"id\";s:26:\"LocationTypes_Home_Work...\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";s:4:\"icon\";s:18:\"admin/small/13.png\";s:5:\"extra\";N;}s:22:\"{weight}.Website Types\";a:6:{s:5:\"title\";s:13:\"Website Types\";s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:2:\"id\";s:12:\"WebsiteTypes\";s:3:\"url\";s:43:\"/civicrm/admin/options/website_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:35:\"{weight}.Instant Messenger Services\";a:6:{s:5:\"title\";s:26:\"Instant Messenger Services\";s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:2:\"id\";s:24:\"InstantMessengerServices\";s:3:\"url\";s:56:\"/civicrm/admin/options/instant_messenger_service?reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}s:31:\"{weight}.Mobile Phone Providers\";a:6:{s:5:\"title\";s:22:\"Mobile Phone Providers\";s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:2:\"id\";s:20:\"MobilePhoneProviders\";s:3:\"url\";s:46:\"/civicrm/admin/options/mobile_provider?reset=1\";s:4:\"icon\";s:18:\"admin/small/08.png\";s:5:\"extra\";N;}s:19:\"{weight}.Phone Type\";a:6:{s:5:\"title\";s:10:\"Phone Type\";s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n    Mobile, Fax, Pager)\";s:2:\"id\";s:9:\"PhoneType\";s:3:\"url\";s:41:\"/civicrm/admin/options/phone_type?reset=1\";s:4:\"icon\";s:7:\"tel.gif\";s:5:\"extra\";N;}s:28:\"{weight}.Display Preferences\";a:6:{s:5:\"title\";s:19:\"Display Preferences\";s:4:\"desc\";N;s:2:\"id\";s:18:\"DisplayPreferences\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/display?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:27:\"{weight}.Search Preferences\";a:6:{s:5:\"title\";s:18:\"Search Preferences\";s:4:\"desc\";N;s:2:\"id\";s:17:\"SearchPreferences\";s:3:\"url\";s:37:\"/civicrm/admin/setting/search?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:24:\"{weight}.Navigation Menu\";a:6:{s:5:\"title\";s:15:\"Navigation Menu\";s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:2:\"id\";s:14:\"NavigationMenu\";s:3:\"url\";s:27:\"/civicrm/admin/menu?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:26:\"{weight}.Word Replacements\";a:6:{s:5:\"title\";s:17:\"Word Replacements\";s:4:\"desc\";s:18:\"Word Replacements.\";s:2:\"id\";s:16:\"WordReplacements\";s:3:\"url\";s:47:\"/civicrm/admin/options/wordreplacements?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Manage Custom Searches\";a:6:{s:5:\"title\";s:22:\"Manage Custom Searches\";s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:2:\"id\";s:20:\"ManageCustomSearches\";s:3:\"url\";s:44:\"/civicrm/admin/options/custom_search?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:10;}s:14:\"Communications\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:11:{s:46:\"{weight}.Organization Address and Contact Info\";a:6:{s:5:\"title\";s:37:\"Organization Address and Contact Info\";s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:2:\"id\";s:33:\"OrganizationAddressandContactInfo\";s:3:\"url\";s:47:\"/civicrm/admin/domain?action=update&amp;reset=1\";s:4:\"icon\";s:22:\"admin/small/domain.png\";s:5:\"extra\";N;}s:29:\"{weight}.From Email Addresses\";a:6:{s:5:\"title\";s:20:\"From Email Addresses\";s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"FromEmailAddresses\";s:3:\"url\";s:49:\"/civicrm/admin/options/from_email_address?reset=1\";s:4:\"icon\";s:21:\"admin/small/title.png\";s:5:\"extra\";N;}s:26:\"{weight}.Message Templates\";a:6:{s:5:\"title\";s:17:\"Message Templates\";s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:2:\"id\";s:16:\"MessageTemplates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:27:\"{weight}.Schedule Reminders\";a:6:{s:5:\"title\";s:18:\"Schedule Reminders\";s:4:\"desc\";s:19:\"Schedule Reminders.\";s:2:\"id\";s:17:\"ScheduleReminders\";s:3:\"url\";s:40:\"/civicrm/admin/scheduleReminders?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:40:\"{weight}.Preferred Communication Methods\";a:6:{s:5:\"title\";s:31:\"Preferred Communication Methods\";s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:2:\"id\";s:29:\"PreferredCommunicationMethods\";s:3:\"url\";s:61:\"/civicrm/admin/options/preferred_communication_method?reset=1\";s:4:\"icon\";s:29:\"admin/small/communication.png\";s:5:\"extra\";N;}s:22:\"{weight}.Label Formats\";a:6:{s:5:\"title\";s:13:\"Label Formats\";s:4:\"desc\";s:67:\"Configure Label Formats that are used when creating mailing labels.\";s:2:\"id\";s:12:\"LabelFormats\";s:3:\"url\";s:35:\"/civicrm/admin/labelFormats?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:33:\"{weight}.Print Page (PDF) Formats\";a:6:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:2:\"id\";s:20:\"PrintPage_PDFFormats\";s:3:\"url\";s:33:\"/civicrm/admin/pdfFormats?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:36:\"{weight}.Communication Style Options\";a:6:{s:5:\"title\";s:27:\"Communication Style Options\";s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:2:\"id\";s:25:\"CommunicationStyleOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/communication_style?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:31:\"{weight}.Email Greeting Formats\";a:6:{s:5:\"title\";s:22:\"Email Greeting Formats\";s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:2:\"id\";s:20:\"EmailGreetingFormats\";s:3:\"url\";s:45:\"/civicrm/admin/options/email_greeting?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:32:\"{weight}.Postal Greeting Formats\";a:6:{s:5:\"title\";s:23:\"Postal Greeting Formats\";s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:2:\"id\";s:21:\"PostalGreetingFormats\";s:3:\"url\";s:46:\"/civicrm/admin/options/postal_greeting?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:26:\"{weight}.Addressee Formats\";a:6:{s:5:\"title\";s:17:\"Addressee Formats\";s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:2:\"id\";s:16:\"AddresseeFormats\";s:3:\"url\";s:40:\"/civicrm/admin/options/addressee?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:6;}s:12:\"Localization\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:39:\"{weight}.Languages, Currency, Locations\";a:6:{s:5:\"title\";s:30:\"Languages, Currency, Locations\";s:4:\"desc\";N;s:2:\"id\";s:28:\"Languages_Currency_Locations\";s:3:\"url\";s:43:\"/civicrm/admin/setting/localization?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:25:\"{weight}.Address Settings\";a:6:{s:5:\"title\";s:16:\"Address Settings\";s:4:\"desc\";N;s:2:\"id\";s:15:\"AddressSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/address?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:21:\"{weight}.Date Formats\";a:6:{s:5:\"title\";s:12:\"Date Formats\";s:4:\"desc\";N;s:2:\"id\";s:11:\"DateFormats\";s:3:\"url\";s:35:\"/civicrm/admin/setting/date?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:28:\"{weight}.Preferred Languages\";a:6:{s:5:\"title\";s:19:\"Preferred Languages\";s:4:\"desc\";s:30:\"Options for contact languages.\";s:2:\"id\";s:18:\"PreferredLanguages\";s:3:\"url\";s:40:\"/civicrm/admin/options/languages?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:21:\"Users and Permissions\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:2:{s:23:\"{weight}.Access Control\";a:6:{s:5:\"title\";s:14:\"Access Control\";s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:2:\"id\";s:13:\"AccessControl\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";s:4:\"icon\";s:18:\"admin/small/03.png\";s:5:\"extra\";N;}s:38:\"{weight}.Synchronize Users to Contacts\";a:6:{s:5:\"title\";s:29:\"Synchronize Users to Contacts\";s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:2:\"id\";s:26:\"SynchronizeUserstoContacts\";s:3:\"url\";s:32:\"/civicrm/admin/synchUser?reset=1\";s:4:\"icon\";s:26:\"admin/small/Synch_user.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:1;}s:15:\"System Settings\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:18:{s:32:\"{weight}.Configuration Checklist\";a:6:{s:5:\"title\";s:23:\"Configuration Checklist\";s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:2:\"id\";s:22:\"ConfigurationChecklist\";s:3:\"url\";s:33:\"/civicrm/admin/configtask?reset=1\";s:4:\"icon\";s:9:\"check.gif\";s:5:\"extra\";N;}s:34:\"{weight}.Enable CiviCRM Components\";a:6:{s:5:\"title\";s:25:\"Enable CiviCRM Components\";s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:2:\"id\";s:23:\"EnableCiviCRMComponents\";s:3:\"url\";s:40:\"/civicrm/admin/setting/component?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:26:\"{weight}.Manage Extensions\";a:6:{s:5:\"title\";s:17:\"Manage Extensions\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:16:\"ManageExtensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";s:4:\"icon\";s:26:\"admin/small/price_sets.png\";s:5:\"extra\";N;}s:32:\"{weight}.Outbound Email Settings\";a:6:{s:5:\"title\";s:23:\"Outbound Email Settings\";s:4:\"desc\";N;s:2:\"id\";s:21:\"OutboundEmailSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/smtp?reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}s:26:\"{weight}.Payment Processor\";a:6:{s:5:\"title\";s:17:\"Payment Processor\";s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:2:\"id\";s:16:\"PaymentProcessor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";s:4:\"icon\";s:41:\"admin/small/online_contribution_pages.png\";s:5:\"extra\";N;}s:30:\"{weight}.Mapping and Geocoding\";a:6:{s:5:\"title\";s:21:\"Mapping and Geocoding\";s:4:\"desc\";N;s:2:\"id\";s:19:\"MappingandGeocoding\";s:3:\"url\";s:38:\"/civicrm/admin/setting/mapping?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:62:\"{weight}.Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)\";a:6:{s:5:\"title\";s:53:\"Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)\";s:4:\"desc\";s:91:\"Enable undelete/move to trash feature, detailed change logging, ReCAPTCHA to protect forms.\";s:2:\"id\";s:46:\"Misc_Undelete_PDFs_Limits_Logging_Captcha_etc.\";s:3:\"url\";s:35:\"/civicrm/admin/setting/misc?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:20:\"{weight}.Directories\";a:6:{s:5:\"title\";s:11:\"Directories\";s:4:\"desc\";N;s:2:\"id\";s:11:\"Directories\";s:3:\"url\";s:35:\"/civicrm/admin/setting/path?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:22:\"{weight}.Resource URLs\";a:6:{s:5:\"title\";s:13:\"Resource URLs\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ResourceURLs\";s:3:\"url\";s:34:\"/civicrm/admin/setting/url?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:40:\"{weight}.Cleanup Caches and Update Paths\";a:6:{s:5:\"title\";s:31:\"Cleanup Caches and Update Paths\";s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:2:\"id\";s:27:\"CleanupCachesandUpdatePaths\";s:3:\"url\";s:50:\"/civicrm/admin/setting/updateConfigBackend?reset=1\";s:4:\"icon\";s:26:\"admin/small/updatepath.png\";s:5:\"extra\";N;}s:33:\"{weight}.CMS Database Integration\";a:6:{s:5:\"title\";s:24:\"CMS Database Integration\";s:4:\"desc\";N;s:2:\"id\";s:22:\"CMSDatabaseIntegration\";s:3:\"url\";s:33:\"/civicrm/admin/setting/uf?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:36:\"{weight}.Safe File Extension Options\";a:6:{s:5:\"title\";s:27:\"Safe File Extension Options\";s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:2:\"id\";s:24:\"SafeFileExtensionOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/safe_file_extension?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:22:\"{weight}.Option Groups\";a:6:{s:5:\"title\";s:13:\"Option Groups\";s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:2:\"id\";s:12:\"OptionGroups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:31:\"{weight}.Import/Export Mappings\";a:6:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:2:\"id\";s:21:\"Import_ExportMappings\";s:3:\"url\";s:30:\"/civicrm/admin/mapping?reset=1\";s:4:\"icon\";s:33:\"admin/small/import_export_map.png\";s:5:\"extra\";N;}s:18:\"{weight}.Debugging\";a:6:{s:5:\"title\";s:9:\"Debugging\";s:4:\"desc\";N;s:2:\"id\";s:9:\"Debugging\";s:3:\"url\";s:36:\"/civicrm/admin/setting/debug?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:28:\"{weight}.Multi Site Settings\";a:6:{s:5:\"title\";s:19:\"Multi Site Settings\";s:4:\"desc\";N;s:2:\"id\";s:17:\"MultiSiteSettings\";s:3:\"url\";s:52:\"/civicrm/admin/setting/preferences/multisite?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:23:\"{weight}.Scheduled Jobs\";a:6:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:2:\"id\";s:13:\"ScheduledJobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";s:4:\"icon\";s:18:\"admin/small/13.png\";s:5:\"extra\";N;}s:22:\"{weight}.Sms Providers\";a:6:{s:5:\"title\";s:13:\"Sms Providers\";s:4:\"desc\";s:27:\"To configure a sms provider\";s:2:\"id\";s:12:\"SmsProviders\";s:3:\"url\";s:35:\"/civicrm/admin/sms/provider?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:9;}s:12:\"CiviCampaign\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:40:\"{weight}.CiviCampaign Component Settings\";a:6:{s:5:\"title\";s:31:\"CiviCampaign Component Settings\";s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:2:\"id\";s:29:\"CiviCampaignComponentSettings\";s:3:\"url\";s:51:\"/civicrm/admin/setting/preferences/campaign?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Survey Types\";a:6:{s:5:\"title\";s:12:\"Survey Types\";s:4:\"desc\";N;s:2:\"id\";s:11:\"SurveyTypes\";s:3:\"url\";s:42:\"/civicrm/admin/campaign/surveyType?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:23:\"{weight}.Campaign Types\";a:6:{s:5:\"title\";s:14:\"Campaign Types\";s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:2:\"id\";s:13:\"CampaignTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/campaign_type?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:24:\"{weight}.Campaign Status\";a:6:{s:5:\"title\";s:15:\"Campaign Status\";s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:2:\"id\";s:14:\"CampaignStatus\";s:3:\"url\";s:46:\"/civicrm/admin/options/campaign_status?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:25:\"{weight}.Engagement Index\";a:6:{s:5:\"title\";s:16:\"Engagement Index\";s:4:\"desc\";s:18:\"Engagement levels.\";s:2:\"id\";s:15:\"EngagementIndex\";s:3:\"url\";s:47:\"/civicrm/admin/options/engagement_index?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:3;}s:9:\"CiviEvent\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:37:\"{weight}.CiviEvent Component Settings\";a:6:{s:5:\"title\";s:28:\"CiviEvent Component Settings\";s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:2:\"id\";s:26:\"CiviEventComponentSettings\";s:3:\"url\";s:48:\"/civicrm/admin/setting/preferences/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Event Name Badge Layouts\";a:6:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:2:\"id\";s:21:\"EventNameBadgeLayouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?action=browse&amp;reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Manage Events\";a:6:{s:5:\"title\";s:13:\"Manage Events\";s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:2:\"id\";s:12:\"ManageEvents\";s:3:\"url\";s:28:\"/civicrm/admin/event?reset=1\";s:4:\"icon\";s:28:\"admin/small/event_manage.png\";s:5:\"extra\";N;}s:24:\"{weight}.Event Templates\";a:6:{s:5:\"title\";s:15:\"Event Templates\";s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:2:\"id\";s:14:\"EventTemplates\";s:3:\"url\";s:36:\"/civicrm/admin/eventTemplate?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:20:\"{weight}.Event Types\";a:6:{s:5:\"title\";s:11:\"Event Types\";s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:2:\"id\";s:10:\"EventTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/event_type?reset=1\";s:4:\"icon\";s:26:\"admin/small/event_type.png\";s:5:\"extra\";N;}s:27:\"{weight}.Participant Status\";a:6:{s:5:\"title\";s:18:\"Participant Status\";s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:2:\"id\";s:17:\"ParticipantStatus\";s:3:\"url\";s:41:\"/civicrm/admin/participant_status?reset=1\";s:4:\"icon\";s:28:\"admin/small/parti_status.png\";s:5:\"extra\";N;}s:25:\"{weight}.Participant Role\";a:6:{s:5:\"title\";s:16:\"Participant Role\";s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:2:\"id\";s:15:\"ParticipantRole\";s:3:\"url\";s:47:\"/civicrm/admin/options/participant_role?reset=1\";s:4:\"icon\";s:26:\"admin/small/parti_role.png\";s:5:\"extra\";N;}s:38:\"{weight}.Participant Listing Templates\";a:6:{s:5:\"title\";s:29:\"Participant Listing Templates\";s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:2:\"id\";s:27:\"ParticipantListingTemplates\";s:3:\"url\";s:50:\"/civicrm/admin/options/participant_listing?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:31:\"{weight}.Conference Slot Labels\";a:6:{s:5:\"title\";s:22:\"Conference Slot Labels\";s:4:\"desc\";s:35:\"Define conference slots and labels.\";s:2:\"id\";s:20:\"ConferenceSlotLabels\";s:3:\"url\";s:65:\"/civicrm/admin/conference_slots?group=conference_slot&amp;reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}s:9:\"perColumn\";d:5;}s:8:\"CiviMail\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:36:\"{weight}.CiviMail Component Settings\";a:6:{s:5:\"title\";s:27:\"CiviMail Component Settings\";s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:2:\"id\";s:25:\"CiviMailComponentSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/mailing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Mailer Settings\";a:6:{s:5:\"title\";s:15:\"Mailer Settings\";s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:2:\"id\";s:14:\"MailerSettings\";s:3:\"url\";s:27:\"/civicrm/admin/mail?reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}s:49:\"{weight}.Headers, Footers, and Automated Messages\";a:6:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:2:\"id\";s:36:\"Headers_Footers_andAutomatedMessages\";s:3:\"url\";s:32:\"/civicrm/admin/component?reset=1\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";s:5:\"extra\";N;}s:29:\"{weight}.From Email Addresses\";a:6:{s:5:\"title\";s:20:\"From Email Addresses\";s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"FromEmailAddresses\";s:3:\"url\";s:58:\"/civicrm/admin/options/from_email_address/civimail?reset=1\";s:4:\"icon\";s:21:\"admin/small/title.png\";s:5:\"extra\";N;}s:22:\"{weight}.Mail Accounts\";a:6:{s:5:\"title\";s:13:\"Mail Accounts\";s:4:\"desc\";s:32:\"Configure email account setting.\";s:2:\"id\";s:12:\"MailAccounts\";s:3:\"url\";s:35:\"/civicrm/admin/mailSettings?reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:3;}s:10:\"CiviMember\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:38:\"{weight}.CiviMember Component Settings\";a:6:{s:5:\"title\";s:29:\"CiviMember Component Settings\";s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:2:\"id\";s:27:\"CiviMemberComponentSettings\";s:3:\"url\";s:49:\"/civicrm/admin/setting/preferences/member?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Membership Types\";a:6:{s:5:\"title\";s:16:\"Membership Types\";s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:2:\"id\";s:15:\"MembershipTypes\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";s:4:\"icon\";s:31:\"admin/small/membership_type.png\";s:5:\"extra\";N;}s:32:\"{weight}.Membership Status Rules\";a:6:{s:5:\"title\";s:23:\"Membership Status Rules\";s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:2:\"id\";s:21:\"MembershipStatusRules\";s:3:\"url\";s:46:\"/civicrm/admin/member/membershipStatus?reset=1\";s:4:\"icon\";s:33:\"admin/small/membership_status.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:6:\"Manage\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:27:\"{weight}.Scheduled Jobs Log\";a:6:{s:5:\"title\";s:18:\"Scheduled Jobs Log\";s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:2:\"id\";s:16:\"ScheduledJobsLog\";s:3:\"url\";s:29:\"/civicrm/admin/joblog?reset=1\";s:4:\"icon\";s:18:\"admin/small/13.png\";s:5:\"extra\";N;}s:42:\"{weight}.Find and Merge Duplicate Contacts\";a:6:{s:5:\"title\";s:33:\"Find and Merge Duplicate Contacts\";s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:2:\"id\";s:29:\"FindandMergeDuplicateContacts\";s:3:\"url\";s:36:\"/civicrm/contact/deduperules?reset=1\";s:4:\"icon\";s:34:\"admin/small/duplicate_matching.png\";s:5:\"extra\";N;}s:26:\"{weight}.Dedupe Exceptions\";a:6:{s:5:\"title\";s:17:\"Dedupe Exceptions\";s:4:\"desc\";N;s:2:\"id\";s:16:\"DedupeExceptions\";s:3:\"url\";s:33:\"/civicrm/dedupe/exception?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:12:\"Option Lists\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:20:\"{weight}.Grant Types\";a:6:{s:5:\"title\";s:11:\"Grant Types\";s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > Systme Settings > Enable Components if you want to track grants.)\";s:2:\"id\";s:10:\"GrantTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/grant_type?reset=1\";s:4:\"icon\";s:26:\"admin/small/grant_type.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:1;}s:9:\"Customize\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:19:\"{weight}.Price Sets\";a:6:{s:5:\"title\";s:10:\"Price Sets\";s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:2:\"id\";s:9:\"PriceSets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";s:4:\"icon\";s:26:\"admin/small/price_sets.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:1;}s:14:\"CiviContribute\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:32:\"{weight}.Personal Campaign Pages\";a:6:{s:5:\"title\";s:23:\"Personal Campaign Pages\";s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:2:\"id\";s:21:\"PersonalCampaignPages\";s:3:\"url\";s:49:\"/civicrm/admin/pcp?context=contribute&amp;reset=1\";s:4:\"icon\";s:34:\"admin/small/contribution_types.png\";s:5:\"extra\";N;}s:34:\"{weight}.Manage Contribution Pages\";a:6:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:2:\"id\";s:23:\"ManageContributionPages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";s:4:\"icon\";s:41:\"admin/small/online_contribution_pages.png\";s:5:\"extra\";N;}s:24:\"{weight}.Manage Premiums\";a:6:{s:5:\"title\";s:15:\"Manage Premiums\";s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:2:\"id\";s:14:\"ManagePremiums\";s:3:\"url\";s:48:\"/civicrm/admin/contribute/managePremiums?reset=1\";s:4:\"icon\";s:24:\"admin/small/Premiums.png\";s:5:\"extra\";N;}s:24:\"{weight}.Financial Types\";a:6:{s:5:\"title\";s:15:\"Financial Types\";s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:2:\"id\";s:14:\"FinancialTypes\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Financial Accounts\";a:6:{s:5:\"title\";s:18:\"Financial Accounts\";s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:2:\"id\";s:17:\"FinancialAccounts\";s:3:\"url\";s:49:\"/civicrm/admin/financial/financialAccount?reset=1\";s:4:\"icon\";s:34:\"admin/small/contribution_types.png\";s:5:\"extra\";N;}s:28:\"{weight}.Payment Instruments\";a:6:{s:5:\"title\";s:19:\"Payment Instruments\";s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:2:\"id\";s:18:\"PaymentInstruments\";s:3:\"url\";s:49:\"/civicrm/admin/options/payment_instrument?reset=1\";s:4:\"icon\";s:35:\"admin/small/payment_instruments.png\";s:5:\"extra\";N;}s:30:\"{weight}.Accepted Credit Cards\";a:6:{s:5:\"title\";s:21:\"Accepted Credit Cards\";s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:2:\"id\";s:19:\"AcceptedCreditCards\";s:3:\"url\";s:48:\"/civicrm/admin/options/accept_creditcard?reset=1\";s:4:\"icon\";s:36:\"admin/small/accepted_creditcards.png\";s:5:\"extra\";N;}s:26:\"{weight}.Soft Credit Types\";a:6:{s:5:\"title\";s:17:\"Soft Credit Types\";s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:2:\"id\";s:15:\"SoftCreditTypes\";s:3:\"url\";s:47:\"/civicrm/admin/options/soft_credit_type?reset=1\";s:4:\"icon\";s:32:\"admin/small/soft_credit_type.png\";s:5:\"extra\";N;}s:42:\"{weight}.CiviContribute Component Settings\";a:6:{s:5:\"title\";s:33:\"CiviContribute Component Settings\";s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:2:\"id\";s:31:\"CiviContributeComponentSettings\";s:3:\"url\";s:53:\"/civicrm/admin/setting/preferences/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}s:9:\"perColumn\";d:5;}s:8:\"CiviCase\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:19:\"{weight}.Case Types\";a:6:{s:5:\"title\";s:10:\"Case Types\";s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:2:\"id\";s:9:\"CaseTypes\";s:3:\"url\";s:40:\"/civicrm/admin/options/case_type?reset=1\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";s:5:\"extra\";N;}s:24:\"{weight}.Redaction Rules\";a:6:{s:5:\"title\";s:15:\"Redaction Rules\";s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:2:\"id\";s:14:\"RedactionRules\";s:3:\"url\";s:45:\"/civicrm/admin/options/redaction_rule?reset=1\";s:4:\"icon\";s:30:\"admin/small/redaction_type.png\";s:5:\"extra\";N;}s:22:\"{weight}.Case Statuses\";a:6:{s:5:\"title\";s:13:\"Case Statuses\";s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:2:\"id\";s:12:\"CaseStatuses\";s:3:\"url\";s:42:\"/civicrm/admin/options/case_status?reset=1\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";s:5:\"extra\";N;}s:26:\"{weight}.Encounter Mediums\";a:6:{s:5:\"title\";s:17:\"Encounter Mediums\";s:4:\"desc\";s:26:\"List of encounter mediums.\";s:2:\"id\";s:16:\"EncounterMediums\";s:3:\"url\";s:47:\"/civicrm/admin/options/encounter_medium?reset=1\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:10:\"CiviReport\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:40:\"{weight}.Create New Report from Template\";a:6:{s:5:\"title\";s:31:\"Create New Report from Template\";s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:2:\"id\";s:27:\"CreateNewReportfromTemplate\";s:3:\"url\";s:43:\"/civicrm/admin/report/template/list?reset=1\";s:4:\"icon\";s:31:\"admin/small/report_template.gif\";s:5:\"extra\";N;}s:25:\"{weight}.Manage Templates\";a:6:{s:5:\"title\";s:16:\"Manage Templates\";s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:2:\"id\";s:15:\"ManageTemplates\";s:3:\"url\";s:53:\"/civicrm/admin/report/options/report_template?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:24:\"{weight}.Reports Listing\";a:6:{s:5:\"title\";s:15:\"Reports Listing\";s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:2:\"id\";s:14:\"ReportsListing\";s:3:\"url\";s:34:\"/civicrm/admin/report/list?reset=1\";s:4:\"icon\";s:27:\"admin/small/report_list.gif\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,NULL);
++INSERT INTO `civicrm_menu` (`id`, `domain_id`, `path`, `path_arguments`, `title`, `access_callback`, `access_arguments`, `page_callback`, `page_arguments`, `breadcrumb`, `return_url`, `return_url_args`, `component_id`, `is_active`, `is_public`, `is_exposed`, `is_ssl`, `weight`, `type`, `page_type`, `skipBreadcrumb`) VALUES (1,1,'civicrm/activity','action=add&context=standalone','New Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(2,1,'civicrm/activity/view',NULL,'View Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Form_ActivityView\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(3,1,'civicrm/ajax/activity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:15:\"getCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(4,1,'civicrm/ajax/globalrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseGlobalRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(5,1,'civicrm/ajax/clientrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:26:\"getCaseClientRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(6,1,'civicrm/ajax/caseroles',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:12:\"getCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(7,1,'civicrm/ajax/contactactivity',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:18:\"getContactActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(8,1,'civicrm/ajax/activity/convert',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:22:\"CRM_Activity_Page_AJAX\";i:1;s:21:\"convertToCaseActivity\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL),(9,1,'civicrm/activity/search',NULL,'Find Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Controller_Search\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(10,1,'civicrm/admin/custom/group',NULL,'Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(11,1,'civicrm/admin/custom/group/field',NULL,'Custom Data Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,11,1,0,0),(12,1,'civicrm/admin/custom/group/field/option',NULL,'Custom Field - Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Custom_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(13,1,'civicrm/admin/custom/group/field/add',NULL,'Custom Field - Add','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(14,1,'civicrm/admin/custom/group/field/update',NULL,'Custom Field - Edit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Custom_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(15,1,'civicrm/admin/custom/group/field/move',NULL,'Custom Field - Move','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Custom_Form_MoveField\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(16,1,'civicrm/admin/custom/group/field/changetype',NULL,'Custom Field - Change Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Custom_Form_ChangeFieldType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"Custom Data\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(17,1,'civicrm/admin/uf/group',NULL,'Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Group\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL),(18,1,'civicrm/admin/uf/group/field',NULL,'CiviCRM Profile Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,21,1,0,0),(19,1,'civicrm/admin/uf/group/field/add',NULL,'Add Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,22,1,0,NULL),(20,1,'civicrm/admin/uf/group/field/update',NULL,'Edit Field','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,23,1,0,NULL),(21,1,'civicrm/admin/uf/group/add',NULL,'New CiviCRM Profile','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,24,1,0,NULL),(22,1,'civicrm/admin/uf/group/update',NULL,'Profile Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:17:\"CRM_UF_Form_Group\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,25,1,0,NULL),(23,1,'civicrm/admin/uf/group/setting',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_UF_Form_AdvanceSetting\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,NULL),(24,1,'civicrm/admin/tag',NULL,'Tags (Categories)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,25,1,0,NULL),(25,1,'civicrm/admin/tag/add','action=add','New Tag','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Tag\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Tags (Categories)\";s:3:\"url\";s:26:\"/civicrm/admin/tag?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(26,1,'civicrm/admin/options/activity_type',NULL,'Activity Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL),(27,1,'civicrm/admin/reltype',NULL,'Relationship Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_RelationshipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,35,1,0,NULL),(28,1,'civicrm/admin/options/subtype',NULL,'Contact Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_ContactType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL),(29,1,'civicrm/admin/options/gender',NULL,'Gender Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,45,1,0,NULL),(30,1,'civicrm/admin/options/individual_prefix',NULL,'Individual Prefixes (Ms, Mr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,50,1,0,NULL),(31,1,'civicrm/admin/options/individual_suffix',NULL,'Individual Suffixes (Jr, Sr...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,55,1,0,NULL),(32,1,'civicrm/admin/locationType',NULL,'Location Types (Home, Work...)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LocationType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,60,1,0,NULL),(33,1,'civicrm/admin/options/website_type',NULL,'Website Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,65,1,0,NULL),(34,1,'civicrm/admin/options/instant_messenger_service',NULL,'Instant Messenger Services','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,70,1,0,NULL),(35,1,'civicrm/admin/options/mobile_provider',NULL,'Mobile Phone Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,75,1,0,NULL),(36,1,'civicrm/admin/options/phone_type',NULL,'Phone Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,80,1,0,NULL),(37,1,'civicrm/admin/setting/preferences/display',NULL,'Display Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Display\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,90,1,0,NULL),(38,1,'civicrm/admin/setting/search',NULL,'Search Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Form_Setting_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,95,1,0,NULL),(39,1,'civicrm/admin/setting/preferences/date',NULL,'View Date Preferences','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Page_PreferencesDate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(40,1,'civicrm/admin/menu',NULL,'Navigation Menu','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Navigation\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,100,1,0,NULL),(41,1,'civicrm/admin/options/wordreplacements',NULL,'Word Replacements','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_WordReplacements\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,105,1,0,NULL),(42,1,'civicrm/admin/options/custom_search',NULL,'Manage Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,110,1,0,NULL),(43,1,'civicrm/admin/domain','action=update','Organization Address and Contact Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contact_Form_Domain\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(44,1,'civicrm/admin/options/from_email_address',NULL,'From Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL),(45,1,'civicrm/admin/messageTemplates',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:22:\"edit message templates\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_MessageTemplates\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL),(46,1,'civicrm/admin/messageTemplates/add',NULL,'Message Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:22:\"edit message templates\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Form_MessageTemplates\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Message Templates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,262,1,0,NULL),(47,1,'civicrm/admin/scheduleReminders',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ScheduleReminders\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL),(48,1,'civicrm/admin/weight',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_Weight\";i:1;s:8:\"fixOrder\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(49,1,'civicrm/admin/options/preferred_communication_method',NULL,'Preferred Communication Methods','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,50,1,0,NULL),(50,1,'civicrm/admin/labelFormats',NULL,'Label Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_LabelFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,60,1,0,NULL),(51,1,'civicrm/admin/pdfFormats',NULL,'Print Page (PDF) Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_PdfFormats\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,70,1,0,NULL),(52,1,'civicrm/admin/options/communication_style',NULL,'Communication Style Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,75,1,0,NULL),(53,1,'civicrm/admin/options/email_greeting',NULL,'Email Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,80,1,0,NULL),(54,1,'civicrm/admin/options/postal_greeting',NULL,'Postal Greeting Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,90,1,0,NULL),(55,1,'civicrm/admin/options/addressee',NULL,'Addressee Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,100,1,0,NULL),(56,1,'civicrm/admin/setting/localization',NULL,'Languages, Currency, Locations','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Setting_Localization\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(57,1,'civicrm/admin/setting/preferences/address',NULL,'Address Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Address\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL),(58,1,'civicrm/admin/setting/date',NULL,'Date Formats','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Date\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL),(59,1,'civicrm/admin/options/languages',NULL,'Preferred Languages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL),(60,1,'civicrm/admin/access',NULL,'Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_Access\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(61,1,'civicrm/admin/access/wp-permissions',NULL,'WordPress Access Control','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_ACL_Form_WordPress_Permissions\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Access Control\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(62,1,'civicrm/admin/synchUser',NULL,'Synchronize Users to Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_CMSUser\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL),(63,1,'civicrm/admin/configtask',NULL,'Configuration Checklist','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Admin_Page_ConfigTaskList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}','civicrm/admin/configtask',NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(64,1,'civicrm/admin/setting/component',NULL,'Enable CiviCRM Components','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(65,1,'civicrm/admin/extensions',NULL,'Manage Extensions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Extensions\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,120,1,0,NULL),(66,1,'civicrm/admin/extensions/upgrade',NULL,'Database Upgrades','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Page_ExtensionsUpgrade\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:17:\"Manage Extensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(67,1,'civicrm/admin/setting/smtp',NULL,'Outbound Email Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Smtp\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,20,1,0,NULL),(68,1,'civicrm/admin/paymentProcessor',NULL,'Payment Processor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Admin_Page_PaymentProcessor\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,30,1,0,NULL),(69,1,'civicrm/admin/setting/mapping',NULL,'Mapping and Geocoding','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Admin_Form_Setting_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,40,1,0,NULL),(70,1,'civicrm/admin/setting/misc',NULL,'Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Setting_Miscellaneous\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,50,1,0,NULL),(71,1,'civicrm/admin/setting/path',NULL,'Directories','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Path\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,60,1,0,NULL),(72,1,'civicrm/admin/setting/url',NULL,'Resource URLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Form_Setting_Url\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,70,1,0,NULL),(73,1,'civicrm/admin/setting/updateConfigBackend',NULL,'Cleanup Caches and Update Paths','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Admin_Form_Setting_UpdateConfigBackend\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,80,1,0,NULL),(74,1,'civicrm/admin/setting/uf',NULL,'CMS Database Integration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Setting_UF\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,90,1,0,NULL),(75,1,'civicrm/admin/options/safe_file_extension',NULL,'Safe File Extension Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,100,1,0,NULL),(76,1,'civicrm/admin/options',NULL,'Option Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,105,1,0,NULL),(77,1,'civicrm/admin/mapping',NULL,'Import/Export Mappings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Mapping\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,110,1,0,NULL),(78,1,'civicrm/admin/setting/debug',NULL,'Debugging','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Setting_Debugging\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,120,1,0,NULL),(79,1,'civicrm/admin/setting/preferences/multisite',NULL,'Multi Site Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Form_Preferences_Multisite\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,130,1,0,NULL),(80,1,'civicrm/admin/setting/preferences/campaign',NULL,'CiviCampaign Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Form_Preferences_Campaign\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,10,1,0,NULL),(81,1,'civicrm/admin/setting/preferences/event',NULL,'CiviEvent Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Admin_Form_Preferences_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,420,1,0,NULL),(82,1,'civicrm/admin/setting/preferences/mailing',NULL,'CiviMail Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Admin_Form_Preferences_Mailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,430,1,0,NULL),(83,1,'civicrm/admin/setting/preferences/member',NULL,'CiviMember Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:33:\"CRM_Admin_Form_Preferences_Member\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL),(84,1,'civicrm/admin/runjobs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:20:\"executeScheduledJobs\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(85,1,'civicrm/admin/job',NULL,'Scheduled Jobs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Admin_Page_Job\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1370,1,0,NULL),(86,1,'civicrm/admin/joblog',NULL,'Scheduled Jobs Log','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Admin_Page_JobLog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1380,1,0,NULL),(87,1,'civicrm/admin/options/grant_type',NULL,'Grant Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,385,1,0,NULL),(88,1,'civicrm/admin/paymentProcessorType',NULL,'Payment Processor Type','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Admin_Page_PaymentProcessorType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL),(89,1,'civicrm/admin',NULL,'Administer CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Admin_Page_Admin\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,9000,1,1,NULL),(90,1,'civicrm/ajax/menujs',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:17:\"getNavigationMenu\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(91,1,'civicrm/ajax/menu',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:17:\"getNavigationList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL),(92,1,'civicrm/ajax/menutree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:8:\"menuTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL),(93,1,'civicrm/ajax/statusmsg',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"getStatusMsg\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(94,1,'civicrm/ajax/mergeTags',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:9:\"mergeTags\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(95,1,'civicrm/admin/price',NULL,'Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL),(96,1,'civicrm/admin/price/add','action=add','New Price Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(97,1,'civicrm/admin/price/field',NULL,'Price Fields','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:20:\"CRM_Price_Page_Field\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,0),(98,1,'civicrm/admin/price/field/option',NULL,'Price Field Options','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Price_Page_Option\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:10:\"Price Sets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(99,1,'civicrm/ajax/mergeTagList',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"mergeTagList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(100,1,'civicrm/admin/tplstrings/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Form_Persistent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(101,1,'civicrm/admin/tplstrings',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Admin_Page_Persistent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(102,1,'civicrm/ajax/mapping',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:11:\"mappingList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(103,1,'civicrm/ajax/mapping1',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Admin_Page_AJAX\";i:1;s:12:\"mappingList1\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(104,1,'civicrm/admin/sms/provider',NULL,'Sms Providers','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Provider\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,500,1,0,NULL),(105,1,'civicrm/sms/send',NULL,'New Mass SMS','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_SMS_Controller_Send\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,610,1,1,NULL),(106,1,'civicrm/sms/callback',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_SMS_Page_Callback\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(107,1,'civicrm/admin/badgelayout','action=browse','Event Name Badge Layouts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Page_Layout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,399,1,0,NULL),(108,1,'civicrm/admin/badgelayout/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Badge_Form_Layout\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?reset=1&amp;action=browse\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(109,1,'civicrm',NULL,'CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:0:{}',NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,NULL),(110,1,'civicrm/dashboard',NULL,'CiviCRM Home','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,1,NULL),(111,1,'civicrm/dashlet',NULL,'CiviCRM Dashlets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Page_Dashlet\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,1,NULL),(112,1,'civicrm/contact/search',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,10,1,1,NULL),(113,1,'civicrm/contact/image',NULL,'Process Uploaded Images','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','a:2:{i:0;s:23:\"CRM_Contact_BAO_Contact\";i:1;s:12:\"processImage\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(114,1,'civicrm/contact/imagefile',NULL,'Get Image File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"*always allow*\";}i:1;s:3:\"and\";}','s:26:\"CRM_Contact_Page_ImageFile\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(115,1,'civicrm/contact/search/basic',NULL,'Find Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(116,1,'civicrm/contact/search/advanced',NULL,'Advanced Search','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=512\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,12,1,1,NULL),(117,1,'civicrm/contact/search/builder',NULL,'Search Builder','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:9:\"mode=8192\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,14,1,1,NULL),(118,1,'civicrm/contact/search/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:10:\"mode=16384\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(119,1,'civicrm/contact/search/custom/list',NULL,'Custom Searches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Page_CustomSearch\";','s:10:\"mode=16384\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Find Contacts\";s:3:\"url\";s:31:\"/civicrm/contact/search?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,16,1,1,NULL),(120,1,'civicrm/contact/add',NULL,'New Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(121,1,'civicrm/contact/add/individual','ct=Individual','New Individual','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(122,1,'civicrm/contact/add/household','ct=Household','New Household','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(123,1,'civicrm/contact/add/organization','ct=Organization','New Organization','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:12:\"add contacts\";}i:1;s:3:\"and\";}','s:24:\"CRM_Contact_Form_Contact\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Contact\";s:3:\"url\";s:28:\"/civicrm/contact/add?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(124,1,'civicrm/contact/relatedcontact',NULL,'Edit Related Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_RelatedContact\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(125,1,'civicrm/contact/merge',NULL,'Merge Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Contact_Form_Merge\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(126,1,'civicrm/contact/email',NULL,'Email a Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(127,1,'civicrm/contact/map',NULL,'Map Location(s)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_Map\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(128,1,'civicrm/contact/map/event',NULL,'Map Event Location','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contact_Form_Task_Map_Event\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Map Location(s)\";s:3:\"url\";s:28:\"/civicrm/contact/map?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(129,1,'civicrm/contact/view','cid=%%cid%%','Contact Summary','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Summary\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(130,1,'civicrm/contact/view/delete',NULL,'Delete Contact','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Form_Task_Delete\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(131,1,'civicrm/contact/view/activity','show=1,cid=%%cid%%','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:21:\"CRM_Activity_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(132,1,'civicrm/activity/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Activity_Form_Activity\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(133,1,'civicrm/activity/email/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Form_Task_Email\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(134,1,'civicrm/activity/pdf/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_PDF\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(135,1,'civicrm/contact/view/rel','cid=%%cid%%','Relationships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_Relationship\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(136,1,'civicrm/contact/view/group','cid=%%cid%%','Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contact_Page_View_GroupContact\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(137,1,'civicrm/contact/view/smartgroup','cid=%%cid%%','Smart Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:39:\"CRM_Contact_Page_View_ContactSmartGroup\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(138,1,'civicrm/contact/view/sunlight',NULL,'Sunlight','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:30:\"CRM_Contact_Page_View_Sunlight\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(139,1,'civicrm/contact/view/note','cid=%%cid%%','Notes','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:26:\"CRM_Contact_Page_View_Note\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(140,1,'civicrm/contact/view/tag','cid=%%cid%%','Tags','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Tag\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(141,1,'civicrm/contact/view/cd',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:32:\"CRM_Contact_Page_View_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(142,1,'civicrm/contact/view/cd/edit',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Form_CustomData\";','s:13:\"addSequence=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(143,1,'civicrm/contact/view/vcard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Vcard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(144,1,'civicrm/contact/view/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:27:\"CRM_Contact_Page_View_Print\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(145,1,'civicrm/contact/view/log',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:25:\"CRM_Contact_Page_View_Log\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(146,1,'civicrm/user',NULL,'Contact Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"access Contact Dashboard\";}i:1;s:3:\"and\";}','s:35:\"CRM_Contact_Page_View_UserDashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL),(147,1,'civicrm/dashlet/activity',NULL,'Activity Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_Activity\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(148,1,'civicrm/dashlet/blog',NULL,'CiviCRM Blog','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Dashlet_Page_Blog\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(149,1,'civicrm/ajax/relation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"relationship\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL),(150,1,'civicrm/ajax/groupTree',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"groupTree\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(151,1,'civicrm/ajax/custom',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:11:\"customField\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(152,1,'civicrm/ajax/customvalue',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:17:\"deleteCustomValue\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL),(153,1,'civicrm/ajax/cmsuser',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"checkUserName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(154,1,'civicrm/ajax/checkemail',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactEmail\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(155,1,'civicrm/ajax/checkphone',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:15:\"getContactPhone\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(156,1,'civicrm/ajax/subtype',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:13:\"buildSubTypes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(157,1,'civicrm/ajax/dashboard',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"dashboard\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,3,NULL),(158,1,'civicrm/ajax/signature',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:12:\"getSignature\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(159,1,'civicrm/ajax/pdfFormat',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"pdfFormat\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(160,1,'civicrm/ajax/paperSize',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:9:\"paperSize\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(161,1,'civicrm/ajax/contactref',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:31:\"access contact reference fields\";i:1;s:15:\" access CiviCRM\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"contactReference\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(162,1,'civicrm/dashlet/myCases',NULL,'Case Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Dashlet_Page_MyCases\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(163,1,'civicrm/dashlet/allCases',NULL,'All Cases Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:25:\"CRM_Dashlet_Page_AllCases\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(164,1,'civicrm/dashlet/casedashboard',NULL,'Case Dashboard Dashlet','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Dashlet_Page_CaseDashboard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"CiviCRM Dashlets\";s:3:\"url\";s:24:\"/civicrm/dashlet?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(165,1,'civicrm/contact/deduperules',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer dedupe rules\";i:1;s:24:\"merge duplicate contacts\";}i:1;s:2:\"or\";}','s:28:\"CRM_Contact_Page_DedupeRules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,105,1,0,NULL),(166,1,'civicrm/contact/dedupefind',NULL,'Find and Merge Duplicate Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','s:27:\"CRM_Contact_Page_DedupeFind\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(167,1,'civicrm/ajax/dedupefind',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:24:\"merge duplicate contacts\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:10:\"getDedupes\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(168,1,'civicrm/dedupe/exception',NULL,'Dedupe Exceptions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contact_Page_DedupeException\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,110,1,0,NULL),(169,1,'civicrm/ajax/dedupeRules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:16:\"buildDedupeRules\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(170,1,'civicrm/contact/view/useradd','cid=%%cid%%','Add User','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:29:\"CRM_Contact_Page_View_Useradd\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(171,1,'civicrm/ajax/markSelection',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:22:\"selectUnselectContacts\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(172,1,'civicrm/activity/sms/add','action=add','Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Contact_Form_Task_SMS\";','s:14:\"attachUpload=1\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:12:\"New Activity\";s:3:\"url\";s:63:\"/civicrm/activity?reset=1&amp;action=add&amp;context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(173,1,'civicrm/ajax/contactrelationships',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"view my contact\";}i:1;s:2:\"or\";}','a:2:{i:0;s:21:\"CRM_Contact_Page_AJAX\";i:1;s:23:\"getContactRelationships\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(174,1,'civicrm/custom/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Custom_Form_CustomData\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(175,1,'civicrm/group',NULL,'Manage Groups','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Page_Group\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,30,1,1,NULL),(176,1,'civicrm/group/search',NULL,'Group Members','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Controller_Search\";','s:8:\"mode=256\";','a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(177,1,'civicrm/group/add',NULL,'New Group','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:11:\"edit groups\";}i:1;s:3:\"and\";}','s:20:\"CRM_Group_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:13:\"Manage Groups\";s:3:\"url\";s:22:\"/civicrm/group?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(178,1,'civicrm/ajax/grouplist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Group_Page_AJAX\";i:1;s:12:\"getGroupList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(179,1,'civicrm/import',NULL,'Import','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,400,1,1,NULL),(180,1,'civicrm/import/contact',NULL,'Import Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contact_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,410,1,1,NULL),(181,1,'civicrm/import/activity',NULL,'Import Activities','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Activity_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,420,1,1,NULL),(182,1,'civicrm/import/custom','id=%%id%%','Import Multi-value Custom Data','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Custom_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:6:\"Import\";s:3:\"url\";s:23:\"/civicrm/import?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,420,1,1,NULL),(183,1,'civicrm/ajax/status',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"import contacts\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Contact_Import_Page_AJAX\";i:1;s:6:\"status\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(184,1,'civicrm/ajax/jqState',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:7:\"jqState\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(185,1,'civicrm/ajax/jqCounty',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:8:\"jqCounty\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(186,1,'civicrm/upgrade',NULL,'Upgrade CiviCRM','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Upgrade_Page_Upgrade\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(187,1,'civicrm/export',NULL,'Download Errors','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(188,1,'civicrm/export/contact',NULL,'Export Contacts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Export_BAO_Export\";i:1;s:6:\"invoke\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Download Errors\";s:3:\"url\";s:23:\"/civicrm/export?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,0,1,0,NULL),(189,1,'civicrm/admin/options/acl_role',NULL,'ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(190,1,'civicrm/acl',NULL,'Manage ACLs','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_ACL_Page_ACL\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(191,1,'civicrm/acl/entityrole',NULL,'Assign Users to ACL Roles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_ACL_Page_EntityRole\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(192,1,'civicrm/acl/basic',NULL,'ACL','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_ACL_Page_ACLBasic\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"Manage ACLs\";s:3:\"url\";s:20:\"/civicrm/acl?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(193,1,'civicrm/standalone/register',NULL,'Registration Page','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Standalone_Form_Register\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(194,1,'civicrm/file',NULL,'Browse Uploaded files','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access uploaded files\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_Page_File\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(195,1,'civicrm/file/delete',NULL,'Delete File','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:17:\"CRM_Core_BAO_File\";i:1;s:16:\"deleteAttachment\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:21:\"Browse Uploaded files\";s:3:\"url\";s:21:\"/civicrm/file?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(196,1,'civicrm/friend',NULL,'Tell a Friend','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:15:\"CRM_Friend_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(197,1,'civicrm/logout',NULL,'Log out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Utils_System\";i:1;s:6:\"logout\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,9999,1,1,NULL),(198,1,'civicrm/i18n',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"translate CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Core_I18n_Form\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(199,1,'civicrm/ajax/attachment',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:29:\"CRM_Core_Page_AJAX_Attachment\";i:1;s:10:\"attachFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(200,1,'civicrm/api',NULL,'CiviCRM API','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Admin_Page_APIExplorer\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(201,1,'civicrm/ajax/apiexample',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:14:\"getExampleFile\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(202,1,'civicrm/ajax/apidoc',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:26:\"CRM_Admin_Page_APIExplorer\";i:1;s:6:\"getDoc\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(203,1,'civicrm/ajax/rest',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access AJAX API\";}i:1;s:2:\"or\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:4:\"ajax\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(204,1,'civicrm/api/json',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:8:\"ajaxJson\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"CiviCRM API\";s:3:\"url\";s:20:\"/civicrm/api?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(205,1,'civicrm/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:14:\"CRM_Utils_REST\";i:1;s:12:\"loadTemplate\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(206,1,'civicrm/ajax/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(207,1,'civicrm/contribute/ajax/tableview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(208,1,'civicrm/payment/ipn',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:16:\"CRM_Core_Payment\";i:1;s:9:\"handleIPN\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&amp;action=add\";}}',NULL,NULL,2,NULL,1,NULL,0,1,1,0,NULL),(209,1,'civicrm/batch',NULL,'Batch Data Entry','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(210,1,'civicrm/batch/add',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Batch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(211,1,'civicrm/batch/entry',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:20:\"CRM_Batch_Form_Entry\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Batch Data Entry\";s:3:\"url\";s:22:\"/civicrm/batch?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(212,1,'civicrm/ajax/batch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:9:\"batchSave\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(213,1,'civicrm/ajax/batchlist',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Batch_Page_AJAX\";i:1;s:12:\"getBatchList\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(214,1,'civicrm/ajax/inline',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Page_AJAX\";i:1;s:3:\"run\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(215,1,'civicrm/dev/qunit',NULL,'QUnit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:19:\"CRM_Core_Page_QUnit\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(216,1,'civicrm/profile-editor/schema',NULL,'ProfileEditor','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:25:\"CRM_UF_Page_ProfileEditor\";i:1;s:13:\"getSchemaJSON\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(217,1,'civicrm/a',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"\\Civi\\Angular\\Page\\Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(218,1,'civicrm/ajax/angular-modules',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"\\Civi\\Angular\\Page\\Modules\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(219,1,'civicrm/ajax/recurringentity/update-mode',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:34:\"CRM_Core_Page_AJAX_RecurringEntity\";i:1;s:10:\"updateMode\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(220,1,'civicrm/recurringentity/preview',NULL,'Confirm dates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Core_Page_RecurringEntityPreview\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(221,1,'civicrm/ajax/l10n-js',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Core_Resources\";i:1;s:20:\"outputLocalizationJS\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(222,1,'civicrm/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(223,1,'civicrm/pcp/campaign',NULL,'Setup a Personal Campaign Page - Account Information','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL),(224,1,'civicrm/pcp/info',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:20:\"CRM_PCP_Page_PCPInfo\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(225,1,'civicrm/admin/pcp','context=contribute','Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Page_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,362,1,0,NULL),(226,1,'civicrm/profile',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL),(227,1,'civicrm/profile/create',NULL,'CiviCRM Profile Create','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Profile_Page_Router\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,0,1,0,NULL),(228,1,'civicrm/profile/view',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:21:\"CRM_Profile_Page_View\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(229,1,'civicrm/event',NULL,'CiviEvent Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,800,1,1,NULL),(230,1,'civicrm/participant/add','action=add','Register New Participant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(231,1,'civicrm/event/info',NULL,'Event Information','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL),(232,1,'civicrm/event/register',NULL,'Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Controller_Registration\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,1,1,1,0,NULL),(233,1,'civicrm/event/confirm',NULL,'Confirm Event Registration','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:46:\"CRM_Event_Form_Registration_ParticipantConfirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,1,1,1,0,NULL),(234,1,'civicrm/event/ical',NULL,'Current and Upcoming Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"view event info\";}i:1;s:3:\"and\";}','s:24:\"CRM_Event_Page_ICalendar\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,0,1,0,NULL),(235,1,'civicrm/event/participant',NULL,'Event Participants List','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"view event participants\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Page_ParticipantListing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,0,1,0,NULL),(236,1,'civicrm/admin/event',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,370,1,0,NULL),(237,1,'civicrm/admin/eventTemplate',NULL,'Event Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Admin_Page_EventTemplate\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,375,1,0,NULL),(238,1,'civicrm/admin/options/event_type',NULL,'Event Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,385,1,0,NULL),(239,1,'civicrm/admin/participant_status',NULL,'Participant Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Admin_Page_ParticipantStatusType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL),(240,1,'civicrm/admin/options/participant_role',NULL,'Participant Role','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,395,1,0,NULL),(241,1,'civicrm/admin/options/participant_listing',NULL,'Participant Listing Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,398,1,0,NULL),(242,1,'civicrm/admin/conference_slots','group=conference_slot','Conference Slot Labels','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,415,1,0,NULL),(243,1,'civicrm/event/search',NULL,'Find Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,810,1,1,NULL),(244,1,'civicrm/event/manage',NULL,'Manage Events','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:26:\"CRM_Event_Page_ManageEvent\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,820,1,1,NULL),(245,1,'civicrm/event/badge',NULL,'Print Event Name Badge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:25:\"CRM_Event_Form_Task_Badge\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,1,1,0,NULL),(246,1,'civicrm/event/manage/settings',NULL,'Event Info and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,910,1,0,NULL),(247,1,'civicrm/event/manage/location',NULL,'Event Location','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:35:\"CRM_Event_Form_ManageEvent_Location\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,930,1,0,NULL),(248,1,'civicrm/event/manage/fee',NULL,'Event Fees','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:30:\"CRM_Event_Form_ManageEvent_Fee\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,920,1,0,NULL),(249,1,'civicrm/event/manage/registration',NULL,'Event Online Registration','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:39:\"CRM_Event_Form_ManageEvent_Registration\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,930,1,0,NULL),(250,1,'civicrm/event/manage/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:21:\"CRM_Friend_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,940,1,0,NULL),(251,1,'civicrm/event/manage/reminder',NULL,'Schedule Reminders','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:44:\"CRM_Event_Form_ManageEvent_ScheduleReminders\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,950,1,0,NULL),(252,1,'civicrm/event/manage/repeat',NULL,'Repeat Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:33:\"CRM_Event_Form_ManageEvent_Repeat\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,960,1,0,NULL),(253,1,'civicrm/event/manage/conference',NULL,'Conference Slots','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:37:\"CRM_Event_Form_ManageEvent_Conference\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,950,1,0,NULL),(254,1,'civicrm/event/add','action=add','New Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:36:\"CRM_Event_Form_ManageEvent_EventInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,830,1,0,NULL),(255,1,'civicrm/event/import',NULL,'Import Participants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:16:\"access CiviEvent\";i:1;s:23:\"edit event participants\";}i:1;s:3:\"and\";}','s:27:\"CRM_Event_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,840,1,1,NULL),(256,1,'civicrm/event/price',NULL,'Manage Price Sets','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_Price_Page_Set\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,850,1,1,NULL),(257,1,'civicrm/contact/view/participant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:18:\"CRM_Event_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,4,1,0,NULL),(258,1,'civicrm/ajax/eventFee',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:19:\"CRM_Event_Page_AJAX\";i:1;s:8:\"eventFee\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(259,1,'civicrm/ajax/locBlock',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:11:\"getLocBlock\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(260,1,'civicrm/ajax/event/add_participant_to_cart',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Event_Cart_Page_CheckoutAJAX\";i:1;s:23:\"add_participant_to_cart\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(261,1,'civicrm/ajax/event/remove_participant_from_cart',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Event_Cart_Page_CheckoutAJAX\";i:1;s:28:\"remove_participant_from_cart\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(262,1,'civicrm/event/add_to_cart',NULL,'Add Event To Cart','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:29:\"CRM_Event_Cart_Page_AddToCart\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL),(263,1,'civicrm/event/cart_checkout',NULL,'Cart Checkout','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:34:\"CRM_Event_Cart_Controller_Checkout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,1,1,1,0,NULL),(264,1,'civicrm/event/remove_from_cart',NULL,'Remove From Cart','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:34:\"CRM_Event_Cart_Page_RemoveFromCart\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL),(265,1,'civicrm/event/view_cart',NULL,'View Cart','s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:28:\"CRM_Event_Cart_Page_ViewCart\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL),(266,1,'civicrm/event/participant/feeselection',NULL,'Change Registration Selections','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:38:\"CRM_Event_Form_ParticipantFeeSelection\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:23:\"Event Participants List\";s:3:\"url\";s:34:\"/civicrm/event/participant?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,0,1,1,0,NULL),(267,1,'civicrm/event/manage/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:18:\"CRM_PCP_Form_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Manage Events\";s:3:\"url\";s:29:\"/civicrm/event/manage?reset=1\";}}',NULL,NULL,1,NULL,NULL,NULL,1,540,1,1,NULL),(268,1,'civicrm/event/pcp',NULL,NULL,'s:1:\"1\";','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:16:\"access CiviEvent\";}i:1;s:3:\"and\";}','s:16:\"CRM_PCP_Form_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,1,1,0,NULL),(269,1,'civicrm/event/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviEvent Dashboard\";s:3:\"url\";s:22:\"/civicrm/event?reset=1\";}}',NULL,NULL,1,NULL,1,NULL,0,0,1,0,NULL),(270,1,'civicrm/contribute',NULL,'CiviContribute Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:29:\"CRM_Contribute_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,500,1,1,NULL),(271,1,'civicrm/contribute/add','action=add','New Contribution','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,1,NULL),(272,1,'civicrm/contribute/chart',NULL,'Contribution Summary - Chart View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_ContributionCharts\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(273,1,'civicrm/contribute/transact',NULL,'CiviContribute','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Controller_Contribution\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,1,NULL,1,0,1,0,NULL),(274,1,'civicrm/admin/contribute',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,360,1,0,NULL),(275,1,'civicrm/admin/contribute/settings',NULL,'Title and Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_Settings\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL),(276,1,'civicrm/admin/contribute/amount',NULL,'Contribution Amounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Amount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,410,1,0,NULL),(277,1,'civicrm/admin/contribute/membership',NULL,'Membership Section','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:31:\"CRM_Member_Form_MembershipBlock\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,420,1,0,NULL),(278,1,'civicrm/admin/contribute/custom',NULL,'Include Profiles','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Custom\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,430,1,0,NULL),(279,1,'civicrm/admin/contribute/thankyou',NULL,'Thank-you and Receipting','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:45:\"CRM_Contribute_Form_ContributionPage_ThankYou\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,430,1,0,NULL),(280,1,'civicrm/admin/contribute/friend',NULL,'Tell a Friend','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Friend_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,440,1,0,NULL),(281,1,'civicrm/admin/contribute/widget',NULL,'Configure Widget','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_ContributionPage_Widget\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,460,1,0,NULL),(282,1,'civicrm/admin/contribute/premium',NULL,'Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:44:\"CRM_Contribute_Form_ContributionPage_Premium\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,470,1,0,NULL),(283,1,'civicrm/admin/contribute/addProductToPage',NULL,'Add Products to This Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:47:\"CRM_Contribute_Form_ContributionPage_AddProduct\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,480,1,0,NULL),(284,1,'civicrm/admin/contribute/add','action=add','New Contribution Page','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:42:\"CRM_Contribute_Controller_ContributionPage\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(285,1,'civicrm/admin/contribute/managePremiums',NULL,'Manage Premiums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Page_ManagePremiums\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,365,1,0,NULL),(286,1,'civicrm/admin/financial/financialType',NULL,'Financial Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Financial_Page_FinancialType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,580,1,0,NULL),(287,1,'civicrm/payment','action=add','New Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Form_AdditionalPayment\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,1,NULL),(288,1,'civicrm/admin/financial/financialAccount',NULL,'Financial Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_FinancialAccount\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,370,1,0,NULL),(289,1,'civicrm/admin/options/payment_instrument',NULL,'Payment Instruments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL),(290,1,'civicrm/admin/options/accept_creditcard',NULL,'Accepted Credit Cards','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,395,1,0,NULL),(291,1,'civicrm/admin/options/soft_credit_type',NULL,'Soft Credit Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(292,1,'civicrm/contact/view/contribution',NULL,'Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:23:\"CRM_Contribute_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(293,1,'civicrm/contact/view/contributionrecur',NULL,'Recurring Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:37:\"CRM_Contribute_Page_ContributionRecur\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(294,1,'civicrm/contact/view/contribution/additionalinfo',NULL,'Additional Info','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:13:\"Contributions\";s:3:\"url\";s:42:\"/civicrm/contact/view/contribution?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(295,1,'civicrm/contribute/search',NULL,'Find Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,510,1,1,NULL),(296,1,'civicrm/contribute/searchBatch',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:37:\"CRM_Contribute_Controller_SearchBatch\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,588,1,1,NULL),(297,1,'civicrm/contribute/import',NULL,'Import Contributions','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"edit contributions\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,520,1,1,NULL),(298,1,'civicrm/contribute/manage',NULL,'Manage Contribution Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:36:\"CRM_Contribute_Page_ContributionPage\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,530,1,1,NULL),(299,1,'civicrm/contribute/additionalinfo',NULL,'AdditionalInfo Form','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:34:\"CRM_Contribute_Form_AdditionalInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,0,1,0,NULL),(300,1,'civicrm/ajax/permlocation',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','a:2:{i:0;s:27:\"CRM_Core_Page_AJAX_Location\";i:1;s:23:\"getPermissionedLocation\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(301,1,'civicrm/contribute/unsubscribe',NULL,'Cancel Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_CancelSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(302,1,'civicrm/contribute/onbehalf',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:43:\"CRM_Contribute_Form_Contribution_OnBehalfOf\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(303,1,'civicrm/contribute/updatebilling',NULL,'Update Billing Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:33:\"CRM_Contribute_Form_UpdateBilling\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(304,1,'civicrm/contribute/updaterecur',NULL,'Update Subscription','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Form_UpdateSubscription\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(305,1,'civicrm/contribute/subscriptionstatus',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:38:\"CRM_Contribute_Page_SubscriptionStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,0,NULL),(306,1,'civicrm/admin/financial/financialType/accounts',NULL,'Financial Type Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:39:\"CRM_Financial_Page_FinancialTypeAccount\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:15:\"Financial Types\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,581,1,0,NULL),(307,1,'civicrm/financial/batch',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:33:\"CRM_Financial_Page_FinancialBatch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,585,1,0,NULL),(308,1,'civicrm/financial/financialbatches',NULL,'Accounting Batches','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Financial_Page_Batch\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,586,1,0,NULL),(309,1,'civicrm/batchtransaction',NULL,'Accounting Batch','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:35:\"CRM_Financial_Page_BatchTransaction\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,600,1,0,NULL),(310,1,'civicrm/financial/batch/export',NULL,'Accounting Batch Export','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"create manual batch\";}i:1;s:3:\"and\";}','s:25:\"CRM_Financial_Form_Export\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:16:\"Accounting Batch\";s:3:\"url\";s:32:\"/civicrm/financial/batch?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,610,1,0,NULL),(311,1,'civicrm/payment/view','action=view','View Payment','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:31:\"CRM_Contribute_Page_PaymentInfo\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:11:\"New Payment\";s:3:\"url\";s:39:\"/civicrm/payment?reset=1&amp;action=add\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,1,NULL),(312,1,'civicrm/admin/setting/preferences/contribute',NULL,'CiviContribute Component Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:21:\"access CiviContribute\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:37:\"CRM_Admin_Form_Preferences_Contribute\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(313,1,'civicrm/contribute/invoice',NULL,'PDF Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','a:2:{i:0;s:32:\"CRM_Contribute_Form_Task_Invoice\";i:1;s:11:\"getPrintPDF\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,620,1,1,NULL),(314,1,'civicrm/contribute/invoice/email',NULL,'Email Invoice','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"access CiviContribute\";}i:1;s:3:\"and\";}','s:32:\"CRM_Contribute_Form_Task_Invoice\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}i:2;a:2:{s:5:\"title\";s:11:\"PDF Invoice\";s:3:\"url\";s:35:\"/civicrm/contribute/invoice?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,630,1,1,NULL),(315,1,'civicrm/admin/contribute/pcp',NULL,'Personal Campaign Pages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_PCP_Form_Contribute\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,450,1,0,NULL),(316,1,'civicrm/contribute/campaign',NULL,'Setup a Personal Campaign Page - Account Information','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:25:\"make online contributions\";}i:1;s:3:\"and\";}','s:22:\"CRM_PCP_Controller_PCP\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:24:\"CiviContribute Dashboard\";s:3:\"url\";s:27:\"/civicrm/contribute?reset=1\";}}',NULL,NULL,2,NULL,1,NULL,0,0,1,0,NULL),(317,1,'civicrm/member',NULL,'CiviMember Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:25:\"CRM_Member_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,700,1,1,NULL),(318,1,'civicrm/member/add','action=add','New Membership','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,1,1,0,NULL),(319,1,'civicrm/admin/member/membershipType',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Page_MembershipType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,370,1,0,NULL),(320,1,'civicrm/admin/member/membershipStatus',NULL,'Membership Status Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:32:\"CRM_Member_Page_MembershipStatus\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,380,1,0,NULL),(321,1,'civicrm/contact/view/membership','force=1,cid=%%cid%%','Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:19:\"CRM_Member_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,2,1,0,NULL),(322,1,'civicrm/membership/view',NULL,'Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipView\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,390,1,0,NULL),(323,1,'civicrm/member/search',NULL,'Find Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','s:28:\"CRM_Member_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,710,1,1,NULL),(324,1,'civicrm/member/import',NULL,'Import Memberships','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:16:\"edit memberships\";}i:1;s:3:\"and\";}','s:28:\"CRM_Member_Import_Controller\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviMember Dashboard\";s:3:\"url\";s:23:\"/civicrm/member?reset=1\";}}',NULL,NULL,3,NULL,NULL,NULL,0,720,1,1,NULL),(325,1,'civicrm/ajax/memType',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviMember\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Member_Page_AJAX\";i:1;s:21:\"getMemberTypeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(326,1,'civicrm/admin/member/membershipType/add',NULL,'Membership Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviMember\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:30:\"CRM_Member_Form_MembershipType\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:16:\"Membership Types\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(327,1,'civicrm/mailing',NULL,'CiviMail','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,600,1,1,NULL),(328,1,'civicrm/admin/mail',NULL,'Mailer Settings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Form_Setting_Mail\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL),(329,1,'civicrm/admin/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,410,1,0,NULL),(330,1,'civicrm/admin/options/from_email_address/civimail',NULL,'From Email Addresses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:4:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}i:3;a:2:{s:5:\"title\";s:20:\"From Email Addresses\";s:3:\"url\";s:49:\"/civicrm/admin/options/from_email_address?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,415,1,0,NULL),(331,1,'civicrm/admin/mailSettings',NULL,'Mail Accounts','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:27:\"CRM_Admin_Page_MailSettings\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,420,1,0,NULL),(332,1,'civicrm/mailing/send',NULL,'New Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:27:\"CRM_Mailing_Controller_Send\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,610,1,1,NULL),(333,1,'civicrm/mailing/browse/scheduled','scheduled=true','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";i:2;s:15:\"create mailings\";i:3;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,620,1,1,NULL),(334,1,'civicrm/mailing/browse/unscheduled','scheduled=false','Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";i:2;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,620,1,1,NULL),(335,1,'civicrm/mailing/browse/archived',NULL,'Find Mailings','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,625,1,1,NULL),(336,1,'civicrm/mailing/component',NULL,'Headers, Footers, and Automated Messages','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Page_Component\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,630,1,1,NULL),(337,1,'civicrm/mailing/unsubscribe',NULL,'Unsubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Form_Unsubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,640,1,0,NULL),(338,1,'civicrm/mailing/resubscribe',NULL,'Resubscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:28:\"CRM_Mailing_Page_Resubscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,645,1,0,NULL),(339,1,'civicrm/mailing/optout',NULL,'Opt-out','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:23:\"CRM_Mailing_Form_Optout\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,650,1,0,NULL),(340,1,'civicrm/mailing/confirm',NULL,'Confirm','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:24:\"CRM_Mailing_Page_Confirm\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,660,1,0,NULL),(341,1,'civicrm/mailing/subscribe',NULL,'Subscribe','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:26:\"CRM_Mailing_Form_Subscribe\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,660,1,0,NULL),(342,1,'civicrm/mailing/preview',NULL,'Preview Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";i:2;s:15:\"create mailings\";i:3;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:24:\"CRM_Mailing_Page_Preview\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,670,1,0,NULL),(343,1,'civicrm/mailing/report','mid=%%mid%%','Mailing Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:15:\"create mailings\";}i:1;s:2:\"or\";}','s:23:\"CRM_Mailing_Page_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,680,1,0,NULL),(344,1,'civicrm/mailing/forward',NULL,'Forward Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:43:\"access CiviMail subscribe/unsubscribe pages\";}i:1;s:3:\"and\";}','s:31:\"CRM_Mailing_Form_ForwardMailing\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,685,1,0,NULL),(345,1,'civicrm/mailing/queue',NULL,'Sending Mail','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:23:\"CRM_Mailing_Page_Browse\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,690,1,0,NULL),(346,1,'civicrm/mailing/report/event',NULL,'Mailing Event','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:15:\"access CiviMail\";}i:1;s:3:\"and\";}','s:22:\"CRM_Mailing_Page_Event\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}i:2;a:2:{s:5:\"title\";s:14:\"Mailing Report\";s:3:\"url\";s:47:\"/civicrm/mailing/report?reset=1&amp;mid=%%mid%%\";}}',NULL,NULL,4,NULL,NULL,NULL,0,695,1,0,NULL),(347,1,'civicrm/ajax/template',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:8:\"template\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(348,1,'civicrm/mailing/schedule',NULL,'Schedule Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:17:\"schedule mailings\";}i:1;s:2:\"or\";}','s:25:\"CRM_Mailing_Form_Schedule\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,700,1,0,NULL),(349,1,'civicrm/mailing/view',NULL,'View Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:28:\"view public CiviMail content\";i:1;s:15:\"access CiviMail\";i:2;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:21:\"CRM_Mailing_Page_View\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,1,NULL,0,800,1,0,NULL),(350,1,'civicrm/mailing/approve',NULL,'Approve Mailing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:15:\"access CiviMail\";i:1;s:16:\"approve mailings\";}i:1;s:2:\"or\";}','s:24:\"CRM_Mailing_Form_Approve\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:8:\"CiviMail\";s:3:\"url\";s:24:\"/civicrm/mailing?reset=1\";}}',NULL,NULL,4,NULL,NULL,NULL,0,850,1,0,NULL),(351,1,'civicrm/contact/view/mailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:20:\"CRM_Mailing_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(352,1,'civicrm/ajax/contactmailing',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:21:\"CRM_Mailing_Page_AJAX\";i:1;s:18:\"getContactMailings\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(353,1,'civicrm/grant',NULL,'CiviGrant Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:24:\"CRM_Grant_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,1000,1,1,NULL),(354,1,'civicrm/grant/info',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:24:\"CRM_Grant_Page_DashBoard\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviGrant Dashboard\";s:3:\"url\";s:22:\"/civicrm/grant?reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,0,1,0,NULL),(355,1,'civicrm/grant/search',NULL,'Find Grants','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:27:\"CRM_Grant_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviGrant Dashboard\";s:3:\"url\";s:22:\"/civicrm/grant?reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,1010,1,1,NULL),(356,1,'civicrm/grant/add','action=add','New Grant','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:18:\"CRM_Grant_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:19:\"CiviGrant Dashboard\";s:3:\"url\";s:22:\"/civicrm/grant?reset=1\";}}',NULL,NULL,5,NULL,NULL,NULL,0,1,1,1,NULL),(357,1,'civicrm/contact/view/grant',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:16:\"access CiviGrant\";}i:1;s:3:\"and\";}','s:18:\"CRM_Grant_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(358,1,'civicrm/pledge',NULL,'CiviPledge Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:25:\"CRM_Pledge_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,550,1,1,NULL),(359,1,'civicrm/pledge/search',NULL,'Find Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:28:\"CRM_Pledge_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,560,1,1,NULL),(360,1,'civicrm/contact/view/pledge','force=1,cid=%%cid%%','Pledges','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,570,1,0,NULL),(361,1,'civicrm/pledge/add','action=add','New Pledge','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:19:\"CRM_Pledge_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,1,1,1,NULL),(362,1,'civicrm/pledge/payment',NULL,'Pledge Payments','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','s:23:\"CRM_Pledge_Page_Payment\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:20:\"CiviPledge Dashboard\";s:3:\"url\";s:23:\"/civicrm/pledge?reset=1\";}}',NULL,NULL,6,NULL,NULL,NULL,0,580,1,0,NULL),(363,1,'civicrm/ajax/pledgeName',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviPledge\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Pledge_Page_AJAX\";i:1;s:10:\"pledgeName\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(364,1,'civicrm/ajax/pledgeAmount',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:17:\"access CiviPledge\";i:1;s:18:\"administer CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:20:\"CRM_Pledge_Page_AJAX\";i:1;s:17:\"getPledgeDefaults\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(365,1,'civicrm/case',NULL,'CiviCase Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:23:\"CRM_Case_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,900,1,1,NULL),(366,1,'civicrm/case/add',NULL,'Open Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:18:\"CRM_Case_Form_Case\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,1,NULL),(367,1,'civicrm/case/search',NULL,'Find Cases','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Controller_Search\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,910,1,1,NULL),(368,1,'civicrm/case/activity',NULL,'Case Activity','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Case_Form_Activity\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(369,1,'civicrm/case/report',NULL,'Case Activity Audit','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','s:20:\"CRM_Case_Form_Report\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(370,1,'civicrm/case/cd/edit',NULL,'Case Custom Set','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:24:\"CRM_Case_Form_CustomData\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(371,1,'civicrm/contact/view/case',NULL,'Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:17:\"CRM_Case_Page_Tab\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(372,1,'civicrm/case/activity/view',NULL,'Activity View','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Case_Form_ActivityView\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Case Activity\";s:3:\"url\";s:30:\"/civicrm/case/activity?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(373,1,'civicrm/contact/view/case/editClient',NULL,'Assign to Another Client','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:14:\"access CiviCRM\";i:1;s:15:\"edit my contact\";i:2;s:15:\"view my contact\";}i:1;s:2:\"or\";}','s:24:\"CRM_Case_Form_EditClient\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:15:\"Contact Summary\";s:3:\"url\";s:45:\"/civicrm/contact/view?reset=1&amp;cid=%%cid%%\";}i:2;a:2:{s:5:\"title\";s:4:\"Case\";s:3:\"url\";s:34:\"/civicrm/contact/view/case?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(374,1,'civicrm/case/addToCase',NULL,'Build Activity To Case','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Case_Form_ActivityToCase\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(375,1,'civicrm/case/details',NULL,'Case Details','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:25:\"CRM_Case_Page_CaseDetails\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(376,1,'civicrm/admin/options/case_type',NULL,'Case Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Core_Page_Redirect\";','s:24:\"url=civicrm/a/#/caseType\";','a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,390,1,0,NULL),(377,1,'civicrm/admin/options/redaction_rule',NULL,'Redaction Rules','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL),(378,1,'civicrm/admin/options/case_status',NULL,'Case Statuses','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL),(379,1,'civicrm/admin/options/encounter_medium',NULL,'Encounter Mediums','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:19:\"administer CiviCase\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,400,1,0,NULL),(380,1,'civicrm/case/report/print',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:31:\"access all cases and activities\";}i:1;s:3:\"and\";}','a:2:{i:0;s:28:\"CRM_Case_XMLProcessor_Report\";i:1;s:15:\"printCaseReport\";}',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}i:2;a:2:{s:5:\"title\";s:19:\"Case Activity Audit\";s:3:\"url\";s:28:\"/civicrm/case/report?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(381,1,'civicrm/case/ajax/unclosed',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:13:\"unclosedCases\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(382,1,'civicrm/case/ajax/addclient',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:9:\"addClient\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(383,1,'civicrm/case/ajax/processtags',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"processCaseTags\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,3,NULL),(384,1,'civicrm/case/ajax/details',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:11:\"CaseDetails\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"CiviCase Dashboard\";s:3:\"url\";s:21:\"/civicrm/case?reset=1\";}}',NULL,NULL,7,NULL,NULL,NULL,0,1,1,0,NULL),(385,1,'civicrm/ajax/delcaserole',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','a:2:{i:0;s:18:\"CRM_Case_Page_AJAX\";i:1;s:15:\"deleteCaseRoles\";}',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(386,1,'civicrm/report',NULL,'CiviReport','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:22:\"CRM_Report_Page_Report\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1200,1,1,NULL),(387,1,'civicrm/report/list',NULL,'CiviCRM Reports','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1,1,0,NULL),(388,1,'civicrm/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1220,1,1,NULL),(389,1,'civicrm/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1241,1,1,NULL),(390,1,'civicrm/admin/report/register',NULL,'Register Report','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:18:\"administer Reports\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Form_Register\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(391,1,'civicrm/report/instance',NULL,'Report','s:1:\"1\";','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:24:\"CRM_Report_Page_Instance\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1,1,0,NULL),(392,1,'civicrm/admin/report/template/list',NULL,'Create New Report from Template','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_TemplateList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(393,1,'civicrm/admin/report/options/report_template',NULL,'Manage Templates','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:14:\"access CiviCRM\";i:1;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','s:23:\"CRM_Report_Page_Options\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(394,1,'civicrm/admin/report/list',NULL,'Reports Listing','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:28:\"CRM_Report_Page_InstanceList\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(395,1,'civicrm/report/chart',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:17:\"access CiviReport\";}i:1;s:3:\"and\";}','a:2:{i:0;s:15:\"CRM_Report_Form\";i:1;s:16:\"uploadChartImage\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:10:\"CiviReport\";s:3:\"url\";s:23:\"/civicrm/report?reset=1\";}}',NULL,NULL,8,NULL,NULL,NULL,0,1,1,0,NULL),(396,1,'civicrm/campaign',NULL,'Campaign Dashboard','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:27:\"CRM_Campaign_Page_DashBoard\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL),(397,1,'civicrm/campaign/add',NULL,'New Campaign','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Campaign\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:25:\"/civicrm/campaign?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL),(398,1,'civicrm/survey/add',NULL,'New Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(399,1,'civicrm/campaign/vote',NULL,'Conduct Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"reserve campaign contacts\";i:3;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Page_Vote\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:25:\"/civicrm/campaign?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL),(400,1,'civicrm/admin/campaign/surveyType',NULL,'Survey Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:23:\"administer CiviCampaign\";}i:1;s:3:\"and\";}','s:28:\"CRM_Campaign_Page_SurveyType\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,0,NULL),(401,1,'civicrm/admin/options/campaign_type',NULL,'Campaign Types','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,2,1,0,NULL),(402,1,'civicrm/admin/options/campaign_status',NULL,'Campaign Status','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,3,1,0,NULL),(403,1,'civicrm/admin/options/engagement_index',NULL,'Engagement Index','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:18:\"administer CiviCRM\";i:1;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:22:\"CRM_Admin_Page_Options\";',NULL,'a:3:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Administer CiviCRM\";s:3:\"url\";s:22:\"/civicrm/admin?reset=1\";}i:2;a:2:{s:5:\"title\";s:13:\"Option Groups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,1,4,1,0,NULL),(404,1,'civicrm/survey/search','op=interview','Record Respondents Interview','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','s:30:\"CRM_Campaign_Controller_Search\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(405,1,'civicrm/campaign/gotv',NULL,'GOTV (Track Voters)','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:4:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:25:\"release campaign contacts\";i:3;s:22:\"gotv campaign contacts\";}i:1;s:2:\"or\";}','s:22:\"CRM_Campaign_Form_Gotv\";',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:25:\"/civicrm/campaign?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL),(406,1,'civicrm/petition/add',NULL,'New Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:26:\"CRM_Campaign_Form_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(407,1,'civicrm/petition/sign',NULL,'Sign Petition','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:36:\"CRM_Campaign_Form_Petition_Signature\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(408,1,'civicrm/petition/browse',NULL,'View Petition Signatures','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:14:\"access CiviCRM\";}i:1;s:3:\"and\";}','s:26:\"CRM_Campaign_Page_Petition\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(409,1,'civicrm/petition/confirm',NULL,'Email address verified','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:34:\"CRM_Campaign_Page_Petition_Confirm\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(410,1,'civicrm/petition/thankyou',NULL,'Thank You','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:1:{i:0;s:21:\"sign CiviCRM Petition\";}i:1;s:3:\"and\";}','s:35:\"CRM_Campaign_Page_Petition_ThankYou\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,1,NULL,0,1,1,0,NULL),(411,1,'civicrm/campaign/registerInterview',NULL,NULL,'a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:3:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";i:2;s:27:\"interview campaign contacts\";}i:1;s:2:\"or\";}','a:2:{i:0;s:22:\"CRM_Campaign_Page_AJAX\";i:1;s:17:\"registerInterview\";}',NULL,'a:2:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}i:1;a:2:{s:5:\"title\";s:18:\"Campaign Dashboard\";s:3:\"url\";s:25:\"/civicrm/campaign?reset=1\";}}',NULL,NULL,9,NULL,NULL,NULL,0,1,1,0,NULL),(412,1,'civicrm/survey/configure/main',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:29:\"CRM_Campaign_Form_Survey_Main\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(413,1,'civicrm/survey/configure/questions',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:34:\"CRM_Campaign_Form_Survey_Questions\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(414,1,'civicrm/survey/configure/results',NULL,'Configure Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:32:\"CRM_Campaign_Form_Survey_Results\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(415,1,'civicrm/survey/delete',NULL,'Delete Survey','a:2:{i:0;s:19:\"CRM_Core_Permission\";i:1;s:9:\"checkMenu\";}','a:2:{i:0;a:2:{i:0;s:23:\"administer CiviCampaign\";i:1;s:15:\"manage campaign\";}i:1;s:2:\"or\";}','s:31:\"CRM_Campaign_Form_Survey_Delete\";',NULL,'a:1:{i:0;a:2:{s:5:\"title\";s:7:\"CiviCRM\";s:3:\"url\";s:16:\"/civicrm?reset=1\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(416,1,'admin',NULL,NULL,NULL,NULL,NULL,NULL,'a:15:{s:26:\"Customize Data and Screens\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:19:{s:20:\"{weight}.Custom Data\";a:6:{s:5:\"title\";s:11:\"Custom Data\";s:4:\"desc\";s:109:\"Configure custom fields to collect and store custom data which is not included in the standard CiviCRM forms.\";s:2:\"id\";s:10:\"CustomData\";s:3:\"url\";s:35:\"/civicrm/admin/custom/group?reset=1\";s:4:\"icon\";s:26:\"admin/small/custm_data.png\";s:5:\"extra\";N;}s:17:\"{weight}.Profiles\";a:6:{s:5:\"title\";s:8:\"Profiles\";s:4:\"desc\";s:151:\"Profiles allow you to aggregate groups of fields and include them in your site as input forms, contact display pages, and search and listings features.\";s:2:\"id\";s:8:\"Profiles\";s:3:\"url\";s:31:\"/civicrm/admin/uf/group?reset=1\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";s:5:\"extra\";N;}s:26:\"{weight}.Tags (Categories)\";a:6:{s:5:\"title\";s:17:\"Tags (Categories)\";s:4:\"desc\";s:158:\"Tags are useful for segmenting the contacts in your database into categories (e.g. Staff Member, Donor, Volunteer, etc.). Create and edit available tags here.\";s:2:\"id\";s:15:\"Tags_Categories\";s:3:\"url\";s:26:\"/civicrm/admin/tag?reset=1\";s:4:\"icon\";s:18:\"admin/small/11.png\";s:5:\"extra\";N;}s:23:\"{weight}.Activity Types\";a:6:{s:5:\"title\";s:14:\"Activity Types\";s:4:\"desc\";s:155:\"CiviCRM has several built-in activity types (meetings, phone calls, emails sent). Track other types of interactions by creating custom activity types here.\";s:2:\"id\";s:13:\"ActivityTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/activity_type?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:27:\"{weight}.Relationship Types\";a:6:{s:5:\"title\";s:18:\"Relationship Types\";s:4:\"desc\";s:148:\"Contacts can be linked to each other through Relationships (e.g. Spouse, Employer, etc.). Define the types of relationships you want to record here.\";s:2:\"id\";s:17:\"RelationshipTypes\";s:3:\"url\";s:30:\"/civicrm/admin/reltype?reset=1\";s:4:\"icon\";s:25:\"admin/small/rela_type.png\";s:5:\"extra\";N;}s:22:\"{weight}.Contact Types\";a:6:{s:5:\"title\";s:13:\"Contact Types\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ContactTypes\";s:3:\"url\";s:38:\"/civicrm/admin/options/subtype?reset=1\";s:4:\"icon\";s:18:\"admin/small/09.png\";s:5:\"extra\";N;}s:23:\"{weight}.Gender Options\";a:6:{s:5:\"title\";s:14:\"Gender Options\";s:4:\"desc\";s:85:\"Options for assigning gender to individual contacts (e.g. Male, Female, Transgender).\";s:2:\"id\";s:13:\"GenderOptions\";s:3:\"url\";s:37:\"/civicrm/admin/options/gender?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:40:\"{weight}.Individual Prefixes (Ms, Mr...)\";a:6:{s:5:\"title\";s:31:\"Individual Prefixes (Ms, Mr...)\";s:4:\"desc\";s:66:\"Options for individual contact prefixes (e.g. Ms., Mr., Dr. etc.).\";s:2:\"id\";s:27:\"IndividualPrefixes_Ms_Mr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_prefix?reset=1\";s:4:\"icon\";s:21:\"admin/small/title.png\";s:5:\"extra\";N;}s:40:\"{weight}.Individual Suffixes (Jr, Sr...)\";a:6:{s:5:\"title\";s:31:\"Individual Suffixes (Jr, Sr...)\";s:4:\"desc\";s:61:\"Options for individual contact suffixes (e.g. Jr., Sr. etc.).\";s:2:\"id\";s:27:\"IndividualSuffixes_Jr_Sr...\";s:3:\"url\";s:48:\"/civicrm/admin/options/individual_suffix?reset=1\";s:4:\"icon\";s:18:\"admin/small/10.png\";s:5:\"extra\";N;}s:39:\"{weight}.Location Types (Home, Work...)\";a:6:{s:5:\"title\";s:30:\"Location Types (Home, Work...)\";s:4:\"desc\";s:94:\"Options for categorizing contact addresses and phone numbers (e.g. Home, Work, Billing, etc.).\";s:2:\"id\";s:26:\"LocationTypes_Home_Work...\";s:3:\"url\";s:35:\"/civicrm/admin/locationType?reset=1\";s:4:\"icon\";s:18:\"admin/small/13.png\";s:5:\"extra\";N;}s:22:\"{weight}.Website Types\";a:6:{s:5:\"title\";s:13:\"Website Types\";s:4:\"desc\";s:48:\"Options for assigning website types to contacts.\";s:2:\"id\";s:12:\"WebsiteTypes\";s:3:\"url\";s:43:\"/civicrm/admin/options/website_type?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:35:\"{weight}.Instant Messenger Services\";a:6:{s:5:\"title\";s:26:\"Instant Messenger Services\";s:4:\"desc\";s:79:\"List of IM services which can be used when recording screen-names for contacts.\";s:2:\"id\";s:24:\"InstantMessengerServices\";s:3:\"url\";s:56:\"/civicrm/admin/options/instant_messenger_service?reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}s:31:\"{weight}.Mobile Phone Providers\";a:6:{s:5:\"title\";s:22:\"Mobile Phone Providers\";s:4:\"desc\";s:90:\"List of mobile phone providers which can be assigned when recording contact phone numbers.\";s:2:\"id\";s:20:\"MobilePhoneProviders\";s:3:\"url\";s:46:\"/civicrm/admin/options/mobile_provider?reset=1\";s:4:\"icon\";s:18:\"admin/small/08.png\";s:5:\"extra\";N;}s:19:\"{weight}.Phone Type\";a:6:{s:5:\"title\";s:10:\"Phone Type\";s:4:\"desc\";s:80:\"Options for assigning phone type to contacts (e.g Phone,\n    Mobile, Fax, Pager)\";s:2:\"id\";s:9:\"PhoneType\";s:3:\"url\";s:41:\"/civicrm/admin/options/phone_type?reset=1\";s:4:\"icon\";s:7:\"tel.gif\";s:5:\"extra\";N;}s:28:\"{weight}.Display Preferences\";a:6:{s:5:\"title\";s:19:\"Display Preferences\";s:4:\"desc\";N;s:2:\"id\";s:18:\"DisplayPreferences\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/display?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:27:\"{weight}.Search Preferences\";a:6:{s:5:\"title\";s:18:\"Search Preferences\";s:4:\"desc\";N;s:2:\"id\";s:17:\"SearchPreferences\";s:3:\"url\";s:37:\"/civicrm/admin/setting/search?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:24:\"{weight}.Navigation Menu\";a:6:{s:5:\"title\";s:15:\"Navigation Menu\";s:4:\"desc\";s:79:\"Add or remove menu items, and modify the order of items on the navigation menu.\";s:2:\"id\";s:14:\"NavigationMenu\";s:3:\"url\";s:27:\"/civicrm/admin/menu?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:26:\"{weight}.Word Replacements\";a:6:{s:5:\"title\";s:17:\"Word Replacements\";s:4:\"desc\";s:18:\"Word Replacements.\";s:2:\"id\";s:16:\"WordReplacements\";s:3:\"url\";s:47:\"/civicrm/admin/options/wordreplacements?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:31:\"{weight}.Manage Custom Searches\";a:6:{s:5:\"title\";s:22:\"Manage Custom Searches\";s:4:\"desc\";s:225:\"Developers and accidental techies with a bit of PHP and SQL knowledge can create new search forms to handle specific search and reporting needs which aren\'t covered by the built-in Advanced Search and Search Builder features.\";s:2:\"id\";s:20:\"ManageCustomSearches\";s:3:\"url\";s:44:\"/civicrm/admin/options/custom_search?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:10;}s:14:\"Communications\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:11:{s:46:\"{weight}.Organization Address and Contact Info\";a:6:{s:5:\"title\";s:37:\"Organization Address and Contact Info\";s:4:\"desc\";s:150:\"Configure primary contact name, email, return-path and address information. This information is used by CiviMail to identify the sending organization.\";s:2:\"id\";s:33:\"OrganizationAddressandContactInfo\";s:3:\"url\";s:47:\"/civicrm/admin/domain?action=update&amp;reset=1\";s:4:\"icon\";s:22:\"admin/small/domain.png\";s:5:\"extra\";N;}s:29:\"{weight}.From Email Addresses\";a:6:{s:5:\"title\";s:20:\"From Email Addresses\";s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"FromEmailAddresses\";s:3:\"url\";s:49:\"/civicrm/admin/options/from_email_address?reset=1\";s:4:\"icon\";s:21:\"admin/small/title.png\";s:5:\"extra\";N;}s:26:\"{weight}.Message Templates\";a:6:{s:5:\"title\";s:17:\"Message Templates\";s:4:\"desc\";s:130:\"Message templates allow you to save and re-use messages with layouts which you can use when sending email to one or more contacts.\";s:2:\"id\";s:16:\"MessageTemplates\";s:3:\"url\";s:39:\"/civicrm/admin/messageTemplates?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:27:\"{weight}.Schedule Reminders\";a:6:{s:5:\"title\";s:18:\"Schedule Reminders\";s:4:\"desc\";s:19:\"Schedule Reminders.\";s:2:\"id\";s:17:\"ScheduleReminders\";s:3:\"url\";s:40:\"/civicrm/admin/scheduleReminders?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:40:\"{weight}.Preferred Communication Methods\";a:6:{s:5:\"title\";s:31:\"Preferred Communication Methods\";s:4:\"desc\";s:117:\"One or more preferred methods of communication can be assigned to each contact. Customize the available options here.\";s:2:\"id\";s:29:\"PreferredCommunicationMethods\";s:3:\"url\";s:61:\"/civicrm/admin/options/preferred_communication_method?reset=1\";s:4:\"icon\";s:29:\"admin/small/communication.png\";s:5:\"extra\";N;}s:22:\"{weight}.Label Formats\";a:6:{s:5:\"title\";s:13:\"Label Formats\";s:4:\"desc\";s:67:\"Configure Label Formats that are used when creating mailing labels.\";s:2:\"id\";s:12:\"LabelFormats\";s:3:\"url\";s:35:\"/civicrm/admin/labelFormats?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:33:\"{weight}.Print Page (PDF) Formats\";a:6:{s:5:\"title\";s:24:\"Print Page (PDF) Formats\";s:4:\"desc\";s:95:\"Configure PDF Page Formats that can be assigned to Message Templates when creating PDF letters.\";s:2:\"id\";s:20:\"PrintPage_PDFFormats\";s:3:\"url\";s:33:\"/civicrm/admin/pdfFormats?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:36:\"{weight}.Communication Style Options\";a:6:{s:5:\"title\";s:27:\"Communication Style Options\";s:4:\"desc\";s:42:\"Options for Communication Style selection.\";s:2:\"id\";s:25:\"CommunicationStyleOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/communication_style?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:31:\"{weight}.Email Greeting Formats\";a:6:{s:5:\"title\";s:22:\"Email Greeting Formats\";s:4:\"desc\";s:75:\"Options for assigning email greetings to individual and household contacts.\";s:2:\"id\";s:20:\"EmailGreetingFormats\";s:3:\"url\";s:45:\"/civicrm/admin/options/email_greeting?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:32:\"{weight}.Postal Greeting Formats\";a:6:{s:5:\"title\";s:23:\"Postal Greeting Formats\";s:4:\"desc\";s:76:\"Options for assigning postal greetings to individual and household contacts.\";s:2:\"id\";s:21:\"PostalGreetingFormats\";s:3:\"url\";s:46:\"/civicrm/admin/options/postal_greeting?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:26:\"{weight}.Addressee Formats\";a:6:{s:5:\"title\";s:17:\"Addressee Formats\";s:4:\"desc\";s:83:\"Options for assigning addressee to individual, household and organization contacts.\";s:2:\"id\";s:16:\"AddresseeFormats\";s:3:\"url\";s:40:\"/civicrm/admin/options/addressee?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:6;}s:12:\"Localization\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:39:\"{weight}.Languages, Currency, Locations\";a:6:{s:5:\"title\";s:30:\"Languages, Currency, Locations\";s:4:\"desc\";N;s:2:\"id\";s:28:\"Languages_Currency_Locations\";s:3:\"url\";s:43:\"/civicrm/admin/setting/localization?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:25:\"{weight}.Address Settings\";a:6:{s:5:\"title\";s:16:\"Address Settings\";s:4:\"desc\";N;s:2:\"id\";s:15:\"AddressSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/address?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:21:\"{weight}.Date Formats\";a:6:{s:5:\"title\";s:12:\"Date Formats\";s:4:\"desc\";N;s:2:\"id\";s:11:\"DateFormats\";s:3:\"url\";s:35:\"/civicrm/admin/setting/date?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:28:\"{weight}.Preferred Languages\";a:6:{s:5:\"title\";s:19:\"Preferred Languages\";s:4:\"desc\";s:30:\"Options for contact languages.\";s:2:\"id\";s:18:\"PreferredLanguages\";s:3:\"url\";s:40:\"/civicrm/admin/options/languages?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:21:\"Users and Permissions\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:2:{s:23:\"{weight}.Access Control\";a:6:{s:5:\"title\";s:14:\"Access Control\";s:4:\"desc\";s:73:\"Grant or deny access to actions (view, edit...), features and components.\";s:2:\"id\";s:13:\"AccessControl\";s:3:\"url\";s:29:\"/civicrm/admin/access?reset=1\";s:4:\"icon\";s:18:\"admin/small/03.png\";s:5:\"extra\";N;}s:38:\"{weight}.Synchronize Users to Contacts\";a:6:{s:5:\"title\";s:29:\"Synchronize Users to Contacts\";s:4:\"desc\";s:71:\"Automatically create a CiviCRM contact record for each CMS user record.\";s:2:\"id\";s:26:\"SynchronizeUserstoContacts\";s:3:\"url\";s:32:\"/civicrm/admin/synchUser?reset=1\";s:4:\"icon\";s:26:\"admin/small/Synch_user.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:1;}s:15:\"System Settings\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:18:{s:32:\"{weight}.Configuration Checklist\";a:6:{s:5:\"title\";s:23:\"Configuration Checklist\";s:4:\"desc\";s:55:\"List of configuration tasks with links to each setting.\";s:2:\"id\";s:22:\"ConfigurationChecklist\";s:3:\"url\";s:33:\"/civicrm/admin/configtask?reset=1\";s:4:\"icon\";s:9:\"check.gif\";s:5:\"extra\";N;}s:34:\"{weight}.Enable CiviCRM Components\";a:6:{s:5:\"title\";s:25:\"Enable CiviCRM Components\";s:4:\"desc\";s:269:\"Enable or disable components (e.g. CiviEvent, CiviMember, etc.) for your site based on the features you need. We recommend disabling any components not being used in order to simplify the user interface. You can easily re-enable components at any time from this screen.\";s:2:\"id\";s:23:\"EnableCiviCRMComponents\";s:3:\"url\";s:40:\"/civicrm/admin/setting/component?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:26:\"{weight}.Manage Extensions\";a:6:{s:5:\"title\";s:17:\"Manage Extensions\";s:4:\"desc\";s:0:\"\";s:2:\"id\";s:16:\"ManageExtensions\";s:3:\"url\";s:33:\"/civicrm/admin/extensions?reset=1\";s:4:\"icon\";s:26:\"admin/small/price_sets.png\";s:5:\"extra\";N;}s:32:\"{weight}.Outbound Email Settings\";a:6:{s:5:\"title\";s:23:\"Outbound Email Settings\";s:4:\"desc\";N;s:2:\"id\";s:21:\"OutboundEmailSettings\";s:3:\"url\";s:35:\"/civicrm/admin/setting/smtp?reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}s:26:\"{weight}.Payment Processor\";a:6:{s:5:\"title\";s:17:\"Payment Processor\";s:4:\"desc\";s:48:\"Payment Processor setup for CiviCRM transactions\";s:2:\"id\";s:16:\"PaymentProcessor\";s:3:\"url\";s:39:\"/civicrm/admin/paymentProcessor?reset=1\";s:4:\"icon\";s:41:\"admin/small/online_contribution_pages.png\";s:5:\"extra\";N;}s:30:\"{weight}.Mapping and Geocoding\";a:6:{s:5:\"title\";s:21:\"Mapping and Geocoding\";s:4:\"desc\";N;s:2:\"id\";s:19:\"MappingandGeocoding\";s:3:\"url\";s:38:\"/civicrm/admin/setting/mapping?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:62:\"{weight}.Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)\";a:6:{s:5:\"title\";s:53:\"Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)\";s:4:\"desc\";s:91:\"Enable undelete/move to trash feature, detailed change logging, ReCAPTCHA to protect forms.\";s:2:\"id\";s:46:\"Misc_Undelete_PDFs_Limits_Logging_Captcha_etc.\";s:3:\"url\";s:35:\"/civicrm/admin/setting/misc?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:20:\"{weight}.Directories\";a:6:{s:5:\"title\";s:11:\"Directories\";s:4:\"desc\";N;s:2:\"id\";s:11:\"Directories\";s:3:\"url\";s:35:\"/civicrm/admin/setting/path?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:22:\"{weight}.Resource URLs\";a:6:{s:5:\"title\";s:13:\"Resource URLs\";s:4:\"desc\";N;s:2:\"id\";s:12:\"ResourceURLs\";s:3:\"url\";s:34:\"/civicrm/admin/setting/url?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:40:\"{weight}.Cleanup Caches and Update Paths\";a:6:{s:5:\"title\";s:31:\"Cleanup Caches and Update Paths\";s:4:\"desc\";s:157:\"Reset the Base Directory Path and Base URL settings - generally when a CiviCRM site is moved to another location in the file system and/or to another domain.\";s:2:\"id\";s:27:\"CleanupCachesandUpdatePaths\";s:3:\"url\";s:50:\"/civicrm/admin/setting/updateConfigBackend?reset=1\";s:4:\"icon\";s:26:\"admin/small/updatepath.png\";s:5:\"extra\";N;}s:33:\"{weight}.CMS Database Integration\";a:6:{s:5:\"title\";s:24:\"CMS Database Integration\";s:4:\"desc\";N;s:2:\"id\";s:22:\"CMSDatabaseIntegration\";s:3:\"url\";s:33:\"/civicrm/admin/setting/uf?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:36:\"{weight}.Safe File Extension Options\";a:6:{s:5:\"title\";s:27:\"Safe File Extension Options\";s:4:\"desc\";s:44:\"File Extensions that can be considered safe.\";s:2:\"id\";s:24:\"SafeFileExtensionOptions\";s:3:\"url\";s:50:\"/civicrm/admin/options/safe_file_extension?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:22:\"{weight}.Option Groups\";a:6:{s:5:\"title\";s:13:\"Option Groups\";s:4:\"desc\";s:35:\"Access all meta-data option groups.\";s:2:\"id\";s:12:\"OptionGroups\";s:3:\"url\";s:30:\"/civicrm/admin/options?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:31:\"{weight}.Import/Export Mappings\";a:6:{s:5:\"title\";s:22:\"Import/Export Mappings\";s:4:\"desc\";s:141:\"Import and Export mappings allow you to easily run the same job multiple times. This option allows you to rename or delete existing mappings.\";s:2:\"id\";s:21:\"Import_ExportMappings\";s:3:\"url\";s:30:\"/civicrm/admin/mapping?reset=1\";s:4:\"icon\";s:33:\"admin/small/import_export_map.png\";s:5:\"extra\";N;}s:18:\"{weight}.Debugging\";a:6:{s:5:\"title\";s:9:\"Debugging\";s:4:\"desc\";N;s:2:\"id\";s:9:\"Debugging\";s:3:\"url\";s:36:\"/civicrm/admin/setting/debug?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:28:\"{weight}.Multi Site Settings\";a:6:{s:5:\"title\";s:19:\"Multi Site Settings\";s:4:\"desc\";N;s:2:\"id\";s:17:\"MultiSiteSettings\";s:3:\"url\";s:52:\"/civicrm/admin/setting/preferences/multisite?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}s:23:\"{weight}.Scheduled Jobs\";a:6:{s:5:\"title\";s:14:\"Scheduled Jobs\";s:4:\"desc\";s:35:\"Managing periodially running tasks.\";s:2:\"id\";s:13:\"ScheduledJobs\";s:3:\"url\";s:26:\"/civicrm/admin/job?reset=1\";s:4:\"icon\";s:18:\"admin/small/13.png\";s:5:\"extra\";N;}s:22:\"{weight}.Sms Providers\";a:6:{s:5:\"title\";s:13:\"Sms Providers\";s:4:\"desc\";s:27:\"To configure a sms provider\";s:2:\"id\";s:12:\"SmsProviders\";s:3:\"url\";s:35:\"/civicrm/admin/sms/provider?reset=1\";s:4:\"icon\";s:18:\"admin/small/36.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:9;}s:12:\"CiviCampaign\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:40:\"{weight}.CiviCampaign Component Settings\";a:6:{s:5:\"title\";s:31:\"CiviCampaign Component Settings\";s:4:\"desc\";s:40:\"Configure global CiviCampaign behaviors.\";s:2:\"id\";s:29:\"CiviCampaignComponentSettings\";s:3:\"url\";s:51:\"/civicrm/admin/setting/preferences/campaign?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:21:\"{weight}.Survey Types\";a:6:{s:5:\"title\";s:12:\"Survey Types\";s:4:\"desc\";N;s:2:\"id\";s:11:\"SurveyTypes\";s:3:\"url\";s:42:\"/civicrm/admin/campaign/surveyType?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:23:\"{weight}.Campaign Types\";a:6:{s:5:\"title\";s:14:\"Campaign Types\";s:4:\"desc\";s:47:\"categorize your campaigns using campaign types.\";s:2:\"id\";s:13:\"CampaignTypes\";s:3:\"url\";s:44:\"/civicrm/admin/options/campaign_type?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:24:\"{weight}.Campaign Status\";a:6:{s:5:\"title\";s:15:\"Campaign Status\";s:4:\"desc\";s:34:\"Define statuses for campaign here.\";s:2:\"id\";s:14:\"CampaignStatus\";s:3:\"url\";s:46:\"/civicrm/admin/options/campaign_status?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}s:25:\"{weight}.Engagement Index\";a:6:{s:5:\"title\";s:16:\"Engagement Index\";s:4:\"desc\";s:18:\"Engagement levels.\";s:2:\"id\";s:15:\"EngagementIndex\";s:3:\"url\";s:47:\"/civicrm/admin/options/engagement_index?reset=1\";s:4:\"icon\";s:18:\"admin/small/05.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:3;}s:9:\"CiviEvent\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:37:\"{weight}.CiviEvent Component Settings\";a:6:{s:5:\"title\";s:28:\"CiviEvent Component Settings\";s:4:\"desc\";s:37:\"Configure global CiviEvent behaviors.\";s:2:\"id\";s:26:\"CiviEventComponentSettings\";s:3:\"url\";s:48:\"/civicrm/admin/setting/preferences/event?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:33:\"{weight}.Event Name Badge Layouts\";a:6:{s:5:\"title\";s:24:\"Event Name Badge Layouts\";s:4:\"desc\";s:107:\"Configure name badge layouts for event participants, including logos and what data to include on the badge.\";s:2:\"id\";s:21:\"EventNameBadgeLayouts\";s:3:\"url\";s:52:\"/civicrm/admin/badgelayout?action=browse&amp;reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:22:\"{weight}.Manage Events\";a:6:{s:5:\"title\";s:13:\"Manage Events\";s:4:\"desc\";s:136:\"Create and edit event configuration including times, locations, online registration forms, and fees. Links for iCal and RSS syndication.\";s:2:\"id\";s:12:\"ManageEvents\";s:3:\"url\";s:28:\"/civicrm/admin/event?reset=1\";s:4:\"icon\";s:28:\"admin/small/event_manage.png\";s:5:\"extra\";N;}s:24:\"{weight}.Event Templates\";a:6:{s:5:\"title\";s:15:\"Event Templates\";s:4:\"desc\";s:115:\"Administrators can create Event Templates - which are basically master event records pre-filled with default values\";s:2:\"id\";s:14:\"EventTemplates\";s:3:\"url\";s:36:\"/civicrm/admin/eventTemplate?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:20:\"{weight}.Event Types\";a:6:{s:5:\"title\";s:11:\"Event Types\";s:4:\"desc\";s:143:\"Use Event Types to categorize your events. Event feeds can be filtered by Event Type and participant searches can use Event Type as a criteria.\";s:2:\"id\";s:10:\"EventTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/event_type?reset=1\";s:4:\"icon\";s:26:\"admin/small/event_type.png\";s:5:\"extra\";N;}s:27:\"{weight}.Participant Status\";a:6:{s:5:\"title\";s:18:\"Participant Status\";s:4:\"desc\";s:154:\"Define statuses for event participants here (e.g. Registered, Attended, Cancelled...). You can then assign statuses and search for participants by status.\";s:2:\"id\";s:17:\"ParticipantStatus\";s:3:\"url\";s:41:\"/civicrm/admin/participant_status?reset=1\";s:4:\"icon\";s:28:\"admin/small/parti_status.png\";s:5:\"extra\";N;}s:25:\"{weight}.Participant Role\";a:6:{s:5:\"title\";s:16:\"Participant Role\";s:4:\"desc\";s:138:\"Define participant roles for events here (e.g. Attendee, Host, Speaker...). You can then assign roles and search for participants by role.\";s:2:\"id\";s:15:\"ParticipantRole\";s:3:\"url\";s:47:\"/civicrm/admin/options/participant_role?reset=1\";s:4:\"icon\";s:26:\"admin/small/parti_role.png\";s:5:\"extra\";N;}s:38:\"{weight}.Participant Listing Templates\";a:6:{s:5:\"title\";s:29:\"Participant Listing Templates\";s:4:\"desc\";s:48:\"Template to control participant listing display.\";s:2:\"id\";s:27:\"ParticipantListingTemplates\";s:3:\"url\";s:50:\"/civicrm/admin/options/participant_listing?reset=1\";s:4:\"icon\";s:18:\"admin/small/01.png\";s:5:\"extra\";N;}s:31:\"{weight}.Conference Slot Labels\";a:6:{s:5:\"title\";s:22:\"Conference Slot Labels\";s:4:\"desc\";s:35:\"Define conference slots and labels.\";s:2:\"id\";s:20:\"ConferenceSlotLabels\";s:3:\"url\";s:65:\"/civicrm/admin/conference_slots?group=conference_slot&amp;reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}s:9:\"perColumn\";d:5;}s:8:\"CiviMail\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:5:{s:36:\"{weight}.CiviMail Component Settings\";a:6:{s:5:\"title\";s:27:\"CiviMail Component Settings\";s:4:\"desc\";s:36:\"Configure global CiviMail behaviors.\";s:2:\"id\";s:25:\"CiviMailComponentSettings\";s:3:\"url\";s:50:\"/civicrm/admin/setting/preferences/mailing?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:24:\"{weight}.Mailer Settings\";a:6:{s:5:\"title\";s:15:\"Mailer Settings\";s:4:\"desc\";s:61:\"Configure spool period, throttling and other mailer settings.\";s:2:\"id\";s:14:\"MailerSettings\";s:3:\"url\";s:27:\"/civicrm/admin/mail?reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}s:49:\"{weight}.Headers, Footers, and Automated Messages\";a:6:{s:5:\"title\";s:40:\"Headers, Footers, and Automated Messages\";s:4:\"desc\";s:143:\"Configure the header and footer used for mailings. Customize the content of automated Subscribe, Unsubscribe, Resubscribe and Opt-out messages.\";s:2:\"id\";s:36:\"Headers_Footers_andAutomatedMessages\";s:3:\"url\";s:32:\"/civicrm/admin/component?reset=1\";s:4:\"icon\";s:23:\"admin/small/Profile.png\";s:5:\"extra\";N;}s:29:\"{weight}.From Email Addresses\";a:6:{s:5:\"title\";s:20:\"From Email Addresses\";s:4:\"desc\";s:74:\"List of Email Addresses which can be used when sending emails to contacts.\";s:2:\"id\";s:18:\"FromEmailAddresses\";s:3:\"url\";s:58:\"/civicrm/admin/options/from_email_address/civimail?reset=1\";s:4:\"icon\";s:21:\"admin/small/title.png\";s:5:\"extra\";N;}s:22:\"{weight}.Mail Accounts\";a:6:{s:5:\"title\";s:13:\"Mail Accounts\";s:4:\"desc\";s:32:\"Configure email account setting.\";s:2:\"id\";s:12:\"MailAccounts\";s:3:\"url\";s:35:\"/civicrm/admin/mailSettings?reset=1\";s:4:\"icon\";s:18:\"admin/small/07.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:3;}s:10:\"CiviMember\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:38:\"{weight}.CiviMember Component Settings\";a:6:{s:5:\"title\";s:29:\"CiviMember Component Settings\";s:4:\"desc\";s:38:\"Configure global CiviMember behaviors.\";s:2:\"id\";s:27:\"CiviMemberComponentSettings\";s:3:\"url\";s:49:\"/civicrm/admin/setting/preferences/member?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:25:\"{weight}.Membership Types\";a:6:{s:5:\"title\";s:16:\"Membership Types\";s:4:\"desc\";s:174:\"Define the types of memberships you want to offer. For each type, you can specify a \'name\' (Gold Member, Honor Society Member...), a description, duration, and a minimum fee.\";s:2:\"id\";s:15:\"MembershipTypes\";s:3:\"url\";s:44:\"/civicrm/admin/member/membershipType?reset=1\";s:4:\"icon\";s:31:\"admin/small/membership_type.png\";s:5:\"extra\";N;}s:32:\"{weight}.Membership Status Rules\";a:6:{s:5:\"title\";s:23:\"Membership Status Rules\";s:4:\"desc\";s:187:\"Status \'rules\' define the current status for a membership based on that membership\'s start and end dates. You can adjust the default status options and rules as needed to meet your needs.\";s:2:\"id\";s:21:\"MembershipStatusRules\";s:3:\"url\";s:46:\"/civicrm/admin/member/membershipStatus?reset=1\";s:4:\"icon\";s:33:\"admin/small/membership_status.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:6:\"Manage\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:27:\"{weight}.Scheduled Jobs Log\";a:6:{s:5:\"title\";s:18:\"Scheduled Jobs Log\";s:4:\"desc\";s:46:\"Browsing the log of periodially running tasks.\";s:2:\"id\";s:16:\"ScheduledJobsLog\";s:3:\"url\";s:29:\"/civicrm/admin/joblog?reset=1\";s:4:\"icon\";s:18:\"admin/small/13.png\";s:5:\"extra\";N;}s:42:\"{weight}.Find and Merge Duplicate Contacts\";a:6:{s:5:\"title\";s:33:\"Find and Merge Duplicate Contacts\";s:4:\"desc\";s:158:\"Manage the rules used to identify potentially duplicate contact records. Scan for duplicates using a selected rule and merge duplicate contact data as needed.\";s:2:\"id\";s:29:\"FindandMergeDuplicateContacts\";s:3:\"url\";s:36:\"/civicrm/contact/deduperules?reset=1\";s:4:\"icon\";s:34:\"admin/small/duplicate_matching.png\";s:5:\"extra\";N;}s:26:\"{weight}.Dedupe Exceptions\";a:6:{s:5:\"title\";s:17:\"Dedupe Exceptions\";s:4:\"desc\";N;s:2:\"id\";s:16:\"DedupeExceptions\";s:3:\"url\";s:33:\"/civicrm/dedupe/exception?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:12:\"Option Lists\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:20:\"{weight}.Grant Types\";a:6:{s:5:\"title\";s:11:\"Grant Types\";s:4:\"desc\";s:148:\"List of types which can be assigned to Grants. (Enable CiviGrant from Administer > Systme Settings > Enable Components if you want to track grants.)\";s:2:\"id\";s:10:\"GrantTypes\";s:3:\"url\";s:41:\"/civicrm/admin/options/grant_type?reset=1\";s:4:\"icon\";s:26:\"admin/small/grant_type.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:1;}s:9:\"Customize\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:1:{s:19:\"{weight}.Price Sets\";a:6:{s:5:\"title\";s:10:\"Price Sets\";s:4:\"desc\";s:205:\"Price sets allow you to offer multiple options with associated fees (e.g. pre-conference workshops, additional meals, etc.). Configure Price Sets for events which need more than a single set of fee levels.\";s:2:\"id\";s:9:\"PriceSets\";s:3:\"url\";s:28:\"/civicrm/admin/price?reset=1\";s:4:\"icon\";s:26:\"admin/small/price_sets.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:1;}s:14:\"CiviContribute\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:9:{s:32:\"{weight}.Personal Campaign Pages\";a:6:{s:5:\"title\";s:23:\"Personal Campaign Pages\";s:4:\"desc\";s:49:\"View and manage existing personal campaign pages.\";s:2:\"id\";s:21:\"PersonalCampaignPages\";s:3:\"url\";s:49:\"/civicrm/admin/pcp?context=contribute&amp;reset=1\";s:4:\"icon\";s:34:\"admin/small/contribution_types.png\";s:5:\"extra\";N;}s:34:\"{weight}.Manage Contribution Pages\";a:6:{s:5:\"title\";s:25:\"Manage Contribution Pages\";s:4:\"desc\";s:242:\"CiviContribute allows you to create and maintain any number of Online Contribution Pages. You can create different pages for different programs or campaigns - and customize text, amounts, types of information collected from contributors, etc.\";s:2:\"id\";s:23:\"ManageContributionPages\";s:3:\"url\";s:33:\"/civicrm/admin/contribute?reset=1\";s:4:\"icon\";s:41:\"admin/small/online_contribution_pages.png\";s:5:\"extra\";N;}s:24:\"{weight}.Manage Premiums\";a:6:{s:5:\"title\";s:15:\"Manage Premiums\";s:4:\"desc\";s:175:\"CiviContribute allows you to configure any number of Premiums which can be offered to contributors as incentives / thank-you gifts. Define the premiums you want to offer here.\";s:2:\"id\";s:14:\"ManagePremiums\";s:3:\"url\";s:48:\"/civicrm/admin/contribute/managePremiums?reset=1\";s:4:\"icon\";s:24:\"admin/small/Premiums.png\";s:5:\"extra\";N;}s:24:\"{weight}.Financial Types\";a:6:{s:5:\"title\";s:15:\"Financial Types\";s:4:\"desc\";s:64:\"Formerly civicrm_contribution_type merged into this table in 4.1\";s:2:\"id\";s:14:\"FinancialTypes\";s:3:\"url\";s:46:\"/civicrm/admin/financial/financialType?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}s:27:\"{weight}.Financial Accounts\";a:6:{s:5:\"title\";s:18:\"Financial Accounts\";s:4:\"desc\";s:128:\"Financial types are used to categorize contributions for reporting and accounting purposes. These are also referred to as Funds.\";s:2:\"id\";s:17:\"FinancialAccounts\";s:3:\"url\";s:49:\"/civicrm/admin/financial/financialAccount?reset=1\";s:4:\"icon\";s:34:\"admin/small/contribution_types.png\";s:5:\"extra\";N;}s:28:\"{weight}.Payment Instruments\";a:6:{s:5:\"title\";s:19:\"Payment Instruments\";s:4:\"desc\";s:224:\"You may choose to record the payment instrument used for each contribution. Common payment methods are installed by default (e.g. Check, Cash, Credit Card...). If your site requires additional payment methods, add them here.\";s:2:\"id\";s:18:\"PaymentInstruments\";s:3:\"url\";s:49:\"/civicrm/admin/options/payment_instrument?reset=1\";s:4:\"icon\";s:35:\"admin/small/payment_instruments.png\";s:5:\"extra\";N;}s:30:\"{weight}.Accepted Credit Cards\";a:6:{s:5:\"title\";s:21:\"Accepted Credit Cards\";s:4:\"desc\";s:94:\"Credit card options that will be offered to contributors using your Online Contribution pages.\";s:2:\"id\";s:19:\"AcceptedCreditCards\";s:3:\"url\";s:48:\"/civicrm/admin/options/accept_creditcard?reset=1\";s:4:\"icon\";s:36:\"admin/small/accepted_creditcards.png\";s:5:\"extra\";N;}s:26:\"{weight}.Soft Credit Types\";a:6:{s:5:\"title\";s:17:\"Soft Credit Types\";s:4:\"desc\";s:86:\"Soft Credit Types that will be offered to contributors during soft credit contribution\";s:2:\"id\";s:15:\"SoftCreditTypes\";s:3:\"url\";s:47:\"/civicrm/admin/options/soft_credit_type?reset=1\";s:4:\"icon\";s:32:\"admin/small/soft_credit_type.png\";s:5:\"extra\";N;}s:42:\"{weight}.CiviContribute Component Settings\";a:6:{s:5:\"title\";s:33:\"CiviContribute Component Settings\";s:4:\"desc\";s:42:\"Configure global CiviContribute behaviors.\";s:2:\"id\";s:31:\"CiviContributeComponentSettings\";s:3:\"url\";s:53:\"/civicrm/admin/setting/preferences/contribute?reset=1\";s:4:\"icon\";N;s:5:\"extra\";N;}}s:9:\"perColumn\";d:5;}s:8:\"CiviCase\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:4:{s:19:\"{weight}.Case Types\";a:6:{s:5:\"title\";s:10:\"Case Types\";s:4:\"desc\";s:137:\"List of types which can be assigned to Cases. (Enable the Cases tab from System Settings - Enable Components if you want to track cases.)\";s:2:\"id\";s:9:\"CaseTypes\";s:3:\"url\";s:40:\"/civicrm/admin/options/case_type?reset=1\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";s:5:\"extra\";N;}s:24:\"{weight}.Redaction Rules\";a:6:{s:5:\"title\";s:15:\"Redaction Rules\";s:4:\"desc\";s:223:\"List of rules which can be applied to user input strings so that the redacted output can be recognized as repeated instances of the same string or can be identified as a \"semantic type of the data element\" within case data.\";s:2:\"id\";s:14:\"RedactionRules\";s:3:\"url\";s:45:\"/civicrm/admin/options/redaction_rule?reset=1\";s:4:\"icon\";s:30:\"admin/small/redaction_type.png\";s:5:\"extra\";N;}s:22:\"{weight}.Case Statuses\";a:6:{s:5:\"title\";s:13:\"Case Statuses\";s:4:\"desc\";s:48:\"List of statuses that can be assigned to a case.\";s:2:\"id\";s:12:\"CaseStatuses\";s:3:\"url\";s:42:\"/civicrm/admin/options/case_status?reset=1\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";s:5:\"extra\";N;}s:26:\"{weight}.Encounter Mediums\";a:6:{s:5:\"title\";s:17:\"Encounter Mediums\";s:4:\"desc\";s:26:\"List of encounter mediums.\";s:2:\"id\";s:16:\"EncounterMediums\";s:3:\"url\";s:47:\"/civicrm/admin/options/encounter_medium?reset=1\";s:4:\"icon\";s:25:\"admin/small/case_type.png\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}s:10:\"CiviReport\";a:3:{s:12:\"component_id\";N;s:6:\"fields\";a:3:{s:40:\"{weight}.Create New Report from Template\";a:6:{s:5:\"title\";s:31:\"Create New Report from Template\";s:4:\"desc\";s:49:\"Component wise listing of all available templates\";s:2:\"id\";s:27:\"CreateNewReportfromTemplate\";s:3:\"url\";s:43:\"/civicrm/admin/report/template/list?reset=1\";s:4:\"icon\";s:31:\"admin/small/report_template.gif\";s:5:\"extra\";N;}s:25:\"{weight}.Manage Templates\";a:6:{s:5:\"title\";s:16:\"Manage Templates\";s:4:\"desc\";s:45:\"Browse, Edit and Delete the Report templates.\";s:2:\"id\";s:15:\"ManageTemplates\";s:3:\"url\";s:53:\"/civicrm/admin/report/options/report_template?reset=1\";s:4:\"icon\";s:24:\"admin/small/template.png\";s:5:\"extra\";N;}s:24:\"{weight}.Reports Listing\";a:6:{s:5:\"title\";s:15:\"Reports Listing\";s:4:\"desc\";s:60:\"Browse existing report, change report criteria and settings.\";s:2:\"id\";s:14:\"ReportsListing\";s:3:\"url\";s:34:\"/civicrm/admin/report/list?reset=1\";s:4:\"icon\";s:27:\"admin/small/report_list.gif\";s:5:\"extra\";N;}}s:9:\"perColumn\";d:2;}}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,1,NULL);
  /*!40000 ALTER TABLE `civicrm_menu` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -977,7 -978,7 +978,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_note` WRITE;
  /*!40000 ALTER TABLE `civicrm_note` DISABLE KEYS */;
- INSERT INTO `civicrm_note` (`id`, `entity_table`, `entity_id`, `note`, `contact_id`, `modified_date`, `subject`, `privacy`) VALUES (1,'civicrm_contact',3,'Arrange for cricket match with Sunil Gavaskar',1,'2014-11-08',NULL,'0'),(2,'civicrm_contact',188,'Arrange for cricket match with Sunil Gavaskar',1,'2014-12-18',NULL,'0'),(3,'civicrm_contact',18,'Send reminder for annual dinner',1,'2015-02-01',NULL,'0'),(4,'civicrm_contact',95,'Chart out route map for next 10k run',1,'2015-03-22',NULL,'0'),(5,'civicrm_contact',29,'Connect for presentation',1,'2014-10-17',NULL,'0'),(6,'civicrm_contact',195,'Chart out route map for next 10k run',1,'2014-10-17',NULL,'0'),(7,'civicrm_contact',190,'Reminder screening of \"Black\" on next Friday',1,'2014-08-04',NULL,'0'),(8,'civicrm_contact',48,'Chart out route map for next 10k run',1,'2014-10-01',NULL,'0'),(9,'civicrm_contact',168,'Connect for presentation',1,'2014-12-06',NULL,'0'),(10,'civicrm_contact',153,'Chart out route map for next 10k run',1,'2014-10-13',NULL,'0'),(11,'civicrm_contact',70,'Send newsletter for April 2005',1,'2014-10-15',NULL,'0'),(12,'civicrm_contact',12,'Contact the Commisioner of Charities',1,'2015-04-06',NULL,'0'),(13,'civicrm_contact',143,'Send newsletter for April 2005',1,'2014-06-27',NULL,'0'),(14,'civicrm_contact',173,'Connect for presentation',1,'2014-06-24',NULL,'0'),(15,'civicrm_contact',50,'Invite members for the Steve Prefontaine 10k dream run',1,'2015-03-02',NULL,'0'),(16,'civicrm_contact',44,'Chart out route map for next 10k run',1,'2015-04-10',NULL,'0'),(17,'civicrm_contact',79,'Contact the Commisioner of Charities',1,'2015-02-17',NULL,'0'),(18,'civicrm_contact',99,'Invite members for the Steve Prefontaine 10k dream run',1,'2014-06-06',NULL,'0'),(19,'civicrm_contact',70,'Send newsletter for April 2005',1,'2014-10-18',NULL,'0'),(20,'civicrm_contact',88,'Send reminder for annual dinner',1,'2015-03-23',NULL,'0');
 -INSERT INTO `civicrm_note` (`id`, `entity_table`, `entity_id`, `note`, `contact_id`, `modified_date`, `subject`, `privacy`) VALUES (1,'civicrm_contact',166,'Send reminder for annual dinner',1,'2015-03-18',NULL,'0'),(2,'civicrm_contact',121,'Reminder screening of \"Black\" on next Friday',1,'2014-12-12',NULL,'0'),(3,'civicrm_contact',73,'Contact the Commisioner of Charities',1,'2014-10-01',NULL,'0'),(4,'civicrm_contact',22,'Arrange for cricket match with Sunil Gavaskar',1,'2014-10-28',NULL,'0'),(5,'civicrm_contact',74,'Chart out route map for next 10k run',1,'2014-10-31',NULL,'0'),(6,'civicrm_contact',87,'Organize the Terry Fox run',1,'2014-08-03',NULL,'0'),(7,'civicrm_contact',9,'Contact the Commisioner of Charities',1,'2014-10-21',NULL,'0'),(8,'civicrm_contact',96,'Organize the Terry Fox run',1,'2014-08-31',NULL,'0'),(9,'civicrm_contact',155,'Invite members for the Steve Prefontaine 10k dream run',1,'2015-03-09',NULL,'0'),(10,'civicrm_contact',55,'Chart out route map for next 10k run',1,'2015-02-10',NULL,'0'),(11,'civicrm_contact',182,'Reminder screening of \"Black\" on next Friday',1,'2014-11-21',NULL,'0'),(12,'civicrm_contact',24,'Send reminder for annual dinner',1,'2014-09-15',NULL,'0'),(13,'civicrm_contact',72,'Contact the Commisioner of Charities',1,'2015-01-23',NULL,'0'),(14,'civicrm_contact',155,'Connect for presentation',1,'2014-07-11',NULL,'0'),(15,'civicrm_contact',29,'Contact the Commisioner of Charities',1,'2014-12-13',NULL,'0'),(16,'civicrm_contact',169,'Send newsletter for April 2005',1,'2015-04-25',NULL,'0'),(17,'civicrm_contact',45,'Chart out route map for next 10k run',1,'2014-04-30',NULL,'0'),(18,'civicrm_contact',42,'Arrange for cricket match with Sunil Gavaskar',1,'2014-09-29',NULL,'0'),(19,'civicrm_contact',49,'Invite members for the Steve Prefontaine 10k dream run',1,'2015-02-20',NULL,'0'),(20,'civicrm_contact',162,'Arrange collection of funds from members',1,'2014-08-03',NULL,'0');
++INSERT INTO `civicrm_note` (`id`, `entity_table`, `entity_id`, `note`, `contact_id`, `modified_date`, `subject`, `privacy`) VALUES (1,'civicrm_contact',153,'Invite members for the Steve Prefontaine 10k dream run',1,'2014-08-02',NULL,'0'),(2,'civicrm_contact',181,'Connect for presentation',1,'2015-02-12',NULL,'0'),(3,'civicrm_contact',38,'Organize the Terry Fox run',1,'2015-04-01',NULL,'0'),(4,'civicrm_contact',173,'Arrange collection of funds from members',1,'2015-02-13',NULL,'0'),(5,'civicrm_contact',188,'Chart out route map for next 10k run',1,'2014-12-27',NULL,'0'),(6,'civicrm_contact',96,'Invite members for the Steve Prefontaine 10k dream run',1,'2014-12-28',NULL,'0'),(7,'civicrm_contact',188,'Get the registration done for NGO status',1,'2014-07-07',NULL,'0'),(8,'civicrm_contact',18,'Invite members for the Steve Prefontaine 10k dream run',1,'2014-12-09',NULL,'0'),(9,'civicrm_contact',74,'Arrange for cricket match with Sunil Gavaskar',1,'2014-12-02',NULL,'0'),(10,'civicrm_contact',78,'Contact the Commisioner of Charities',1,'2015-03-29',NULL,'0'),(11,'civicrm_contact',5,'Reminder screening of \"Black\" on next Friday',1,'2014-07-02',NULL,'0'),(12,'civicrm_contact',8,'Contact the Commisioner of Charities',1,'2014-09-12',NULL,'0'),(13,'civicrm_contact',156,'Get the registration done for NGO status',1,'2015-03-04',NULL,'0'),(14,'civicrm_contact',158,'Contact the Commisioner of Charities',1,'2015-04-02',NULL,'0'),(15,'civicrm_contact',29,'Arrange collection of funds from members',1,'2014-12-13',NULL,'0'),(16,'civicrm_contact',70,'Organize the Terry Fox run',1,'2014-12-29',NULL,'0'),(17,'civicrm_contact',67,'Chart out route map for next 10k run',1,'2015-02-10',NULL,'0'),(18,'civicrm_contact',70,'Reminder screening of \"Black\" on next Friday',1,'2014-12-12',NULL,'0'),(19,'civicrm_contact',176,'Organize the Terry Fox run',1,'2014-12-05',NULL,'0'),(20,'civicrm_contact',189,'Send reminder for annual dinner',1,'2014-07-24',NULL,'0');
  /*!40000 ALTER TABLE `civicrm_note` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -1016,7 -1017,7 +1017,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_participant` WRITE;
  /*!40000 ALTER TABLE `civicrm_participant` DISABLE KEYS */;
- INSERT INTO `civicrm_participant` (`id`, `contact_id`, `event_id`, `status_id`, `role_id`, `register_date`, `source`, `fee_level`, `is_test`, `is_pay_later`, `fee_amount`, `registered_by_id`, `discount_id`, `fee_currency`, `campaign_id`, `discount_amount`, `cart_id`, `must_wait`) VALUES (1,161,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(2,62,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(3,96,3,3,'3','2008-05-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(4,148,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(5,147,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(6,115,3,2,'2','2008-03-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(7,1,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(8,88,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(9,197,3,1,'1','2008-02-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(10,58,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(11,109,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(12,25,3,4,'4','2009-03-06 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(13,75,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(14,131,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(15,190,3,4,'1','2008-07-04 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(16,127,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(17,78,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(18,66,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(19,163,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(20,63,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(21,122,3,1,'4','2008-03-25 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(22,149,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(23,97,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(24,12,3,3,'1','2008-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(25,105,3,2,'2','2008-04-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(26,183,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(27,19,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(28,110,3,3,'3','2009-12-12 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(29,165,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(30,192,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(31,164,3,2,'2','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(32,43,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(33,20,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(34,107,3,1,'1','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(35,77,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(36,80,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(37,36,3,4,'4','2009-03-06 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(38,81,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(39,30,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(40,181,3,4,'1','2009-12-14 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(41,128,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(42,67,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(43,157,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(44,195,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(45,8,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(46,166,3,1,'4','2009-12-13 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(47,29,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(48,139,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(49,10,3,3,'1','2009-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(50,162,3,2,'2','2009-04-05 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL);
 -INSERT INTO `civicrm_participant` (`id`, `contact_id`, `event_id`, `status_id`, `role_id`, `register_date`, `source`, `fee_level`, `is_test`, `is_pay_later`, `fee_amount`, `registered_by_id`, `discount_id`, `fee_currency`, `campaign_id`, `discount_amount`, `cart_id`, `must_wait`) VALUES (1,160,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(2,67,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(3,197,3,3,'3','2008-05-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(4,78,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(5,156,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(6,164,3,2,'2','2008-03-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(7,199,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(8,123,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(9,35,3,1,'1','2008-02-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(10,8,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(11,82,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(12,96,3,4,'4','2009-03-06 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(13,85,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(14,93,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(15,71,3,4,'1','2008-07-04 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(16,22,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(17,167,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(18,42,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(19,40,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(20,145,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(21,178,3,1,'4','2008-03-25 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(22,36,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(23,31,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(24,17,3,3,'1','2008-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(25,19,3,2,'2','2008-04-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(26,69,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(27,47,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(28,5,3,3,'3','2009-12-12 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(29,144,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(30,92,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(31,157,3,2,'2','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(32,191,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(33,152,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(34,116,3,1,'1','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(35,41,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(36,131,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(37,163,3,4,'4','2009-03-06 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(38,39,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(39,63,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(40,74,3,4,'1','2009-12-14 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(41,15,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(42,139,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(43,190,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(44,192,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(45,196,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(46,180,3,1,'4','2009-12-13 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(47,62,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(48,87,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(49,126,3,3,'1','2009-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(50,137,3,2,'2','2009-04-05 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL);
++INSERT INTO `civicrm_participant` (`id`, `contact_id`, `event_id`, `status_id`, `role_id`, `register_date`, `source`, `fee_level`, `is_test`, `is_pay_later`, `fee_amount`, `registered_by_id`, `discount_id`, `fee_currency`, `campaign_id`, `discount_amount`, `cart_id`, `must_wait`) VALUES (1,97,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(2,83,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(3,193,3,3,'3','2008-05-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(4,191,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(5,92,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(6,20,3,2,'2','2008-03-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(7,146,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(8,7,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(9,141,3,1,'1','2008-02-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(10,64,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(11,13,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(12,144,3,4,'4','2009-03-06 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(13,86,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(14,117,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(15,133,3,4,'1','2008-07-04 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(16,65,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(17,137,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(18,60,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(19,138,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(20,192,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(21,87,3,1,'4','2008-03-25 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(22,189,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(23,25,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(24,44,3,3,'1','2008-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(25,176,3,2,'2','2008-04-05 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(26,142,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(27,58,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(28,129,3,3,'3','2009-12-12 00:00:00','Direct Transfer','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(29,88,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(30,175,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(31,1,3,2,'2','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(32,200,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(33,63,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(34,34,3,1,'1','2009-12-15 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(35,107,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(36,101,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(37,158,3,4,'4','2009-03-06 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(38,72,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(39,124,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(40,187,3,4,'1','2009-12-14 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(41,154,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(42,71,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(43,21,3,3,'1','2009-03-05 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(44,38,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(45,80,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(46,161,3,1,'4','2009-12-13 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(47,181,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(48,166,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(49,194,3,3,'1','2009-03-11 00:00:00','Credit Card','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(50,183,3,2,'2','2009-04-05 00:00:00','Check','Tiny-tots (ages 5-8)',0,0,800.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL);
  /*!40000 ALTER TABLE `civicrm_participant` ENABLE KEYS */;
  UNLOCK TABLES;
  
  
  LOCK TABLES `civicrm_participant_payment` WRITE;
  /*!40000 ALTER TABLE `civicrm_participant_payment` DISABLE KEYS */;
- INSERT INTO `civicrm_participant_payment` (`id`, `participant_id`, `contribution_id`) VALUES (1,7,45),(2,45,46),(3,49,47),(4,24,48),(5,27,49),(6,33,50),(7,12,51),(8,47,52),(9,39,53),(10,37,54),(11,32,55),(12,10,56),(13,2,57),(14,20,58),(15,18,59),(16,42,60),(17,13,61),(18,35,62),(19,17,63),(20,36,64),(21,38,65),(22,8,66),(23,3,67),(24,23,68),(25,25,69),(26,34,70),(27,11,71),(28,28,72),(29,6,73),(30,21,74),(31,16,75),(32,41,76),(33,14,77),(34,48,78),(35,5,79),(36,4,80),(37,22,81),(38,43,82),(39,1,83),(40,50,84),(41,19,85),(42,31,86),(43,29,87),(44,46,88),(45,40,89),(46,26,90),(47,15,91),(48,30,92),(49,44,93),(50,9,94);
 -INSERT INTO `civicrm_participant_payment` (`id`, `participant_id`, `contribution_id`) VALUES (1,28,45),(2,10,46),(3,41,47),(4,24,48),(5,25,49),(6,16,50),(7,23,51),(8,9,52),(9,22,53),(10,38,54),(11,19,55),(12,35,56),(13,18,57),(14,27,58),(15,47,59),(16,39,60),(17,2,61),(18,26,62),(19,15,63),(20,40,64),(21,4,65),(22,11,66),(23,13,67),(24,48,68),(25,30,69),(26,14,70),(27,12,71),(28,34,72),(29,8,73),(30,49,74),(31,36,75),(32,50,76),(33,42,77),(34,29,78),(35,20,79),(36,33,80),(37,5,81),(38,31,82),(39,1,83),(40,37,84),(41,6,85),(42,17,86),(43,21,87),(44,46,88),(45,43,89),(46,32,90),(47,44,91),(48,45,92),(49,3,93),(50,7,94);
++INSERT INTO `civicrm_participant_payment` (`id`, `participant_id`, `contribution_id`) VALUES (1,31,45),(2,8,46),(3,11,47),(4,6,48),(5,43,49),(6,23,50),(7,34,51),(8,44,52),(9,24,53),(10,27,54),(11,18,55),(12,33,56),(13,10,57),(14,16,58),(15,42,59),(16,38,60),(17,45,61),(18,2,62),(19,13,63),(20,21,64),(21,29,65),(22,5,66),(23,1,67),(24,36,68),(25,35,69),(26,14,70),(27,39,71),(28,28,72),(29,15,73),(30,17,74),(31,19,75),(32,9,76),(33,26,77),(34,12,78),(35,7,79),(36,41,80),(37,37,81),(38,46,82),(39,48,83),(40,30,84),(41,25,85),(42,47,86),(43,50,87),(44,40,88),(45,22,89),(46,4,90),(47,20,91),(48,3,92),(49,49,93),(50,32,94);
  /*!40000 ALTER TABLE `civicrm_participant_payment` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -1065,7 -1075,7 +1075,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_pcp` WRITE;
  /*!40000 ALTER TABLE `civicrm_pcp` DISABLE KEYS */;
- INSERT INTO `civicrm_pcp` (`id`, `contact_id`, `status_id`, `title`, `intro_text`, `page_text`, `donate_link_text`, `page_id`, `page_type`, `pcp_block_id`, `is_thermometer`, `is_honor_roll`, `goal_amount`, `currency`, `is_active`, `is_notify`) VALUES (1,179,2,'My Personal Civi Fundraiser','I\'m on a mission to get all my friends and family to help support my favorite open-source civic sector CRM.','<p>Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!</p>\r\n<p><a href=\"http://civicrm.org\">You can learn more about CiviCRM here</a>.</p>\r\n<p>Then click the <strong>Contribute Now</strong> button to go to our easy-to-use online contribution form.</p>','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,1);
 -INSERT INTO `civicrm_pcp` (`id`, `contact_id`, `status_id`, `title`, `intro_text`, `page_text`, `donate_link_text`, `page_id`, `page_type`, `pcp_block_id`, `is_thermometer`, `is_honor_roll`, `goal_amount`, `currency`, `is_active`, `is_notify`) VALUES (1,106,2,'My Personal Civi Fundraiser','I\'m on a mission to get all my friends and family to help support my favorite open-source civic sector CRM.','<p>Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!</p>\r\n<p><a href=\"http://civicrm.org\">You can learn more about CiviCRM here</a>.</p>\r\n<p>Then click the <strong>Contribute Now</strong> button to go to our easy-to-use online contribution form.</p>','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,1);
++INSERT INTO `civicrm_pcp` (`id`, `contact_id`, `status_id`, `title`, `intro_text`, `page_text`, `donate_link_text`, `page_id`, `page_type`, `pcp_block_id`, `is_thermometer`, `is_honor_roll`, `goal_amount`, `currency`, `is_active`, `is_notify`) VALUES (1,4,2,'My Personal Civi Fundraiser','I\'m on a mission to get all my friends and family to help support my favorite open-source civic sector CRM.','<p>Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!</p>\r\n<p><a href=\"http://civicrm.org\">You can learn more about CiviCRM here</a>.</p>\r\n<p>Then click the <strong>Contribute Now</strong> button to go to our easy-to-use online contribution form.</p>','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,1);
  /*!40000 ALTER TABLE `civicrm_pcp` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -1094,7 -1104,7 +1104,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_phone` WRITE;
  /*!40000 ALTER TABLE `civicrm_phone` DISABLE KEYS */;
- INSERT INTO `civicrm_phone` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `mobile_provider_id`, `phone`, `phone_ext`, `phone_numeric`, `phone_type_id`) VALUES (1,142,1,1,0,NULL,'(404) 714-6001',NULL,'4047146001',2),(2,142,1,0,0,NULL,'(483) 661-8255',NULL,'4836618255',2),(3,36,1,1,0,NULL,'813-6474',NULL,'8136474',2),(4,130,1,1,0,NULL,'(207) 569-9106',NULL,'2075699106',1),(5,130,1,0,0,NULL,'470-9582',NULL,'4709582',1),(6,120,1,1,0,NULL,'803-8038',NULL,'8038038',2),(7,120,1,0,0,NULL,'(733) 760-6186',NULL,'7337606186',2),(8,126,1,1,0,NULL,'405-6574',NULL,'4056574',2),(9,126,1,0,0,NULL,'(848) 502-7164',NULL,'8485027164',2),(10,135,1,1,0,NULL,'277-5891',NULL,'2775891',2),(11,135,1,0,0,NULL,'(348) 623-6490',NULL,'3486236490',2),(12,47,1,1,0,NULL,'(256) 298-6042',NULL,'2562986042',1),(13,197,1,1,0,NULL,'(233) 541-6728',NULL,'2335416728',2),(14,167,1,1,0,NULL,'281-4119',NULL,'2814119',1),(15,145,1,1,0,NULL,'876-6726',NULL,'8766726',2),(16,68,1,1,0,NULL,'242-9191',NULL,'2429191',2),(17,68,1,0,0,NULL,'(234) 806-2601',NULL,'2348062601',1),(18,124,1,1,0,NULL,'(741) 889-7202',NULL,'7418897202',2),(19,155,1,1,0,NULL,'549-5410',NULL,'5495410',1),(20,121,1,1,0,NULL,'(223) 285-8224',NULL,'2232858224',1),(21,171,1,1,0,NULL,'(328) 320-4158',NULL,'3283204158',1),(22,91,1,1,0,NULL,'617-3933',NULL,'6173933',2),(23,27,1,1,0,NULL,'567-7396',NULL,'5677396',2),(24,80,1,1,0,NULL,'(847) 702-5999',NULL,'8477025999',2),(25,80,1,0,0,NULL,'(833) 359-7949',NULL,'8333597949',2),(26,188,1,1,0,NULL,'(888) 359-5191',NULL,'8883595191',2),(27,195,1,1,0,NULL,'(307) 386-9593',NULL,'3073869593',2),(28,66,1,1,0,NULL,'(513) 744-1872',NULL,'5137441872',2),(29,40,1,1,0,NULL,'(760) 388-2813',NULL,'7603882813',2),(30,40,1,0,0,NULL,'(623) 462-8444',NULL,'6234628444',1),(31,29,1,1,0,NULL,'792-7373',NULL,'7927373',1),(32,29,1,0,0,NULL,'251-4657',NULL,'2514657',1),(33,177,1,1,0,NULL,'792-2546',NULL,'7922546',1),(34,34,1,1,0,NULL,'(868) 466-9261',NULL,'8684669261',2),(35,181,1,1,0,NULL,'730-5500',NULL,'7305500',1),(36,72,1,1,0,NULL,'(344) 746-5971',NULL,'3447465971',2),(37,76,1,1,0,NULL,'783-6671',NULL,'7836671',2),(38,185,1,1,0,NULL,'559-9257',NULL,'5599257',1),(39,185,1,0,0,NULL,'(694) 431-6263',NULL,'6944316263',2),(40,191,1,1,0,NULL,'509-8075',NULL,'5098075',1),(41,191,1,0,0,NULL,'726-5354',NULL,'7265354',1),(42,107,1,1,0,NULL,'664-6183',NULL,'6646183',2),(43,24,1,1,0,NULL,'(731) 324-8378',NULL,'7313248378',2),(44,24,1,0,0,NULL,'(734) 554-3400',NULL,'7345543400',2),(45,156,1,1,0,NULL,'(719) 395-7381',NULL,'7193957381',2),(46,156,1,0,0,NULL,'346-5452',NULL,'3465452',1),(47,190,1,1,0,NULL,'(210) 255-6483',NULL,'2102556483',2),(48,161,1,1,0,NULL,'(282) 526-1117',NULL,'2825261117',1),(49,90,1,1,0,NULL,'(263) 572-3114',NULL,'2635723114',2),(50,21,1,1,0,NULL,'804-2563',NULL,'8042563',1),(51,21,1,0,0,NULL,'(771) 503-7805',NULL,'7715037805',1),(52,134,1,1,0,NULL,'(715) 314-8819',NULL,'7153148819',1),(53,46,1,1,0,NULL,'524-3138',NULL,'5243138',1),(54,15,1,1,0,NULL,'700-6113',NULL,'7006113',1),(55,97,1,1,0,NULL,'(486) 745-4830',NULL,'4867454830',1),(56,97,1,0,0,NULL,'(887) 331-4525',NULL,'8873314525',1),(57,150,1,1,0,NULL,'(754) 485-2768',NULL,'7544852768',2),(58,65,1,1,0,NULL,'(812) 790-8030',NULL,'8127908030',1),(59,192,1,1,0,NULL,'(767) 596-2113',NULL,'7675962113',1),(60,63,1,1,0,NULL,'(654) 868-5320',NULL,'6548685320',2),(61,162,1,1,0,NULL,'(420) 527-8254',NULL,'4205278254',2),(62,162,1,0,0,NULL,'667-6138',NULL,'6676138',1),(63,138,1,1,0,NULL,'(382) 868-7166',NULL,'3828687166',2),(64,138,1,0,0,NULL,'(319) 582-3180',NULL,'3195823180',2),(65,128,1,1,0,NULL,'(390) 554-4292',NULL,'3905544292',2),(66,131,1,1,0,NULL,'204-4136',NULL,'2044136',2),(67,132,1,1,0,NULL,'(776) 776-3994',NULL,'7767763994',2),(68,132,1,0,0,NULL,'515-1818',NULL,'5151818',2),(69,102,1,1,0,NULL,'(363) 632-3760',NULL,'3636323760',1),(70,102,1,0,0,NULL,'455-5364',NULL,'4555364',1),(71,174,1,1,0,NULL,'(827) 225-3384',NULL,'8272253384',1),(72,174,1,0,0,NULL,'(735) 415-5861',NULL,'7354155861',1),(73,51,1,1,0,NULL,'(596) 595-1887',NULL,'5965951887',1),(74,51,1,0,0,NULL,'(296) 484-8396',NULL,'2964848396',2),(75,81,1,1,0,NULL,'(670) 887-1872',NULL,'6708871872',1),(76,81,1,0,0,NULL,'698-2612',NULL,'6982612',1),(77,95,1,1,0,NULL,'645-3248',NULL,'6453248',1),(78,32,1,1,0,NULL,'(629) 272-4464',NULL,'6292724464',2),(79,9,1,1,0,NULL,'227-8505',NULL,'2278505',1),(80,9,1,0,0,NULL,'(507) 444-2497',NULL,'5074442497',2),(81,139,1,1,0,NULL,'658-5364',NULL,'6585364',2),(82,8,1,1,0,NULL,'466-5610',NULL,'4665610',1),(83,189,1,1,0,NULL,'834-5228',NULL,'8345228',2),(84,189,1,0,0,NULL,'403-6053',NULL,'4036053',2),(85,35,1,1,0,NULL,'(457) 308-3706',NULL,'4573083706',2),(86,165,1,1,0,NULL,'242-7138',NULL,'2427138',1),(87,73,1,1,0,NULL,'(367) 484-9966',NULL,'3674849966',2),(88,117,1,1,0,NULL,'(798) 700-8912',NULL,'7987008912',2),(89,175,1,1,0,NULL,'237-8384',NULL,'2378384',2),(90,77,1,1,0,NULL,'(653) 896-1119',NULL,'6538961119',2),(91,77,1,0,0,NULL,'227-5924',NULL,'2275924',2),(92,61,1,1,0,NULL,'(521) 400-5750',NULL,'5214005750',1),(93,59,1,1,0,NULL,'(255) 620-9355',NULL,'2556209355',1),(94,59,1,0,0,NULL,'(310) 796-4188',NULL,'3107964188',1),(95,200,1,1,0,NULL,'787-9541',NULL,'7879541',1),(96,152,1,1,0,NULL,'(826) 719-9171',NULL,'8267199171',2),(97,152,1,0,0,NULL,'788-7710',NULL,'7887710',2),(98,172,1,1,0,NULL,'(244) 514-4903',NULL,'2445144903',1),(99,172,1,0,0,NULL,'246-3529',NULL,'2463529',2),(100,100,1,1,0,NULL,'471-9842',NULL,'4719842',2),(101,100,1,0,0,NULL,'679-4894',NULL,'6794894',1),(102,54,1,1,0,NULL,'329-1085',NULL,'3291085',1),(103,169,1,1,0,NULL,'(263) 589-3594',NULL,'2635893594',1),(104,50,1,1,0,NULL,'370-3147',NULL,'3703147',1),(105,50,1,0,0,NULL,'233-8601',NULL,'2338601',2),(106,60,1,1,0,NULL,'803-4254',NULL,'8034254',2),(107,60,1,0,0,NULL,'699-4875',NULL,'6994875',2),(108,170,1,1,0,NULL,'344-3850',NULL,'3443850',2),(109,84,1,1,0,NULL,'(253) 718-8359',NULL,'2537188359',1),(110,84,1,0,0,NULL,'873-6763',NULL,'8736763',2),(111,33,1,1,0,NULL,'(436) 588-5584',NULL,'4365885584',1),(112,33,1,0,0,NULL,'(647) 302-4523',NULL,'6473024523',2),(113,22,1,1,0,NULL,'(785) 760-7779',NULL,'7857607779',2),(114,87,1,1,0,NULL,'678-9801',NULL,'6789801',2),(115,98,1,1,0,NULL,'(395) 642-1277',NULL,'3956421277',1),(116,98,1,0,0,NULL,'252-3550',NULL,'2523550',2),(117,106,1,1,0,NULL,'(475) 729-8261',NULL,'4757298261',1),(118,106,1,0,0,NULL,'(665) 535-5123',NULL,'6655355123',1),(119,109,1,1,0,NULL,'(708) 372-5040',NULL,'7083725040',1),(120,20,1,1,0,NULL,'(539) 820-1706',NULL,'5398201706',1),(121,133,1,1,0,NULL,'599-9898',NULL,'5999898',1),(122,133,1,0,0,NULL,'(285) 389-3645',NULL,'2853893645',1),(123,99,1,1,0,NULL,'(254) 604-6876',NULL,'2546046876',1),(124,99,1,0,0,NULL,'551-3235',NULL,'5513235',2),(125,129,1,1,0,NULL,'724-9610',NULL,'7249610',1),(126,129,1,0,0,NULL,'213-4155',NULL,'2134155',2),(127,123,1,1,0,NULL,'557-4886',NULL,'5574886',2),(128,42,1,1,0,NULL,'355-7811',NULL,'3557811',2),(129,74,1,1,0,NULL,'(375) 694-4220',NULL,'3756944220',1),(130,28,1,1,0,NULL,'(894) 507-4341',NULL,'8945074341',1),(131,28,1,0,0,NULL,'(678) 247-2537',NULL,'6782472537',1),(132,18,1,1,0,NULL,'(306) 612-5298',NULL,'3066125298',1),(133,182,1,1,0,NULL,'769-9789',NULL,'7699789',2),(134,198,1,1,0,NULL,'806-1285',NULL,'8061285',1),(135,198,1,0,0,NULL,'386-3041',NULL,'3863041',2),(136,57,1,1,0,NULL,'440-6560',NULL,'4406560',1),(137,57,1,0,0,NULL,'459-3737',NULL,'4593737',1),(138,94,1,1,0,NULL,'864-1570',NULL,'8641570',2),(139,94,1,0,0,NULL,'(345) 326-5705',NULL,'3453265705',2),(140,5,1,1,0,NULL,'524-1488',NULL,'5241488',1),(141,158,1,1,0,NULL,'(562) 262-8725',NULL,'5622628725',2),(142,158,1,0,0,NULL,'(700) 470-4118',NULL,'7004704118',2),(143,153,1,1,0,NULL,'(818) 874-3536',NULL,'8188743536',1),(144,53,1,1,0,NULL,'882-5985',NULL,'8825985',1),(145,196,1,1,0,NULL,'476-8235',NULL,'4768235',2),(146,196,1,0,0,NULL,'(713) 821-7590',NULL,'7138217590',2),(147,178,1,1,0,NULL,'(604) 742-3959',NULL,'6047423959',2),(148,178,1,0,0,NULL,'(558) 617-2222',NULL,'5586172222',1),(149,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),(150,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),(151,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1);
 -INSERT INTO `civicrm_phone` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `mobile_provider_id`, `phone`, `phone_ext`, `phone_numeric`, `phone_type_id`) VALUES (1,117,1,1,0,NULL,'460-5234',NULL,'4605234',1),(2,106,1,1,0,NULL,'(677) 322-9839',NULL,'6773229839',1),(3,106,1,0,0,NULL,'400-7442',NULL,'4007442',2),(4,201,1,1,0,NULL,'(753) 370-9975',NULL,'7533709975',1),(5,2,1,1,0,NULL,'(202) 861-2065',NULL,'2028612065',1),(6,2,1,0,0,NULL,'(723) 232-8737',NULL,'7232328737',2),(7,36,1,1,0,NULL,'(748) 396-3955',NULL,'7483963955',2),(8,36,1,0,0,NULL,'296-5794',NULL,'2965794',2),(9,169,1,1,0,NULL,'(791) 424-2251',NULL,'7914242251',2),(10,171,1,1,0,NULL,'(863) 802-7548',NULL,'8638027548',1),(11,171,1,0,0,NULL,'(391) 654-8348',NULL,'3916548348',1),(12,147,1,1,0,NULL,'(682) 402-1025',NULL,'6824021025',1),(13,64,1,1,0,NULL,'(603) 408-1238',NULL,'6034081238',1),(14,80,1,1,0,NULL,'(214) 329-8444',NULL,'2143298444',1),(15,80,1,0,0,NULL,'639-1659',NULL,'6391659',1),(16,110,1,1,0,NULL,'(287) 236-3024',NULL,'2872363024',1),(17,110,1,0,0,NULL,'(612) 485-6963',NULL,'6124856963',1),(18,39,1,1,0,NULL,'(217) 475-9406',NULL,'2174759406',2),(19,39,1,0,0,NULL,'657-5128',NULL,'6575128',1),(20,86,1,1,0,NULL,'245-8564',NULL,'2458564',2),(21,148,1,1,0,NULL,'(739) 248-1974',NULL,'7392481974',2),(22,148,1,0,0,NULL,'(568) 794-1976',NULL,'5687941976',1),(23,178,1,1,0,NULL,'(667) 539-2476',NULL,'6675392476',1),(24,168,1,1,0,NULL,'(553) 529-1782',NULL,'5535291782',2),(25,30,1,1,0,NULL,'452-5541',NULL,'4525541',2),(26,132,1,1,0,NULL,'622-2937',NULL,'6222937',2),(27,200,1,1,0,NULL,'356-4109',NULL,'3564109',1),(28,200,1,0,0,NULL,'461-7931',NULL,'4617931',2),(29,198,1,1,0,NULL,'(201) 831-9048',NULL,'2018319048',1),(30,47,1,1,0,NULL,'539-1948',NULL,'5391948',1),(31,170,1,1,0,NULL,'(808) 367-3512',NULL,'8083673512',1),(32,170,1,0,0,NULL,'(580) 783-4897',NULL,'5807834897',2),(33,67,1,1,0,NULL,'(551) 702-3618',NULL,'5517023618',2),(34,67,1,0,0,NULL,'(624) 216-3315',NULL,'6242163315',2),(35,185,1,1,0,NULL,'(636) 640-3174',NULL,'6366403174',1),(36,22,1,1,0,NULL,'297-4226',NULL,'2974226',1),(37,22,1,0,0,NULL,'510-4061',NULL,'5104061',1),(38,9,1,1,0,NULL,'532-5510',NULL,'5325510',2),(39,146,1,1,0,NULL,'429-6422',NULL,'4296422',2),(40,146,1,0,0,NULL,'(271) 492-4413',NULL,'2714924413',2),(41,42,1,1,0,NULL,'(580) 823-1152',NULL,'5808231152',2),(42,166,1,1,0,NULL,'(210) 508-4859',NULL,'2105084859',1),(43,166,1,0,0,NULL,'(276) 781-8075',NULL,'2767818075',2),(44,75,1,1,0,NULL,'(312) 205-1016',NULL,'3122051016',2),(45,75,1,0,0,NULL,'(829) 469-2857',NULL,'8294692857',1),(46,44,1,1,0,NULL,'(320) 683-6509',NULL,'3206836509',2),(47,44,1,0,0,NULL,'803-6461',NULL,'8036461',1),(48,131,1,1,0,NULL,'786-4204',NULL,'7864204',2),(49,131,1,0,0,NULL,'385-5397',NULL,'3855397',1),(50,162,1,1,0,NULL,'(308) 715-4314',NULL,'3087154314',1),(51,162,1,0,0,NULL,'(712) 785-4265',NULL,'7127854265',1),(52,184,1,1,0,NULL,'(852) 702-9530',NULL,'8527029530',2),(53,78,1,1,0,NULL,'572-5625',NULL,'5725625',2),(54,78,1,0,0,NULL,'438-4741',NULL,'4384741',1),(55,196,1,1,0,NULL,'665-5838',NULL,'6655838',2),(56,167,1,1,0,NULL,'(217) 273-6945',NULL,'2172736945',2),(57,33,1,1,0,NULL,'(775) 468-6385',NULL,'7754686385',2),(58,157,1,1,0,NULL,'657-1521',NULL,'6571521',1),(59,157,1,0,0,NULL,'(229) 486-5375',NULL,'2294865375',1),(60,192,1,1,0,NULL,'(798) 630-1936',NULL,'7986301936',1),(61,68,1,1,0,NULL,'656-8083',NULL,'6568083',1),(62,158,1,1,0,NULL,'400-8189',NULL,'4008189',2),(63,35,1,1,0,NULL,'(301) 815-6544',NULL,'3018156544',1),(64,35,1,0,0,NULL,'584-4108',NULL,'5844108',2),(65,152,1,1,0,NULL,'(578) 589-6887',NULL,'5785896887',1),(66,66,1,1,0,NULL,'(659) 409-2066',NULL,'6594092066',2),(67,16,1,1,0,NULL,'668-7591',NULL,'6687591',2),(68,151,1,1,0,NULL,'(220) 339-3944',NULL,'2203393944',1),(69,151,1,0,0,NULL,'838-8105',NULL,'8388105',1),(70,51,1,1,0,NULL,'(801) 468-6049',NULL,'8014686049',1),(71,51,1,0,0,NULL,'623-2336',NULL,'6232336',1),(72,28,1,1,0,NULL,'(537) 278-8953',NULL,'5372788953',2),(73,34,1,1,0,NULL,'653-4211',NULL,'6534211',2),(74,61,1,1,0,NULL,'(766) 357-4424',NULL,'7663574424',1),(75,79,1,1,0,NULL,'515-7979',NULL,'5157979',2),(76,79,1,0,0,NULL,'(852) 368-5550',NULL,'8523685550',1),(77,154,1,1,0,NULL,'762-3172',NULL,'7623172',1),(78,54,1,1,0,NULL,'223-3393',NULL,'2233393',1),(79,54,1,0,0,NULL,'201-6720',NULL,'2016720',1),(80,120,1,1,0,NULL,'(726) 284-4658',NULL,'7262844658',2),(81,107,1,1,0,NULL,'587-3601',NULL,'5873601',2),(82,10,1,1,0,NULL,'806-5885',NULL,'8065885',2),(83,10,1,0,0,NULL,'(328) 873-7835',NULL,'3288737835',2),(84,153,1,1,0,NULL,'500-9417',NULL,'5009417',1),(85,26,1,1,0,NULL,'216-9880',NULL,'2169880',1),(86,27,1,1,0,NULL,'220-9849',NULL,'2209849',2),(87,181,1,1,0,NULL,'(434) 309-8717',NULL,'4343098717',2),(88,155,1,1,0,NULL,'(596) 501-5480',NULL,'5965015480',1),(89,112,1,1,0,NULL,'(252) 375-2456',NULL,'2523752456',2),(90,112,1,0,0,NULL,'(334) 508-5339',NULL,'3345085339',2),(91,74,1,1,0,NULL,'263-6776',NULL,'2636776',1),(92,122,1,1,0,NULL,'599-1880',NULL,'5991880',2),(93,130,1,1,0,NULL,'892-8208',NULL,'8928208',2),(94,130,1,0,0,NULL,'890-9782',NULL,'8909782',1),(95,3,1,1,0,NULL,'497-5732',NULL,'4975732',1),(96,3,1,0,0,NULL,'(480) 273-2643',NULL,'4802732643',1),(97,20,1,1,0,NULL,'(408) 250-5769',NULL,'4082505769',1),(98,25,1,1,0,NULL,'(521) 379-1049',NULL,'5213791049',2),(99,25,1,0,0,NULL,'753-6830',NULL,'7536830',2),(100,139,1,1,0,NULL,'(553) 311-3205',NULL,'5533113205',2),(101,17,1,1,0,NULL,'878-9878',NULL,'8789878',2),(102,17,1,0,0,NULL,'(829) 633-9519',NULL,'8296339519',2),(103,95,1,1,0,NULL,'322-8500',NULL,'3228500',1),(104,95,1,0,0,NULL,'286-2919',NULL,'2862919',2),(105,13,1,1,0,NULL,'636-4141',NULL,'6364141',1),(106,13,1,0,0,NULL,'(884) 808-4718',NULL,'8848084718',1),(107,57,1,1,0,NULL,'637-4051',NULL,'6374051',1),(108,19,1,1,0,NULL,'395-3700',NULL,'3953700',1),(109,19,1,0,0,NULL,'(500) 468-2775',NULL,'5004682775',1),(110,53,1,1,0,NULL,'459-5902',NULL,'4595902',2),(111,53,1,0,0,NULL,'(793) 328-1273',NULL,'7933281273',1),(112,50,1,1,0,NULL,'(283) 755-7357',NULL,'2837557357',1),(113,90,1,1,0,NULL,'566-6128',NULL,'5666128',2),(114,101,1,1,0,NULL,'(443) 855-7820',NULL,'4438557820',2),(115,101,1,0,0,NULL,'(474) 472-9274',NULL,'4744729274',1),(116,81,1,1,0,NULL,'736-5686',NULL,'7365686',1),(117,81,1,0,0,NULL,'(563) 337-7106',NULL,'5633377106',2),(118,161,1,1,0,NULL,'876-4416',NULL,'8764416',2),(119,161,1,0,0,NULL,'753-5628',NULL,'7535628',2),(120,70,1,1,0,NULL,'(582) 568-2311',NULL,'5825682311',2),(121,70,1,0,0,NULL,'765-3859',NULL,'7653859',2),(122,91,1,1,0,NULL,'824-7915',NULL,'8247915',1),(123,99,1,1,0,NULL,'484-5714',NULL,'4845714',2),(124,99,1,0,0,NULL,'(648) 233-3121',NULL,'6482333121',1),(125,133,1,1,0,NULL,'(876) 883-7815',NULL,'8768837815',2),(126,14,1,1,0,NULL,'363-2767',NULL,'3632767',1),(127,174,1,1,0,NULL,'(587) 676-7754',NULL,'5876767754',2),(128,40,1,1,0,NULL,'(561) 279-9027',NULL,'5612799027',2),(129,141,1,1,0,NULL,'(345) 441-9973',NULL,'3454419973',1),(130,141,1,0,0,NULL,'265-8018',NULL,'2658018',2),(131,143,1,1,0,NULL,'345-4127',NULL,'3454127',1),(132,143,1,0,0,NULL,'(303) 699-6342',NULL,'3036996342',2),(133,128,1,1,0,NULL,'(437) 376-6008',NULL,'4373766008',2),(134,8,1,1,0,NULL,'433-5020',NULL,'4335020',2),(135,8,1,0,0,NULL,'(481) 307-1307',NULL,'4813071307',2),(136,197,1,1,0,NULL,'354-6827',NULL,'3546827',1),(137,197,1,0,0,NULL,'(737) 461-4626',NULL,'7374614626',1),(138,180,1,1,0,NULL,'(740) 764-3341',NULL,'7407643341',2),(139,89,1,1,0,NULL,'407-7914',NULL,'4077914',1),(140,145,1,1,0,NULL,'258-2733',NULL,'2582733',2),(141,145,1,0,0,NULL,'268-1191',NULL,'2681191',2),(142,94,1,1,0,NULL,'209-6393',NULL,'2096393',1),(143,94,1,0,0,NULL,'(389) 420-1453',NULL,'3894201453',2),(144,102,1,1,0,NULL,'(898) 802-6922',NULL,'8988026922',2),(145,182,1,1,0,NULL,'(435) 227-9740',NULL,'4352279740',1),(146,182,1,0,0,NULL,'848-8092',NULL,'8488092',1),(147,177,1,1,0,NULL,'(594) 804-3047',NULL,'5948043047',1),(148,177,1,0,0,NULL,'618-6005',NULL,'6186005',1),(149,179,1,1,0,NULL,'412-6011',NULL,'4126011',1),(150,138,1,1,0,NULL,'(383) 414-8416',NULL,'3834148416',2),(151,138,1,0,0,NULL,'578-6180',NULL,'5786180',2),(152,121,1,1,0,NULL,'(258) 472-1997',NULL,'2584721997',1),(153,118,1,1,0,NULL,'563-6764',NULL,'5636764',2),(154,118,1,0,0,NULL,'811-6594',NULL,'8116594',1),(155,59,1,1,0,NULL,'492-4102',NULL,'4924102',1),(156,21,1,1,0,NULL,'(717) 546-8295',NULL,'7175468295',2),(157,21,1,0,0,NULL,'418-7267',NULL,'4187267',2),(158,83,1,1,0,NULL,'848-4977',NULL,'8484977',2),(159,56,1,1,0,NULL,'418-8853',NULL,'4188853',2),(160,56,1,0,0,NULL,'(812) 697-6440',NULL,'8126976440',2),(161,105,1,1,0,NULL,'362-5985',NULL,'3625985',1),(162,85,1,1,0,NULL,'263-8625',NULL,'2638625',1),(163,85,1,0,0,NULL,'(649) 348-3883',NULL,'6493483883',2),(164,12,1,1,0,NULL,'554-9172',NULL,'5549172',2),(165,12,1,0,0,NULL,'726-3788',NULL,'7263788',1),(166,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),(167,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),(168,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1);
++INSERT INTO `civicrm_phone` (`id`, `contact_id`, `location_type_id`, `is_primary`, `is_billing`, `mobile_provider_id`, `phone`, `phone_ext`, `phone_numeric`, `phone_type_id`) VALUES (1,128,1,1,0,NULL,'282-3566',NULL,'2823566',2),(2,128,1,0,0,NULL,'(494) 662-8810',NULL,'4946628810',2),(3,110,1,1,0,NULL,'411-1752',NULL,'4111752',1),(4,153,1,1,0,NULL,'704-1754',NULL,'7041754',2),(5,152,1,1,0,NULL,'(658) 748-4937',NULL,'6587484937',1),(6,108,1,1,0,NULL,'(355) 500-9977',NULL,'3555009977',2),(7,176,1,1,0,NULL,'(586) 722-1876',NULL,'5867221876',1),(8,176,1,0,0,NULL,'(368) 508-6218',NULL,'3685086218',2),(9,117,1,1,0,NULL,'691-8788',NULL,'6918788',1),(10,88,1,1,0,NULL,'563-7291',NULL,'5637291',2),(11,169,1,1,0,NULL,'(477) 313-5417',NULL,'4773135417',1),(12,169,1,0,0,NULL,'(238) 777-6449',NULL,'2387776449',2),(13,179,1,1,0,NULL,'(600) 403-9148',NULL,'6004039148',2),(14,55,1,1,0,NULL,'877-9337',NULL,'8779337',2),(15,55,1,0,0,NULL,'730-9840',NULL,'7309840',2),(16,190,1,1,0,NULL,'478-5992',NULL,'4785992',1),(17,190,1,0,0,NULL,'898-9989',NULL,'8989989',1),(18,123,1,1,0,NULL,'(679) 416-7411',NULL,'6794167411',1),(19,95,1,1,0,NULL,'473-3477',NULL,'4733477',1),(20,64,1,1,0,NULL,'270-3527',NULL,'2703527',1),(21,64,1,0,0,NULL,'637-5570',NULL,'6375570',1),(22,85,1,1,0,NULL,'(503) 705-2200',NULL,'5037052200',1),(23,85,1,0,0,NULL,'(765) 480-6319',NULL,'7654806319',2),(24,43,1,1,0,NULL,'(896) 796-8806',NULL,'8967968806',1),(25,76,1,1,0,NULL,'(897) 483-4036',NULL,'8974834036',2),(26,144,1,1,0,NULL,'409-4606',NULL,'4094606',2),(27,144,1,0,0,NULL,'772-5382',NULL,'7725382',1),(28,47,1,1,0,NULL,'(515) 884-1216',NULL,'5158841216',1),(29,47,1,0,0,NULL,'392-1462',NULL,'3921462',2),(30,155,1,1,0,NULL,'532-3204',NULL,'5323204',1),(31,111,1,1,0,NULL,'725-5573',NULL,'7255573',2),(32,183,1,1,0,NULL,'(662) 559-8720',NULL,'6625598720',2),(33,183,1,0,0,NULL,'(508) 833-5969',NULL,'5088335969',2),(34,58,1,1,0,NULL,'(660) 519-3000',NULL,'6605193000',1),(35,105,1,1,0,NULL,'(266) 554-2765',NULL,'2665542765',1),(36,105,1,0,0,NULL,'800-9048',NULL,'8009048',1),(37,77,1,1,0,NULL,'784-1777',NULL,'7841777',1),(38,77,1,0,0,NULL,'(882) 806-4342',NULL,'8828064342',1),(39,74,1,1,0,NULL,'(206) 476-2673',NULL,'2064762673',1),(40,130,1,1,0,NULL,'809-6100',NULL,'8096100',1),(41,36,1,1,0,NULL,'(524) 207-5693',NULL,'5242075693',2),(42,11,1,1,0,NULL,'482-4235',NULL,'4824235',2),(43,172,1,1,0,NULL,'(314) 832-8819',NULL,'3148328819',2),(44,172,1,0,0,NULL,'463-6870',NULL,'4636870',1),(45,133,1,1,0,NULL,'468-3087',NULL,'4683087',1),(46,146,1,1,0,NULL,'682-7992',NULL,'6827992',1),(47,180,1,1,0,NULL,'523-1791',NULL,'5231791',1),(48,180,1,0,0,NULL,'(368) 769-5605',NULL,'3687695605',2),(49,139,1,1,0,NULL,'820-5166',NULL,'8205166',1),(50,113,1,1,0,NULL,'643-7253',NULL,'6437253',1),(51,113,1,0,0,NULL,'681-8363',NULL,'6818363',2),(52,114,1,1,0,NULL,'863-9581',NULL,'8639581',2),(53,114,1,0,0,NULL,'458-6391',NULL,'4586391',1),(54,69,1,1,0,NULL,'(300) 544-7509',NULL,'3005447509',2),(55,137,1,1,0,NULL,'888-1166',NULL,'8881166',2),(56,82,1,1,0,NULL,'(302) 302-2469',NULL,'3023022469',1),(57,82,1,0,0,NULL,'(841) 753-2924',NULL,'8417532924',1),(58,75,1,1,0,NULL,'451-4696',NULL,'4514696',2),(59,75,1,0,0,NULL,'(807) 634-9829',NULL,'8076349829',2),(60,145,1,1,0,NULL,'(439) 284-8698',NULL,'4392848698',1),(61,5,1,1,0,NULL,'207-2858',NULL,'2072858',1),(62,5,1,0,0,NULL,'418-7815',NULL,'4187815',2),(63,158,1,1,0,NULL,'(858) 300-9226',NULL,'8583009226',1),(64,158,1,0,0,NULL,'478-3880',NULL,'4783880',1),(65,184,1,1,0,NULL,'289-4873',NULL,'2894873',1),(66,193,1,1,0,NULL,'804-6538',NULL,'8046538',1),(67,97,1,1,0,NULL,'320-5407',NULL,'3205407',1),(68,53,1,1,0,NULL,'821-5744',NULL,'8215744',1),(69,140,1,1,0,NULL,'(622) 729-4426',NULL,'6227294426',2),(70,13,1,1,0,NULL,'389-4702',NULL,'3894702',2),(71,83,1,1,0,NULL,'(797) 243-9512',NULL,'7972439512',1),(72,83,1,0,0,NULL,'820-7426',NULL,'8207426',2),(73,14,1,1,0,NULL,'(621) 593-8156',NULL,'6215938156',1),(74,14,1,0,0,NULL,'(532) 881-1164',NULL,'5328811164',2),(75,66,1,1,0,NULL,'(643) 732-7067',NULL,'6437327067',1),(76,66,1,0,0,NULL,'(692) 720-3856',NULL,'6927203856',1),(77,49,1,1,0,NULL,'541-8005',NULL,'5418005',2),(78,54,1,1,0,NULL,'719-1195',NULL,'7191195',2),(79,41,1,1,0,NULL,'447-8393',NULL,'4478393',1),(80,41,1,0,0,NULL,'893-8067',NULL,'8938067',1),(81,136,1,1,0,NULL,'(225) 821-6693',NULL,'2258216693',2),(82,136,1,0,0,NULL,'(400) 778-1029',NULL,'4007781029',2),(83,94,1,1,0,NULL,'280-4056',NULL,'2804056',2),(84,12,1,1,0,NULL,'(287) 568-1922',NULL,'2875681922',2),(85,181,1,1,0,NULL,'(802) 261-7211',NULL,'8022617211',1),(86,181,1,0,0,NULL,'(292) 316-3854',NULL,'2923163854',2),(87,89,1,1,0,NULL,'(835) 386-1770',NULL,'8353861770',2),(88,89,1,0,0,NULL,'524-2591',NULL,'5242591',1),(89,125,1,1,0,NULL,'499-5787',NULL,'4995787',2),(90,162,1,1,0,NULL,'323-1155',NULL,'3231155',1),(91,162,1,0,0,NULL,'272-6648',NULL,'2726648',1),(92,80,1,1,0,NULL,'(554) 313-4804',NULL,'5543134804',2),(93,198,1,1,0,NULL,'(230) 444-1009',NULL,'2304441009',2),(94,198,1,0,0,NULL,'(381) 248-9732',NULL,'3812489732',1),(95,46,1,1,0,NULL,'(840) 275-4931',NULL,'8402754931',1),(96,93,1,1,0,NULL,'(277) 557-3705',NULL,'2775573705',2),(97,93,1,0,0,NULL,'645-8731',NULL,'6458731',2),(98,26,1,1,0,NULL,'(240) 663-2284',NULL,'2406632284',1),(99,26,1,0,0,NULL,'715-9908',NULL,'7159908',2),(100,116,1,1,0,NULL,'311-1763',NULL,'3111763',2),(101,52,1,1,0,NULL,'819-3482',NULL,'8193482',1),(102,10,1,1,0,NULL,'(331) 887-2552',NULL,'3318872552',2),(103,10,1,0,0,NULL,'461-2108',NULL,'4612108',2),(104,148,1,1,0,NULL,'213-4203',NULL,'2134203',1),(105,96,1,1,0,NULL,'322-9341',NULL,'3229341',1),(106,96,1,0,0,NULL,'(551) 270-6158',NULL,'5512706158',2),(107,90,1,1,0,NULL,'(340) 306-6530',NULL,'3403066530',2),(108,90,1,0,0,NULL,'593-8858',NULL,'5938858',1),(109,147,1,1,0,NULL,'(888) 405-7750',NULL,'8884057750',2),(110,147,1,0,0,NULL,'(490) 724-2220',NULL,'4907242220',2),(111,44,1,1,0,NULL,'(272) 534-3722',NULL,'2725343722',2),(112,44,1,0,0,NULL,'(733) 861-6127',NULL,'7338616127',2),(113,200,1,1,0,NULL,'(598) 559-3067',NULL,'5985593067',1),(114,21,1,1,0,NULL,'620-6605',NULL,'6206605',1),(115,150,1,1,0,NULL,'242-4892',NULL,'2424892',1),(116,150,1,0,0,NULL,'581-5189',NULL,'5815189',2),(117,167,1,1,0,NULL,'(761) 434-1466',NULL,'7614341466',2),(118,167,1,0,0,NULL,'(318) 770-9026',NULL,'3187709026',2),(119,141,1,1,0,NULL,'826-4008',NULL,'8264008',2),(120,84,1,1,0,NULL,'(808) 346-5904',NULL,'8083465904',1),(121,84,1,0,0,NULL,'865-2642',NULL,'8652642',2),(122,45,1,1,0,NULL,'267-1457',NULL,'2671457',2),(123,45,1,0,0,NULL,'379-2759',NULL,'3792759',2),(124,17,1,1,0,NULL,'260-9199',NULL,'2609199',2),(125,17,1,0,0,NULL,'(298) 228-9067',NULL,'2982289067',1),(126,119,1,1,0,NULL,'(298) 690-2249',NULL,'2986902249',2),(127,119,1,0,0,NULL,'(541) 585-8041',NULL,'5415858041',2),(128,92,1,1,0,NULL,'(674) 655-7309',NULL,'6746557309',2),(129,92,1,0,0,NULL,'230-7698',NULL,'2307698',1),(130,72,1,1,0,NULL,'(548) 834-1202',NULL,'5488341202',2),(131,72,1,0,0,NULL,'659-8059',NULL,'6598059',2),(132,154,1,1,0,NULL,'489-5505',NULL,'4895505',2),(133,101,1,1,0,NULL,'220-3566',NULL,'2203566',1),(134,160,1,1,0,NULL,'(834) 792-4590',NULL,'8347924590',2),(135,160,1,0,0,NULL,'689-7561',NULL,'6897561',2),(136,107,1,1,0,NULL,'741-2270',NULL,'7412270',1),(137,156,1,1,0,NULL,'(342) 619-9834',NULL,'3426199834',1),(138,156,1,0,0,NULL,'543-3043',NULL,'5433043',2),(139,61,1,1,0,NULL,'852-2615',NULL,'8522615',1),(140,135,1,1,0,NULL,'(640) 393-4761',NULL,'6403934761',1),(141,135,1,0,0,NULL,'444-9326',NULL,'4449326',2),(142,177,1,1,0,NULL,'(208) 637-8122',NULL,'2086378122',2),(143,177,1,0,0,NULL,'620-3728',NULL,'6203728',2),(144,199,1,1,0,NULL,'(776) 753-2479',NULL,'7767532479',2),(145,171,1,1,0,NULL,'781-4565',NULL,'7814565',1),(146,171,1,0,0,NULL,'599-7050',NULL,'5997050',1),(147,100,1,1,0,NULL,'(835) 418-7651',NULL,'8354187651',1),(148,100,1,0,0,NULL,'836-6764',NULL,'8366764',2),(149,122,1,1,0,NULL,'475-4752',NULL,'4754752',2),(150,189,1,1,0,NULL,'(837) 438-1728',NULL,'8374381728',1),(151,189,1,0,0,NULL,'(241) 393-1553',NULL,'2413931553',2),(152,98,1,1,0,NULL,'492-1841',NULL,'4921841',1),(153,118,1,1,0,NULL,'616-7448',NULL,'6167448',1),(154,124,1,1,0,NULL,'(717) 447-4513',NULL,'7174474513',2),(155,185,1,1,0,NULL,'(574) 529-4971',NULL,'5745294971',1),(156,185,1,0,0,NULL,'392-2548',NULL,'3922548',2),(157,131,1,1,0,NULL,'552-3422',NULL,'5523422',2),(158,131,1,0,0,NULL,'(285) 457-8166',NULL,'2854578166',1),(159,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),(160,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),(161,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1);
  /*!40000 ALTER TABLE `civicrm_phone` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -1251,7 -1261,7 +1261,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_relationship` WRITE;
  /*!40000 ALTER TABLE `civicrm_relationship` DISABLE KEYS */;
- INSERT INTO `civicrm_relationship` (`id`, `contact_id_a`, `contact_id_b`, `relationship_type_id`, `start_date`, `end_date`, `is_active`, `description`, `is_permission_a_b`, `is_permission_b_a`, `case_id`) VALUES (1,81,4,1,NULL,NULL,1,NULL,0,0,NULL),(2,95,4,1,NULL,NULL,1,NULL,0,0,NULL),(3,81,51,1,NULL,NULL,1,NULL,0,0,NULL),(4,95,51,1,NULL,NULL,1,NULL,0,0,NULL),(5,95,81,4,NULL,NULL,1,NULL,0,0,NULL),(6,51,62,8,NULL,NULL,1,NULL,0,0,NULL),(7,81,62,8,NULL,NULL,1,NULL,0,0,NULL),(8,95,62,8,NULL,NULL,1,NULL,0,0,NULL),(9,4,62,7,NULL,NULL,0,NULL,0,0,NULL),(10,51,4,2,NULL,NULL,0,NULL,0,0,NULL),(11,9,11,1,NULL,NULL,1,NULL,0,0,NULL),(12,12,11,1,NULL,NULL,1,NULL,0,0,NULL),(13,9,32,1,NULL,NULL,1,NULL,0,0,NULL),(14,12,32,1,NULL,NULL,1,NULL,0,0,NULL),(15,12,9,4,NULL,NULL,1,NULL,0,0,NULL),(16,32,85,8,NULL,NULL,1,NULL,0,0,NULL),(17,9,85,8,NULL,NULL,1,NULL,0,0,NULL),(18,12,85,8,NULL,NULL,1,NULL,0,0,NULL),(19,11,85,7,NULL,NULL,1,NULL,0,0,NULL),(20,32,11,2,NULL,NULL,1,NULL,0,0,NULL),(21,139,163,1,NULL,NULL,1,NULL,0,0,NULL),(22,8,163,1,NULL,NULL,1,NULL,0,0,NULL),(23,139,67,1,NULL,NULL,1,NULL,0,0,NULL),(24,8,67,1,NULL,NULL,1,NULL,0,0,NULL),(25,8,139,4,NULL,NULL,1,NULL,0,0,NULL),(26,67,173,8,NULL,NULL,1,NULL,0,0,NULL),(27,139,173,8,NULL,NULL,1,NULL,0,0,NULL),(28,8,173,8,NULL,NULL,1,NULL,0,0,NULL),(29,163,173,7,NULL,NULL,0,NULL,0,0,NULL),(30,67,163,2,NULL,NULL,0,NULL,0,0,NULL),(31,78,189,1,NULL,NULL,1,NULL,0,0,NULL),(32,39,189,1,NULL,NULL,1,NULL,0,0,NULL),(33,78,49,1,NULL,NULL,1,NULL,0,0,NULL),(34,39,49,1,NULL,NULL,1,NULL,0,0,NULL),(35,39,78,4,NULL,NULL,1,NULL,0,0,NULL),(36,49,140,8,NULL,NULL,1,NULL,0,0,NULL),(37,78,140,8,NULL,NULL,1,NULL,0,0,NULL),(38,39,140,8,NULL,NULL,1,NULL,0,0,NULL),(39,189,140,7,NULL,NULL,1,NULL,0,0,NULL),(40,49,189,2,NULL,NULL,1,NULL,0,0,NULL),(41,73,35,1,NULL,NULL,1,NULL,0,0,NULL),(42,157,35,1,NULL,NULL,1,NULL,0,0,NULL),(43,73,165,1,NULL,NULL,1,NULL,0,0,NULL),(44,157,165,1,NULL,NULL,1,NULL,0,0,NULL),(45,157,73,4,NULL,NULL,1,NULL,0,0,NULL),(46,165,86,8,NULL,NULL,1,NULL,0,0,NULL),(47,73,86,8,NULL,NULL,1,NULL,0,0,NULL),(48,157,86,8,NULL,NULL,1,NULL,0,0,NULL),(49,35,86,7,NULL,NULL,1,NULL,0,0,NULL),(50,165,35,2,NULL,NULL,1,NULL,0,0,NULL),(51,175,48,1,NULL,NULL,1,NULL,0,0,NULL),(52,71,48,1,NULL,NULL,1,NULL,0,0,NULL),(53,175,117,1,NULL,NULL,1,NULL,0,0,NULL),(54,71,117,1,NULL,NULL,1,NULL,0,0,NULL),(55,71,175,4,NULL,NULL,1,NULL,0,0,NULL),(56,117,37,8,NULL,NULL,1,NULL,0,0,NULL),(57,175,37,8,NULL,NULL,1,NULL,0,0,NULL),(58,71,37,8,NULL,NULL,1,NULL,0,0,NULL),(59,48,37,7,NULL,NULL,0,NULL,0,0,NULL),(60,117,48,2,NULL,NULL,0,NULL,0,0,NULL),(61,59,77,1,NULL,NULL,1,NULL,0,0,NULL),(62,200,77,1,NULL,NULL,1,NULL,0,0,NULL),(63,59,61,1,NULL,NULL,1,NULL,0,0,NULL),(64,200,61,1,NULL,NULL,1,NULL,0,0,NULL),(65,200,59,4,NULL,NULL,1,NULL,0,0,NULL),(66,61,17,8,NULL,NULL,1,NULL,0,0,NULL),(67,59,17,8,NULL,NULL,1,NULL,0,0,NULL),(68,200,17,8,NULL,NULL,1,NULL,0,0,NULL),(69,77,17,7,NULL,NULL,0,NULL,0,0,NULL),(70,61,77,2,NULL,NULL,0,NULL,0,0,NULL),(71,100,152,1,NULL,NULL,1,NULL,0,0,NULL),(72,54,152,1,NULL,NULL,1,NULL,0,0,NULL),(73,100,172,1,NULL,NULL,1,NULL,0,0,NULL),(74,54,172,1,NULL,NULL,1,NULL,0,0,NULL),(75,54,100,4,NULL,NULL,1,NULL,0,0,NULL),(76,172,56,8,NULL,NULL,1,NULL,0,0,NULL),(77,100,56,8,NULL,NULL,1,NULL,0,0,NULL),(78,54,56,8,NULL,NULL,1,NULL,0,0,NULL),(79,152,56,7,NULL,NULL,1,NULL,0,0,NULL),(80,172,152,2,NULL,NULL,1,NULL,0,0,NULL),(81,169,151,1,NULL,NULL,1,NULL,0,0,NULL),(82,116,151,1,NULL,NULL,1,NULL,0,0,NULL),(83,169,70,1,NULL,NULL,1,NULL,0,0,NULL),(84,116,70,1,NULL,NULL,1,NULL,0,0,NULL),(85,116,169,4,NULL,NULL,1,NULL,0,0,NULL),(86,70,137,8,NULL,NULL,1,NULL,0,0,NULL),(87,169,137,8,NULL,NULL,1,NULL,0,0,NULL),(88,116,137,8,NULL,NULL,1,NULL,0,0,NULL),(89,151,137,7,NULL,NULL,0,NULL,0,0,NULL),(90,70,151,2,NULL,NULL,0,NULL,0,0,NULL),(91,60,50,1,NULL,NULL,1,NULL,0,0,NULL),(92,170,50,1,NULL,NULL,1,NULL,0,0,NULL),(93,60,44,1,NULL,NULL,1,NULL,0,0,NULL),(94,170,44,1,NULL,NULL,1,NULL,0,0,NULL),(95,170,60,4,NULL,NULL,1,NULL,0,0,NULL),(96,44,199,8,NULL,NULL,1,NULL,0,0,NULL),(97,60,199,8,NULL,NULL,1,NULL,0,0,NULL),(98,170,199,8,NULL,NULL,1,NULL,0,0,NULL),(99,50,199,7,NULL,NULL,1,NULL,0,0,NULL),(100,44,50,2,NULL,NULL,1,NULL,0,0,NULL),(101,33,84,1,NULL,NULL,1,NULL,0,0,NULL),(102,127,84,1,NULL,NULL,1,NULL,0,0,NULL),(103,33,160,1,NULL,NULL,1,NULL,0,0,NULL),(104,127,160,1,NULL,NULL,1,NULL,0,0,NULL),(105,127,33,4,NULL,NULL,1,NULL,0,0,NULL),(106,160,69,8,NULL,NULL,1,NULL,0,0,NULL),(107,33,69,8,NULL,NULL,1,NULL,0,0,NULL),(108,127,69,8,NULL,NULL,1,NULL,0,0,NULL),(109,84,69,7,NULL,NULL,1,NULL,0,0,NULL),(110,160,84,2,NULL,NULL,1,NULL,0,0,NULL),(111,87,22,1,NULL,NULL,1,NULL,0,0,NULL),(112,164,22,1,NULL,NULL,1,NULL,0,0,NULL),(113,87,83,1,NULL,NULL,1,NULL,0,0,NULL),(114,164,83,1,NULL,NULL,1,NULL,0,0,NULL),(115,164,87,4,NULL,NULL,1,NULL,0,0,NULL),(116,83,108,8,NULL,NULL,1,NULL,0,0,NULL),(117,87,108,8,NULL,NULL,1,NULL,0,0,NULL),(118,164,108,8,NULL,NULL,1,NULL,0,0,NULL),(119,22,108,7,NULL,NULL,0,NULL,0,0,NULL),(120,83,22,2,NULL,NULL,0,NULL,0,0,NULL),(121,98,187,1,NULL,NULL,1,NULL,0,0,NULL),(122,106,187,1,NULL,NULL,1,NULL,0,0,NULL),(123,98,26,1,NULL,NULL,1,NULL,0,0,NULL),(124,106,26,1,NULL,NULL,1,NULL,0,0,NULL),(125,106,98,4,NULL,NULL,1,NULL,0,0,NULL),(126,26,19,8,NULL,NULL,1,NULL,0,0,NULL),(127,98,19,8,NULL,NULL,1,NULL,0,0,NULL),(128,106,19,8,NULL,NULL,1,NULL,0,0,NULL),(129,187,19,7,NULL,NULL,1,NULL,0,0,NULL),(130,26,187,2,NULL,NULL,1,NULL,0,0,NULL),(131,20,109,1,NULL,NULL,1,NULL,0,0,NULL),(132,133,109,1,NULL,NULL,1,NULL,0,0,NULL),(133,20,31,1,NULL,NULL,1,NULL,0,0,NULL),(134,133,31,1,NULL,NULL,1,NULL,0,0,NULL),(135,133,20,4,NULL,NULL,1,NULL,0,0,NULL),(136,31,154,8,NULL,NULL,1,NULL,0,0,NULL),(137,20,154,8,NULL,NULL,1,NULL,0,0,NULL),(138,133,154,8,NULL,NULL,1,NULL,0,0,NULL),(139,109,154,7,NULL,NULL,1,NULL,0,0,NULL),(140,31,109,2,NULL,NULL,1,NULL,0,0,NULL),(141,123,99,1,NULL,NULL,1,NULL,0,0,NULL),(142,55,99,1,NULL,NULL,1,NULL,0,0,NULL),(143,123,129,1,NULL,NULL,1,NULL,0,0,NULL),(144,55,129,1,NULL,NULL,1,NULL,0,0,NULL),(145,55,123,4,NULL,NULL,1,NULL,0,0,NULL),(146,129,183,8,NULL,NULL,1,NULL,0,0,NULL),(147,123,183,8,NULL,NULL,1,NULL,0,0,NULL),(148,55,183,8,NULL,NULL,1,NULL,0,0,NULL),(149,99,183,7,NULL,NULL,1,NULL,0,0,NULL),(150,129,99,2,NULL,NULL,1,NULL,0,0,NULL),(151,143,147,1,NULL,NULL,1,NULL,0,0,NULL),(152,74,147,1,NULL,NULL,1,NULL,0,0,NULL),(153,143,42,1,NULL,NULL,1,NULL,0,0,NULL),(154,74,42,1,NULL,NULL,1,NULL,0,0,NULL),(155,74,143,4,NULL,NULL,1,NULL,0,0,NULL),(156,42,114,8,NULL,NULL,1,NULL,0,0,NULL),(157,143,114,8,NULL,NULL,1,NULL,0,0,NULL),(158,74,114,8,NULL,NULL,1,NULL,0,0,NULL),(159,147,114,7,NULL,NULL,1,NULL,0,0,NULL),(160,42,147,2,NULL,NULL,1,NULL,0,0,NULL),(161,182,28,1,NULL,NULL,1,NULL,0,0,NULL),(162,198,28,1,NULL,NULL,1,NULL,0,0,NULL),(163,182,18,1,NULL,NULL,1,NULL,0,0,NULL),(164,198,18,1,NULL,NULL,1,NULL,0,0,NULL),(165,198,182,4,NULL,NULL,1,NULL,0,0,NULL),(166,18,79,8,NULL,NULL,1,NULL,0,0,NULL),(167,182,79,8,NULL,NULL,1,NULL,0,0,NULL),(168,198,79,8,NULL,NULL,1,NULL,0,0,NULL),(169,28,79,7,NULL,NULL,1,NULL,0,0,NULL),(170,18,28,2,NULL,NULL,1,NULL,0,0,NULL),(171,94,193,1,NULL,NULL,1,NULL,0,0,NULL),(172,5,193,1,NULL,NULL,1,NULL,0,0,NULL),(173,94,57,1,NULL,NULL,1,NULL,0,0,NULL),(174,5,57,1,NULL,NULL,1,NULL,0,0,NULL),(175,5,94,4,NULL,NULL,1,NULL,0,0,NULL),(176,57,25,8,NULL,NULL,1,NULL,0,0,NULL),(177,94,25,8,NULL,NULL,1,NULL,0,0,NULL),(178,5,25,8,NULL,NULL,1,NULL,0,0,NULL),(179,193,25,7,NULL,NULL,0,NULL,0,0,NULL),(180,57,193,2,NULL,NULL,0,NULL,0,0,NULL),(181,153,158,1,NULL,NULL,1,NULL,0,0,NULL),(182,53,158,1,NULL,NULL,1,NULL,0,0,NULL),(183,153,96,1,NULL,NULL,1,NULL,0,0,NULL),(184,53,96,1,NULL,NULL,1,NULL,0,0,NULL),(185,53,153,4,NULL,NULL,1,NULL,0,0,NULL),(186,96,168,8,NULL,NULL,1,NULL,0,0,NULL),(187,153,168,8,NULL,NULL,1,NULL,0,0,NULL),(188,53,168,8,NULL,NULL,1,NULL,0,0,NULL),(189,158,168,7,NULL,NULL,1,NULL,0,0,NULL),(190,96,158,2,NULL,NULL,1,NULL,0,0,NULL),(191,180,196,1,NULL,NULL,1,NULL,0,0,NULL),(192,148,196,1,NULL,NULL,1,NULL,0,0,NULL),(193,180,178,1,NULL,NULL,1,NULL,0,0,NULL),(194,148,178,1,NULL,NULL,1,NULL,0,0,NULL),(195,148,180,4,NULL,NULL,1,NULL,0,0,NULL),(196,178,119,8,NULL,NULL,1,NULL,0,0,NULL),(197,180,119,8,NULL,NULL,1,NULL,0,0,NULL),(198,148,119,8,NULL,NULL,1,NULL,0,0,NULL),(199,196,119,7,NULL,NULL,1,NULL,0,0,NULL),(200,178,196,2,NULL,NULL,1,NULL,0,0,NULL),(201,18,2,5,NULL,NULL,1,NULL,0,0,NULL),(202,16,6,5,NULL,NULL,1,NULL,0,0,NULL),(203,51,23,5,NULL,NULL,1,NULL,0,0,NULL),(204,96,38,5,NULL,NULL,1,NULL,0,0,NULL),(205,107,45,5,NULL,NULL,1,NULL,0,0,NULL),(206,64,52,5,NULL,NULL,1,NULL,0,0,NULL),(207,20,82,5,NULL,NULL,1,NULL,0,0,NULL),(208,73,88,5,NULL,NULL,1,NULL,0,0,NULL),(209,111,93,5,NULL,NULL,1,NULL,0,0,NULL),(210,59,101,5,NULL,NULL,1,NULL,0,0,NULL),(211,46,103,5,NULL,NULL,1,NULL,0,0,NULL),(212,120,118,5,NULL,NULL,1,NULL,0,0,NULL),(213,128,125,5,NULL,NULL,1,NULL,0,0,NULL),(214,60,149,5,NULL,NULL,1,NULL,0,0,NULL),(215,67,194,5,NULL,NULL,1,NULL,0,0,NULL),(216,180,201,5,NULL,NULL,1,NULL,0,0,NULL);
 -INSERT INTO `civicrm_relationship` (`id`, `contact_id_a`, `contact_id_b`, `relationship_type_id`, `start_date`, `end_date`, `is_active`, `description`, `is_permission_a_b`, `is_permission_b_a`, `case_id`) VALUES (1,27,153,1,NULL,NULL,1,NULL,0,0,NULL),(2,181,153,1,NULL,NULL,1,NULL,0,0,NULL),(3,27,26,1,NULL,NULL,1,NULL,0,0,NULL),(4,181,26,1,NULL,NULL,1,NULL,0,0,NULL),(5,181,27,4,NULL,NULL,1,NULL,0,0,NULL),(6,26,134,8,NULL,NULL,1,NULL,0,0,NULL),(7,27,134,8,NULL,NULL,1,NULL,0,0,NULL),(8,181,134,8,NULL,NULL,1,NULL,0,0,NULL),(9,153,134,7,NULL,NULL,1,NULL,0,0,NULL),(10,26,153,2,NULL,NULL,1,NULL,0,0,NULL),(11,77,52,1,NULL,NULL,1,NULL,0,0,NULL),(12,112,52,1,NULL,NULL,1,NULL,0,0,NULL),(13,77,155,1,NULL,NULL,1,NULL,0,0,NULL),(14,112,155,1,NULL,NULL,1,NULL,0,0,NULL),(15,112,77,4,NULL,NULL,1,NULL,0,0,NULL),(16,155,176,8,NULL,NULL,1,NULL,0,0,NULL),(17,77,176,8,NULL,NULL,1,NULL,0,0,NULL),(18,112,176,8,NULL,NULL,1,NULL,0,0,NULL),(19,52,176,7,NULL,NULL,0,NULL,0,0,NULL),(20,155,52,2,NULL,NULL,0,NULL,0,0,NULL),(21,130,74,1,NULL,NULL,1,NULL,0,0,NULL),(22,108,74,1,NULL,NULL,1,NULL,0,0,NULL),(23,130,122,1,NULL,NULL,1,NULL,0,0,NULL),(24,108,122,1,NULL,NULL,1,NULL,0,0,NULL),(25,108,130,4,NULL,NULL,1,NULL,0,0,NULL),(26,122,5,8,NULL,NULL,1,NULL,0,0,NULL),(27,130,5,8,NULL,NULL,1,NULL,0,0,NULL),(28,108,5,8,NULL,NULL,1,NULL,0,0,NULL),(29,74,5,7,NULL,NULL,1,NULL,0,0,NULL),(30,122,74,2,NULL,NULL,1,NULL,0,0,NULL),(31,199,3,1,NULL,NULL,1,NULL,0,0,NULL),(32,20,3,1,NULL,NULL,1,NULL,0,0,NULL),(33,199,84,1,NULL,NULL,1,NULL,0,0,NULL),(34,20,84,1,NULL,NULL,1,NULL,0,0,NULL),(35,20,199,4,NULL,NULL,1,NULL,0,0,NULL),(36,84,41,8,NULL,NULL,1,NULL,0,0,NULL),(37,199,41,8,NULL,NULL,1,NULL,0,0,NULL),(38,20,41,8,NULL,NULL,1,NULL,0,0,NULL),(39,3,41,7,NULL,NULL,1,NULL,0,0,NULL),(40,84,3,2,NULL,NULL,1,NULL,0,0,NULL),(41,139,156,1,NULL,NULL,1,NULL,0,0,NULL),(42,17,156,1,NULL,NULL,1,NULL,0,0,NULL),(43,139,25,1,NULL,NULL,1,NULL,0,0,NULL),(44,17,25,1,NULL,NULL,1,NULL,0,0,NULL),(45,17,139,4,NULL,NULL,1,NULL,0,0,NULL),(46,25,69,8,NULL,NULL,1,NULL,0,0,NULL),(47,139,69,8,NULL,NULL,1,NULL,0,0,NULL),(48,17,69,8,NULL,NULL,1,NULL,0,0,NULL),(49,156,69,7,NULL,NULL,1,NULL,0,0,NULL),(50,25,156,2,NULL,NULL,1,NULL,0,0,NULL),(51,57,95,1,NULL,NULL,1,NULL,0,0,NULL),(52,63,95,1,NULL,NULL,1,NULL,0,0,NULL),(53,57,13,1,NULL,NULL,1,NULL,0,0,NULL),(54,63,13,1,NULL,NULL,1,NULL,0,0,NULL),(55,63,57,4,NULL,NULL,1,NULL,0,0,NULL),(56,13,65,8,NULL,NULL,1,NULL,0,0,NULL),(57,57,65,8,NULL,NULL,1,NULL,0,0,NULL),(58,63,65,8,NULL,NULL,1,NULL,0,0,NULL),(59,95,65,7,NULL,NULL,1,NULL,0,0,NULL),(60,13,95,2,NULL,NULL,1,NULL,0,0,NULL),(61,194,19,1,NULL,NULL,1,NULL,0,0,NULL),(62,50,19,1,NULL,NULL,1,NULL,0,0,NULL),(63,194,53,1,NULL,NULL,1,NULL,0,0,NULL),(64,50,53,1,NULL,NULL,1,NULL,0,0,NULL),(65,50,194,4,NULL,NULL,1,NULL,0,0,NULL),(66,53,11,8,NULL,NULL,1,NULL,0,0,NULL),(67,194,11,8,NULL,NULL,1,NULL,0,0,NULL),(68,50,11,8,NULL,NULL,1,NULL,0,0,NULL),(69,19,11,7,NULL,NULL,0,NULL,0,0,NULL),(70,53,19,2,NULL,NULL,0,NULL,0,0,NULL),(71,90,142,1,NULL,NULL,1,NULL,0,0,NULL),(72,101,142,1,NULL,NULL,1,NULL,0,0,NULL),(73,90,165,1,NULL,NULL,1,NULL,0,0,NULL),(74,101,165,1,NULL,NULL,1,NULL,0,0,NULL),(75,101,90,4,NULL,NULL,1,NULL,0,0,NULL),(76,165,172,8,NULL,NULL,1,NULL,0,0,NULL),(77,90,172,8,NULL,NULL,1,NULL,0,0,NULL),(78,101,172,8,NULL,NULL,1,NULL,0,0,NULL),(79,142,172,7,NULL,NULL,0,NULL,0,0,NULL),(80,165,142,2,NULL,NULL,0,NULL,0,0,NULL),(81,70,81,1,NULL,NULL,1,NULL,0,0,NULL),(82,91,81,1,NULL,NULL,1,NULL,0,0,NULL),(83,70,161,1,NULL,NULL,1,NULL,0,0,NULL),(84,91,161,1,NULL,NULL,1,NULL,0,0,NULL),(85,91,70,4,NULL,NULL,1,NULL,0,0,NULL),(86,161,46,8,NULL,NULL,1,NULL,0,0,NULL),(87,70,46,8,NULL,NULL,1,NULL,0,0,NULL),(88,91,46,8,NULL,NULL,1,NULL,0,0,NULL),(89,81,46,7,NULL,NULL,1,NULL,0,0,NULL),(90,161,81,2,NULL,NULL,1,NULL,0,0,NULL),(91,133,49,1,NULL,NULL,1,NULL,0,0,NULL),(92,60,49,1,NULL,NULL,1,NULL,0,0,NULL),(93,133,99,1,NULL,NULL,1,NULL,0,0,NULL),(94,60,99,1,NULL,NULL,1,NULL,0,0,NULL),(95,60,133,4,NULL,NULL,1,NULL,0,0,NULL),(96,99,163,8,NULL,NULL,1,NULL,0,0,NULL),(97,133,163,8,NULL,NULL,1,NULL,0,0,NULL),(98,60,163,8,NULL,NULL,1,NULL,0,0,NULL),(99,49,163,7,NULL,NULL,1,NULL,0,0,NULL),(100,99,49,2,NULL,NULL,1,NULL,0,0,NULL),(101,14,164,1,NULL,NULL,1,NULL,0,0,NULL),(102,104,164,1,NULL,NULL,1,NULL,0,0,NULL),(103,14,73,1,NULL,NULL,1,NULL,0,0,NULL),(104,104,73,1,NULL,NULL,1,NULL,0,0,NULL),(105,104,14,4,NULL,NULL,1,NULL,0,0,NULL),(106,73,116,8,NULL,NULL,1,NULL,0,0,NULL),(107,14,116,8,NULL,NULL,1,NULL,0,0,NULL),(108,104,116,8,NULL,NULL,1,NULL,0,0,NULL),(109,164,116,7,NULL,NULL,0,NULL,0,0,NULL),(110,73,164,2,NULL,NULL,0,NULL,0,0,NULL),(111,40,174,1,NULL,NULL,1,NULL,0,0,NULL),(112,149,174,1,NULL,NULL,1,NULL,0,0,NULL),(113,40,125,1,NULL,NULL,1,NULL,0,0,NULL),(114,149,125,1,NULL,NULL,1,NULL,0,0,NULL),(115,149,40,4,NULL,NULL,1,NULL,0,0,NULL),(116,125,189,8,NULL,NULL,1,NULL,0,0,NULL),(117,40,189,8,NULL,NULL,1,NULL,0,0,NULL),(118,149,189,8,NULL,NULL,1,NULL,0,0,NULL),(119,174,189,7,NULL,NULL,0,NULL,0,0,NULL),(120,125,174,2,NULL,NULL,0,NULL,0,0,NULL),(121,82,141,1,NULL,NULL,1,NULL,0,0,NULL),(122,45,141,1,NULL,NULL,1,NULL,0,0,NULL),(123,82,143,1,NULL,NULL,1,NULL,0,0,NULL),(124,45,143,1,NULL,NULL,1,NULL,0,0,NULL),(125,45,82,4,NULL,NULL,1,NULL,0,0,NULL),(126,143,6,8,NULL,NULL,1,NULL,0,0,NULL),(127,82,6,8,NULL,NULL,1,NULL,0,0,NULL),(128,45,6,8,NULL,NULL,1,NULL,0,0,NULL),(129,141,6,7,NULL,NULL,0,NULL,0,0,NULL),(130,143,141,2,NULL,NULL,0,NULL,0,0,NULL),(131,197,128,1,NULL,NULL,1,NULL,0,0,NULL),(132,180,128,1,NULL,NULL,1,NULL,0,0,NULL),(133,197,8,1,NULL,NULL,1,NULL,0,0,NULL),(134,180,8,1,NULL,NULL,1,NULL,0,0,NULL),(135,180,197,4,NULL,NULL,1,NULL,0,0,NULL),(136,8,92,8,NULL,NULL,1,NULL,0,0,NULL),(137,197,92,8,NULL,NULL,1,NULL,0,0,NULL),(138,180,92,8,NULL,NULL,1,NULL,0,0,NULL),(139,128,92,7,NULL,NULL,1,NULL,0,0,NULL),(140,8,128,2,NULL,NULL,1,NULL,0,0,NULL),(141,175,89,1,NULL,NULL,1,NULL,0,0,NULL),(142,145,89,1,NULL,NULL,1,NULL,0,0,NULL),(143,175,129,1,NULL,NULL,1,NULL,0,0,NULL),(144,145,129,1,NULL,NULL,1,NULL,0,0,NULL),(145,145,175,4,NULL,NULL,1,NULL,0,0,NULL),(146,129,93,8,NULL,NULL,1,NULL,0,0,NULL),(147,175,93,8,NULL,NULL,1,NULL,0,0,NULL),(148,145,93,8,NULL,NULL,1,NULL,0,0,NULL),(149,89,93,7,NULL,NULL,0,NULL,0,0,NULL),(150,129,89,2,NULL,NULL,0,NULL,0,0,NULL),(151,182,94,1,NULL,NULL,1,NULL,0,0,NULL),(152,177,94,1,NULL,NULL,1,NULL,0,0,NULL),(153,182,102,1,NULL,NULL,1,NULL,0,0,NULL),(154,177,102,1,NULL,NULL,1,NULL,0,0,NULL),(155,177,182,4,NULL,NULL,1,NULL,0,0,NULL),(156,102,136,8,NULL,NULL,1,NULL,0,0,NULL),(157,182,136,8,NULL,NULL,1,NULL,0,0,NULL),(158,177,136,8,NULL,NULL,1,NULL,0,0,NULL),(159,94,136,7,NULL,NULL,0,NULL,0,0,NULL),(160,102,94,2,NULL,NULL,0,NULL,0,0,NULL),(161,62,100,1,NULL,NULL,1,NULL,0,0,NULL),(162,138,100,1,NULL,NULL,1,NULL,0,0,NULL),(163,62,179,1,NULL,NULL,1,NULL,0,0,NULL),(164,138,179,1,NULL,NULL,1,NULL,0,0,NULL),(165,138,62,4,NULL,NULL,1,NULL,0,0,NULL),(166,179,173,8,NULL,NULL,1,NULL,0,0,NULL),(167,62,173,8,NULL,NULL,1,NULL,0,0,NULL),(168,138,173,8,NULL,NULL,1,NULL,0,0,NULL),(169,100,173,7,NULL,NULL,1,NULL,0,0,NULL),(170,179,100,2,NULL,NULL,1,NULL,0,0,NULL),(171,59,121,1,NULL,NULL,1,NULL,0,0,NULL),(172,31,121,1,NULL,NULL,1,NULL,0,0,NULL),(173,59,118,1,NULL,NULL,1,NULL,0,0,NULL),(174,31,118,1,NULL,NULL,1,NULL,0,0,NULL),(175,31,59,4,NULL,NULL,1,NULL,0,0,NULL),(176,118,114,8,NULL,NULL,1,NULL,0,0,NULL),(177,59,114,8,NULL,NULL,1,NULL,0,0,NULL),(178,31,114,8,NULL,NULL,1,NULL,0,0,NULL),(179,121,114,7,NULL,NULL,1,NULL,0,0,NULL),(180,118,121,2,NULL,NULL,1,NULL,0,0,NULL),(181,83,159,1,NULL,NULL,1,NULL,0,0,NULL),(182,56,159,1,NULL,NULL,1,NULL,0,0,NULL),(183,83,21,1,NULL,NULL,1,NULL,0,0,NULL),(184,56,21,1,NULL,NULL,1,NULL,0,0,NULL),(185,56,83,4,NULL,NULL,1,NULL,0,0,NULL),(186,21,98,8,NULL,NULL,1,NULL,0,0,NULL),(187,83,98,8,NULL,NULL,1,NULL,0,0,NULL),(188,56,98,8,NULL,NULL,1,NULL,0,0,NULL),(189,159,98,7,NULL,NULL,1,NULL,0,0,NULL),(190,21,159,2,NULL,NULL,1,NULL,0,0,NULL),(191,12,105,1,NULL,NULL,1,NULL,0,0,NULL),(192,160,105,1,NULL,NULL,1,NULL,0,0,NULL),(193,12,85,1,NULL,NULL,1,NULL,0,0,NULL),(194,160,85,1,NULL,NULL,1,NULL,0,0,NULL),(195,160,12,4,NULL,NULL,1,NULL,0,0,NULL),(196,85,111,8,NULL,NULL,1,NULL,0,0,NULL),(197,12,111,8,NULL,NULL,1,NULL,0,0,NULL),(198,160,111,8,NULL,NULL,1,NULL,0,0,NULL),(199,105,111,7,NULL,NULL,0,NULL,0,0,NULL),(200,85,105,2,NULL,NULL,0,NULL,0,0,NULL),(201,106,4,5,NULL,NULL,1,NULL,0,0,NULL),(202,199,23,5,NULL,NULL,1,NULL,0,0,NULL),(203,152,32,5,NULL,NULL,1,NULL,0,0,NULL),(204,200,37,5,NULL,NULL,1,NULL,0,0,NULL),(205,147,55,5,NULL,NULL,1,NULL,0,0,NULL),(206,42,88,5,NULL,NULL,1,NULL,0,0,NULL),(207,40,97,5,NULL,NULL,1,NULL,0,0,NULL),(208,102,109,5,NULL,NULL,1,NULL,0,0,NULL),(209,74,113,5,NULL,NULL,1,NULL,0,0,NULL),(210,34,124,5,NULL,NULL,1,NULL,0,0,NULL),(211,115,126,5,NULL,NULL,1,NULL,0,0,NULL),(212,193,135,5,NULL,NULL,1,NULL,0,0,NULL),(213,85,144,5,NULL,NULL,1,NULL,0,0,NULL),(214,2,187,5,NULL,NULL,1,NULL,0,0,NULL);
++INSERT INTO `civicrm_relationship` (`id`, `contact_id_a`, `contact_id_b`, `relationship_type_id`, `start_date`, `end_date`, `is_active`, `description`, `is_permission_a_b`, `is_permission_b_a`, `case_id`) VALUES (1,7,2,1,NULL,NULL,1,NULL,0,0,NULL),(2,54,2,1,NULL,NULL,1,NULL,0,0,NULL),(3,7,49,1,NULL,NULL,1,NULL,0,0,NULL),(4,54,49,1,NULL,NULL,1,NULL,0,0,NULL),(5,54,7,4,NULL,NULL,1,NULL,0,0,NULL),(6,49,86,8,NULL,NULL,1,NULL,0,0,NULL),(7,7,86,8,NULL,NULL,1,NULL,0,0,NULL),(8,54,86,8,NULL,NULL,1,NULL,0,0,NULL),(9,2,86,7,NULL,NULL,1,NULL,0,0,NULL),(10,49,2,2,NULL,NULL,1,NULL,0,0,NULL),(11,41,23,1,NULL,NULL,1,NULL,0,0,NULL),(12,136,23,1,NULL,NULL,1,NULL,0,0,NULL),(13,41,175,1,NULL,NULL,1,NULL,0,0,NULL),(14,136,175,1,NULL,NULL,1,NULL,0,0,NULL),(15,136,41,4,NULL,NULL,1,NULL,0,0,NULL),(16,175,99,8,NULL,NULL,1,NULL,0,0,NULL),(17,41,99,8,NULL,NULL,1,NULL,0,0,NULL),(18,136,99,8,NULL,NULL,1,NULL,0,0,NULL),(19,23,99,7,NULL,NULL,1,NULL,0,0,NULL),(20,175,23,2,NULL,NULL,1,NULL,0,0,NULL),(21,181,94,1,NULL,NULL,1,NULL,0,0,NULL),(22,89,94,1,NULL,NULL,1,NULL,0,0,NULL),(23,181,12,1,NULL,NULL,1,NULL,0,0,NULL),(24,89,12,1,NULL,NULL,1,NULL,0,0,NULL),(25,89,181,4,NULL,NULL,1,NULL,0,0,NULL),(26,12,35,8,NULL,NULL,1,NULL,0,0,NULL),(27,181,35,8,NULL,NULL,1,NULL,0,0,NULL),(28,89,35,8,NULL,NULL,1,NULL,0,0,NULL),(29,94,35,7,NULL,NULL,1,NULL,0,0,NULL),(30,12,94,2,NULL,NULL,1,NULL,0,0,NULL),(31,80,125,1,NULL,NULL,1,NULL,0,0,NULL),(32,127,125,1,NULL,NULL,1,NULL,0,0,NULL),(33,80,162,1,NULL,NULL,1,NULL,0,0,NULL),(34,127,162,1,NULL,NULL,1,NULL,0,0,NULL),(35,127,80,4,NULL,NULL,1,NULL,0,0,NULL),(36,162,20,8,NULL,NULL,1,NULL,0,0,NULL),(37,80,20,8,NULL,NULL,1,NULL,0,0,NULL),(38,127,20,8,NULL,NULL,1,NULL,0,0,NULL),(39,125,20,7,NULL,NULL,1,NULL,0,0,NULL),(40,162,125,2,NULL,NULL,1,NULL,0,0,NULL),(41,93,198,1,NULL,NULL,1,NULL,0,0,NULL),(42,26,198,1,NULL,NULL,1,NULL,0,0,NULL),(43,93,46,1,NULL,NULL,1,NULL,0,0,NULL),(44,26,46,1,NULL,NULL,1,NULL,0,0,NULL),(45,26,93,4,NULL,NULL,1,NULL,0,0,NULL),(46,46,106,8,NULL,NULL,1,NULL,0,0,NULL),(47,93,106,8,NULL,NULL,1,NULL,0,0,NULL),(48,26,106,8,NULL,NULL,1,NULL,0,0,NULL),(49,198,106,7,NULL,NULL,1,NULL,0,0,NULL),(50,46,198,2,NULL,NULL,1,NULL,0,0,NULL),(51,52,8,1,NULL,NULL,1,NULL,0,0,NULL),(52,10,8,1,NULL,NULL,1,NULL,0,0,NULL),(53,52,116,1,NULL,NULL,1,NULL,0,0,NULL),(54,10,116,1,NULL,NULL,1,NULL,0,0,NULL),(55,10,52,4,NULL,NULL,1,NULL,0,0,NULL),(56,116,39,8,NULL,NULL,1,NULL,0,0,NULL),(57,52,39,8,NULL,NULL,1,NULL,0,0,NULL),(58,10,39,8,NULL,NULL,1,NULL,0,0,NULL),(59,8,39,7,NULL,NULL,1,NULL,0,0,NULL),(60,116,8,2,NULL,NULL,1,NULL,0,0,NULL),(61,34,148,1,NULL,NULL,1,NULL,0,0,NULL),(62,96,148,1,NULL,NULL,1,NULL,0,0,NULL),(63,34,37,1,NULL,NULL,1,NULL,0,0,NULL),(64,96,37,1,NULL,NULL,1,NULL,0,0,NULL),(65,96,34,4,NULL,NULL,1,NULL,0,0,NULL),(66,37,78,8,NULL,NULL,1,NULL,0,0,NULL),(67,34,78,8,NULL,NULL,1,NULL,0,0,NULL),(68,96,78,8,NULL,NULL,1,NULL,0,0,NULL),(69,148,78,7,NULL,NULL,1,NULL,0,0,NULL),(70,37,148,2,NULL,NULL,1,NULL,0,0,NULL),(71,27,90,1,NULL,NULL,1,NULL,0,0,NULL),(72,44,90,1,NULL,NULL,1,NULL,0,0,NULL),(73,27,147,1,NULL,NULL,1,NULL,0,0,NULL),(74,44,147,1,NULL,NULL,1,NULL,0,0,NULL),(75,44,27,4,NULL,NULL,1,NULL,0,0,NULL),(76,147,16,8,NULL,NULL,1,NULL,0,0,NULL),(77,27,16,8,NULL,NULL,1,NULL,0,0,NULL),(78,44,16,8,NULL,NULL,1,NULL,0,0,NULL),(79,90,16,7,NULL,NULL,1,NULL,0,0,NULL),(80,147,90,2,NULL,NULL,1,NULL,0,0,NULL),(81,21,195,1,NULL,NULL,1,NULL,0,0,NULL),(82,150,195,1,NULL,NULL,1,NULL,0,0,NULL),(83,21,200,1,NULL,NULL,1,NULL,0,0,NULL),(84,150,200,1,NULL,NULL,1,NULL,0,0,NULL),(85,150,21,4,NULL,NULL,1,NULL,0,0,NULL),(86,200,25,8,NULL,NULL,1,NULL,0,0,NULL),(87,21,25,8,NULL,NULL,1,NULL,0,0,NULL),(88,150,25,8,NULL,NULL,1,NULL,0,0,NULL),(89,195,25,7,NULL,NULL,1,NULL,0,0,NULL),(90,200,195,2,NULL,NULL,1,NULL,0,0,NULL),(91,165,167,1,NULL,NULL,1,NULL,0,0,NULL),(92,141,167,1,NULL,NULL,1,NULL,0,0,NULL),(93,165,42,1,NULL,NULL,1,NULL,0,0,NULL),(94,141,42,1,NULL,NULL,1,NULL,0,0,NULL),(95,141,165,4,NULL,NULL,1,NULL,0,0,NULL),(96,42,121,8,NULL,NULL,1,NULL,0,0,NULL),(97,165,121,8,NULL,NULL,1,NULL,0,0,NULL),(98,141,121,8,NULL,NULL,1,NULL,0,0,NULL),(99,167,121,7,NULL,NULL,1,NULL,0,0,NULL),(100,42,167,2,NULL,NULL,1,NULL,0,0,NULL),(101,17,84,1,NULL,NULL,1,NULL,0,0,NULL),(102,119,84,1,NULL,NULL,1,NULL,0,0,NULL),(103,17,45,1,NULL,NULL,1,NULL,0,0,NULL),(104,119,45,1,NULL,NULL,1,NULL,0,0,NULL),(105,119,17,4,NULL,NULL,1,NULL,0,0,NULL),(106,45,201,8,NULL,NULL,1,NULL,0,0,NULL),(107,17,201,8,NULL,NULL,1,NULL,0,0,NULL),(108,119,201,8,NULL,NULL,1,NULL,0,0,NULL),(109,84,201,7,NULL,NULL,0,NULL,0,0,NULL),(110,45,84,2,NULL,NULL,0,NULL,0,0,NULL),(111,72,92,1,NULL,NULL,1,NULL,0,0,NULL),(112,149,92,1,NULL,NULL,1,NULL,0,0,NULL),(113,72,48,1,NULL,NULL,1,NULL,0,0,NULL),(114,149,48,1,NULL,NULL,1,NULL,0,0,NULL),(115,149,72,4,NULL,NULL,1,NULL,0,0,NULL),(116,48,164,8,NULL,NULL,1,NULL,0,0,NULL),(117,72,164,8,NULL,NULL,1,NULL,0,0,NULL),(118,149,164,8,NULL,NULL,1,NULL,0,0,NULL),(119,92,164,7,NULL,NULL,1,NULL,0,0,NULL),(120,48,92,2,NULL,NULL,1,NULL,0,0,NULL),(121,101,51,1,NULL,NULL,1,NULL,0,0,NULL),(122,132,51,1,NULL,NULL,1,NULL,0,0,NULL),(123,101,154,1,NULL,NULL,1,NULL,0,0,NULL),(124,132,154,1,NULL,NULL,1,NULL,0,0,NULL),(125,132,101,4,NULL,NULL,1,NULL,0,0,NULL),(126,154,168,8,NULL,NULL,1,NULL,0,0,NULL),(127,101,168,8,NULL,NULL,1,NULL,0,0,NULL),(128,132,168,8,NULL,NULL,1,NULL,0,0,NULL),(129,51,168,7,NULL,NULL,1,NULL,0,0,NULL),(130,154,51,2,NULL,NULL,1,NULL,0,0,NULL),(131,107,160,1,NULL,NULL,1,NULL,0,0,NULL),(132,15,160,1,NULL,NULL,1,NULL,0,0,NULL),(133,107,22,1,NULL,NULL,1,NULL,0,0,NULL),(134,15,22,1,NULL,NULL,1,NULL,0,0,NULL),(135,15,107,4,NULL,NULL,1,NULL,0,0,NULL),(136,22,68,8,NULL,NULL,1,NULL,0,0,NULL),(137,107,68,8,NULL,NULL,1,NULL,0,0,NULL),(138,15,68,8,NULL,NULL,1,NULL,0,0,NULL),(139,160,68,7,NULL,NULL,1,NULL,0,0,NULL),(140,22,160,2,NULL,NULL,1,NULL,0,0,NULL),(141,91,73,1,NULL,NULL,1,NULL,0,0,NULL),(142,156,73,1,NULL,NULL,1,NULL,0,0,NULL),(143,91,174,1,NULL,NULL,1,NULL,0,0,NULL),(144,156,174,1,NULL,NULL,1,NULL,0,0,NULL),(145,156,91,4,NULL,NULL,1,NULL,0,0,NULL),(146,174,138,8,NULL,NULL,1,NULL,0,0,NULL),(147,91,138,8,NULL,NULL,1,NULL,0,0,NULL),(148,156,138,8,NULL,NULL,1,NULL,0,0,NULL),(149,73,138,7,NULL,NULL,1,NULL,0,0,NULL),(150,174,73,2,NULL,NULL,1,NULL,0,0,NULL),(151,177,61,1,NULL,NULL,1,NULL,0,0,NULL),(152,70,61,1,NULL,NULL,1,NULL,0,0,NULL),(153,177,135,1,NULL,NULL,1,NULL,0,0,NULL),(154,70,135,1,NULL,NULL,1,NULL,0,0,NULL),(155,70,177,4,NULL,NULL,1,NULL,0,0,NULL),(156,135,178,8,NULL,NULL,1,NULL,0,0,NULL),(157,177,178,8,NULL,NULL,1,NULL,0,0,NULL),(158,70,178,8,NULL,NULL,1,NULL,0,0,NULL),(159,61,178,7,NULL,NULL,1,NULL,0,0,NULL),(160,135,61,2,NULL,NULL,1,NULL,0,0,NULL),(161,104,186,1,NULL,NULL,1,NULL,0,0,NULL),(162,171,186,1,NULL,NULL,1,NULL,0,0,NULL),(163,104,199,1,NULL,NULL,1,NULL,0,0,NULL),(164,171,199,1,NULL,NULL,1,NULL,0,0,NULL),(165,171,104,4,NULL,NULL,1,NULL,0,0,NULL),(166,199,31,8,NULL,NULL,1,NULL,0,0,NULL),(167,104,31,8,NULL,NULL,1,NULL,0,0,NULL),(168,171,31,8,NULL,NULL,1,NULL,0,0,NULL),(169,186,31,7,NULL,NULL,1,NULL,0,0,NULL),(170,199,186,2,NULL,NULL,1,NULL,0,0,NULL),(171,59,100,1,NULL,NULL,1,NULL,0,0,NULL),(172,189,100,1,NULL,NULL,1,NULL,0,0,NULL),(173,59,122,1,NULL,NULL,1,NULL,0,0,NULL),(174,189,122,1,NULL,NULL,1,NULL,0,0,NULL),(175,189,59,4,NULL,NULL,1,NULL,0,0,NULL),(176,122,161,8,NULL,NULL,1,NULL,0,0,NULL),(177,59,161,8,NULL,NULL,1,NULL,0,0,NULL),(178,189,161,8,NULL,NULL,1,NULL,0,0,NULL),(179,100,161,7,NULL,NULL,0,NULL,0,0,NULL),(180,122,100,2,NULL,NULL,0,NULL,0,0,NULL),(181,62,98,1,NULL,NULL,1,NULL,0,0,NULL),(182,124,98,1,NULL,NULL,1,NULL,0,0,NULL),(183,62,118,1,NULL,NULL,1,NULL,0,0,NULL),(184,124,118,1,NULL,NULL,1,NULL,0,0,NULL),(185,124,62,4,NULL,NULL,1,NULL,0,0,NULL),(186,118,79,8,NULL,NULL,1,NULL,0,0,NULL),(187,62,79,8,NULL,NULL,1,NULL,0,0,NULL),(188,124,79,8,NULL,NULL,1,NULL,0,0,NULL),(189,98,79,7,NULL,NULL,1,NULL,0,0,NULL),(190,118,98,2,NULL,NULL,1,NULL,0,0,NULL),(191,30,185,1,NULL,NULL,1,NULL,0,0,NULL),(192,65,185,1,NULL,NULL,1,NULL,0,0,NULL),(193,30,131,1,NULL,NULL,1,NULL,0,0,NULL),(194,65,131,1,NULL,NULL,1,NULL,0,0,NULL),(195,65,30,4,NULL,NULL,1,NULL,0,0,NULL),(196,131,170,8,NULL,NULL,1,NULL,0,0,NULL),(197,30,170,8,NULL,NULL,1,NULL,0,0,NULL),(198,65,170,8,NULL,NULL,1,NULL,0,0,NULL),(199,185,170,7,NULL,NULL,1,NULL,0,0,NULL),(200,131,185,2,NULL,NULL,1,NULL,0,0,NULL),(201,10,19,5,NULL,NULL,1,NULL,0,0,NULL),(202,100,32,5,NULL,NULL,1,NULL,0,0,NULL),(203,37,38,5,NULL,NULL,1,NULL,0,0,NULL),(204,124,40,5,NULL,NULL,1,NULL,0,0,NULL),(205,180,81,5,NULL,NULL,1,NULL,0,0,NULL),(206,128,115,5,NULL,NULL,1,NULL,0,0,NULL),(207,65,157,5,NULL,NULL,1,NULL,0,0,NULL),(208,158,173,5,NULL,NULL,1,NULL,0,0,NULL),(209,46,191,5,NULL,NULL,1,NULL,0,0,NULL),(210,82,192,5,NULL,NULL,1,NULL,0,0,NULL);
  /*!40000 ALTER TABLE `civicrm_relationship` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -1290,7 -1300,7 +1300,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_setting` WRITE;
  /*!40000 ALTER TABLE `civicrm_setting` DISABLE KEYS */;
- INSERT INTO `civicrm_setting` (`id`, `group_name`, `name`, `value`, `domain_id`, `contact_id`, `is_domain`, `component_id`, `created_date`, `created_id`) VALUES (1,'CiviCRM Preferences','contact_view_options','s:28:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 113\ 1\";',1,NULL,1,NULL,NULL,NULL),(2,'CiviCRM Preferences','contact_smart_group_display','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(3,'CiviCRM Preferences','contact_edit_options','s:37:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 111\ 112\ 114\ 115\ 116\ 117\ 1\";',1,NULL,1,NULL,NULL,NULL),(4,'CiviCRM Preferences','advanced_search_options','s:46:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 112\ 113\ 115\ 116\ 117\ 118\ 119\ 1\";',1,NULL,1,NULL,NULL,NULL),(5,'CiviCRM Preferences','user_dashboard_options','s:15:\"\ 11\ 12\ 13\ 14\ 15\ 17\ 18\ 1\";',1,NULL,1,NULL,NULL,NULL),(6,'CiviCRM Preferences','address_options','s:23:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 18\ 19\ 110\ 111\ 1\";',1,NULL,1,NULL,NULL,NULL),(7,'CiviCRM Preferences','address_format','s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(8,'CiviCRM Preferences','mailing_format','s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(9,'CiviCRM Preferences','display_name_format','s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";',1,NULL,1,NULL,NULL,NULL),(10,'CiviCRM Preferences','sort_name_format','s:43:\"{contact.last_name}{, }{contact.first_name}\";',1,NULL,1,NULL,NULL,NULL),(11,'CiviCRM Preferences','editor_id','s:1:\"2\";',1,NULL,1,NULL,NULL,NULL),(12,'CiviCRM Preferences','contact_ajax_check_similar','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(13,'CiviCRM Preferences','activity_assignee_notification','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(14,'CiviCRM Preferences','activity_assignee_notification_ics','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(15,'CiviCRM Preferences','contact_autocomplete_options','s:5:\"\ 11\ 12\ 1\";',1,NULL,1,NULL,NULL,NULL),(16,'CiviCRM Preferences','contact_reference_options','s:5:\"\ 11\ 12\ 1\";',1,NULL,1,NULL,NULL,NULL),(17,'Address Standardization Preferences','address_standardization_provider',NULL,1,NULL,1,NULL,NULL,NULL),(18,'Address Standardization Preferences','address_standardization_userid',NULL,1,NULL,1,NULL,NULL,NULL),(19,'Address Standardization Preferences','address_standardization_url',NULL,1,NULL,1,NULL,NULL,NULL),(20,'Campaign Preferences','tag_unconfirmed','s:11:\"Unconfirmed\";',1,NULL,1,NULL,NULL,NULL),(21,'Campaign Preferences','petition_contacts','s:17:\"Petition Contacts\";',1,NULL,1,NULL,NULL,NULL),(22,'Event Preferences','enable_cart','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(23,'Mailing Preferences','profile_double_optin','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(24,'Mailing Preferences','profile_add_to_group_double_optin','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(25,'Mailing Preferences','track_civimail_replies','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(26,'Mailing Preferences','civimail_workflow','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(27,'Mailing Preferences','civimail_server_wide_lock','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(28,'Mailing Preferences','mailing_backend','a:1:{s:15:\"outBound_option\";s:1:\"3\";}',1,NULL,1,NULL,NULL,NULL),(29,'Mailing Preferences','write_activity_record','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(30,'Member Preferences','default_renewal_contribution_page',NULL,1,NULL,1,NULL,NULL,NULL),(31,'Multi Site Preferences','is_enabled','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(32,'Multi Site Preferences','uniq_email_per_site','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(33,'Multi Site Preferences','domain_group_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(34,'Multi Site Preferences','event_price_set_domain_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(35,'Directory Preferences','uploadDir','s:7:\"upload/\";',1,NULL,1,NULL,'2015-05-08 12:24:06',NULL),(36,'Directory Preferences','imageUploadDir','s:19:\"persist/contribute/\";',1,NULL,1,NULL,'2015-05-08 12:24:06',NULL),(37,'Directory Preferences','customFileUploadDir','s:7:\"custom/\";',1,NULL,1,NULL,'2015-05-08 12:24:06',NULL),(38,'Directory Preferences','customTemplateDir',NULL,1,NULL,1,NULL,NULL,NULL),(39,'Directory Preferences','customPHPPathDir',NULL,1,NULL,1,NULL,NULL,NULL),(40,'Directory Preferences','extensionsDir',NULL,1,NULL,1,NULL,NULL,NULL),(41,'URL Preferences','userFrameworkResourceURL',NULL,1,NULL,1,NULL,'2015-05-08 12:24:06',NULL),(42,'URL Preferences','imageUploadURL',NULL,1,NULL,1,NULL,'2015-05-08 12:24:06',NULL),(43,'URL Preferences','customCSSURL',NULL,1,NULL,1,NULL,NULL,NULL),(44,'URL Preferences','extensionsURL',NULL,1,NULL,1,NULL,NULL,NULL),(45,'Contribute Preferences','contribution_invoice_settings','a:7:{s:14:\"invoice_prefix\";s:4:\"INV_\";s:19:\"credit_notes_prefix\";s:3:\"CN_\";s:8:\"due_date\";s:2:\"10\";s:15:\"due_date_period\";s:4:\"days\";s:5:\"notes\";s:0:\"\";s:8:\"tax_term\";s:9:\"Sales Tax\";s:20:\"tax_display_settings\";s:9:\"Inclusive\";}',1,NULL,1,NULL,NULL,NULL);
 -INSERT INTO `civicrm_setting` (`id`, `group_name`, `name`, `value`, `domain_id`, `contact_id`, `is_domain`, `component_id`, `created_date`, `created_id`) VALUES (1,'CiviCRM Preferences','contact_view_options','s:28:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 113\ 1\";',1,NULL,1,NULL,NULL,NULL),(2,'CiviCRM Preferences','contact_smart_group_display','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(3,'CiviCRM Preferences','contact_edit_options','s:37:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 111\ 112\ 114\ 115\ 116\ 117\ 1\";',1,NULL,1,NULL,NULL,NULL),(4,'CiviCRM Preferences','advanced_search_options','s:46:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 112\ 113\ 115\ 116\ 117\ 118\ 119\ 1\";',1,NULL,1,NULL,NULL,NULL),(5,'CiviCRM Preferences','user_dashboard_options','s:15:\"\ 11\ 12\ 13\ 14\ 15\ 17\ 18\ 1\";',1,NULL,1,NULL,NULL,NULL),(6,'CiviCRM Preferences','address_options','s:23:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 18\ 19\ 110\ 111\ 1\";',1,NULL,1,NULL,NULL,NULL),(7,'CiviCRM Preferences','address_format','s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(8,'CiviCRM Preferences','mailing_format','s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(9,'CiviCRM Preferences','display_name_format','s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";',1,NULL,1,NULL,NULL,NULL),(10,'CiviCRM Preferences','sort_name_format','s:43:\"{contact.last_name}{, }{contact.first_name}\";',1,NULL,1,NULL,NULL,NULL),(11,'CiviCRM Preferences','editor_id','s:1:\"2\";',1,NULL,1,NULL,NULL,NULL),(12,'CiviCRM Preferences','contact_ajax_check_similar','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(13,'CiviCRM Preferences','activity_assignee_notification','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(14,'CiviCRM Preferences','activity_assignee_notification_ics','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(15,'CiviCRM Preferences','contact_autocomplete_options','s:5:\"\ 11\ 12\ 1\";',1,NULL,1,NULL,NULL,NULL),(16,'CiviCRM Preferences','contact_reference_options','s:5:\"\ 11\ 12\ 1\";',1,NULL,1,NULL,NULL,NULL),(17,'Address Standardization Preferences','address_standardization_provider',NULL,1,NULL,1,NULL,NULL,NULL),(18,'Address Standardization Preferences','address_standardization_userid',NULL,1,NULL,1,NULL,NULL,NULL),(19,'Address Standardization Preferences','address_standardization_url',NULL,1,NULL,1,NULL,NULL,NULL),(20,'Campaign Preferences','tag_unconfirmed','s:11:\"Unconfirmed\";',1,NULL,1,NULL,NULL,NULL),(21,'Campaign Preferences','petition_contacts','s:17:\"Petition Contacts\";',1,NULL,1,NULL,NULL,NULL),(22,'Event Preferences','enable_cart','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(23,'Mailing Preferences','profile_double_optin','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(24,'Mailing Preferences','profile_add_to_group_double_optin','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(25,'Mailing Preferences','track_civimail_replies','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(26,'Mailing Preferences','civimail_workflow','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(27,'Mailing Preferences','civimail_server_wide_lock','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(28,'Mailing Preferences','mailing_backend','a:1:{s:15:\"outBound_option\";s:1:\"3\";}',1,NULL,1,NULL,NULL,NULL),(29,'Mailing Preferences','write_activity_record','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(30,'Member Preferences','default_renewal_contribution_page',NULL,1,NULL,1,NULL,NULL,NULL),(31,'Multi Site Preferences','is_enabled','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(32,'Multi Site Preferences','uniq_email_per_site','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(33,'Multi Site Preferences','domain_group_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(34,'Multi Site Preferences','event_price_set_domain_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(35,'Directory Preferences','uploadDir','s:7:\"upload/\";',1,NULL,1,NULL,'2015-04-29 03:27:25',NULL),(36,'Directory Preferences','imageUploadDir','s:19:\"persist/contribute/\";',1,NULL,1,NULL,'2015-04-29 03:27:25',NULL),(37,'Directory Preferences','customFileUploadDir','s:7:\"custom/\";',1,NULL,1,NULL,'2015-04-29 03:27:25',NULL),(38,'Directory Preferences','customTemplateDir',NULL,1,NULL,1,NULL,NULL,NULL),(39,'Directory Preferences','customPHPPathDir',NULL,1,NULL,1,NULL,NULL,NULL),(40,'Directory Preferences','extensionsDir','s:61:\"/home/vagrant/buildkit/build/master_blaster/sites/default/ext\";',1,NULL,1,NULL,'2015-04-29 03:27:25',NULL),(41,'URL Preferences','userFrameworkResourceURL',NULL,1,NULL,1,NULL,'2015-04-29 03:27:25',NULL),(42,'URL Preferences','imageUploadURL',NULL,1,NULL,1,NULL,'2015-04-29 03:27:25',NULL),(43,'URL Preferences','customCSSURL',NULL,1,NULL,1,NULL,NULL,NULL),(44,'URL Preferences','extensionsURL','s:17:\"sites/default/ext\";',1,NULL,1,NULL,'2015-04-29 03:27:25',NULL),(45,'Contribute Preferences','contribution_invoice_settings','a:7:{s:14:\"invoice_prefix\";s:4:\"INV_\";s:19:\"credit_notes_prefix\";s:3:\"CN_\";s:8:\"due_date\";s:2:\"10\";s:15:\"due_date_period\";s:4:\"days\";s:5:\"notes\";s:0:\"\";s:8:\"tax_term\";s:9:\"Sales Tax\";s:20:\"tax_display_settings\";s:9:\"Inclusive\";}',1,NULL,1,NULL,NULL,NULL),(46,'Contribute Preferences','cvv_backoffice_required','s:1:\"1\";',1,NULL,1,NULL,'2015-04-29 03:27:44',NULL),(47,'CiviCRM Preferences','ajaxPopupsEnabled','i:1;',1,NULL,1,NULL,'2015-04-29 03:27:44',NULL),(48,'CiviCRM Preferences','max_attachments','i:3;',1,NULL,1,NULL,'2015-04-29 03:27:44',NULL),(49,'CiviCRM Preferences','contact_undelete','i:1;',1,NULL,1,NULL,'2015-04-29 03:27:44',NULL),(50,'CiviCRM Preferences','allowPermDeleteFinancial','b:0;',1,NULL,1,NULL,'2015-04-29 03:27:44',NULL),(51,'CiviCRM Preferences','versionAlert','i:1;',1,NULL,1,NULL,'2015-04-29 03:27:45',NULL),(52,'CiviCRM Preferences','securityUpdateAlert','i:3;',1,NULL,1,NULL,'2015-04-29 03:27:45',NULL),(53,'CiviCRM Preferences','versionCheck','i:1;',1,NULL,1,NULL,'2015-04-29 03:27:45',NULL),(54,'CiviCRM Preferences','versionCheckIgnoreDate',NULL,1,NULL,1,NULL,'2015-04-29 03:27:45',NULL),(55,'CiviCRM Preferences','securityAlert','i:1;',1,NULL,1,NULL,'2015-04-29 03:27:45',NULL),(56,'CiviCRM Preferences','blogUrl','s:9:\"*default*\";',1,NULL,1,NULL,'2015-04-29 03:27:45',NULL),(57,'CiviCRM Preferences','communityMessagesUrl','s:9:\"*default*\";',1,NULL,1,NULL,'2015-04-29 03:27:45',NULL),(58,'CiviCRM Preferences','verifySSL','i:1;',1,NULL,1,NULL,'2015-04-29 03:27:46',NULL),(59,'CiviCRM Preferences','resCacheCode','s:5:\"Bfsnt\";',1,NULL,1,NULL,'2015-04-29 03:27:49',NULL),(60,'CiviCRM Preferences','enable_components','a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}',1,NULL,1,NULL,'2015-04-29 03:27:46',NULL),(61,'CiviCRM Preferences','disable_core_css','s:1:\"0\";',1,NULL,1,NULL,'2015-04-29 03:27:46',NULL),(62,'CiviCRM Preferences','empoweredBy','b:1;',1,NULL,1,NULL,'2015-04-29 03:27:46',NULL),(63,'Developer Preferences','fatalErrorTemplate','s:20:\"CRM/common/fatal.tpl\";',1,NULL,1,NULL,'2015-04-29 03:27:46',NULL),(64,'Event Preferences','event_enable_cart','i:0;',1,NULL,1,NULL,'2015-04-29 03:27:47',NULL),(65,'Mailing Preferences','replyTo','i:0;',1,NULL,1,NULL,'2015-04-29 03:27:47',NULL),(66,'Mailing Preferences','disable_mandatory_tokens_check','i:0;',1,NULL,1,NULL,'2015-04-29 03:27:47',NULL),(67,'Mailing Preferences','dedupe_email_default','i:1;',1,NULL,1,NULL,'2015-04-29 03:27:48',NULL),(68,'Mailing Preferences','hash_mailing_url','i:0;',1,NULL,1,NULL,'2015-04-29 03:27:48',NULL),(69,'Search Preferences','search_autocomplete_count','i:10;',1,NULL,1,NULL,'2015-04-29 03:27:48',NULL),(70,'Search Preferences','enable_innodb_fts','i:0;',1,NULL,1,NULL,'2015-04-29 03:27:48',NULL),(71,'Search Preferences','fts_query_mode','s:6:\"simple\";',1,NULL,1,NULL,'2015-04-29 03:27:48',NULL);
++INSERT INTO `civicrm_setting` (`id`, `group_name`, `name`, `value`, `domain_id`, `contact_id`, `is_domain`, `component_id`, `created_date`, `created_id`) VALUES (1,'CiviCRM Preferences','contact_view_options','s:28:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 113\ 1\";',1,NULL,1,NULL,NULL,NULL),(2,'CiviCRM Preferences','contact_smart_group_display','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(3,'CiviCRM Preferences','contact_edit_options','s:37:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 111\ 112\ 114\ 115\ 116\ 117\ 1\";',1,NULL,1,NULL,NULL,NULL),(4,'CiviCRM Preferences','advanced_search_options','s:46:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 17\ 18\ 19\ 110\ 111\ 112\ 113\ 115\ 116\ 117\ 118\ 119\ 1\";',1,NULL,1,NULL,NULL,NULL),(5,'CiviCRM Preferences','user_dashboard_options','s:15:\"\ 11\ 12\ 13\ 14\ 15\ 17\ 18\ 1\";',1,NULL,1,NULL,NULL,NULL),(6,'CiviCRM Preferences','address_options','s:23:\"\ 11\ 12\ 13\ 14\ 15\ 16\ 18\ 19\ 110\ 111\ 1\";',1,NULL,1,NULL,NULL,NULL),(7,'CiviCRM Preferences','address_format','s:198:\"{contact.address_name}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(8,'CiviCRM Preferences','mailing_format','s:195:\"{contact.addressee}\n{contact.street_address}\n{contact.supplemental_address_1}\n{contact.supplemental_address_2}\n{contact.city}{, }{contact.state_province}{ }{contact.postal_code}\n{contact.country}\";',1,NULL,1,NULL,NULL,NULL),(9,'CiviCRM Preferences','display_name_format','s:102:\"{contact.individual_prefix}{ }{contact.first_name}{ }{contact.last_name}{ }{contact.individual_suffix}\";',1,NULL,1,NULL,NULL,NULL),(10,'CiviCRM Preferences','sort_name_format','s:43:\"{contact.last_name}{, }{contact.first_name}\";',1,NULL,1,NULL,NULL,NULL),(11,'CiviCRM Preferences','editor_id','s:1:\"2\";',1,NULL,1,NULL,NULL,NULL),(12,'CiviCRM Preferences','contact_ajax_check_similar','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(13,'CiviCRM Preferences','activity_assignee_notification','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(14,'CiviCRM Preferences','activity_assignee_notification_ics','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(15,'CiviCRM Preferences','contact_autocomplete_options','s:5:\"\ 11\ 12\ 1\";',1,NULL,1,NULL,NULL,NULL),(16,'CiviCRM Preferences','contact_reference_options','s:5:\"\ 11\ 12\ 1\";',1,NULL,1,NULL,NULL,NULL),(17,'Address Standardization Preferences','address_standardization_provider',NULL,1,NULL,1,NULL,NULL,NULL),(18,'Address Standardization Preferences','address_standardization_userid',NULL,1,NULL,1,NULL,NULL,NULL),(19,'Address Standardization Preferences','address_standardization_url',NULL,1,NULL,1,NULL,NULL,NULL),(20,'Campaign Preferences','tag_unconfirmed','s:11:\"Unconfirmed\";',1,NULL,1,NULL,NULL,NULL),(21,'Campaign Preferences','petition_contacts','s:17:\"Petition Contacts\";',1,NULL,1,NULL,NULL,NULL),(22,'Event Preferences','enable_cart','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(23,'Mailing Preferences','profile_double_optin','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(24,'Mailing Preferences','profile_add_to_group_double_optin','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(25,'Mailing Preferences','track_civimail_replies','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(26,'Mailing Preferences','civimail_workflow','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(27,'Mailing Preferences','civimail_server_wide_lock','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(28,'Mailing Preferences','mailing_backend','a:1:{s:15:\"outBound_option\";s:1:\"3\";}',1,NULL,1,NULL,NULL,NULL),(29,'Mailing Preferences','write_activity_record','s:1:\"1\";',1,NULL,1,NULL,NULL,NULL),(30,'Member Preferences','default_renewal_contribution_page',NULL,1,NULL,1,NULL,NULL,NULL),(31,'Multi Site Preferences','is_enabled','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(32,'Multi Site Preferences','uniq_email_per_site','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(33,'Multi Site Preferences','domain_group_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(34,'Multi Site Preferences','event_price_set_domain_id','s:1:\"0\";',1,NULL,1,NULL,NULL,NULL),(35,'Directory Preferences','uploadDir','s:7:\"upload/\";',1,NULL,1,NULL,'2015-05-10 04:05:02',NULL),(36,'Directory Preferences','imageUploadDir','s:19:\"persist/contribute/\";',1,NULL,1,NULL,'2015-05-10 04:05:02',NULL),(37,'Directory Preferences','customFileUploadDir','s:7:\"custom/\";',1,NULL,1,NULL,'2015-05-10 04:05:02',NULL),(38,'Directory Preferences','customTemplateDir',NULL,1,NULL,1,NULL,NULL,NULL),(39,'Directory Preferences','customPHPPathDir',NULL,1,NULL,1,NULL,NULL,NULL),(40,'Directory Preferences','extensionsDir','s:66:\"/Users/kurund/src/git/civicrm-buildkit/build/d46/sites/default/ext\";',1,NULL,1,NULL,'2015-05-10 04:05:02',NULL),(41,'URL Preferences','userFrameworkResourceURL',NULL,1,NULL,1,NULL,'2015-05-10 04:05:02',NULL),(42,'URL Preferences','imageUploadURL',NULL,1,NULL,1,NULL,'2015-05-10 04:05:02',NULL),(43,'URL Preferences','customCSSURL',NULL,1,NULL,1,NULL,NULL,NULL),(44,'URL Preferences','extensionsURL','s:17:\"sites/default/ext\";',1,NULL,1,NULL,'2015-05-10 04:05:02',NULL),(45,'Contribute Preferences','contribution_invoice_settings','a:7:{s:14:\"invoice_prefix\";s:4:\"INV_\";s:19:\"credit_notes_prefix\";s:3:\"CN_\";s:8:\"due_date\";s:2:\"10\";s:15:\"due_date_period\";s:4:\"days\";s:5:\"notes\";s:0:\"\";s:8:\"tax_term\";s:9:\"Sales Tax\";s:20:\"tax_display_settings\";s:9:\"Inclusive\";}',1,NULL,1,NULL,NULL,NULL),(46,'Contribute Preferences','cvv_backoffice_required','s:1:\"1\";',1,NULL,1,NULL,'2015-05-10 04:05:12',NULL),(47,'CiviCRM Preferences','ajaxPopupsEnabled','i:1;',1,NULL,1,NULL,'2015-05-10 04:05:12',NULL),(48,'CiviCRM Preferences','max_attachments','i:3;',1,NULL,1,NULL,'2015-05-10 04:05:12',NULL),(49,'CiviCRM Preferences','contact_undelete','i:1;',1,NULL,1,NULL,'2015-05-10 04:05:12',NULL),(50,'CiviCRM Preferences','allowPermDeleteFinancial','b:0;',1,NULL,1,NULL,'2015-05-10 04:05:12',NULL),(51,'CiviCRM Preferences','versionAlert','i:1;',1,NULL,1,NULL,'2015-05-10 04:05:12',NULL),(52,'CiviCRM Preferences','securityUpdateAlert','i:3;',1,NULL,1,NULL,'2015-05-10 04:05:12',NULL),(53,'CiviCRM Preferences','versionCheck','i:1;',1,NULL,1,NULL,'2015-05-10 04:05:12',NULL),(54,'CiviCRM Preferences','versionCheckIgnoreDate',NULL,1,NULL,1,NULL,'2015-05-10 04:05:12',NULL),(55,'CiviCRM Preferences','securityAlert','i:1;',1,NULL,1,NULL,'2015-05-10 04:05:12',NULL),(56,'CiviCRM Preferences','blogUrl','s:9:\"*default*\";',1,NULL,1,NULL,'2015-05-10 04:05:13',NULL),(57,'CiviCRM Preferences','communityMessagesUrl','s:9:\"*default*\";',1,NULL,1,NULL,'2015-05-10 04:05:13',NULL),(58,'CiviCRM Preferences','verifySSL','i:1;',1,NULL,1,NULL,'2015-05-10 04:05:13',NULL),(59,'CiviCRM Preferences','resCacheCode','s:5:\"cSCIl\";',1,NULL,1,NULL,'2015-05-10 04:05:14',NULL),(60,'CiviCRM Preferences','enable_components','a:6:{i:0;s:9:\"CiviEvent\";i:1;s:14:\"CiviContribute\";i:2;s:10:\"CiviMember\";i:3;s:8:\"CiviMail\";i:4;s:10:\"CiviReport\";i:5;s:10:\"CiviPledge\";}',1,NULL,1,NULL,'2015-05-10 04:05:13',NULL),(61,'CiviCRM Preferences','disable_core_css','s:1:\"0\";',1,NULL,1,NULL,'2015-05-10 04:05:13',NULL),(62,'CiviCRM Preferences','empoweredBy','b:1;',1,NULL,1,NULL,'2015-05-10 04:05:13',NULL),(63,'Developer Preferences','fatalErrorTemplate','s:20:\"CRM/common/fatal.tpl\";',1,NULL,1,NULL,'2015-05-10 04:05:13',NULL),(64,'Event Preferences','event_enable_cart','i:0;',1,NULL,1,NULL,'2015-05-10 04:05:13',NULL),(65,'Mailing Preferences','replyTo','i:0;',1,NULL,1,NULL,'2015-05-10 04:05:14',NULL),(66,'Mailing Preferences','disable_mandatory_tokens_check','i:0;',1,NULL,1,NULL,'2015-05-10 04:05:14',NULL),(67,'Mailing Preferences','dedupe_email_default','i:1;',1,NULL,1,NULL,'2015-05-10 04:05:14',NULL),(68,'Mailing Preferences','hash_mailing_url','i:0;',1,NULL,1,NULL,'2015-05-10 04:05:14',NULL),(69,'Search Preferences','search_autocomplete_count','i:10;',1,NULL,1,NULL,'2015-05-10 04:05:14',NULL),(70,'Search Preferences','enable_innodb_fts','i:0;',1,NULL,1,NULL,'2015-05-10 04:05:14',NULL),(71,'Search Preferences','fts_query_mode','s:6:\"simple\";',1,NULL,1,NULL,'2015-05-10 04:05:14',NULL);
  /*!40000 ALTER TABLE `civicrm_setting` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -1319,7 -1329,7 +1329,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_subscription_history` WRITE;
  /*!40000 ALTER TABLE `civicrm_subscription_history` DISABLE KEYS */;
- INSERT INTO `civicrm_subscription_history` (`id`, `contact_id`, `group_id`, `date`, `method`, `status`, `tracking`) VALUES (1,89,2,'2015-02-22 08:46:33','Email','Added',NULL),(2,142,2,'2014-12-06 01:16:39','Admin','Added',NULL),(3,36,2,'2014-05-24 06:19:29','Admin','Added',NULL),(4,179,2,'2015-04-08 04:21:33','Admin','Added',NULL),(5,130,2,'2015-02-08 12:02:08','Admin','Added',NULL),(6,120,2,'2015-01-01 09:50:13','Admin','Added',NULL),(7,126,2,'2014-09-03 04:49:34','Admin','Added',NULL),(8,135,2,'2015-03-08 01:03:54','Email','Added',NULL),(9,47,2,'2014-08-27 10:43:18','Email','Added',NULL),(10,43,2,'2015-03-30 04:50:05','Admin','Added',NULL),(11,136,2,'2014-12-05 03:55:55','Email','Added',NULL),(12,197,2,'2015-02-02 07:05:04','Email','Added',NULL),(13,167,2,'2015-04-15 08:15:01','Email','Added',NULL),(14,145,2,'2014-07-06 11:42:34','Admin','Added',NULL),(15,146,2,'2015-04-27 02:24:31','Email','Added',NULL),(16,68,2,'2015-04-19 02:56:43','Admin','Added',NULL),(17,124,2,'2014-05-31 11:21:19','Email','Added',NULL),(18,122,2,'2014-07-14 07:49:21','Email','Added',NULL),(19,155,2,'2014-10-07 10:52:11','Email','Added',NULL),(20,121,2,'2014-10-26 04:09:39','Admin','Added',NULL),(21,113,2,'2014-10-07 09:16:14','Email','Added',NULL),(22,184,2,'2014-10-01 02:52:02','Email','Added',NULL),(23,171,2,'2014-09-23 08:59:58','Email','Added',NULL),(24,91,2,'2014-07-09 01:18:51','Admin','Added',NULL),(25,27,2,'2015-03-26 09:07:25','Email','Added',NULL),(26,141,2,'2015-01-26 05:16:23','Email','Added',NULL),(27,176,2,'2015-01-08 12:37:27','Admin','Added',NULL),(28,159,2,'2014-11-14 07:13:24','Email','Added',NULL),(29,80,2,'2015-02-14 06:41:01','Admin','Added',NULL),(30,110,2,'2014-07-02 04:00:51','Email','Added',NULL),(31,13,2,'2015-01-25 02:18:02','Email','Added',NULL),(32,188,2,'2014-06-06 11:00:24','Email','Added',NULL),(33,195,2,'2014-11-22 02:08:58','Email','Added',NULL),(34,66,2,'2015-04-05 09:10:21','Admin','Added',NULL),(35,64,2,'2014-05-19 03:36:44','Email','Added',NULL),(36,40,2,'2014-12-03 12:56:32','Email','Added',NULL),(37,16,2,'2014-06-26 08:19:35','Email','Added',NULL),(38,29,2,'2014-07-17 04:22:37','Admin','Added',NULL),(39,177,2,'2015-01-10 09:54:33','Admin','Added',NULL),(40,34,2,'2014-10-23 07:27:48','Email','Added',NULL),(41,181,2,'2015-01-22 06:19:46','Email','Added',NULL),(42,72,2,'2014-07-18 02:25:11','Email','Added',NULL),(43,144,2,'2014-08-24 03:07:09','Admin','Added',NULL),(44,76,2,'2015-03-19 07:57:56','Admin','Added',NULL),(45,185,2,'2015-01-26 06:32:33','Email','Added',NULL),(46,30,2,'2014-12-04 11:29:48','Email','Added',NULL),(47,191,2,'2015-03-05 06:10:55','Admin','Added',NULL),(48,107,2,'2014-06-22 10:39:48','Email','Added',NULL),(49,105,2,'2014-10-11 12:06:23','Email','Added',NULL),(50,24,2,'2015-03-25 06:47:09','Email','Added',NULL),(51,156,2,'2015-03-04 01:29:26','Email','Added',NULL),(52,166,2,'2014-09-24 07:48:36','Admin','Added',NULL),(53,190,2,'2015-04-22 07:00:18','Admin','Added',NULL),(54,161,2,'2014-06-23 03:25:23','Email','Added',NULL),(55,14,2,'2014-12-22 11:30:33','Email','Added',NULL),(56,90,2,'2014-05-27 11:09:12','Email','Added',NULL),(57,21,2,'2014-12-25 10:38:40','Admin','Added',NULL),(58,134,2,'2015-01-05 02:45:49','Email','Added',NULL),(59,46,2,'2015-05-07 10:07:44','Email','Added',NULL),(60,15,2,'2014-06-21 02:29:46','Email','Added',NULL),(61,58,3,'2014-10-07 06:41:47','Email','Added',NULL),(62,3,3,'2014-07-26 08:33:44','Admin','Added',NULL),(63,97,3,'2014-12-19 07:09:20','Admin','Added',NULL),(64,150,3,'2014-10-20 09:40:50','Admin','Added',NULL),(65,65,3,'2014-11-17 08:30:43','Admin','Added',NULL),(66,7,3,'2014-07-25 06:15:33','Email','Added',NULL),(67,104,3,'2014-07-10 01:28:19','Admin','Added',NULL),(68,41,3,'2014-07-29 07:19:05','Admin','Added',NULL),(69,192,3,'2014-11-22 01:57:20','Email','Added',NULL),(70,63,3,'2015-04-09 07:39:42','Admin','Added',NULL),(71,162,3,'2014-08-03 01:09:09','Admin','Added',NULL),(72,138,3,'2015-01-04 05:37:28','Email','Added',NULL),(73,128,3,'2014-08-27 07:36:04','Email','Added',NULL),(74,131,3,'2015-03-05 04:07:32','Email','Added',NULL),(75,132,3,'2015-02-02 09:34:18','Admin','Added',NULL),(76,89,4,'2014-08-18 06:10:08','Email','Added',NULL),(77,135,4,'2014-06-14 12:46:31','Admin','Added',NULL),(78,146,4,'2014-10-23 08:29:28','Admin','Added',NULL),(79,184,4,'2014-11-19 07:15:42','Admin','Added',NULL),(80,80,4,'2014-08-24 09:10:27','Email','Added',NULL),(81,40,4,'2014-06-09 10:17:39','Admin','Added',NULL),(82,144,4,'2015-02-08 09:41:45','Admin','Added',NULL),(83,24,4,'2014-07-31 01:55:43','Admin','Added',NULL);
 -INSERT INTO `civicrm_subscription_history` (`id`, `contact_id`, `group_id`, `date`, `method`, `status`, `tracking`) VALUES (1,117,2,'2014-10-03 06:01:34','Admin','Added',NULL),(2,119,2,'2014-09-04 12:05:59','Admin','Added',NULL),(3,87,2,'2015-03-17 06:44:06','Admin','Added',NULL),(4,106,2,'2014-09-03 07:22:11','Admin','Added',NULL),(5,201,2,'2014-06-13 11:57:08','Admin','Added',NULL),(6,2,2,'2014-07-31 11:21:07','Email','Added',NULL),(7,58,2,'2014-09-29 10:49:41','Email','Added',NULL),(8,137,2,'2014-09-24 10:43:08','Admin','Added',NULL),(9,36,2,'2014-10-28 03:19:46','Admin','Added',NULL),(10,191,2,'2014-05-15 06:36:24','Admin','Added',NULL),(11,169,2,'2014-12-03 10:30:39','Admin','Added',NULL),(12,171,2,'2014-07-02 11:52:00','Email','Added',NULL),(13,147,2,'2014-05-24 11:28:53','Admin','Added',NULL),(14,64,2,'2014-05-22 06:15:57','Admin','Added',NULL),(15,80,2,'2015-03-06 10:36:01','Email','Added',NULL),(16,110,2,'2015-01-02 04:09:54','Admin','Added',NULL),(17,29,2,'2014-11-24 08:26:59','Email','Added',NULL),(18,39,2,'2014-10-30 06:51:23','Admin','Added',NULL),(19,150,2,'2014-06-06 11:28:23','Email','Added',NULL),(20,86,2,'2014-12-24 07:02:38','Email','Added',NULL),(21,148,2,'2014-05-26 09:52:30','Admin','Added',NULL),(22,178,2,'2014-08-07 04:18:56','Email','Added',NULL),(23,168,2,'2015-01-21 08:21:42','Email','Added',NULL),(24,30,2,'2014-11-25 09:20:54','Email','Added',NULL),(25,7,2,'2014-05-06 04:29:49','Email','Added',NULL),(26,103,2,'2014-06-02 12:19:27','Admin','Added',NULL),(27,132,2,'2014-07-26 11:33:38','Admin','Added',NULL),(28,115,2,'2015-02-01 08:34:09','Email','Added',NULL),(29,200,2,'2014-12-25 01:54:08','Email','Added',NULL),(30,198,2,'2014-06-16 12:22:54','Email','Added',NULL),(31,47,2,'2014-09-24 12:16:18','Email','Added',NULL),(32,71,2,'2014-12-14 09:52:44','Email','Added',NULL),(33,170,2,'2014-06-19 09:16:04','Admin','Added',NULL),(34,183,2,'2014-05-06 10:33:25','Email','Added',NULL),(35,67,2,'2014-06-11 11:22:51','Admin','Added',NULL),(36,185,2,'2015-03-16 04:10:48','Admin','Added',NULL),(37,22,2,'2014-09-25 04:51:36','Admin','Added',NULL),(38,9,2,'2015-04-27 10:03:03','Email','Added',NULL),(39,146,2,'2014-05-18 05:59:41','Admin','Added',NULL),(40,42,2,'2014-06-14 07:12:23','Admin','Added',NULL),(41,166,2,'2015-04-01 04:33:24','Email','Added',NULL),(42,75,2,'2014-10-09 11:30:12','Email','Added',NULL),(43,44,2,'2014-06-03 11:18:13','Email','Added',NULL),(44,131,2,'2014-07-06 08:06:05','Email','Added',NULL),(45,162,2,'2015-02-28 09:48:14','Email','Added',NULL),(46,184,2,'2014-11-25 09:22:43','Email','Added',NULL),(47,140,2,'2014-07-30 02:50:36','Email','Added',NULL),(48,78,2,'2014-08-30 02:09:31','Email','Added',NULL),(49,196,2,'2014-12-24 02:31:48','Admin','Added',NULL),(50,167,2,'2014-05-03 09:20:17','Admin','Added',NULL),(51,15,2,'2014-11-17 06:53:55','Email','Added',NULL),(52,33,2,'2015-03-31 05:04:24','Admin','Added',NULL),(53,157,2,'2014-05-05 12:29:51','Admin','Added',NULL),(54,76,2,'2014-05-30 06:24:02','Email','Added',NULL),(55,192,2,'2014-07-12 07:20:27','Admin','Added',NULL),(56,68,2,'2014-08-17 06:41:57','Admin','Added',NULL),(57,96,2,'2014-11-09 01:54:58','Email','Added',NULL),(58,195,2,'2014-11-18 10:24:47','Admin','Added',NULL),(59,158,2,'2015-02-03 03:51:50','Email','Added',NULL),(60,35,2,'2014-09-27 01:05:21','Admin','Added',NULL),(61,193,3,'2015-02-16 02:02:01','Email','Added',NULL),(62,152,3,'2014-11-13 03:19:45','Admin','Added',NULL),(63,190,3,'2015-02-27 08:44:01','Email','Added',NULL),(64,66,3,'2014-07-26 02:17:06','Email','Added',NULL),(65,72,3,'2015-03-05 06:38:05','Admin','Added',NULL),(66,16,3,'2014-06-20 03:36:11','Email','Added',NULL),(67,151,3,'2014-07-11 04:10:47','Email','Added',NULL),(68,51,3,'2014-08-16 07:38:37','Email','Added',NULL),(69,28,3,'2014-06-04 03:26:28','Admin','Added',NULL),(70,34,3,'2014-06-02 12:18:58','Email','Added',NULL),(71,61,3,'2014-11-05 11:32:57','Email','Added',NULL),(72,79,3,'2015-01-29 11:34:42','Email','Added',NULL),(73,154,3,'2014-05-21 04:39:52','Email','Added',NULL),(74,188,3,'2014-09-02 01:37:05','Admin','Added',NULL),(75,54,3,'2015-04-26 01:33:46','Email','Added',NULL),(76,117,4,'2014-11-18 02:57:35','Email','Added',NULL),(77,137,4,'2015-03-08 07:59:16','Admin','Added',NULL),(78,80,4,'2014-07-03 11:54:07','Email','Added',NULL),(79,178,4,'2014-06-11 01:52:09','Admin','Added',NULL),(80,200,4,'2014-05-08 02:36:29','Admin','Added',NULL),(81,185,4,'2014-11-22 02:31:35','Admin','Added',NULL),(82,44,4,'2014-09-23 02:31:55','Email','Added',NULL),(83,167,4,'2014-05-18 05:02:43','Email','Added',NULL);
++INSERT INTO `civicrm_subscription_history` (`id`, `contact_id`, `group_id`, `date`, `method`, `status`, `tracking`) VALUES (1,166,2,'2014-11-11 06:11:40','Email','Added',NULL),(2,3,2,'2014-07-17 05:52:41','Admin','Added',NULL),(3,128,2,'2015-03-28 12:02:30','Email','Added',NULL),(4,4,2,'2014-07-09 09:10:35','Admin','Added',NULL),(5,71,2,'2014-06-20 11:02:51','Email','Added',NULL),(6,110,2,'2014-06-03 08:55:03','Admin','Added',NULL),(7,153,2,'2015-03-24 03:20:27','Email','Added',NULL),(8,152,2,'2014-11-07 06:47:30','Email','Added',NULL),(9,182,2,'2014-11-20 09:30:07','Email','Added',NULL),(10,108,2,'2014-06-13 01:09:55','Admin','Added',NULL),(11,24,2,'2014-10-05 09:55:31','Email','Added',NULL),(12,142,2,'2014-08-08 01:59:37','Admin','Added',NULL),(13,176,2,'2015-04-22 10:23:40','Email','Added',NULL),(14,117,2,'2014-10-28 07:59:56','Admin','Added',NULL),(15,88,2,'2015-02-11 05:43:00','Email','Added',NULL),(16,33,2,'2014-09-15 03:47:33','Admin','Added',NULL),(17,18,2,'2014-05-16 06:15:30','Admin','Added',NULL),(18,169,2,'2014-05-24 11:05:05','Email','Added',NULL),(19,163,2,'2015-03-21 07:41:55','Admin','Added',NULL),(20,179,2,'2014-11-04 11:03:01','Admin','Added',NULL),(21,55,2,'2014-11-22 07:16:27','Email','Added',NULL),(22,190,2,'2014-10-04 05:34:46','Admin','Added',NULL),(23,123,2,'2015-04-08 03:30:50','Admin','Added',NULL),(24,95,2,'2015-02-01 08:47:12','Admin','Added',NULL),(25,64,2,'2015-05-01 03:52:50','Admin','Added',NULL),(26,85,2,'2014-07-28 03:59:31','Admin','Added',NULL),(27,29,2,'2014-06-02 06:55:16','Email','Added',NULL),(28,120,2,'2014-06-30 10:20:57','Admin','Added',NULL),(29,67,2,'2015-03-04 05:16:48','Email','Added',NULL),(30,43,2,'2014-09-08 09:24:05','Email','Added',NULL),(31,76,2,'2014-09-04 11:45:46','Email','Added',NULL),(32,144,2,'2014-11-19 09:56:37','Email','Added',NULL),(33,47,2,'2014-07-07 09:33:05','Admin','Added',NULL),(34,9,2,'2014-08-24 09:27:49','Email','Added',NULL),(35,155,2,'2015-01-25 03:10:03','Admin','Added',NULL),(36,111,2,'2014-12-07 01:48:34','Email','Added',NULL),(37,60,2,'2014-09-12 11:34:27','Admin','Added',NULL),(38,183,2,'2015-04-30 01:53:04','Email','Added',NULL),(39,58,2,'2015-04-28 04:55:40','Email','Added',NULL),(40,105,2,'2014-12-03 07:43:16','Admin','Added',NULL),(41,196,2,'2015-04-14 03:29:39','Admin','Added',NULL),(42,102,2,'2015-02-23 09:11:34','Admin','Added',NULL),(43,77,2,'2015-02-12 06:59:52','Email','Added',NULL),(44,74,2,'2014-07-29 09:15:59','Admin','Added',NULL),(45,130,2,'2014-10-31 01:50:25','Email','Added',NULL),(46,36,2,'2014-12-27 04:33:03','Admin','Added',NULL),(47,11,2,'2014-09-28 04:13:47','Admin','Added',NULL),(48,172,2,'2015-02-19 11:18:08','Email','Added',NULL),(49,134,2,'2014-06-28 01:53:49','Email','Added',NULL),(50,103,2,'2015-05-03 12:50:01','Email','Added',NULL),(51,133,2,'2014-08-07 03:32:31','Admin','Added',NULL),(52,87,2,'2014-12-04 08:52:03','Admin','Added',NULL),(53,146,2,'2014-08-26 06:30:33','Email','Added',NULL),(54,180,2,'2015-01-14 05:31:01','Admin','Added',NULL),(55,139,2,'2015-03-17 05:18:25','Admin','Added',NULL),(56,113,2,'2014-08-03 06:14:17','Email','Added',NULL),(57,114,2,'2014-05-19 08:03:57','Email','Added',NULL),(58,187,2,'2015-04-02 03:17:37','Email','Added',NULL),(59,69,2,'2015-02-13 02:56:31','Email','Added',NULL),(60,137,2,'2014-09-21 12:38:03','Email','Added',NULL),(61,82,3,'2014-08-22 08:12:09','Admin','Added',NULL),(62,75,3,'2014-05-12 10:37:53','Email','Added',NULL),(63,145,3,'2014-12-14 10:38:46','Email','Added',NULL),(64,5,3,'2014-06-13 04:07:40','Admin','Added',NULL),(65,50,3,'2014-08-14 12:34:20','Admin','Added',NULL),(66,6,3,'2015-01-19 09:12:30','Admin','Added',NULL),(67,158,3,'2014-07-18 04:57:00','Admin','Added',NULL),(68,159,3,'2014-11-30 02:07:17','Email','Added',NULL),(69,184,3,'2014-12-25 01:42:38','Email','Added',NULL),(70,56,3,'2014-06-14 06:07:32','Admin','Added',NULL),(71,193,3,'2014-06-25 03:58:46','Email','Added',NULL),(72,97,3,'2015-04-17 04:01:36','Email','Added',NULL),(73,53,3,'2014-07-01 07:01:34','Email','Added',NULL),(74,140,3,'2014-12-31 02:30:06','Email','Added',NULL),(75,13,3,'2014-11-13 09:08:01','Admin','Added',NULL),(76,166,4,'2014-07-03 11:52:45','Email','Added',NULL),(77,152,4,'2014-10-06 12:52:59','Email','Added',NULL),(78,88,4,'2015-02-03 04:56:39','Email','Added',NULL),(79,190,4,'2014-11-06 03:12:08','Admin','Added',NULL),(80,67,4,'2015-04-05 07:29:45','Email','Added',NULL),(81,111,4,'2014-12-30 02:47:46','Email','Added',NULL),(82,77,4,'2014-12-27 03:38:12','Email','Added',NULL),(83,103,4,'2015-01-26 04:27:12','Admin','Added',NULL);
  /*!40000 ALTER TABLE `civicrm_subscription_history` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -1415,7 -1425,7 +1425,7 @@@ UNLOCK TABLES
  
  LOCK TABLES `civicrm_website` WRITE;
  /*!40000 ALTER TABLE `civicrm_website` DISABLE KEYS */;
- INSERT INTO `civicrm_website` (`id`, `contact_id`, `url`, `website_type_id`) VALUES (1,75,'http://demaenvironmental.org',1),(2,194,'http://madisonvillewellnesscenter.org',1),(3,10,'http://urbanempowermentpartners.org',1),(4,118,'http://beltonempowermentacademy.org',1),(5,125,'http://washingtonmusicinitiative.org',1),(6,45,'http://ruraltechnologypartnership.org',1),(7,6,'http://dowlensoftware.org',1),(8,23,'http://ruralmusic.org',1),(9,112,'http://mapleempowermentschool.org',1),(10,52,'http://louisianatechnologyservices.org',1),(11,149,'http://urbanhealth.org',1),(12,201,'http://minnesotapartnership.org',1),(13,82,'http://globalacademy.org',1),(14,101,'http://progressiveeducation.org',1),(15,186,'http://mlkingtechnology.org',1);
 -INSERT INTO `civicrm_website` (`id`, `contact_id`, `url`, `website_type_id`) VALUES (1,43,'http://boltschool.org',1),(2,48,'http://vnpeacefellowship.org',1),(3,124,'http://ecsoftwaresolutions.org',1),(4,38,'http://arizonasustainability.org',1),(5,187,'http://elizabethfoodfund.org',1),(6,55,'http://thpoetrycollective.org',1),(7,127,'http://urbanaction.org',1),(8,135,'http://greensportsservices.org',1),(9,97,'http://tennesseesustainability.org',1),(10,186,'http://globaladvocacy.org',1),(11,32,'http://friendsartsschool.org',1),(12,37,'http://progressivedevelopmentschool.org',1),(13,24,'http://emlynsoftware.org',1),(14,23,'http://rphealthcollective.org',1),(15,4,'http://mainsolutions.org',1),(16,109,'http://montanapoetrypartnership.org',1);
++INSERT INTO `civicrm_website` (`id`, `contact_id`, `url`, `website_type_id`) VALUES (1,32,'http://localsoftware.org',1),(2,194,'http://creativedevelopment.org',1),(3,63,'http://connecticutadvocacy.org',1),(4,197,'http://progressivelegal.org',1),(5,115,'http://globalliteracy.org',1),(6,191,'http://urbaneducation.org',1),(7,57,'http://globalempowermentpartnership.org',1),(8,112,'http://dunnellonalliance.org',1),(9,38,'http://ruraldevelopment.org',1),(10,81,'http://mlkingsustainability.org',1),(11,188,'http://deliafund.org',1),(12,129,'http://statesfoodinitiative.org',1),(13,109,'http://communityhealth.org',1),(14,19,'http://jacksonvilleacademy.org',1),(15,151,'http://okeechobeecollective.org',1),(16,173,'http://urbansports.org',1),(17,40,'http://unitedfamily.org',1);
  /*!40000 ALTER TABLE `civicrm_website` ENABLE KEYS */;
  UNLOCK TABLES;
  
@@@ -1447,7 -1457,7 +1457,7 @@@ UNLOCK TABLES
  /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  
- -- Dump completed on 2015-05-08 12:26:38
 --- Dump completed on 2015-04-29  3:27:50
++-- Dump completed on 2015-05-10  6:35:16
  -- +--------------------------------------------------------------------+
  -- | CiviCRM version 4.6                                                |
  -- +--------------------------------------------------------------------+