From 12f92dbdabcb07b7e872c0279d82036dee119187 Mon Sep 17 00:00:00 2001 From: NileemaJadhav Date: Fri, 16 Jan 2015 19:09:35 +0530 Subject: [PATCH] CCRM-15821 Provide option to notify PCP owner --- CRM/Contribute/BAO/Contribution.php | 6 +- CRM/Contribute/Form/Contribution/Confirm.php | 59 +++++++++++++-- CRM/PCP/BAO/PCP.php | 22 ++++++ CRM/PCP/Form/Campaign.php | 8 ++ CRM/PCP/Form/Contribute.php | 4 + CRM/PCP/Form/Event.php | 4 + .../Incremental/sql/4.6.alpha3.mysql.tpl | 19 +++++ sql/civicrm_generated.mysql | 75 +++++++++---------- templates/CRM/PCP/Form/Campaign.tpl | 10 +++ templates/CRM/PCP/Form/PCP.tpl | 4 + xml/schema/PCP/PCP.xml | 10 +++ xml/schema/PCP/PCPBlock.xml | 14 ++++ xml/templates/civicrm_data.tpl | 6 ++ xml/templates/civicrm_msg_template.tpl | 1 + 14 files changed, 197 insertions(+), 45 deletions(-) diff --git a/CRM/Contribute/BAO/Contribution.php b/CRM/Contribute/BAO/Contribution.php index 2b041d4ce1..a936639b5e 100644 --- a/CRM/Contribute/BAO/Contribution.php +++ b/CRM/Contribute/BAO/Contribution.php @@ -392,7 +392,11 @@ class CRM_Contribute_BAO_Contribution extends CRM_Contribute_DAO_Contribution { $softParams['pcp_roll_nickname'] = CRM_Utils_Array::value('pcp_roll_nickname', $pcp); $softParams['pcp_personal_note'] = CRM_Utils_Array::value('pcp_personal_note', $pcp); $softParams['soft_credit_type_id'] = CRM_Core_OptionGroup::getValue('soft_credit_type', 'pcp', 'name'); - CRM_Contribute_BAO_ContributionSoft::add($softParams); + $contributionSoft = CRM_Contribute_BAO_ContributionSoft::add($softParams); + //Send notification to owner for PCP + if ($contributionSoft->pcp_id) { + CRM_Contribute_Form_Contribution_Confirm::pcpNotifyOwner($contribution, $contributionSoft); + } } if (isset($params['soft_credit'])) { $softParams = $params['soft_credit']; diff --git a/CRM/Contribute/Form/Contribution/Confirm.php b/CRM/Contribute/Form/Contribution/Confirm.php index de244c49ed..5b33bc68ec 100644 --- a/CRM/Contribute/Form/Contribution/Confirm.php +++ b/CRM/Contribute/Form/Contribution/Confirm.php @@ -1739,11 +1739,11 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr if (!empty($params['soft_credit_to'])) { $contributionSoftParams = array(); foreach (array( - 'pcp_display_in_roll', - 'pcp_roll_nickname', - 'pcp_personal_note', - 'amount', - ) as $val) { + 'pcp_display_in_roll', + 'pcp_roll_nickname', + 'pcp_personal_note', + 'amount', + ) as $val) { if (!empty($params[$val])) { $contributionSoftParams[$val] = $params[$val]; } @@ -1757,7 +1757,54 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr $contributionSoftParams['soft_credit_type_id'] = CRM_Core_OptionGroup::getValue('soft_credit_type', 'pcp', 'name'); - CRM_Contribute_BAO_ContributionSoft::add($contributionSoftParams); + $contributionSoft = CRM_Contribute_BAO_ContributionSoft::add($contributionSoftParams); + + //Send notification to owner for PCP + if ($contributionSoft->id && $contributionSoft->pcp_id) { + CRM_Contribute_Form_Contribution_Confirm::pcpNotifyOwner($contribution, $contributionSoft); + } + } + } + + /** + * Function used to send notification mail to pcp owner + * This is used by contribution and also event pcps + * + * @param object $contribution + * @param object $contributionSoft + * Contribution object. + * + */ + + public static function pcpNotifyOwner($contribution, $contributionSoft) { + $component = $contribution->_component ? $contribution->_component : 'contribute'; + $ownerNotifyID = CRM_PCP_BAO_PCP::getOwnerNotificationId($contributionSoft->pcp_id); + if ($ownerNotifyID != CRM_Core_OptionGroup::getValue('pcp_owner_notify', 'no_notifications', 'name') || + ($ownerNotifyID != CRM_Core_OptionGroup::getValue('pcp_owner_notify', 'owner_chooses', 'name') && + CRM_Core_DAO::getFieldValue('CRM_PCP_DAO_PCP', $contributionSoft->pcp_id, 'is_notify'))) { + $pcpPageTitle = CRM_PCP_BAO_PCP::getPcpPageTitle($contributionSoft->pcp_id, $component); + // set email in the template here + $donorName = CRM_Core_DAO::getFieldValue('CRM_Contact_DAO_Contact', $contribution->contact_id, 'display_name'); + $tplParams = array( + 'page_title' => $pcpPageTitle, + 'receive_date' => $contribution->receive_date, + 'total_amount' => $contributionSoft->amount, + 'donors_display_name' => $donorName, + 'donors_email' => CRM_Contact_BAO_Contact::getPrimaryEmail($contribution->contact_id), + 'is_honor_roll_enabled' => $contributionSoft->pcp_display_in_roll, + ); + $domainValues = CRM_Core_BAO_Domain::getNameAndEmail(); + $sendTemplateParams = array( + 'groupName' => 'msg_tpl_workflow_contribution', + 'valueName' => 'pcp_owner_notify', + 'contactId' => $contributionSoft->contact_id, + 'toEmail' => CRM_Contact_BAO_Contact::getPrimaryEmail($contributionSoft->contact_id), + 'toName' => $donorName, + 'from' => "$domainValues[0] <$domainValues[1]>", + 'tplParams' => $tplParams, + 'PDFFilename' => 'receipt.pdf', + ); + CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams); } } diff --git a/CRM/PCP/BAO/PCP.php b/CRM/PCP/BAO/PCP.php index ebf0711af1..754e5afd59 100644 --- a/CRM/PCP/BAO/PCP.php +++ b/CRM/PCP/BAO/PCP.php @@ -401,6 +401,10 @@ WHERE pcp.id = %1 AND cc.contribution_status_id =1 AND cc.is_test = 0"; $form->add('select', 'supporter_profile_id', ts('Supporter Profile'), array('' => ts('- select -')) + $profile, TRUE); + //CRM-15821 - To add new option for PCP "Owner" notification + $ownerNotifications = CRM_Core_OptionGroup::values('pcp_owner_notify'); + $form->addRadio('owner_notify_id', ts('Owner Notification'), $ownerNotifications, NULL, NULL, TRUE); + $form->addElement('checkbox', 'is_tellfriend_enabled', ts("Allow 'Tell a friend' functionality"), NULL, array('onclick' => "return showHideByValue('is_tellfriend_enabled',true,'tflimit','table-row','radio',false);")); $form->add('text', @@ -913,4 +917,22 @@ INNER JOIN civicrm_uf_group ufgroup } } + /** + * Get owner notification id + * + * @param int $pcpId + * @param $component + * + * + * @return int + */ + public static function getOwnerNotificationId($pcpId) { + $query = " + SELECT pb.owner_notify_id + FROM civicrm_pcp_block pb + LEFT JOIN civicrm_pcp pcp ON ( pb.id = pcp.pcp_block_id ) + WHERE pcp.id = %1"; + $params = array(1 => array($pcpId, 'Integer')); + return CRM_Core_DAO::singleValueQuery($query, $params); + } } diff --git a/CRM/PCP/Form/Campaign.php b/CRM/PCP/Form/Campaign.php index dc2b4381b9..46e27b498f 100644 --- a/CRM/PCP/Form/Campaign.php +++ b/CRM/PCP/Form/Campaign.php @@ -86,6 +86,7 @@ class CRM_PCP_Form_Campaign extends CRM_Core_Form { $defaults['is_active'] = 1; $defaults['is_honor_roll'] = 1; $defaults['is_thermometer'] = 1; + $defaults['is_notify'] = 1; } $this->_contactID = CRM_Utils_Array::value('contact_id', $defaults); @@ -127,6 +128,13 @@ class CRM_PCP_Form_Campaign extends CRM_Core_Form { $this->addElement('checkbox', 'is_thermometer', ts('Progress Bar')); $this->addElement('checkbox', 'is_honor_roll', ts('Honor Roll'), NULL); + + $owner_notification_option = $this->_pageId ? CRM_PCP_BAO_PCP::getOwnerNotificationId($this->_pageId) : CRM_Core_DAO::getFieldValue('CRM_PCP_DAO_PCPBlock', $this->controller->get('component_page_id'), 'owner_notify_id'); + if ($owner_notification_option == CRM_Core_OptionGroup::getValue('pcp_owner_notify', 'owner_chooses', 'name')) { + $this->assign('owner_notification_option', TRUE); + $this->addElement('checkbox', 'is_notify', ts('Notify me via email when someone donates to my page'), NULL); + } + $this->addElement('checkbox', 'is_active', ts('Active')); $this->addButtons( diff --git a/CRM/PCP/Form/Contribute.php b/CRM/PCP/Form/Contribute.php index 7a90d167db..37990b44b8 100644 --- a/CRM/PCP/Form/Contribute.php +++ b/CRM/PCP/Form/Contribute.php @@ -65,6 +65,9 @@ class CRM_PCP_Form_Contribute extends CRM_Contribute_Form_ContributionPage { CRM_Core_DAO::commonRetrieve('CRM_PCP_DAO_PCPBlock', $params, $defaults); $defaults['pcp_active'] = CRM_Utils_Array::value('is_active', $defaults); // Assign contribution page ID to pageId for referencing in PCP.hlp - since $id is overwritten there. dgg + if (!CRM_Utils_Array::value('owner_notify_id', $defaults)) { + $defaults['owner_notify_id'] = CRM_Core_OptionGroup::getDefaultValue('pcp_owner_notify'); + } $this->assign('pageId', $this->_id); } @@ -74,6 +77,7 @@ class CRM_PCP_Form_Contribute extends CRM_Contribute_Form_ContributionPage { $defaults['is_tellfriend_enabled'] = 1; $defaults['tellfriend_limit'] = 5; $defaults['link_text'] = ts('Create your own fundraising page'); + $defaults['owner_notify_id'] = CRM_Core_OptionGroup::getDefaultValue('pcp_owner_notify'); if ($ccReceipt = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionPage', $this->_id, 'cc_receipt')) { $defaults['notify_email'] = $ccReceipt; diff --git a/CRM/PCP/Form/Event.php b/CRM/PCP/Form/Event.php index d6748a7f8c..0cdbf1dab1 100644 --- a/CRM/PCP/Form/Event.php +++ b/CRM/PCP/Form/Event.php @@ -69,6 +69,9 @@ class CRM_PCP_Form_Event extends CRM_Event_Form_ManageEvent { CRM_Core_DAO::commonRetrieve('CRM_PCP_DAO_PCPBlock', $params, $defaults); $defaults['pcp_active'] = CRM_Utils_Array::value('is_active', $defaults); // Assign contribution page ID to pageId for referencing in PCP.hlp - since $id is overwritten there. dgg + if (!CRM_Utils_Array::value('owner_notify_id', $defaults)) { + $defaults['owner_notify_id'] = CRM_Core_OptionGroup::getDefaultValue('pcp_owner_notify'); + } $this->assign('pageId', $this->_id); } @@ -78,6 +81,7 @@ class CRM_PCP_Form_Event extends CRM_Event_Form_ManageEvent { $defaults['is_tellfriend_enabled'] = 1; $defaults['tellfriend_limit'] = 5; $defaults['link_text'] = ts('Promote this event with a personal campaign page'); + $defaults['owner_notify_id'] = CRM_Core_OptionGroup::getDefaultValue('pcp_owner_notify'); if ($this->_id && $ccReceipt = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionPage', $this->_id, 'cc_receipt') diff --git a/CRM/Upgrade/Incremental/sql/4.6.alpha3.mysql.tpl b/CRM/Upgrade/Incremental/sql/4.6.alpha3.mysql.tpl index 00899af90e..e953187a05 100644 --- a/CRM/Upgrade/Incremental/sql/4.6.alpha3.mysql.tpl +++ b/CRM/Upgrade/Incremental/sql/4.6.alpha3.mysql.tpl @@ -1,5 +1,24 @@ {* file to handle db changes in 4.6.alpha3 during upgrade *} +--CRM-15821 PCP Owner Notification +{include file='../CRM/Upgrade/4.6.alpha3.msg_template/civicrm_msg_template.tpl'} + +-- Add new column owner_notify_id in pcp block table +ALTER TABLE `civicrm_pcp_block` ADD `owner_notify_id` INT NULL DEFAULT NULL COMMENT 'FK to option_value where option_group = pcp_owner_notification'; + +-- Add new column is_notify in pcp table +ALTER TABLE `civicrm_pcp` ADD `is_notify` INT NOT NULL DEFAULT '0'; + +--Add PCP owner notification option group +INSERT INTO `civicrm_option_group` ( `name`, `title`, `is_active` ) VALUES ('pcp_owner_notify', 'PCP owner notifications', 1); + +SELECT @ogid_pcp_owner := MAX(id) FROM `civicrm_option_group`; + +INSERT INTO `civicrm_option_value` (`option_group_id`, `label`, `value`, `name`, `is_default`, `weight`) VALUES (@ogid_pcp_owner, 'Owner chooses whether to receive notifications', '1', 'owner_chooses', 1, 1), (@ogid_pcp_owner, 'Notifications are sent to ALL owners', '2', 'all_owners', 0, 2),(@ogid_pcp_owner, 'Notifications are NOT available', '3', 'no_notifications', 0, 3); + +UPDATE `civicrm_pcp_block` SET `owner_notify_id` = 3; +UPDATE `civicrm_pcp` SET `is_notify` = 0; + -- update permission for editing message templates (CRM-15819) SELECT @messages_menu_id := id FROM civicrm_navigation WHERE name = 'Mailings'; diff --git a/sql/civicrm_generated.mysql b/sql/civicrm_generated.mysql index 78497968e1..4195b8fee5 100644 --- a/sql/civicrm_generated.mysql +++ b/sql/civicrm_generated.mysql @@ -1,8 +1,8 @@ --- MySQL dump 10.13 Distrib 5.5.38, for osx10.6 (i386) +-- MySQL dump 10.13 Distrib 5.5.40, for debian-linux-gnu (x86_64) -- --- Host: localhost Database: civicrm46 +-- Host: localhost Database: civihr_crm -- ------------------------------------------------------ --- Server version 5.5.38 +-- Server version 5.5.40-0ubuntu0.14.04.1 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; @@ -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,10,'Subject for Pledge Acknowledgment','2014-12-13 04:19:42',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-12-31 01:40:39',4,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-06-08 05:09:18',1,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-09-25 07:48:24',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-08-10 05:15:59',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-02-08 02:04:31',3,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-01-26 08:11:22',2,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-11-18 07:50:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(9,NULL,10,'Subject for Pledge Acknowledgment','2014-05-28 03:43:44',1,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','2014-06-11 12:26:29',6,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-04-21 11:16:45',5,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-04-15 02:15:22',5,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-07-29 01:13:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(14,NULL,9,'Subject for Tell a Friend','2014-06-09 05:25:07',3,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-02-13 06:56:20',5,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-11-14 08:10:27',1,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-03-24 01:40:22',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(18,NULL,9,'Subject for Tell a Friend','2014-10-28 11:29:18',6,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','2014-07-10 12:20:15',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-02-19 05:04:46',4,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-12-06 06:51:41',2,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-06-30 01:02:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(23,NULL,10,'Subject for Pledge Acknowledgment','2014-11-21 02:43:50',2,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-05-06 12:38:52',4,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-10-13 12:37:22',6,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-05-28 01:59:13',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-01-18 05:13:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(28,NULL,9,'Subject for Tell a Friend','2014-01-29 11:46:12',5,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-04-07 09:27:14',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-01-19 09:41:12',1,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-03-01 10:37:31',6,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-10-20 09:09:48',3,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-08-12 08:36:09',6,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-01 06:06:09',4,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-09-05 04:12:54',2,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-03 06:50:36',5,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-06-20 09:44:41',5,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-08-08 07:54:42',2,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-11-11 07:29:47',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-07-01 12:33:09',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','2014-07-31 02:09:05',4,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','2014-02-22 08:18:50',2,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-06-24 04:23:41',2,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-05-31 11:09:18',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-03-21 03:51:13',5,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-10-05 01:05:55',5,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','2014-12-27 07:26:31',2,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-10-14 01:17:27',5,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-02-03 08:09:59',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(50,NULL,9,'Subject for Tell a Friend','2014-11-21 04:10:30',2,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','2014-05-21 10:44:30',1,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-22 11:26:33',4,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-10-31 11:30:07',4,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-03-09 05:42:41',5,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','2014-06-08 07:27:38',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(56,NULL,9,'Subject for Tell a Friend','2014-09-27 05:58:32',2,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-08-09 11:46:16',1,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','2014-10-19 03:06:12',4,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-04-12 02:36:57',2,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-04-23 09:22:48',6,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-10-03 07:31:52',5,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-07-26 04:40:54',5,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-06-03 06:16:49',4,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-03-29 05:14:21',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-03-22 08:32:59',1,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-08-08 06:37:43',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-08-05 07:34:02',1,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-07-02 01:34:02',2,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-12-12 05:44:53',3,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-01-31 04:26:00',4,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-12-11 06:05:54',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-11-08 10:32:04',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(73,NULL,10,'Subject for Pledge Acknowledgment','2014-08-18 08:51:06',3,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-06-18 07:16:23',2,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-06-04 09:09:06',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','2014-04-30 03:55:37',2,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-07-03 02:36:23',1,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-05-06 10:30:48',4,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-12-08 09:26:18',3,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-03 05:25:57',5,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-09-01 04:45:55',5,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','2014-06-22 10:16:37',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-02-07 12:33:08',2,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','2014-04-13 06:46:55',2,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-03-17 04:06:25',2,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-07-23 04:57:32',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','2014-03-07 11:10:51',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-03-20 04:25:30',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-07-09 10:44:19',6,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-09-27 10:29:29',4,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-07-21 03:45:26',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-03-01 08:36:18',5,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-08-17 11:44:12',5,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-06-06 07:17:46',6,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-11-14 01:18:16',3,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-03-02 03:08:01',3,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-10-31 07:04:09',2,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-10-03 06:50:36',3,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-08-16 10:58:08',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-04-06 04:52:36',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(101,NULL,10,'Subject for Pledge Acknowledgment','2014-01-25 04:31:10',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','2014-02-17 04:02:06',6,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-05-09 04:33:20',3,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-12-01 04:09:17',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(105,NULL,10,'Subject for Pledge Acknowledgment','2014-03-21 10:23:54',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(106,NULL,10,'Subject for Pledge Acknowledgment','2014-07-16 11:38:00',4,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-03-29 11:04:14',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','2014-06-17 08:53:08',3,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-10-17 12:32:56',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(110,NULL,10,'Subject for Pledge Acknowledgment','2014-07-16 03:34:19',5,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-09-23 08:41:07',4,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-01-11 12:13:29',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','2014-09-25 01:39:22',1,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-12-06 04:03:28',4,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-11-01 07:19:03',5,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','2014-04-17 01:14:55',2,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','2014-08-19 07:31:36',5,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-06-06 06:07:36',1,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-03-30 08:23:58',2,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-02-25 05:09:30',2,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-02-11 09:22:15',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-02-09 08:09:53',6,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-11-24 05:47:28',6,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-01-19 11:36:00',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','2014-06-19 11:16:34',3,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-02-05 01:56:20',6,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-08-21 01:27:50',6,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','2014-07-27 08:24:17',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','2014-02-28 12:47:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(130,NULL,9,'Subject for Tell a Friend','2014-08-07 04:42:20',4,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-09-10 04:38:27',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(132,NULL,10,'Subject for Pledge Acknowledgment','2014-02-22 06:26:38',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','2014-07-13 06:58:57',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-08-07 10:49:55',6,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-09-06 07:40:08',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-10-18 05:38:50',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','2014-09-01 03:42:17',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','2014-05-15 01:33:01',1,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-07-06 12:17:50',6,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-05-11 10:02:31',4,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-07-17 01:19:02',6,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-05-11 05:59:27',6,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-11 08:24:25',6,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-06-02 05:23:54',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-25 04:41:03',5,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-09-03 11:57:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(147,NULL,9,'Subject for Tell a Friend','2015-01-04 12:17:19',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','2014-08-28 03:29:28',4,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-09-26 06:24:04',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-04-30 08:44:37',2,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-12-02 07:21:33',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','2014-06-14 11:44:24',6,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-03-24 07:04:37',6,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-11-05 06:07: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-04-14 05:33:05',5,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-04-12 01:43:47',1,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-01-03 08:49:18',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-12-04 06:41:29',1,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','2014-02-03 11:23:51',6,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-11-16 07:11:52',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','2014-08-30 11:16:48',2,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-11-18 02:33:09',1,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','2014-01-21 09:33:07',4,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','2014-02-08 09:14:29',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','2014-07-30 08:55:26',3,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-09-01 03:12:38',2,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','2014-05-30 08:43:17',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-09-14 04:04:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(169,NULL,9,'Subject for Tell a Friend','2015-01-01 05:36:31',2,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-01-27 03:30:07',1,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-08-31 03:39:46',6,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','2014-02-26 11:17:09',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(173,NULL,10,'Subject for Pledge Acknowledgment','2014-06-05 07:11:33',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(174,NULL,9,'Subject for Tell a Friend','2014-07-24 10:14:26',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','2014-07-12 01:11:06',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-11-08 10:43:02',2,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','2014-01-22 01:50:09',5,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-04-11 11:08:32',2,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','2015-01-07 06:40:01',1,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-03-29 02:29:12',5,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','2014-12-26 04:05:38',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-06-18 02:02: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','2014-01-30 09:08:13',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','2014-05-04 12:21:05',3,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-01-23 09:55:46',4,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-07-25 02:24:57',2,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-04-26 10:17:23',5,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','2014-10-16 07:43:19',1,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','2014-04-06 04:14:33',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(190,NULL,10,'Subject for Pledge Acknowledgment','2014-10-30 10:50:17',1,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-06-21 10:23:47',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(192,NULL,10,'Subject for Pledge Acknowledgment','2014-06-20 04:45:40',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(193,NULL,10,'Subject for Pledge Acknowledgment','2014-06-23 01:50:21',2,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-02-22 12:35:39',6,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-06-21 07:57:47',3,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-04-27 02:07:58',3,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-05-31 05:28:22',4,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-05-21 05:17:19',5,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-03-17 07:42:23',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-11-30 04:22:48',4,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-04-24 11:39:46',6,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-08-20 12:30:39',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-01-09 06:55:59',3,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-06-09 01:12:44',4,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','2014-10-03 10:39:54',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','2014-06-08 02:57:37',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','2015-01-10 12:59:09',4,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','2015-01-12 08:37:34',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(209,NULL,9,'Subject for Tell a Friend','2014-10-01 01:56:31',6,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-24 08:45:20',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-08-21 05:20:49',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(212,NULL,9,'Subject for Tell a Friend','2014-05-01 07:42:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(213,NULL,9,'Subject for Tell a Friend','2014-12-14 07:57:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(214,NULL,9,'Subject for Tell a Friend','2014-08-12 08:37:57',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','2014-11-16 06:20:09',5,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-03-08 10:47:28',2,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-03-11 02:56:50',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(218,NULL,10,'Subject for Pledge Acknowledgment','2014-09-20 10:48:34',2,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','2014-12-17 07:03:46',6,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-08-02 06:36:29',5,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-08-10 12:32:10',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-03-13 02:15:34',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-07-17 03:50:05',2,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-03-20 01:19:47',4,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-09-10 12:12:33',1,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-06-22 10:40:32',4,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','2014-08-13 01:20:48',4,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-10-22 03:52:39',6,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-12-09 09:03:42',4,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-15 08:09:43',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-05-16 08:17:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(232,NULL,10,'Subject for Pledge Acknowledgment','2014-03-15 10:30:21',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-09-29 08:49:02',3,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-11-21 08:53:37',5,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-11-15 09:33:27',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-12-16 12:27:13',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(237,NULL,9,'Subject for Tell a Friend','2014-10-27 10:38:57',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-11-09 12:21:31',4,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','2014-11-12 05:25:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(240,NULL,10,'Subject for Pledge Acknowledgment','2014-09-22 10:57:46',4,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-03-06 12:08:05',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-08-29 09:26:03',4,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-02-08 02:34:01',2,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-02-09 07:15:58',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-10 05:09:46',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','2014-11-29 08:01:08',6,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-08-22 12:54:38',1,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-09-13 05:19:43',4,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-05-31 06:24:54',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-04-20 01:02:34',4,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-06-08 01:07:42',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-11-21 07:25:18',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(253,NULL,10,'Subject for Pledge Acknowledgment','2014-06-14 11:18:11',5,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-12-24 11:51:10',5,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-07-05 11:04:52',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(256,NULL,10,'Subject for Pledge Acknowledgment','2015-01-06 03:43:00',5,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-07-22 02:58:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(258,NULL,10,'Subject for Pledge Acknowledgment','2014-08-15 02:58:20',4,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','2014-05-21 10:49:41',1,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','2015-01-14 05:56:46',2,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-10-30 07:58:48',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-07-24 04:38:08',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-17 06:06:24',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-10-25 12:23:47',3,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','2014-08-04 01:16:20',5,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-12-26 04:28:33',3,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-23 07:54:25',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','2014-12-17 03:21:57',3,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-07-11 06:24:42',1,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-01-24 04:54:39',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-06-18 12:53:50',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(272,NULL,9,'Subject for Tell a Friend','2014-12-28 10:20:15',2,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-06-24 02:41:17',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','2014-09-30 09:46:39',3,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-10-27 08:34:53',4,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-02-08 09:26:05',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','2014-02-08 06:55:03',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(278,NULL,9,'Subject for Tell a Friend','2014-02-22 08:34:46',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','2014-07-21 12:13:14',2,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-09-15 09:43:14',1,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','2014-11-15 01:08:35',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(282,NULL,10,'Subject for Pledge Acknowledgment','2014-08-30 02:59:53',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','2015-01-09 04:54:01',3,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-03-27 11:36:54',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(285,NULL,10,'Subject for Pledge Acknowledgment','2014-05-25 02:25:15',3,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','2014-09-24 01:21:56',6,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','2014-12-14 07:41:18',6,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-02-21 10:49:41',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','2014-07-09 09:20:46',2,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-05-02 05:46:57',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-04-22 05:07:05',6,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-11-14 03:18:16',1,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-06-11 08:23:23',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-02-22 06:02:12',5,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-12-26 12:36:51',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-06-05 06:30:14',1,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-09-19 09:53:35',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','2014-10-23 04:58:21',5,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','2014-07-03 05:43:03',6,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','2015-01-17 10:15:54',1,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-06-06 07:08:36',1,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-05 04:03:51',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(303,NULL,10,'Subject for Pledge Acknowledgment','2014-07-15 08:24:31',1,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','2014-05-27 06:49:31',6,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-11-05 02:24:48',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(306,NULL,9,'Subject for Tell a Friend','2014-11-16 04:21:36',4,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','2014-08-16 01:52:01',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-09-27 03:49:52',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(309,NULL,9,'Subject for Tell a Friend','2014-12-27 10:50:01',5,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-12-11 04:02:13',5,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-30 11:48:19',5,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-08-28 03:28:21',3,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','2015-01-06 07:54:06',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','2014-11-26 05:48:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(315,NULL,10,'Subject for Pledge Acknowledgment','2014-09-11 06:00:49',2,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','2014-10-05 12:14:36',3,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-03-31 03:15:45',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-09 05:10:45',3,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-11-21 05:27:21',6,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-28 09:00:14',6,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-02-21 09:46:36',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(322,NULL,10,'Subject for Pledge Acknowledgment','2014-10-09 06:54:09',3,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-06-28 12:21:48',6,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-11 07:39:34',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(325,NULL,10,'Subject for Pledge Acknowledgment','2014-11-24 12:40:27',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-01-15 01:52:39',3,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-12-23 07:02:59',6,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','2014-10-27 03:15:13',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','2015-01-19 08:04:16',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(330,NULL,9,'Subject for Tell a Friend','2014-06-14 02:30:05',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(331,NULL,9,'Subject for Tell a Friend','2014-12-21 01:02:13',2,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-12-20 03:35:33',5,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','2015-01-01 05:01:02',5,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-08-09 03:43:34',6,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','2014-04-17 07:23:28',1,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-01-24 10:27:06',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(337,NULL,9,'Subject for Tell a Friend','2014-01-24 02:21:25',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(338,NULL,10,'Subject for Pledge Acknowledgment','2014-11-28 02:17:45',3,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-16 05:00:00',3,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-06-18 12:32:07',5,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-02-15 04:25:34',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-01-11 01:18:42',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(343,NULL,10,'Subject for Pledge Acknowledgment','2014-10-31 04:03:59',6,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-05-27 07:56:24',2,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-05-05 08:33:56',4,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-10-22 09:01:13',5,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','2014-12-05 05:33:26',6,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-04-19 04:49:38',5,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-02-04 08:33:13',4,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-09-29 05:50:38',2,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-06-19 02:01:40',2,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-05-01 06:41:56',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-09-09 11:02:49',2,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-03-20 07:29:30',1,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-07-08 11:29:53',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-11-11 09:29:41',3,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','2015-01-05 09:35:40',6,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-08-24 03:25:57',1,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-06 08:46:28',3,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','2015-01-12 01:07:35',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-08-17 02:15:07',2,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-01-03 05:36:45',6,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-12-04 08:36:01',4,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','2014-10-06 01:38:14',1,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-28 08:39:21',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(366,NULL,10,'Subject for Pledge Acknowledgment','2014-05-02 01:39:06',6,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-05-27 12:09:54',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-10-30 08:20:46',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-10-22 10:44:10',5,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-02-22 12:16:00',4,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','2014-06-10 10:00:41',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(372,NULL,10,'Subject for Pledge Acknowledgment','2014-07-17 05:03:47',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-04-17 11:44:09',6,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','2014-02-10 08:38:30',5,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-02-14 10:07:13',6,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-04-29 07:45:45',2,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-11-03 07:17:53',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(378,NULL,10,'Subject for Pledge Acknowledgment','2014-07-06 12:44:41',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-02-11 08:13:01',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-06-26 11:50:11',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','2014-10-21 05:16:56',3,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','2014-05-20 04:44:12',5,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','2014-10-02 05:34:12',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-08-18 08:04:38',2,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-10-09 03:33:03',2,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-02-15 03:36:28',1,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-07-25 07:50:46',3,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-11-04 03:59:54',6,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-09-26 03:50:05',4,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-06-04 02:11:41',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-03-23 12:41:49',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(392,NULL,9,'Subject for Tell a Friend','2014-03-28 09:38:59',6,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-03-26 01:39:37',2,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','2015-01-05 11:39:36',3,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-08-13 01:16:33',6,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','2014-06-09 02:29:00',5,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','2014-10-03 06:53:31',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-08-15 05:44:19',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(399,NULL,10,'Subject for Pledge Acknowledgment','2014-07-10 05:10:51',6,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-06-07 03:04:14',5,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-02 07:39:53',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','2014-05-13 05:55:53',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(403,NULL,9,'Subject for Tell a Friend','2014-02-03 12:34:41',3,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','2015-01-05 10:08:15',6,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','2014-12-05 05:33:20',6,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-07-06 10:01:25',1,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-05-16 03:26:47',5,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-02-19 02:06:02',6,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-03-19 06:32:37',5,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','2015-01-14 11:48:19',1,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-07-04 05:06:15',1,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-05-09 09:14:47',6,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-05-25 01:26:11',1,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-05-17 01:04:53',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-09-17 05:03:46',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-31 07:11:46',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-12-12 06:32:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(418,NULL,10,'Subject for Pledge Acknowledgment','2014-03-26 07:24:59',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-05-19 01:38:53',4,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-08-30 02:08:45',6,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-11-05 04:17:33',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','2014-05-31 04:25:47',6,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-02-21 12:37:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(424,NULL,9,'Subject for Tell a Friend','2015-01-01 06:58:13',4,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-10-31 03:11:27',6,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-08-06 07:43:05',1,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-12-10 02:41:15',6,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-03-24 12:54:06',6,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','2015-01-12 05:29:51',6,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','2014-11-27 01:04:07',3,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','2015-01-18 06:57:00',5,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-06-19 11:02:53',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-12-30 03:42:52',3,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','2014-06-19 04:32:05',1,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-12-20 10:52:38',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','2014-10-23 12:44:08',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-02-05 03:48:31',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','2015-01-20 11:35:53',2,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-19 04:59:55',3,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-02-25 06:34:34',5,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-11-04 08:19:08',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-23 07:24:12',6,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','2014-12-15 07:30:50',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-10-28 02:31:50',2,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','2014-08-05 12:47:38',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-05-11 12:14:13',4,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-11-23 09:59:29',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(448,NULL,10,'Subject for Pledge Acknowledgment','2014-05-19 07:33:47',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-08-27 06:13:29',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','2014-03-02 08:21:16',6,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-01-20 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-01-19 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-01-18 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-01-17 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','2012-12-19 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-01-15 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-01-14 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-01-13 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-01-12 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-01-11 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-01-10 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-01-09 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-01-08 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-01-07 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','2012-09-30 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-01-05 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-01-04 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-01-03 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-01-02 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-08-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','2014-12-31 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','2014-12-30 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','2014-12-29 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','2014-12-28 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','2013-12-27 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','2014-12-26 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','2014-12-25 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','2014-12-24 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','2014-12-23 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-06-02 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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(576,46,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-01-20 09:35:06',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-01-20 09:35:06',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(578,48,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-01-20 09:35:06',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-01-20 09:35:06',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(580,50,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(586,56,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(596,66,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(601,71,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-01-20 09:35:06',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(602,72,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(612,82,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(620,90,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',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-01-20 09:35:06',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(624,94,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-01-20 09:35:06',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-06-17 06:31:27',6,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','2014-08-28 04:48:58',5,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-02-03 03:30:05',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-03-24 09:36:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(5,NULL,10,'Subject for Pledge Acknowledgment','2014-07-30 09:51:59',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','2014-10-23 02:41:06',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-07-06 11:52:12',6,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-01-31 12:59:37',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(9,NULL,10,'Subject for Pledge Acknowledgment','2014-08-11 04:42:27',2,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-29 06:49:48',4,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-10-28 09:13:10',4,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-03-24 01:40:24',3,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-09-19 02:13:00',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(14,NULL,9,'Subject for Tell a Friend','2014-08-09 08:05:00',4,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-03-27 06:49:02',4,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-13 01:28:30',5,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-02-20 04:30:27',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(18,NULL,9,'Subject for Tell a Friend','2014-03-12 12:10:24',2,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','2014-12-21 05:10:12',5,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-09-12 07:17:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(21,NULL,10,'Subject for Pledge Acknowledgment','2014-06-28 05:05:04',1,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-11-06 12:38:25',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','2014-11-09 03:48:46',4,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-01-21 07:30:13',1,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-03-09 10:02:21',2,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','2014-07-30 10:16:21',4,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','2014-04-08 05:23:42',2,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-02-13 05:57:00',3,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-04-20 11:22:00',2,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-18 12:10:06',4,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-03-28 06:01:35',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-08-10 07:56:39',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-01-25 03:56:56',6,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','2015-01-13 08:56:50',1,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-05-31 01:17:00',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(36,NULL,9,'Subject for Tell a Friend','2014-01-31 02:40:49',4,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-04-18 11:57:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(38,NULL,9,'Subject for Tell a Friend','2014-11-18 10:17:53',4,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-11 08:57:50',4,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','2014-12-09 05:48:03',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','2014-08-01 12:19:48',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','2014-11-10 11:14:05',6,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','2014-01-17 11:02:46',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-04-03 05:12:38',1,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-03-08 06:28:43',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(46,NULL,9,'Subject for Tell a Friend','2014-06-11 08:31:49',4,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','2014-06-19 04:27:21',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(48,NULL,10,'Subject for Pledge Acknowledgment','2014-02-09 12:28:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(49,NULL,9,'Subject for Tell a Friend','2014-09-14 02:58:37',2,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','2014-09-15 04:41:27',6,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','2014-08-17 08:07:34',5,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-10-19 03:15:33',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(53,NULL,10,'Subject for Pledge Acknowledgment','2014-07-07 02:15:17',4,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','2015-01-07 05:39:31',2,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-10-21 09:21:51',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-23 07:44:12',2,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-08-08 03:44:46',2,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','2014-09-21 06:40:57',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(59,NULL,9,'Subject for Tell a Friend','2014-01-20 08:58:40',2,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-05-19 05:52:16',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-08-03 01:51:49',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-09-11 04:31:34',4,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','2014-08-04 06:38:14',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(64,NULL,9,'Subject for Tell a Friend','2014-11-09 01:52:20',2,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-03-23 06:28:56',1,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-01-16 03:06:02',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(67,NULL,10,'Subject for Pledge Acknowledgment','2014-01-21 01:02:48',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(68,NULL,10,'Subject for Pledge Acknowledgment','2014-01-24 09:43:13',4,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-06-20 01:10:15',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(70,NULL,10,'Subject for Pledge Acknowledgment','2014-08-01 11:49:04',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','2014-07-16 03:31:23',1,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-04-12 06:31:03',5,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-09-22 04:48:11',5,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','2014-10-05 07:27:31',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-11-24 11:05:54',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-03-28 07:59:33',3,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-01-31 10:41:41',5,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','2014-03-29 08:38:26',3,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-05-07 12:05:23',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-04-20 09:13:44',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','2014-08-09 08:55:01',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','2014-09-04 05:43:20',5,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-01-29 10:57:21',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-08-26 02:43:26',2,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-28 03:57:51',6,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','2015-01-14 10:23:33',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','2014-11-04 09:17:37',2,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','2014-08-30 06:47:41',5,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-05-12 02:31:22',4,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-04-20 10:56:15',4,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-03-23 08:19:35',1,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-01-20 08:48:58',2,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','2014-03-01 07:26:34',1,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-04-18 06:06:35',3,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-08-21 09:10:20',4,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 03:43:16',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(97,NULL,9,'Subject for Tell a Friend','2014-05-29 12:52:35',3,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-07-18 04:40:50',6,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','2014-03-24 01:31:26',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-05-03 09:32:04',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-03-25 05:36:06',5,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','2014-11-10 04:03:19',3,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-12-29 07:48:03',4,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-10-30 05:14:46',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(105,NULL,10,'Subject for Pledge Acknowledgment','2014-08-30 02:37:27',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(106,NULL,10,'Subject for Pledge Acknowledgment','2014-04-04 04:35:29',4,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-05-14 11:12:36',4,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','2014-02-05 07:29:35',3,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-16 12:12:54',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(110,NULL,10,'Subject for Pledge Acknowledgment','2014-08-18 06:18:27',1,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-02-09 11:09:33',5,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-02-03 10:15:00',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','2014-02-27 09:59:30',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','2014-03-30 09:09:37',6,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-04-09 03:52:36',5,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','2014-09-26 04:26:33',2,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','2014-05-11 03:10:13',1,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-12-31 09:26:35',1,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-06-17 12:27:38',5,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-10-30 05:31:36',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-09-12 08:56:41',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(122,NULL,10,'Subject for Pledge Acknowledgment','2014-11-17 03:03:03',3,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-11-20 08:03:59',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(124,NULL,9,'Subject for Tell a Friend','2014-09-18 10:32:16',6,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-12-07 11:08:57',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-09-16 05:17:38',5,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-09-17 05:14:03',3,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','2014-11-17 04:30:41',1,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-12-21 10:35:03',3,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-05-06 11:01:07',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(131,NULL,10,'Subject for Pledge Acknowledgment','2014-11-18 03:01:51',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(132,NULL,10,'Subject for Pledge Acknowledgment','2014-04-12 02:39:55',2,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','2014-01-29 04:48:54',6,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-10-18 01:21:18',6,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-12-22 11:03:38',2,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-05-05 05:51:29',5,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-02-13 01:18:00',5,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-09-12 02:58:09',5,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','2014-03-17 01:29:16',5,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','2014-05-21 09:29:41',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-09-27 01:52:44',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(142,NULL,10,'Subject for Pledge Acknowledgment','2014-08-23 08:19:31',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(143,NULL,9,'Subject for Tell a Friend','2014-03-21 10:58:13',4,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-05-26 11:02:38',4,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-02-03 03:47:50',5,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-04-09 05:37:42',3,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-05-16 11:05:21',2,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-01-12 02:19:42',3,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-07-16 07:18:10',1,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-11-23 07:51:02',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-05-25 01:20:45',6,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-12-14 12:56:11',3,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','2014-03-25 08:59:44',5,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-12-19 05:01:27',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-12-21 07:56:17',6,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-09-13 01:34:58',1,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','2014-12-22 10:45:51',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(158,NULL,10,'Subject for Pledge Acknowledgment','2014-01-30 02:43:42',1,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-15 06:43:12',5,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-07-12 08:26:56',5,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-10-19 04:47:37',1,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-10-05 06:08:26',4,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-11 09:50:12',4,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','2014-05-15 09:28:36',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(165,NULL,10,'Subject for Pledge Acknowledgment','2014-11-16 02:04:14',3,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-10-18 08:16:26',1,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','2014-03-04 02:17:46',5,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-09-27 12:09:24',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','2015-01-15 07:10:49',4,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-05-15 11:24:05',1,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-07-03 12:02:07',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','2014-05-05 06:55:48',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(173,NULL,10,'Subject for Pledge Acknowledgment','2014-08-20 05:55:49',2,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-01-28 11:47:19',1,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-04-20 02:27:28',4,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','2014-04-01 07:51:09',5,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','2014-03-07 06:03:02',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(178,NULL,10,'Subject for Pledge Acknowledgment','2014-10-29 06:53:33',4,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','2015-01-08 03:02:59',2,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-09-06 07:25:37',6,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','2014-03-10 07:56:20',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(182,NULL,9,'Subject for Tell a Friend','2014-05-03 09:45:45',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(183,NULL,9,'Subject for Tell a Friend','2014-08-05 11:22:54',5,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-08-22 04:09:01',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(185,NULL,10,'Subject for Pledge Acknowledgment','2014-11-11 11:41:26',5,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-11 01:51:26',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-03-04 07:58:23',5,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','2014-01-29 03:14:23',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(189,NULL,10,'Subject for Pledge Acknowledgment','2014-08-08 04:26:20',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-08-29 09:24:36',4,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-06-07 07:27:56',1,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','2014-03-26 09:49:11',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(193,NULL,10,'Subject for Pledge Acknowledgment','2014-11-16 04:30:29',5,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-07-21 04:40:58',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-01-20 04:08:06',5,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-06-05 04:02:51',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-01 08:58:44',4,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-01-24 05:30:32',5,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-16 12:58:02',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(200,NULL,10,'Subject for Pledge Acknowledgment','2014-11-20 11:02:53',6,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','2014-10-02 05:52:30',6,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','2014-12-17 08:49:06',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','2014-03-01 11:00:36',4,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-09-07 03:40:04',3,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','2014-07-15 09:31:10',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','2014-02-10 08:46:28',4,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-10-13 10:14:59',6,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-10-08 06:25:07',3,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','2014-12-23 05:12:04',3,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-08-01 02:05:44',2,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','2015-01-01 05:05:04',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(212,NULL,9,'Subject for Tell a Friend','2014-06-07 06:57:31',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(213,NULL,9,'Subject for Tell a Friend','2014-05-13 01:39:42',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-09-23 02:06:51',3,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-12-08 06:29:49',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','2014-04-09 06:14:25',1,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-06-22 12:49:23',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(218,NULL,10,'Subject for Pledge Acknowledgment','2014-05-18 01:52:39',1,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','2014-11-15 03:58:23',1,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','2014-02-08 12:01:14',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','2014-11-17 05:18:50',6,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-07-04 07:14:08',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(223,NULL,10,'Subject for Pledge Acknowledgment','2014-07-23 05:59:28',4,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-09-21 03:34:02',4,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-04-04 07:06:52',1,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-02-08 04:43:28',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','2014-02-19 02:49:01',1,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','2014-12-19 10:49:24',6,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-10-10 05:44:00',5,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-10-21 04:53:21',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','2014-10-15 02:08:23',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(232,NULL,10,'Subject for Pledge Acknowledgment','2014-06-27 01:09:02',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','2014-07-29 12:07:44',3,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-11-28 08:22:01',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','2014-07-21 07:18:15',1,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-07-27 06:42:06',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(237,NULL,9,'Subject for Tell a Friend','2014-03-09 05:15:40',4,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-02-25 06:50:58',3,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-01-09 06:29:59',4,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-25 09:31:18',4,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','2014-12-25 10:28:31',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(242,NULL,9,'Subject for Tell a Friend','2014-03-05 03:17:40',2,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-04-17 01:03:59',6,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-06-24 11:28:55',3,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-03-25 02:24:05',3,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-09-05 06:12:12',2,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-10-06 12:33:14',1,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-04-04 02:25:22',5,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-03-24 08:44:12',4,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-03-20 01:52:08',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-11-16 07:00:16',1,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-05-22 03:22:42',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(253,NULL,10,'Subject for Pledge Acknowledgment','2014-05-14 09:35:03',6,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-04-13 10:58:44',1,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-12-12 12:59:19',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(256,NULL,10,'Subject for Pledge Acknowledgment','2014-12-14 12:56:56',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(257,NULL,9,'Subject for Tell a Friend','2014-08-01 09:05:59',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(258,NULL,10,'Subject for Pledge Acknowledgment','2014-02-16 10:07:10',1,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','2014-05-11 07:08:26',4,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-04-16 01:22:21',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-12-15 09:21:23',2,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-28 12:05:52',4,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-03-14 10:11:55',3,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-02 09:20:48',5,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-11-10 10:49:13',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(266,NULL,9,'Subject for Tell a Friend','2014-08-10 10:31:40',1,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-19 03:39:22',3,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-10-07 02:09:15',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','2015-01-16 05:49:52',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-11-28 03:04:07',1,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','2015-01-01 07:00:44',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(272,NULL,9,'Subject for Tell a Friend','2014-07-31 01:37:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(273,NULL,9,'Subject for Tell a Friend','2014-05-28 09:03:50',6,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','2014-03-28 12:41:40',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(275,NULL,10,'Subject for Pledge Acknowledgment','2014-10-14 09:47:55',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(276,NULL,10,'Subject for Pledge Acknowledgment','2014-06-15 02:59:15',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-04-17 08:31:32',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(278,NULL,9,'Subject for Tell a Friend','2014-04-21 08:36:02',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(279,NULL,9,'Subject for Tell a Friend','2014-02-15 09:36:17',5,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-19 03:55:35',1,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','2014-12-29 02:22:11',4,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-04-10 07:56:14',3,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-05-06 04:49:04',4,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','2014-07-23 04:29:37',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(285,NULL,10,'Subject for Pledge Acknowledgment','2014-12-03 04:53:19',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','2015-01-05 07:37:10',6,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','2014-09-05 10:50:45',1,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-17 08:42:18',2,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-09-06 03:25:34',1,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-05-12 10:04:49',2,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-12-21 10:40:53',4,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-01-31 06:59:09',3,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-12-17 03:35:18',6,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-04-01 07:35:37',4,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-07-19 02:33:14',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(296,NULL,9,'Subject for Tell a Friend','2014-10-15 10:08:18',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-06-09 09:55:33',2,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-03-01 03:25:23',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','2014-11-29 03:19:02',4,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-10-26 06:13:57',4,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','2014-08-13 11:47:46',4,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-05-21 08:10:19',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','2014-09-05 10:26:46',5,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-04-15 02:31:16',5,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-04-13 10:43:58',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(306,NULL,9,'Subject for Tell a Friend','2014-10-01 05:37:16',4,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-07-25 09:38:42',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-12-07 04:19:21',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(309,NULL,9,'Subject for Tell a Friend','2014-03-19 02:13:19',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-12-01 10:43:30',4,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-04-13 04:02:43',5,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-03-27 02:32:25',4,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-06-12 09:55:45',2,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','2014-08-21 05:04:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(315,NULL,10,'Subject for Pledge Acknowledgment','2014-09-21 12:11:28',6,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-08-21 06:25:42',3,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-12-15 09:57:35',4,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(318,NULL,9,'Subject for Tell a Friend','2014-03-14 04:33:40',5,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-11-28 01:37:42',5,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-09-04 12:50:14',1,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-28 12:58:35',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-03-05 02:46:27',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-09-09 03:17:45',5,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-12-23 08:22:16',6,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-06-19 11:38:38',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-08-21 08:04:33',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','2014-02-09 08:25:06',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','2014-08-21 06:08:21',4,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-06-02 08:08:09',6,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-01-17 08:51:39',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-20 11:33:19',2,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-03-21 05:19:40',2,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-08-25 08:57:22',5,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-02-27 08:30:46',1,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','2014-11-26 06:45:18',1,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-04-09 06:14:43',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(337,NULL,9,'Subject for Tell a Friend','2014-12-29 10:40:18',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(338,NULL,10,'Subject for Pledge Acknowledgment','2014-10-03 09:25:42',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(339,NULL,9,'Subject for Tell a Friend','2014-05-14 06:54:22',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(340,NULL,10,'Subject for Pledge Acknowledgment','2014-10-20 03:56:50',1,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-10-19 08:22:50',4,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','2014-08-18 03:19:12',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(343,NULL,10,'Subject for Pledge Acknowledgment','2014-10-07 04:14:14',5,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(344,NULL,9,'Subject for Tell a Friend','2014-03-18 06:35:49',6,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-02-12 01:20:11',4,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-03-13 10:43:38',1,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','2014-04-07 01:36:24',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-10-11 03:00:46',3,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-04-15 06:55:46',1,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-05-28 02:34:59',3,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-07-11 12:06:19',4,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','2014-08-08 07:56:02',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-12-19 11:59:52',4,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-10-01 09:54:09',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','2014-11-07 11:34:50',1,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','2014-07-04 09:55:56',1,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-07-26 10:01:55',1,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-03-21 01:54:04',3,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-01-30 01:51:14',4,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','2014-12-18 05:36:49',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-09-30 12:57:06',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-12-09 08:03:38',6,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-05-26 12:52:12',3,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-03-22 06:48:05',4,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-03-26 02:10:39',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(366,NULL,10,'Subject for Pledge Acknowledgment','2014-10-22 03:57:25',3,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-03-15 12:39:58',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','2014-11-11 12:15:51',1,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','2014-01-22 12:52:09',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-02-25 09:04:40',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-09-05 12:50:27',6,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-08-04 07:50:17',4,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','2014-05-11 11:53:58',3,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-04-06 01:33:52',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-03-18 01:51:23',1,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-04-20 12:56:13',1,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-05-12 12:04:46',1,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-10-10 01:13:42',4,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-19 03:36:53',5,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-01-27 07:02:19',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(381,NULL,10,'Subject for Pledge Acknowledgment','2014-09-18 06:19:51',4,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','2014-06-20 02:01:00',4,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','2014-12-19 02:47:35',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','2014-05-23 05:10:32',1,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-01-21 03:30:06',3,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','2015-01-04 06:56:14',3,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-11-22 10:42:30',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','2014-08-17 06:17:08',6,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-02-20 11:09:36',3,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-27 01:19:40',6,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-04-05 12:06:49',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','2014-03-02 08:01:55',3,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','2014-05-24 08:25:10',5,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-05-03 03:40:08',1,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','2014-08-22 03:02:25',1,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-02-24 02:07:56',6,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','2014-06-21 06:15:04',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-17 04:25:38',4,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-06-22 11:45:51',2,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','2014-06-15 02:04:56',3,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-14 11:31:12',5,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-09-24 03:26:00',1,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(403,NULL,9,'Subject for Tell a Friend','2014-06-27 11:14:46',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-02-20 05:08:23',2,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','2014-08-11 01:58:53',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','2014-12-29 11:58:40',6,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-10-01 08:58:52',5,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','2015-01-14 02:27:47',2,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-01-19 01:25:30',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-04-21 12:23:25',6,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-09-09 09:01:41',2,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-03-12 05:04:11',6,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','2014-05-18 06:47:08',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','2014-07-11 01:19:22',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-07-02 08:28:22',4,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','2014-10-02 07:22:11',1,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-09-17 07:50:07',2,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(418,NULL,10,'Subject for Pledge Acknowledgment','2014-12-05 04:58:51',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(419,NULL,9,'Subject for Tell a Friend','2014-12-14 09:22:32',1,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-08-08 05:39:15',2,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-18 08:42:42',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-12-18 12:50:52',5,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-01-05 07:30:30',5,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-04-27 01:40:55',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-16 09:24:58',3,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-15 04:53:37',5,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-08-30 10:10:59',1,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-03-21 07:01:58',6,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-10 07:14:31',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','2014-06-30 08:37:50',1,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-01-25 06:23:59',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-07-20 08:30:07',2,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-03-19 01:15:58',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','2014-12-07 02:39:29',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-24 01:35:22',6,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-02-02 02:01:38',6,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-03-21 04:59:42',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-06-26 04:53:12',1,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-01-17 07:14:35',1,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-12-22 06:09:00',1,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','2014-05-09 02:09:28',3,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(442,NULL,10,'Subject for Pledge Acknowledgment','2014-10-20 02:46:19',6,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-07-07 10:17:24',6,NULL,NULL,NULL,NULL,2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(444,NULL,9,'Subject for Tell a Friend','2014-07-06 12:41:55',1,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','2014-04-21 05:56:46',1,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-10 08:06:53',6,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','2014-10-14 07:36:13',6,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-02-03 08:45:21',5,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-10-06 04:52:58',4,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','2014-11-09 02:12:41',2,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-01-16 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-01-15 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-01-14 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-01-13 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-01-12 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-01-11 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-01-10 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-01-09 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-01-08 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,'General','2012-11-05 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-01-06 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-01-05 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-01-04 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-01-03 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-01-02 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-01-01 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','2014-12-31 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','2014-12-30 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','2014-12-29 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-08-17 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','2014-12-27 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','2014-12-26 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','2014-12-25 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','2014-12-24 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','2013-12-23 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','2014-12-22 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','2014-12-21 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','2014-12-20 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','2014-12-19 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-05-29 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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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-01-16 18:16:21',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 - Summer Solstice Festival Day Concert : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(578,48,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(582,52,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(586,56,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(588,58,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(591,61,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(596,66,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(600,70,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(602,72,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(603,73,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(605,75,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(609,79,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(610,80,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(613,83,6,'$ 800.00 - Rain-forest Cup Youth Soccer Tournament : Offline registration','2015-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(614,84,6,'$ 50.00 - Fall Fundraiser Dinner : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(617,87,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(618,88,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',NULL,NULL,NULL,NULL,'Participant',2,NULL,NULL,0,NULL,0,NULL,1,NULL,NULL,0,NULL,NULL,NULL),(620,90,6,'$ 50.00 - Summer Solstice Festival Day Concert : Offline registration','2015-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',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-01-16 18:16:28',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 @@ UNLOCK TABLES; 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 (240,159,1,3),(504,340,1,3),(227,151,2,2),(229,152,2,2),(230,153,2,2),(232,154,2,2),(234,155,2,2),(235,156,2,2),(236,157,2,2),(237,158,2,2),(239,159,2,2),(241,160,2,2),(242,161,2,2),(243,162,2,2),(245,163,2,2),(246,164,2,2),(248,165,2,2),(250,166,2,2),(252,167,2,2),(254,168,2,2),(256,169,2,2),(258,170,2,2),(260,171,2,2),(262,172,2,2),(264,173,2,2),(265,174,2,2),(267,175,2,2),(269,176,2,2),(270,177,2,2),(272,178,2,2),(274,179,2,2),(276,180,2,2),(278,181,2,2),(280,182,2,2),(281,183,2,2),(282,184,2,2),(283,185,2,2),(285,186,2,2),(286,187,2,2),(288,188,2,2),(290,189,2,2),(292,190,2,2),(293,191,2,2),(294,192,2,2),(295,193,2,2),(296,194,2,2),(298,195,2,2),(299,196,2,2),(300,197,2,2),(302,198,2,2),(304,199,2,2),(305,200,2,2),(307,201,2,2),(308,202,2,2),(310,203,2,2),(312,204,2,2),(314,205,2,2),(315,206,2,2),(316,207,2,2),(317,208,2,2),(318,209,2,2),(320,210,2,2),(322,211,2,2),(324,212,2,2),(326,213,2,2),(328,214,2,2),(330,215,2,2),(331,216,2,2),(333,217,2,2),(334,218,2,2),(335,219,2,2),(336,220,2,2),(337,221,2,2),(339,222,2,2),(340,223,2,2),(342,224,2,2),(343,225,2,2),(345,226,2,2),(346,227,2,2),(347,228,2,2),(349,229,2,2),(351,230,2,2),(352,231,2,2),(353,232,2,2),(354,233,2,2),(356,234,2,2),(357,235,2,2),(358,236,2,2),(359,237,2,2),(361,238,2,2),(362,239,2,2),(363,240,2,2),(364,241,2,2),(366,242,2,2),(367,243,2,2),(369,244,2,2),(370,245,2,2),(372,246,2,2),(374,247,2,2),(376,248,2,2),(377,249,2,2),(379,250,2,2),(380,251,2,2),(382,252,2,2),(383,253,2,2),(384,254,2,2),(385,255,2,2),(386,256,2,2),(387,257,2,2),(388,258,2,2),(389,259,2,2),(390,260,2,2),(392,261,2,2),(393,262,2,2),(394,263,2,2),(395,264,2,2),(396,265,2,2),(398,266,2,2),(399,267,2,2),(400,268,2,2),(402,269,2,2),(403,270,2,2),(404,271,2,2),(406,272,2,2),(407,272,2,3),(408,273,2,2),(409,274,2,2),(410,275,2,2),(412,276,2,2),(414,277,2,2),(415,278,2,2),(417,279,2,2),(418,280,2,2),(419,281,2,2),(420,282,2,2),(421,283,2,2),(423,284,2,2),(424,285,2,2),(425,286,2,2),(427,287,2,2),(429,288,2,2),(430,289,2,2),(431,290,2,2),(432,291,2,2),(433,292,2,2),(434,293,2,2),(435,294,2,2),(436,295,2,2),(437,296,2,2),(438,297,2,2),(440,298,2,2),(441,299,2,2),(443,300,2,2),(673,451,2,2),(325,212,3,3),(474,320,3,3),(225,149,4,3),(401,268,4,3),(674,452,4,2),(750,528,4,2),(220,146,5,3),(309,202,5,3),(397,265,5,3),(156,107,6,3),(612,411,6,3),(675,453,6,2),(341,223,7,3),(452,306,7,3),(522,351,7,3),(82,52,8,3),(204,137,8,3),(540,364,8,3),(676,454,8,2),(381,251,9,3),(482,326,9,3),(687,465,9,2),(717,495,9,2),(771,549,9,2),(768,546,10,2),(195,131,11,3),(306,200,11,3),(344,225,11,3),(587,396,11,3),(608,409,11,3),(231,153,12,3),(323,211,12,3),(391,260,12,3),(665,445,13,3),(165,112,14,3),(287,187,14,3),(411,275,14,3),(500,337,14,3),(630,422,16,3),(677,455,16,2),(371,245,17,3),(238,158,18,3),(591,398,18,3),(787,565,18,2),(255,168,19,3),(678,456,19,2),(703,481,19,2),(733,511,19,2),(755,533,19,2),(211,141,20,3),(279,181,20,3),(761,539,20,2),(158,108,22,3),(284,185,22,3),(599,403,22,3),(695,473,22,2),(725,503,22,2),(169,114,23,3),(222,147,23,3),(667,446,24,3),(97,62,25,3),(360,237,25,3),(365,241,25,3),(84,53,26,3),(152,104,27,3),(563,381,27,3),(575,388,27,3),(704,482,27,2),(734,512,27,2),(216,144,28,3),(589,397,28,3),(700,478,28,2),(730,508,28,2),(413,276,29,3),(597,402,29,3),(780,558,29,2),(141,95,30,3),(605,407,30,3),(489,331,31,3),(301,197,32,3),(684,462,32,2),(685,463,32,2),(790,568,32,2),(66,43,33,3),(271,177,33,3),(428,287,33,3),(491,332,33,3),(686,464,33,2),(716,494,33,2),(778,556,33,2),(145,98,34,3),(160,109,34,3),(173,116,34,3),(321,210,34,3),(681,459,34,2),(68,44,35,3),(73,47,35,3),(126,83,35,3),(171,115,35,3),(767,545,35,2),(108,69,36,3),(124,82,36,3),(458,309,36,3),(694,472,36,2),(724,502,36,2),(422,283,37,3),(37,24,38,3),(610,410,38,3),(297,194,39,3),(348,228,39,3),(378,249,39,3),(714,492,39,2),(744,522,39,2),(104,67,40,3),(135,91,40,3),(332,216,40,3),(626,420,40,3),(669,447,41,3),(32,21,42,3),(137,92,42,3),(603,406,42,3),(781,559,42,2),(244,162,43,3),(643,430,43,3),(683,461,43,2),(89,56,44,3),(119,78,44,3),(795,573,44,2),(19,13,45,3),(554,375,45,3),(753,531,45,2),(313,204,46,3),(614,412,46,3),(711,489,46,2),(741,519,46,2),(355,233,47,3),(64,42,48,3),(249,165,48,3),(632,423,48,3),(444,301,49,2),(445,302,49,2),(447,303,49,2),(448,304,49,2),(450,305,49,2),(451,306,49,2),(453,307,49,2),(455,308,49,2),(457,309,49,2),(459,310,49,2),(460,311,49,2),(462,312,49,2),(463,313,49,2),(464,314,49,2),(466,315,49,2),(467,316,49,2),(469,317,49,2),(471,318,49,2),(472,319,49,2),(473,320,49,2),(475,321,49,2),(476,322,49,2),(477,323,49,2),(479,324,49,2),(480,325,49,2),(481,326,49,2),(483,327,49,2),(484,328,49,2),(485,329,49,2),(486,330,49,2),(487,330,49,3),(488,331,49,2),(490,332,49,2),(492,333,49,2),(494,334,49,2),(496,335,49,2),(497,336,49,2),(499,337,49,2),(501,338,49,2),(502,339,49,2),(503,340,49,2),(505,341,49,2),(506,342,49,2),(508,343,49,2),(509,344,49,2),(510,345,49,2),(512,346,49,2),(514,347,49,2),(516,348,49,2),(517,349,49,2),(519,350,49,2),(521,351,49,2),(523,352,49,2),(524,353,49,2),(525,354,49,2),(526,355,49,2),(528,356,49,2),(529,357,49,2),(530,358,49,2),(532,359,49,2),(533,360,49,2),(535,361,49,2),(536,362,49,2),(537,363,49,2),(539,364,49,2),(541,365,49,2),(542,366,49,2),(543,367,49,2),(544,368,49,2),(545,369,49,2),(546,370,49,2),(548,371,49,2),(550,372,49,2),(551,373,49,2),(552,374,49,2),(553,375,49,2),(555,376,49,2),(557,377,49,2),(559,378,49,2),(560,379,49,2),(561,380,49,2),(562,381,49,2),(564,382,49,2),(566,383,49,2),(567,384,49,2),(568,385,49,2),(570,386,49,2),(572,387,49,2),(574,388,49,2),(576,389,49,2),(577,390,49,2),(579,391,49,2),(580,392,49,2),(582,393,49,2),(583,394,49,2),(585,395,49,2),(586,396,49,2),(588,397,49,2),(590,398,49,2),(592,399,49,2),(593,400,49,2),(595,401,49,2),(596,402,49,2),(598,403,49,2),(600,404,49,2),(601,405,49,2),(602,406,49,2),(604,407,49,2),(606,408,49,2),(607,409,49,2),(609,410,49,2),(611,411,49,2),(613,412,49,2),(615,413,49,2),(617,414,49,2),(618,415,49,2),(620,416,49,2),(621,417,49,2),(623,418,49,2),(624,419,49,2),(625,420,49,2),(627,421,49,2),(629,422,49,2),(631,423,49,2),(633,424,49,2),(635,425,49,2),(636,426,49,2),(638,427,49,2),(639,428,49,2),(641,429,49,2),(642,430,49,2),(644,431,49,2),(645,432,49,2),(647,433,49,2),(648,434,49,2),(649,435,49,2),(650,436,49,2),(652,437,49,2),(653,438,49,2),(654,439,49,2),(656,440,49,2),(657,441,49,2),(659,442,49,2),(661,443,49,2),(662,443,49,3),(663,444,49,2),(664,445,49,2),(666,446,49,2),(668,447,49,2),(670,448,49,2),(671,449,49,2),(672,450,49,2),(319,209,50,3),(327,213,50,3),(426,286,50,3),(439,297,50,3),(60,40,51,3),(616,413,51,3),(776,554,51,2),(42,28,52,3),(498,336,52,3),(45,30,53,3),(199,134,53,3),(94,60,54,3),(180,121,54,3),(765,543,54,2),(62,41,55,3),(289,188,55,3),(520,350,55,3),(549,371,55,3),(101,65,56,3),(493,333,56,3),(660,442,56,3),(208,139,57,3),(594,400,57,3),(640,428,57,3),(772,550,57,2),(23,15,59,3),(50,33,60,3),(578,390,60,3),(16,11,61,3),(565,382,61,3),(182,122,63,3),(442,299,63,3),(251,166,64,3),(259,170,64,3),(558,377,64,3),(715,493,64,2),(745,523,64,2),(478,323,65,3),(709,487,65,2),(739,517,65,2),(261,171,67,3),(275,179,67,3),(518,349,67,3),(751,529,67,2),(80,51,68,3),(628,421,68,3),(782,560,68,2),(70,45,69,3),(329,214,69,3),(581,392,69,3),(106,68,70,3),(110,70,70,3),(470,317,71,3),(569,385,71,3),(682,460,71,2),(702,480,71,2),(732,510,71,2),(416,278,72,3),(48,32,73,3),(268,175,73,3),(338,221,73,3),(495,334,73,3),(634,424,73,3),(405,271,74,3),(446,302,74,3),(571,386,74,3),(584,394,74,3),(75,48,75,3),(277,180,75,3),(619,415,75,3),(789,567,75,2),(7,5,76,3),(14,10,76,3),(637,426,76,3),(266,174,77,3),(311,203,77,3),(201,135,78,3),(449,304,78,3),(658,441,78,3),(167,113,79,3),(175,117,79,3),(291,189,79,3),(303,198,79,3),(375,247,79,3),(531,358,79,3),(78,50,81,3),(213,142,81,3),(468,316,81,3),(698,476,81,2),(728,506,81,2),(752,530,81,2),(679,457,82,2),(527,355,83,3),(759,537,83,2),(10,7,84,3),(163,111,84,3),(228,151,84,3),(247,164,84,3),(368,243,84,3),(233,154,85,3),(273,178,85,3),(655,439,85,3),(461,311,86,3),(646,432,86,3),(454,307,87,3),(253,167,88,3),(21,14,89,3),(534,360,89,3),(622,417,89,3),(538,363,91,3),(547,370,91,3),(56,37,92,3),(651,436,92,3),(680,458,92,2),(793,571,92,2),(5,4,93,3),(28,18,93,3),(692,470,93,2),(722,500,93,2),(756,534,93,2),(206,138,94,3),(373,246,94,3),(184,123,95,3),(193,130,95,3),(257,169,95,3),(573,387,95,3),(191,129,96,3),(350,229,96,3),(511,345,96,3),(693,471,96,2),(723,501,96,2),(779,557,96,2),(25,16,98,3),(86,54,98,3),(456,308,98,3),(218,145,99,3),(263,172,99,3),(515,347,99,3),(757,535,99,2),(513,346,100,3),(754,532,100,2),(34,22,101,3),(53,35,101,3),(465,314,101,3),(507,342,101,3),(556,376,101,3),(784,562,107,2),(775,553,109,2),(783,561,117,2),(785,563,119,2),(747,525,121,2),(770,548,125,2),(762,540,132,2),(760,538,133,2),(690,468,136,2),(720,498,136,2),(763,541,136,2),(689,467,138,2),(719,497,138,2),(701,479,139,2),(731,509,139,2),(794,572,139,2),(748,526,140,2),(710,488,142,2),(740,518,142,2),(788,566,142,2),(766,544,143,2),(707,485,147,2),(737,515,147,2),(791,569,148,2),(774,552,151,2),(691,469,152,2),(721,499,152,2),(712,490,155,2),(742,520,155,2),(796,574,155,2),(792,570,159,2),(708,486,162,2),(738,516,162,2),(749,527,166,2),(713,491,168,2),(743,521,168,2),(1,1,169,2),(2,2,169,2),(3,3,169,2),(4,4,169,2),(6,5,169,2),(8,6,169,2),(9,7,169,2),(11,8,169,2),(12,9,169,2),(13,10,169,2),(15,11,169,2),(17,12,169,2),(18,13,169,2),(20,14,169,2),(22,15,169,2),(24,16,169,2),(26,17,169,2),(27,18,169,2),(29,19,169,2),(30,20,169,2),(31,21,169,2),(33,22,169,2),(35,23,169,2),(36,24,169,2),(38,25,169,2),(39,26,169,2),(40,27,169,2),(41,28,169,2),(43,29,169,2),(44,30,169,2),(46,31,169,2),(47,32,169,2),(49,33,169,2),(51,34,169,2),(52,35,169,2),(54,36,169,2),(55,37,169,2),(57,38,169,2),(58,39,169,2),(59,40,169,2),(61,41,169,2),(63,42,169,2),(65,43,169,2),(67,44,169,2),(69,45,169,2),(71,46,169,2),(72,47,169,2),(74,48,169,2),(76,49,169,2),(77,50,169,2),(79,51,169,2),(81,52,169,2),(83,53,169,2),(85,54,169,2),(87,55,169,2),(88,56,169,2),(90,57,169,2),(91,58,169,2),(92,59,169,2),(93,60,169,2),(95,61,169,2),(96,62,169,2),(98,63,169,2),(99,64,169,2),(100,65,169,2),(102,66,169,2),(103,67,169,2),(105,68,169,2),(107,69,169,2),(109,70,169,2),(111,71,169,2),(112,72,169,2),(113,73,169,2),(114,74,169,2),(115,75,169,2),(116,76,169,2),(117,77,169,2),(118,78,169,2),(120,79,169,2),(121,80,169,2),(122,81,169,2),(123,82,169,2),(125,83,169,2),(127,84,169,2),(128,85,169,2),(129,86,169,2),(130,87,169,2),(131,88,169,2),(132,89,169,2),(133,90,169,2),(134,91,169,2),(136,92,169,2),(138,93,169,2),(139,94,169,2),(140,95,169,2),(142,96,169,2),(143,97,169,2),(144,98,169,2),(146,99,169,2),(147,100,169,2),(148,101,169,2),(149,102,169,2),(150,103,169,2),(151,104,169,2),(153,105,169,2),(154,106,169,2),(155,107,169,2),(157,108,169,2),(159,109,169,2),(161,110,169,2),(162,111,169,2),(164,112,169,2),(166,113,169,2),(168,114,169,2),(170,115,169,2),(172,116,169,2),(174,117,169,2),(176,118,169,2),(177,119,169,2),(178,120,169,2),(179,121,169,2),(181,122,169,2),(183,123,169,2),(185,124,169,2),(186,125,169,2),(187,126,169,2),(188,127,169,2),(189,128,169,2),(190,129,169,2),(192,130,169,2),(194,131,169,2),(196,132,169,2),(197,133,169,2),(198,134,169,2),(200,135,169,2),(202,136,169,2),(203,137,169,2),(205,138,169,2),(207,139,169,2),(209,140,169,2),(210,141,169,2),(212,142,169,2),(214,143,169,2),(215,144,169,2),(217,145,169,2),(219,146,169,2),(221,147,169,2),(223,148,169,2),(224,149,169,2),(226,150,169,2),(706,484,169,2),(736,514,169,2),(696,474,171,2),(726,504,171,2),(758,536,171,2),(688,466,172,2),(718,496,172,2),(764,542,174,2),(697,475,175,2),(727,505,175,2),(769,547,179,2),(786,564,180,2),(705,483,186,2),(735,513,186,2),(699,477,188,2),(729,507,188,2),(777,555,195,2),(773,551,196,2); +INSERT INTO `civicrm_activity_contact` (`id`, `activity_id`, `contact_id`, `record_type_id`) VALUES (51,34,1,3),(239,161,1,3),(762,544,1,2),(365,245,2,3),(461,311,2,3),(669,451,2,2),(692,474,2,2),(722,504,2,2),(764,546,2,2),(16,11,3,3),(620,417,3,3),(647,434,3,3),(174,115,4,3),(493,333,4,3),(589,395,4,3),(670,452,4,2),(362,243,5,3),(417,283,5,3),(552,372,5,3),(562,378,6,3),(671,453,6,2),(744,526,6,2),(95,63,7,3),(106,71,7,3),(526,354,7,3),(213,143,8,3),(393,266,8,3),(672,454,8,2),(59,38,9,3),(209,140,9,3),(262,176,9,3),(586,393,9,3),(49,33,10,3),(467,314,10,3),(575,386,11,3),(594,398,12,3),(759,541,12,2),(29,18,13,3),(655,440,13,3),(754,536,13,2),(645,433,14,3),(765,547,14,2),(79,51,15,3),(400,272,15,3),(415,282,15,3),(260,175,16,3),(341,229,16,3),(385,260,16,3),(484,326,16,3),(660,444,16,3),(673,455,16,2),(84,55,17,3),(178,117,17,3),(408,278,17,3),(111,74,18,3),(157,103,18,3),(547,369,18,3),(10,6,19,3),(21,14,19,3),(194,127,19,3),(618,416,19,3),(674,456,19,2),(784,566,19,2),(566,380,20,3),(753,535,21,2),(109,73,22,3),(306,203,22,3),(607,408,22,3),(248,167,23,3),(250,168,23,3),(303,201,23,3),(426,289,23,3),(429,291,23,3),(465,313,23,3),(113,75,24,3),(412,280,24,3),(532,358,24,3),(171,113,25,3),(374,252,26,3),(509,344,26,3),(188,124,27,3),(666,448,27,3),(782,564,27,2),(559,376,28,3),(315,210,29,3),(424,288,29,3),(455,308,29,3),(787,569,29,2),(32,20,30,3),(71,46,30,3),(147,97,30,3),(549,370,30,3),(357,240,31,3),(448,303,31,3),(475,320,31,3),(544,367,31,3),(777,559,31,2),(151,99,32,3),(378,255,32,3),(517,349,32,3),(680,462,32,2),(681,463,32,2),(773,555,32,2),(57,37,33,3),(354,238,33,3),(242,163,34,3),(677,459,34,2),(702,484,34,2),(732,514,34,2),(18,12,35,3),(502,339,35,3),(514,347,35,3),(779,561,37,2),(3,2,38,3),(183,121,38,3),(218,146,38,3),(222,149,38,3),(522,352,38,3),(7,4,39,3),(122,82,39,3),(131,88,39,3),(165,109,39,3),(331,222,39,3),(419,284,39,3),(701,483,39,2),(731,513,39,2),(445,301,40,3),(582,390,40,3),(770,552,40,2),(637,428,41,3),(76,49,42,3),(100,66,42,3),(632,425,42,3),(255,171,43,3),(283,188,43,3),(370,249,43,3),(579,388,43,3),(679,461,43,2),(774,556,43,2),(524,353,44,3),(786,568,44,2),(186,123,45,3),(614,414,45,3),(499,337,46,3),(745,527,47,2),(97,64,48,3),(381,257,48,3),(506,342,48,3),(67,44,49,3),(229,154,49,3),(286,190,49,3),(225,151,50,3),(271,181,50,3),(410,279,50,3),(192,126,51,3),(216,145,51,3),(478,322,51,3),(275,183,52,3),(89,59,53,3),(435,294,53,3),(554,373,53,3),(769,551,53,2),(93,62,54,3),(640,430,54,3),(564,379,55,3),(688,470,55,2),(718,500,55,2),(577,387,56,3),(785,567,57,2),(35,22,58,3),(328,220,58,3),(309,205,59,3),(519,350,59,3),(635,427,60,3),(73,47,61,3),(140,93,61,3),(145,96,61,3),(269,180,61,3),(463,312,61,3),(176,116,62,3),(203,135,62,3),(288,191,62,3),(290,192,62,3),(443,300,62,3),(772,554,62,2),(628,422,63,3),(63,41,64,3),(244,164,65,3),(539,363,65,3),(780,562,65,2),(126,84,66,3),(237,160,66,3),(296,197,66,3),(37,23,67,3),(431,292,67,3),(758,540,67,2),(124,83,68,3),(137,91,68,3),(154,101,68,3),(267,179,68,3),(685,467,68,2),(715,497,68,2),(25,16,69,3),(338,227,69,3),(573,385,69,3),(708,490,69,2),(738,520,69,2),(253,170,71,3),(273,182,71,3),(592,397,71,3),(678,460,71,2),(686,468,72,2),(716,498,72,2),(53,35,74,3),(5,3,75,3),(168,111,75,3),(281,187,75,3),(650,436,75,3),(569,382,76,3),(709,491,76,2),(739,521,76,2),(683,465,77,2),(713,495,77,2),(766,548,77,2),(300,199,78,3),(352,237,78,3),(537,362,78,3),(601,403,78,3),(318,212,79,3),(706,488,79,2),(736,518,79,2),(142,94,80,3),(457,309,80,3),(135,90,81,3),(224,151,81,2),(226,152,81,2),(227,153,81,2),(228,154,81,2),(230,155,81,2),(231,156,81,2),(233,157,81,2),(234,158,81,2),(235,159,81,2),(236,160,81,2),(238,161,81,2),(240,162,81,2),(241,163,81,2),(243,164,81,2),(245,165,81,2),(246,166,81,2),(247,167,81,2),(249,168,81,2),(251,169,81,2),(252,170,81,2),(254,171,81,2),(256,172,81,2),(257,173,81,2),(258,174,81,2),(259,175,81,2),(261,176,81,2),(263,177,81,2),(265,178,81,2),(266,179,81,2),(268,180,81,2),(270,181,81,2),(272,182,81,2),(274,183,81,2),(276,184,81,2),(278,185,81,2),(279,186,81,2),(280,187,81,2),(282,188,81,2),(284,189,81,2),(285,190,81,2),(287,191,81,2),(289,192,81,2),(291,193,81,2),(292,194,81,2),(293,195,81,2),(294,196,81,2),(295,197,81,2),(297,198,81,2),(299,199,81,2),(301,200,81,2),(302,201,81,2),(304,202,81,2),(305,203,81,2),(307,204,81,2),(308,205,81,2),(310,206,81,2),(311,207,81,2),(312,208,81,2),(313,209,81,2),(314,210,81,2),(316,211,81,2),(317,212,81,2),(319,213,81,2),(321,214,81,2),(322,215,81,2),(323,216,81,2),(324,217,81,2),(325,218,81,2),(326,219,81,2),(327,220,81,2),(329,221,81,2),(330,222,81,2),(332,223,81,2),(333,224,81,2),(334,225,81,2),(336,226,81,2),(337,227,81,2),(339,228,81,2),(340,229,81,2),(342,230,81,2),(343,231,81,2),(345,232,81,2),(346,233,81,2),(348,234,81,2),(349,235,81,2),(350,236,81,2),(351,237,81,2),(353,238,81,2),(355,239,81,2),(356,240,81,2),(358,241,81,2),(359,242,81,2),(361,243,81,2),(363,244,81,2),(364,245,81,2),(366,246,81,2),(367,247,81,2),(368,248,81,2),(369,249,81,2),(371,250,81,2),(372,251,81,2),(373,252,81,2),(375,253,81,2),(376,254,81,2),(377,255,81,2),(379,256,81,2),(380,257,81,2),(382,258,81,2),(383,259,81,2),(384,260,81,2),(386,261,81,2),(387,262,81,2),(389,263,81,2),(390,264,81,2),(391,265,81,2),(392,266,81,2),(394,267,81,2),(395,268,81,2),(396,269,81,2),(397,270,81,2),(398,271,81,2),(399,272,81,2),(401,273,81,2),(403,274,81,2),(404,275,81,2),(405,276,81,2),(406,277,81,2),(407,278,81,2),(409,279,81,2),(411,280,81,2),(413,281,81,2),(414,282,81,2),(416,283,81,2),(418,284,81,2),(420,285,81,2),(421,286,81,2),(422,287,81,2),(423,288,81,2),(425,289,81,2),(427,290,81,2),(428,291,81,2),(430,292,81,2),(432,293,81,2),(434,294,81,2),(436,295,81,2),(437,296,81,2),(439,297,81,2),(440,298,81,2),(441,299,81,2),(442,300,81,2),(360,242,82,3),(616,415,82,3),(675,457,82,2),(41,26,83,3),(190,125,83,3),(495,334,83,3),(556,374,83,3),(596,399,83,3),(402,273,84,3),(433,293,84,3),(491,332,84,3),(623,419,85,3),(277,184,86,3),(459,310,86,3),(775,557,87,2),(388,262,88,3),(689,471,88,2),(719,501,88,2),(27,17,89,3),(133,89,89,3),(482,325,89,3),(149,98,90,3),(347,233,90,3),(55,36,91,3),(643,432,91,3),(69,45,92,3),(264,177,92,3),(472,318,92,3),(676,458,92,2),(298,198,93,3),(120,81,94,3),(335,225,94,3),(344,231,94,3),(232,156,95,3),(529,356,96,3),(684,466,96,2),(714,496,96,2),(749,531,96,2),(23,15,97,3),(438,296,99,3),(625,420,99,3),(694,476,99,2),(724,506,99,2),(511,345,100,3),(662,445,100,3),(163,108,101,3),(320,213,101,3),(452,306,101,3),(761,543,103,2),(687,469,104,2),(717,499,104,2),(760,542,105,2),(710,492,106,2),(740,522,106,2),(755,537,107,2),(783,565,109,2),(699,481,115,2),(729,511,115,2),(790,572,119,2),(776,558,121,2),(767,549,122,2),(1,1,125,2),(2,2,125,2),(4,3,125,2),(6,4,125,2),(8,5,125,2),(9,6,125,2),(11,7,125,2),(12,8,125,2),(13,9,125,2),(14,10,125,2),(15,11,125,2),(17,12,125,2),(19,13,125,2),(20,14,125,2),(22,15,125,2),(24,16,125,2),(26,17,125,2),(28,18,125,2),(30,19,125,2),(31,20,125,2),(33,21,125,2),(34,22,125,2),(36,23,125,2),(38,24,125,2),(39,25,125,2),(40,26,125,2),(42,27,125,2),(43,28,125,2),(44,29,125,2),(45,30,125,2),(46,31,125,2),(47,32,125,2),(48,33,125,2),(50,34,125,2),(52,35,125,2),(54,36,125,2),(56,37,125,2),(58,38,125,2),(60,39,125,2),(61,40,125,2),(62,41,125,2),(64,42,125,2),(65,43,125,2),(66,44,125,2),(68,45,125,2),(70,46,125,2),(72,47,125,2),(74,48,125,2),(75,49,125,2),(77,50,125,2),(78,51,125,2),(80,52,125,2),(81,53,125,2),(82,54,125,2),(83,55,125,2),(85,56,125,2),(86,57,125,2),(87,58,125,2),(88,59,125,2),(90,60,125,2),(91,61,125,2),(92,62,125,2),(94,63,125,2),(96,64,125,2),(98,65,125,2),(99,66,125,2),(101,67,125,2),(102,68,125,2),(103,69,125,2),(104,70,125,2),(105,71,125,2),(107,72,125,2),(108,73,125,2),(110,74,125,2),(112,75,125,2),(114,76,125,2),(115,77,125,2),(116,78,125,2),(117,79,125,2),(118,80,125,2),(119,81,125,2),(121,82,125,2),(123,83,125,2),(125,84,125,2),(127,85,125,2),(128,86,125,2),(129,87,125,2),(130,88,125,2),(132,89,125,2),(134,90,125,2),(136,91,125,2),(138,92,125,2),(139,93,125,2),(141,94,125,2),(143,95,125,2),(144,96,125,2),(146,97,125,2),(148,98,125,2),(150,99,125,2),(152,100,125,2),(153,101,125,2),(155,102,125,2),(156,103,125,2),(158,104,125,2),(159,105,125,2),(160,106,125,2),(161,107,125,2),(162,108,125,2),(164,109,125,2),(166,110,125,2),(167,111,125,2),(169,112,125,2),(170,113,125,2),(172,114,125,2),(173,115,125,2),(175,116,125,2),(177,117,125,2),(179,118,125,2),(180,119,125,2),(181,120,125,2),(182,121,125,2),(184,122,125,2),(185,123,125,2),(187,124,125,2),(189,125,125,2),(191,126,125,2),(193,127,125,2),(195,128,125,2),(196,129,125,2),(197,130,125,2),(198,131,125,2),(199,132,125,2),(200,133,125,2),(201,134,125,2),(202,135,125,2),(204,136,125,2),(205,137,125,2),(206,138,125,2),(207,139,125,2),(208,140,125,2),(210,141,125,2),(211,142,125,2),(212,143,125,2),(214,144,125,2),(215,145,125,2),(217,146,125,2),(219,147,125,2),(220,148,125,2),(221,149,125,2),(223,150,125,2),(704,486,126,2),(734,516,126,2),(750,532,129,2),(690,472,132,2),(720,502,132,2),(789,571,132,2),(682,464,133,2),(712,494,133,2),(695,477,134,2),(725,507,134,2),(791,573,135,2),(748,530,139,2),(747,529,140,2),(788,570,143,2),(751,533,144,2),(746,528,151,2),(696,478,153,2),(726,508,153,2),(771,553,153,2),(743,525,155,2),(698,480,159,2),(728,510,159,2),(781,563,161,2),(778,560,162,2),(752,534,164,2),(707,489,172,2),(737,519,172,2),(697,479,173,2),(727,509,173,2),(756,538,173,2),(768,550,174,2),(700,482,178,2),(730,512,178,2),(703,485,183,2),(733,515,183,2),(444,301,184,2),(446,302,184,2),(447,303,184,2),(449,304,184,2),(450,305,184,2),(451,306,184,2),(453,307,184,2),(454,308,184,2),(456,309,184,2),(458,310,184,2),(460,311,184,2),(462,312,184,2),(464,313,184,2),(466,314,184,2),(468,315,184,2),(469,316,184,2),(470,317,184,2),(471,318,184,2),(473,319,184,2),(474,320,184,2),(476,321,184,2),(477,322,184,2),(479,323,184,2),(480,324,184,2),(481,325,184,2),(483,326,184,2),(485,327,184,2),(486,328,184,2),(487,329,184,2),(488,330,184,2),(489,331,184,2),(490,332,184,2),(492,333,184,2),(494,334,184,2),(496,335,184,2),(497,336,184,2),(498,337,184,2),(500,338,184,2),(501,339,184,2),(503,340,184,2),(504,341,184,2),(505,342,184,2),(507,343,184,2),(508,344,184,2),(510,345,184,2),(512,346,184,2),(513,347,184,2),(515,348,184,2),(516,349,184,2),(518,350,184,2),(520,351,184,2),(521,352,184,2),(523,353,184,2),(525,354,184,2),(527,355,184,2),(528,356,184,2),(530,357,184,2),(531,358,184,2),(533,359,184,2),(534,360,184,2),(535,361,184,2),(536,362,184,2),(538,363,184,2),(540,364,184,2),(541,365,184,2),(542,366,184,2),(543,367,184,2),(545,368,184,2),(546,369,184,2),(548,370,184,2),(550,371,184,2),(551,372,184,2),(553,373,184,2),(555,374,184,2),(557,375,184,2),(558,376,184,2),(560,377,184,2),(561,378,184,2),(563,379,184,2),(565,380,184,2),(567,381,184,2),(568,382,184,2),(570,383,184,2),(571,384,184,2),(572,385,184,2),(574,386,184,2),(576,387,184,2),(578,388,184,2),(580,389,184,2),(581,390,184,2),(583,391,184,2),(584,392,184,2),(585,393,184,2),(587,394,184,2),(588,395,184,2),(590,396,184,2),(591,397,184,2),(593,398,184,2),(595,399,184,2),(597,400,184,2),(598,401,184,2),(599,402,184,2),(600,403,184,2),(602,404,184,2),(603,405,184,2),(604,406,184,2),(605,407,184,2),(606,408,184,2),(608,409,184,2),(609,410,184,2),(610,411,184,2),(611,412,184,2),(612,413,184,2),(613,414,184,2),(615,415,184,2),(617,416,184,2),(619,417,184,2),(621,418,184,2),(622,419,184,2),(624,420,184,2),(626,421,184,2),(627,422,184,2),(629,423,184,2),(630,424,184,2),(631,425,184,2),(633,426,184,2),(634,427,184,2),(636,428,184,2),(638,429,184,2),(639,430,184,2),(641,431,184,2),(642,432,184,2),(644,433,184,2),(646,434,184,2),(648,435,184,2),(649,436,184,2),(651,437,184,2),(652,438,184,2),(653,439,184,2),(654,440,184,2),(656,441,184,2),(657,442,184,2),(658,443,184,2),(659,444,184,2),(661,445,184,2),(663,446,184,2),(664,447,184,2),(665,448,184,2),(667,449,184,2),(668,450,184,2),(693,475,184,2),(723,505,184,2),(763,545,188,2),(711,493,189,2),(741,523,189,2),(691,473,194,2),(721,503,194,2),(705,487,196,2),(735,517,196,2),(757,539,196,2),(792,574,198,2); /*!40000 ALTER TABLE `civicrm_activity_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -107,7 +107,7 @@ 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,141,1,1,0,'823V Main Ave SE',823,'V',NULL,'Main','Ave','SE',NULL,NULL,NULL,NULL,'Neosho',1,1048,NULL,'53059',NULL,1228,43.289159,-88.52623,0,NULL,NULL,NULL),(2,27,1,1,0,'276G Main Ave W',276,'G',NULL,'Main','Ave','W',NULL,NULL,NULL,NULL,'Liberty',1,1013,NULL,'47353',NULL,1228,39.622812,-84.92284,0,NULL,NULL,NULL),(3,160,1,1,0,'680I Lincoln Pl E',680,'I',NULL,'Lincoln','Pl','E',NULL,NULL,NULL,NULL,'Coyanosa',1,1042,NULL,'79730',NULL,1228,31.17942,-103.03594,0,NULL,NULL,NULL),(4,91,1,1,0,'159T Green Path SE',159,'T',NULL,'Green','Path','SE',NULL,NULL,NULL,NULL,'Loveland',1,1005,NULL,'80537',NULL,1228,40.383636,-105.10349,0,NULL,NULL,NULL),(5,33,1,1,0,'858E Northpoint Pl NW',858,'E',NULL,'Northpoint','Pl','NW',NULL,NULL,NULL,NULL,'Lyford',1,1042,NULL,'78569',NULL,1228,26.39381,-97.7113,0,NULL,NULL,NULL),(6,129,1,1,0,'883X Green Ln SW',883,'X',NULL,'Green','Ln','SW',NULL,NULL,NULL,NULL,'Lyon Mountain',1,1031,NULL,'12952',NULL,1228,44.715159,-73.91824,0,NULL,NULL,NULL),(7,99,1,1,0,'662H Van Ness Pl SE',662,'H',NULL,'Van Ness','Pl','SE',NULL,NULL,NULL,NULL,'Cornwall',1,1037,NULL,'17016',NULL,1228,40.273968,-76.40602,0,NULL,NULL,NULL),(8,21,1,1,0,'919K Jackson Blvd N',919,'K',NULL,'Jackson','Blvd','N',NULL,NULL,NULL,NULL,'Ventnor City',1,1029,NULL,'08406',NULL,1228,39.342299,-74.48192,0,NULL,NULL,NULL),(9,108,1,1,0,'195U States Dr W',195,'U',NULL,'States','Dr','W',NULL,NULL,NULL,NULL,'Sparta',1,1016,NULL,'41086',NULL,1228,38.709838,-84.88807,0,NULL,NULL,NULL),(10,186,1,1,0,'826J Van Ness Dr E',826,'J',NULL,'Van Ness','Dr','E',NULL,NULL,NULL,NULL,'Harvey',1,1003,NULL,'72841',NULL,1228,34.866017,-93.77678,0,NULL,NULL,NULL),(11,94,1,1,0,'991G Van Ness Blvd NW',991,'G',NULL,'Van Ness','Blvd','NW',NULL,NULL,NULL,NULL,'Woodstock',1,1019,NULL,'21163',NULL,1228,39.336855,-76.84947,0,NULL,NULL,NULL),(12,6,1,1,0,'330J College Way SW',330,'J',NULL,'College','Way','SW',NULL,NULL,NULL,NULL,'Columbia',1,1037,NULL,'17512',NULL,1228,40.037682,-76.49011,0,NULL,NULL,NULL),(13,173,1,1,0,'869R Lincoln Way W',869,'R',NULL,'Lincoln','Way','W',NULL,NULL,NULL,NULL,'Cuba',1,1031,NULL,'14727',NULL,1228,42.213216,-78.28649,0,NULL,NULL,NULL),(14,88,1,1,0,'152E Cadell Ln E',152,'E',NULL,'Cadell','Ln','E',NULL,NULL,NULL,NULL,'Philadelphia',1,1037,NULL,'19101',NULL,1228,40.001811,-75.11787,0,NULL,NULL,NULL),(15,47,1,1,0,'373W El Camino Path S',373,'W',NULL,'El Camino','Path','S',NULL,NULL,NULL,NULL,'Sacramento',1,1004,NULL,'95819',NULL,1228,38.568855,-121.44099,0,NULL,NULL,NULL),(16,20,1,1,0,'480S Main Way SE',480,'S',NULL,'Main','Way','SE',NULL,NULL,NULL,NULL,'Dunbar',1,1026,NULL,'68346',NULL,1228,40.666814,-96.02796,0,NULL,NULL,NULL),(17,120,1,1,0,'817U Northpoint Rd S',817,'U',NULL,'Northpoint','Rd','S',NULL,NULL,NULL,NULL,'Gorham',1,1012,NULL,'62940',NULL,1228,37.727109,-89.47618,0,NULL,NULL,NULL),(18,22,1,1,0,'833E Green Dr S',833,'E',NULL,'Green','Dr','S',NULL,NULL,NULL,NULL,'Glen Mills',1,1037,NULL,'19342',NULL,1228,39.897677,-75.50109,0,NULL,NULL,NULL),(19,196,1,1,0,'615G Martin Luther King Dr SW',615,'G',NULL,'Martin Luther King','Dr','SW',NULL,NULL,NULL,NULL,'Orlando',1,1008,NULL,'32802',NULL,1228,28.519024,-81.343903,0,NULL,NULL,NULL),(20,34,1,1,0,'597Q Beech Blvd E',597,'Q',NULL,'Beech','Blvd','E',NULL,NULL,NULL,NULL,'Houston',1,1042,NULL,'77289',NULL,1228,29.83399,-95.434241,0,NULL,NULL,NULL),(21,84,1,1,0,'898J Cadell St E',898,'J',NULL,'Cadell','St','E',NULL,NULL,NULL,NULL,'Woodston',1,1015,NULL,'67675',NULL,1228,39.450984,-99.09119,0,NULL,NULL,NULL),(22,75,1,1,0,'418V Cadell Rd SE',418,'V',NULL,'Cadell','Rd','SE',NULL,NULL,NULL,NULL,'Secretary',1,1019,NULL,'21664',NULL,1228,38.609886,-75.949,0,NULL,NULL,NULL),(23,44,1,1,0,'8Y Woodbridge Pl N',8,'Y',NULL,'Woodbridge','Pl','N',NULL,NULL,NULL,NULL,'Sacaton',1,1002,NULL,'85247',NULL,1228,33.107581,-111.75128,0,NULL,NULL,NULL),(24,76,1,1,0,'525M Lincoln Ave W',525,'M',NULL,'Lincoln','Ave','W',NULL,NULL,NULL,NULL,'Ebensburg',1,1037,NULL,'15931',NULL,1228,40.498793,-78.74591,0,NULL,NULL,NULL),(25,153,1,1,0,'188D Caulder Pl SW',188,'D',NULL,'Caulder','Pl','SW',NULL,NULL,NULL,NULL,'Pensacola',1,1008,NULL,'32593',NULL,1228,30.61428,-87.275772,0,NULL,NULL,NULL),(26,150,1,1,0,'899S Jackson Path NW',899,'S',NULL,'Jackson','Path','NW',NULL,NULL,NULL,NULL,'Cypress',1,1004,NULL,'90630',NULL,1228,33.817481,-118.0399,0,NULL,NULL,NULL),(27,149,1,1,0,'579R Second St NW',579,'R',NULL,'Second','St','NW',NULL,NULL,NULL,NULL,'Wells Tannery',1,1037,NULL,'16691',NULL,1228,40.080393,-78.15342,0,NULL,NULL,NULL),(28,73,1,1,0,'803F Woodbridge Dr SE',803,'F',NULL,'Woodbridge','Dr','SE',NULL,NULL,NULL,NULL,'Saint Petersburg',1,1008,NULL,'33707',NULL,1228,27.756505,-82.71764,0,NULL,NULL,NULL),(29,9,1,1,0,'23Q Cadell Ln NE',23,'Q',NULL,'Cadell','Ln','NE',NULL,NULL,NULL,NULL,'East Bend',1,1032,NULL,'27018',NULL,1228,36.198622,-80.52694,0,NULL,NULL,NULL),(30,111,1,1,0,'974K Cadell Pl SE',974,'K',NULL,'Cadell','Pl','SE',NULL,NULL,NULL,NULL,'Amity',1,1037,NULL,'19815',NULL,1228,40.318615,-75.755807,0,NULL,NULL,NULL),(31,100,1,1,0,'896J Bay Ave N',896,'J',NULL,'Bay','Ave','N',NULL,NULL,NULL,NULL,'Rio Rancho',1,1030,NULL,'87124',NULL,1228,35.290647,-106.71469,0,NULL,NULL,NULL),(32,17,1,1,0,'611F States Pl SE',611,'F',NULL,'States','Pl','SE',NULL,NULL,NULL,NULL,'Fredericksburg',1,1014,NULL,'50630',NULL,1228,42.963377,-92.20768,0,NULL,NULL,NULL),(33,25,1,1,0,'809U Bay Ln NE',809,'U',NULL,'Bay','Ln','NE',NULL,NULL,NULL,NULL,'Williams',1,1013,NULL,'47470',NULL,1228,38.845709,-86.68869,0,NULL,NULL,NULL),(34,168,1,1,0,'446E El Camino Dr S',446,'E',NULL,'El Camino','Dr','S',NULL,NULL,NULL,NULL,'Modena',1,1043,NULL,'84753',NULL,1228,37.873645,-113.88673,0,NULL,NULL,NULL),(35,42,1,1,0,'609T Bay Path NW',609,'T',NULL,'Bay','Path','NW',NULL,NULL,NULL,NULL,'Morrison',1,1014,NULL,'50657',NULL,1228,42.343304,-92.673819,0,NULL,NULL,NULL),(36,77,1,1,0,'349O Northpoint Ln NW',349,'O',NULL,'Northpoint','Ln','NW',NULL,NULL,NULL,NULL,'South Canaan',1,1037,NULL,'18459',NULL,1228,41.515012,-75.40884,0,NULL,NULL,NULL),(37,83,1,1,0,'6N Cadell Way E',6,'N',NULL,'Cadell','Way','E',NULL,NULL,NULL,NULL,'Mineola',1,1014,NULL,'51554',NULL,1228,41.142148,-95.69205,0,NULL,NULL,NULL),(38,194,1,1,0,'973I Bay St E',973,'I',NULL,'Bay','St','E',NULL,NULL,NULL,NULL,'Silver Lake',1,1048,NULL,'53170',NULL,1228,42.550263,-88.17065,0,NULL,NULL,NULL),(39,199,1,1,0,'404J College Ln NE',404,'J',NULL,'College','Ln','NE',NULL,NULL,NULL,NULL,'Springfield',1,1012,NULL,'62767',NULL,1228,39.749457,-89.606017,0,NULL,NULL,NULL),(40,54,1,1,0,'483Y Maple Ln N',483,'Y',NULL,'Maple','Ln','N',NULL,NULL,NULL,NULL,'Colchester',1,1044,NULL,'05449',NULL,1228,44.442117,-73.082525,0,NULL,NULL,NULL),(41,101,1,1,0,'145H Cadell St SW',145,'H',NULL,'Cadell','St','SW',NULL,NULL,NULL,NULL,'Wirt',1,1022,NULL,'56688',NULL,1228,47.756467,-93.93298,0,NULL,NULL,NULL),(42,113,1,1,0,'384C Martin Luther King Ln W',384,'C',NULL,'Martin Luther King','Ln','W',NULL,NULL,NULL,NULL,'Lowell',1,1020,NULL,'01853',NULL,1228,42.446396,-71.459405,0,NULL,NULL,NULL),(43,32,1,1,0,'516M Martin Luther King Pl NW',516,'M',NULL,'Martin Luther King','Pl','NW',NULL,NULL,NULL,NULL,'Manchester',1,1018,NULL,'04351',NULL,1228,44.306955,-69.87518,0,NULL,NULL,NULL),(44,192,1,1,0,'291F Green Way SE',291,'F',NULL,'Green','Way','SE',NULL,NULL,NULL,NULL,'Mattituck',1,1031,NULL,'11952',NULL,1228,40.994649,-72.53731,0,NULL,NULL,NULL),(45,64,1,1,0,'246R College Ln NW',246,'R',NULL,'College','Ln','NW',NULL,NULL,NULL,NULL,'Lilburn',1,1009,NULL,'30047',NULL,1228,33.872371,-84.11655,0,NULL,NULL,NULL),(46,59,1,1,0,'274F Cadell Way W',274,'F',NULL,'Cadell','Way','W',NULL,NULL,NULL,NULL,'Kalama',1,1046,NULL,'98625',NULL,1228,46.015873,-122.79718,0,NULL,NULL,NULL),(47,87,1,1,0,'30F Van Ness Blvd SE',30,'F',NULL,'Van Ness','Blvd','SE',NULL,NULL,NULL,NULL,'Austin',1,1042,NULL,'78702',NULL,1228,30.265158,-97.71879,0,NULL,NULL,NULL),(48,90,1,1,0,'736X Dowlen Ln NE',736,'X',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Anchorage',1,1001,NULL,'99514',NULL,1228,61.108864,-149.440311,0,NULL,NULL,NULL),(49,115,1,1,0,'930H Beech Way S',930,'H',NULL,'Beech','Way','S',NULL,NULL,NULL,NULL,'Wilmington',1,1032,NULL,'28403',NULL,1228,34.221512,-77.88452,0,NULL,NULL,NULL),(50,146,1,1,0,'660G Dowlen Ln NE',660,'G',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Summit',1,1016,NULL,'42783',NULL,1228,37.567134,-86.085259,0,NULL,NULL,NULL),(51,12,1,1,0,'307Y States Blvd NE',307,'Y',NULL,'States','Blvd','NE',NULL,NULL,NULL,NULL,'Salado',1,1003,NULL,'72575',NULL,1228,35.691868,-91.598917,0,NULL,NULL,NULL),(52,174,1,1,0,'851G States Rd E',851,'G',NULL,'States','Rd','E',NULL,NULL,NULL,NULL,'Greenville',1,1042,NULL,'75404',NULL,1228,33.056265,-96.080973,0,NULL,NULL,NULL),(53,10,1,1,0,'636R Second Ave NE',636,'R',NULL,'Second','Ave','NE',NULL,NULL,NULL,NULL,'Joplin',1,1024,NULL,'64804',NULL,1228,37.047161,-94.51124,0,NULL,NULL,NULL),(54,156,1,1,0,'138M College Blvd SE',138,'M',NULL,'College','Blvd','SE',NULL,NULL,NULL,NULL,'Pasadena',1,1042,NULL,'77503',NULL,1228,29.695028,-95.15798,0,NULL,NULL,NULL),(55,182,1,1,0,'904A Cadell Pl E',904,'A',NULL,'Cadell','Pl','E',NULL,NULL,NULL,NULL,'Cleveland',1,1034,NULL,'44106',NULL,1228,41.507751,-81.60883,0,NULL,NULL,NULL),(56,41,1,1,0,'366C Van Ness Pl E',366,'C',NULL,'Van Ness','Pl','E',NULL,NULL,NULL,NULL,'Dunbar',1,1037,NULL,'15431',NULL,1228,39.968368,-79.61815,0,NULL,NULL,NULL),(57,180,1,1,0,'684L Cadell Blvd E',684,'L',NULL,'Cadell','Blvd','E',NULL,NULL,NULL,NULL,'Eagle',1,1011,NULL,'83616',NULL,1228,43.705551,-116.36346,0,NULL,NULL,NULL),(58,191,1,1,0,'196N States Pl E',196,'N',NULL,'States','Pl','E',NULL,NULL,NULL,NULL,'Revere',1,1022,NULL,'56166',NULL,1228,44.2127,-95.3633,0,NULL,NULL,NULL),(59,189,1,1,0,'633J Caulder Blvd SE',633,'J',NULL,'Caulder','Blvd','SE',NULL,NULL,NULL,NULL,'Florence',1,1023,NULL,'39073',NULL,1228,32.125628,-90.10964,0,NULL,NULL,NULL),(60,127,1,1,0,'743Y Van Ness Pl NE',743,'Y',NULL,'Van Ness','Pl','NE',NULL,NULL,NULL,NULL,'Brookings',1,1036,NULL,'97415',NULL,1228,42.098285,-124.27265,0,NULL,NULL,NULL),(61,164,1,1,0,'833G Green Ave SW',833,'G',NULL,'Green','Ave','SW',NULL,NULL,NULL,NULL,'Reamstown',1,1037,NULL,'17567',NULL,1228,40.209941,-76.116445,0,NULL,NULL,NULL),(62,67,1,1,0,'187P States Pl S',187,'P',NULL,'States','Pl','S',NULL,NULL,NULL,NULL,'Weber City',1,1045,NULL,'24290',NULL,1228,36.617348,-82.5666,0,NULL,NULL,NULL),(63,157,1,1,0,'91Z Van Ness Blvd SW',91,'Z',NULL,'Van Ness','Blvd','SW',NULL,NULL,NULL,NULL,'Ashkum',1,1012,NULL,'60911',NULL,1228,40.883641,-87.9667,0,NULL,NULL,NULL),(64,5,1,1,0,'204K El Camino Way N',204,'K',NULL,'El Camino','Way','N',NULL,NULL,NULL,NULL,'Penokee',1,1015,NULL,'67659',NULL,1228,39.301053,-99.98755,0,NULL,NULL,NULL),(65,24,1,1,0,'342K Northpoint Dr N',342,'K',NULL,'Northpoint','Dr','N',NULL,NULL,NULL,NULL,'Redfield',1,1003,NULL,'72132',NULL,1228,34.443452,-92.1854,0,NULL,NULL,NULL),(66,200,3,1,0,'917D Maple Dr W',917,'D',NULL,'Maple','Dr','W',NULL,'Attn: Accounting',NULL,NULL,'Santo Domingo Pueblo',1,1030,NULL,'87052',NULL,1228,35.509184,-106.35022,0,NULL,NULL,NULL),(67,29,3,1,0,'75C Lincoln Way S',75,'C',NULL,'Lincoln','Way','S',NULL,'Urgent',NULL,NULL,'Gonzales',1,1017,NULL,'70737',NULL,1228,30.229237,-90.92251,0,NULL,NULL,NULL),(68,178,2,1,0,'75C Lincoln Way S',75,'C',NULL,'Lincoln','Way','S',NULL,'Urgent',NULL,NULL,'Gonzales',1,1017,NULL,'70737',NULL,1228,30.229237,-90.92251,0,NULL,NULL,67),(69,16,3,1,0,'528F Lincoln Rd NW',528,'F',NULL,'Lincoln','Rd','NW',NULL,'Urgent',NULL,NULL,'Juncos',1,1056,NULL,'00666',NULL,1228,18.228952,-65.921356,0,NULL,NULL,NULL),(70,106,3,1,0,'591T El Camino Path NE',591,'T',NULL,'El Camino','Path','NE',NULL,'Attn: Accounting',NULL,NULL,'Buffalo',1,1031,NULL,'14206',NULL,1228,42.880105,-78.81049,0,NULL,NULL,NULL),(71,34,2,0,0,'591T El Camino Path NE',591,'T',NULL,'El Camino','Path','NE',NULL,'Attn: Accounting',NULL,NULL,'Buffalo',1,1031,NULL,'14206',NULL,1228,42.880105,-78.81049,0,NULL,NULL,70),(72,58,3,1,0,'679L Lincoln Ave S',679,'L',NULL,'Lincoln','Ave','S',NULL,'Attn: Accounting',NULL,NULL,'Metairie',1,1017,NULL,'70060',NULL,1228,29.677893,-90.0901,0,NULL,NULL,NULL),(73,123,2,1,0,'679L Lincoln Ave S',679,'L',NULL,'Lincoln','Ave','S',NULL,'Attn: Accounting',NULL,NULL,'Metairie',1,1017,NULL,'70060',NULL,1228,29.677893,-90.0901,0,NULL,NULL,72),(74,158,3,1,0,'913Z Maple Ave E',913,'Z',NULL,'Maple','Ave','E',NULL,'Attn: Development',NULL,NULL,'Cottonwood',1,1022,NULL,'56229',NULL,1228,44.609098,-95.70555,0,NULL,NULL,NULL),(75,8,2,1,0,'913Z Maple Ave E',913,'Z',NULL,'Maple','Ave','E',NULL,'Attn: Development',NULL,NULL,'Cottonwood',1,1022,NULL,'56229',NULL,1228,44.609098,-95.70555,0,NULL,NULL,74),(76,68,3,1,0,'334R Cadell Ln SW',334,'R',NULL,'Cadell','Ln','SW',NULL,'Attn: Development',NULL,NULL,'Bucyrus',1,1034,NULL,'44820',NULL,1228,40.815179,-82.97091,0,NULL,NULL,NULL),(77,37,2,1,0,'334R Cadell Ln SW',334,'R',NULL,'Cadell','Ln','SW',NULL,'Attn: Development',NULL,NULL,'Bucyrus',1,1034,NULL,'44820',NULL,1228,40.815179,-82.97091,0,NULL,NULL,76),(78,69,3,1,0,'909B Lincoln Blvd SW',909,'B',NULL,'Lincoln','Blvd','SW',NULL,'Payables Dept.',NULL,NULL,'Seattle',1,1046,NULL,'98198',NULL,1228,47.397521,-122.315,0,NULL,NULL,NULL),(79,6,2,0,0,'909B Lincoln Blvd SW',909,'B',NULL,'Lincoln','Blvd','SW',NULL,'Payables Dept.',NULL,NULL,'Seattle',1,1046,NULL,'98198',NULL,1228,47.397521,-122.315,0,NULL,NULL,78),(80,193,3,1,0,'996N College Dr SE',996,'N',NULL,'College','Dr','SE',NULL,'Urgent',NULL,NULL,'Tipton',1,1024,NULL,'65081',NULL,1228,38.642614,-92.79811,0,NULL,NULL,NULL),(81,138,2,1,0,'996N College Dr SE',996,'N',NULL,'College','Dr','SE',NULL,'Urgent',NULL,NULL,'Tipton',1,1024,NULL,'65081',NULL,1228,38.642614,-92.79811,0,NULL,NULL,80),(82,184,3,1,0,'485J Dowlen Rd N',485,'J',NULL,'Dowlen','Rd','N',NULL,'Disbursements',NULL,NULL,'Pasadena',1,1004,NULL,'91104',NULL,1228,34.169356,-118.12392,0,NULL,NULL,NULL),(83,135,2,1,0,'485J Dowlen Rd N',485,'J',NULL,'Dowlen','Rd','N',NULL,'Disbursements',NULL,NULL,'Pasadena',1,1004,NULL,'91104',NULL,1228,34.169356,-118.12392,0,NULL,NULL,82),(84,102,3,1,0,'888X Woodbridge Way NW',888,'X',NULL,'Woodbridge','Way','NW',NULL,'Payables Dept.',NULL,NULL,'Nashville',1,1041,NULL,'37204',NULL,1228,36.112058,-86.77626,0,NULL,NULL,NULL),(85,130,3,1,0,'326X Bay Way W',326,'X',NULL,'Bay','Way','W',NULL,'c/o PO Plus',NULL,NULL,'Burbank',1,1004,NULL,'91504',NULL,1228,34.201254,-118.32993,0,NULL,NULL,NULL),(86,185,2,1,0,'326X Bay Way W',326,'X',NULL,'Bay','Way','W',NULL,'c/o PO Plus',NULL,NULL,'Burbank',1,1004,NULL,'91504',NULL,1228,34.201254,-118.32993,0,NULL,NULL,85),(87,128,3,1,0,'480V Green Ave SE',480,'V',NULL,'Green','Ave','SE',NULL,'Community Relations',NULL,NULL,'Phoenix',1,1002,NULL,'85075',NULL,1228,33.276539,-112.18717,0,NULL,NULL,NULL),(88,104,2,1,0,'480V Green Ave SE',480,'V',NULL,'Green','Ave','SE',NULL,'Community Relations',NULL,NULL,'Phoenix',1,1002,NULL,'85075',NULL,1228,33.276539,-112.18717,0,NULL,NULL,87),(89,95,3,1,0,'938G Cadell Blvd S',938,'G',NULL,'Cadell','Blvd','S',NULL,'c/o PO Plus',NULL,NULL,'Montgomery',1,1044,NULL,'05470',NULL,1228,44.824855,-72.895849,0,NULL,NULL,NULL),(90,139,2,1,0,'938G Cadell Blvd S',938,'G',NULL,'Cadell','Blvd','S',NULL,'c/o PO Plus',NULL,NULL,'Montgomery',1,1044,NULL,'05470',NULL,1228,44.824855,-72.895849,0,NULL,NULL,89),(91,119,3,1,0,'823M Dowlen Blvd W',823,'M',NULL,'Dowlen','Blvd','W',NULL,'Subscriptions Dept',NULL,NULL,'Wilton',1,1018,NULL,'04294',NULL,1228,44.602261,-70.22906,0,NULL,NULL,NULL),(92,163,3,1,0,'499G Northpoint Ave SW',499,'G',NULL,'Northpoint','Ave','SW',NULL,'Subscriptions Dept',NULL,NULL,'Elm',1,1037,NULL,'17521',NULL,1228,40.204393,-76.34643,0,NULL,NULL,NULL),(93,143,2,1,0,'499G Northpoint Ave SW',499,'G',NULL,'Northpoint','Ave','SW',NULL,'Subscriptions Dept',NULL,NULL,'Elm',1,1037,NULL,'17521',NULL,1228,40.204393,-76.34643,0,NULL,NULL,92),(94,31,3,1,0,'951H Caulder Ave N',951,'H',NULL,'Caulder','Ave','N',NULL,'Cuffe Parade',NULL,NULL,'Beattyville',1,1016,NULL,'41311',NULL,1228,37.578547,-83.70348,0,NULL,NULL,NULL),(95,26,3,1,0,'431V Caulder Ln SW',431,'V',NULL,'Caulder','Ln','SW',NULL,'Editorial Dept',NULL,NULL,'Brookhaven',1,1031,NULL,'11719',NULL,1228,40.780058,-72.91566,0,NULL,NULL,NULL),(96,165,3,1,0,'99F El Camino Way W',99,'F',NULL,'El Camino','Way','W',NULL,'Cuffe Parade',NULL,NULL,'Terrell',1,1042,NULL,'75160',NULL,1228,32.747747,-96.28923,0,NULL,NULL,NULL),(97,179,3,1,0,'8A Green Way SW',8,'A',NULL,'Green','Way','SW',NULL,'Cuffe Parade',NULL,NULL,'Bray',1,1035,NULL,'73012',NULL,1228,34.48532,-97.852223,0,NULL,NULL,NULL),(98,52,2,1,0,'8A Green Way SW',8,'A',NULL,'Green','Way','SW',NULL,'Cuffe Parade',NULL,NULL,'Bray',1,1035,NULL,'73012',NULL,1228,34.48532,-97.852223,0,NULL,NULL,97),(99,14,1,1,0,'274F Cadell Way W',274,'F',NULL,'Cadell','Way','W',NULL,NULL,NULL,NULL,'Kalama',1,1046,NULL,'98625',NULL,1228,46.015873,-122.79718,0,NULL,NULL,46),(100,37,1,0,0,'274F Cadell Way W',274,'F',NULL,'Cadell','Way','W',NULL,NULL,NULL,NULL,'Kalama',1,1046,NULL,'98625',NULL,1228,46.015873,-122.79718,0,NULL,NULL,46),(101,143,1,0,0,'274F Cadell Way W',274,'F',NULL,'Cadell','Way','W',NULL,NULL,NULL,NULL,'Kalama',1,1046,NULL,'98625',NULL,1228,46.015873,-122.79718,0,NULL,NULL,46),(102,181,1,1,0,'274F Cadell Way W',274,'F',NULL,'Cadell','Way','W',NULL,NULL,NULL,NULL,'Kalama',1,1046,NULL,'98625',NULL,1228,46.015873,-122.79718,0,NULL,NULL,46),(103,125,1,1,0,'30F Van Ness Blvd SE',30,'F',NULL,'Van Ness','Blvd','SE',NULL,NULL,NULL,NULL,'Austin',1,1042,NULL,'78702',NULL,1228,30.265158,-97.71879,0,NULL,NULL,47),(104,177,1,1,0,'30F Van Ness Blvd SE',30,'F',NULL,'Van Ness','Blvd','SE',NULL,NULL,NULL,NULL,'Austin',1,1042,NULL,'78702',NULL,1228,30.265158,-97.71879,0,NULL,NULL,47),(105,62,1,1,0,'30F Van Ness Blvd SE',30,'F',NULL,'Van Ness','Blvd','SE',NULL,NULL,NULL,NULL,'Austin',1,1042,NULL,'78702',NULL,1228,30.265158,-97.71879,0,NULL,NULL,47),(106,172,1,1,0,'408H Martin Luther King Ave S',408,'H',NULL,'Martin Luther King','Ave','S',NULL,NULL,NULL,NULL,'Miamisburg',1,1034,NULL,'45342',NULL,1228,39.631525,-84.27074,0,NULL,NULL,NULL),(107,139,1,0,0,'736X Dowlen Ln NE',736,'X',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Anchorage',1,1001,NULL,'99514',NULL,1228,61.108864,-149.440311,0,NULL,NULL,48),(108,169,1,1,0,'736X Dowlen Ln NE',736,'X',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Anchorage',1,1001,NULL,'99514',NULL,1228,61.108864,-149.440311,0,NULL,NULL,48),(109,2,1,1,0,'736X Dowlen Ln NE',736,'X',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Anchorage',1,1001,NULL,'99514',NULL,1228,61.108864,-149.440311,0,NULL,NULL,48),(110,55,1,1,0,'736X Dowlen Ln NE',736,'X',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Anchorage',1,1001,NULL,'99514',NULL,1228,61.108864,-149.440311,0,NULL,NULL,48),(111,114,1,1,0,'930H Beech Way S',930,'H',NULL,'Beech','Way','S',NULL,NULL,NULL,NULL,'Wilmington',1,1032,NULL,'28403',NULL,1228,34.221512,-77.88452,0,NULL,NULL,49),(112,198,1,1,0,'930H Beech Way S',930,'H',NULL,'Beech','Way','S',NULL,NULL,NULL,NULL,'Wilmington',1,1032,NULL,'28403',NULL,1228,34.221512,-77.88452,0,NULL,NULL,49),(113,81,1,1,0,'930H Beech Way S',930,'H',NULL,'Beech','Way','S',NULL,NULL,NULL,NULL,'Wilmington',1,1032,NULL,'28403',NULL,1228,34.221512,-77.88452,0,NULL,NULL,49),(114,144,1,1,0,'930H Beech Way S',930,'H',NULL,'Beech','Way','S',NULL,NULL,NULL,NULL,'Wilmington',1,1032,NULL,'28403',NULL,1228,34.221512,-77.88452,0,NULL,NULL,49),(115,110,1,1,0,'660G Dowlen Ln NE',660,'G',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Summit',1,1016,NULL,'42783',NULL,1228,37.567134,-86.085259,0,NULL,NULL,50),(116,103,1,1,0,'660G Dowlen Ln NE',660,'G',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Summit',1,1016,NULL,'42783',NULL,1228,37.567134,-86.085259,0,NULL,NULL,50),(117,96,1,1,0,'660G Dowlen Ln NE',660,'G',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Summit',1,1016,NULL,'42783',NULL,1228,37.567134,-86.085259,0,NULL,NULL,50),(118,195,1,1,0,'660G Dowlen Ln NE',660,'G',NULL,'Dowlen','Ln','NE',NULL,NULL,NULL,NULL,'Summit',1,1016,NULL,'42783',NULL,1228,37.567134,-86.085259,0,NULL,NULL,50),(119,78,1,1,0,'307Y States Blvd NE',307,'Y',NULL,'States','Blvd','NE',NULL,NULL,NULL,NULL,'Salado',1,1003,NULL,'72575',NULL,1228,35.691868,-91.598917,0,NULL,NULL,51),(120,46,1,1,0,'307Y States Blvd NE',307,'Y',NULL,'States','Blvd','NE',NULL,NULL,NULL,NULL,'Salado',1,1003,NULL,'72575',NULL,1228,35.691868,-91.598917,0,NULL,NULL,51),(121,155,1,1,0,'307Y States Blvd NE',307,'Y',NULL,'States','Blvd','NE',NULL,NULL,NULL,NULL,'Salado',1,1003,NULL,'72575',NULL,1228,35.691868,-91.598917,0,NULL,NULL,51),(122,85,1,1,0,'307Y States Blvd NE',307,'Y',NULL,'States','Blvd','NE',NULL,NULL,NULL,NULL,'Salado',1,1003,NULL,'72575',NULL,1228,35.691868,-91.598917,0,NULL,NULL,51),(123,48,1,1,0,'851G States Rd E',851,'G',NULL,'States','Rd','E',NULL,NULL,NULL,NULL,'Greenville',1,1042,NULL,'75404',NULL,1228,33.056265,-96.080973,0,NULL,NULL,52),(124,51,1,1,0,'851G States Rd E',851,'G',NULL,'States','Rd','E',NULL,NULL,NULL,NULL,'Greenville',1,1042,NULL,'75404',NULL,1228,33.056265,-96.080973,0,NULL,NULL,52),(125,15,1,1,0,'851G States Rd E',851,'G',NULL,'States','Rd','E',NULL,NULL,NULL,NULL,'Greenville',1,1042,NULL,'75404',NULL,1228,33.056265,-96.080973,0,NULL,NULL,52),(126,167,1,1,0,'721V College Dr NE',721,'V',NULL,'College','Dr','NE',NULL,NULL,NULL,NULL,'Tomahawk',1,1016,NULL,'41262',NULL,1228,37.855873,-82.62091,0,NULL,NULL,NULL),(127,145,1,1,0,'636R Second Ave NE',636,'R',NULL,'Second','Ave','NE',NULL,NULL,NULL,NULL,'Joplin',1,1024,NULL,'64804',NULL,1228,37.047161,-94.51124,0,NULL,NULL,53),(128,183,1,1,0,'636R Second Ave NE',636,'R',NULL,'Second','Ave','NE',NULL,NULL,NULL,NULL,'Joplin',1,1024,NULL,'64804',NULL,1228,37.047161,-94.51124,0,NULL,NULL,53),(129,148,1,1,0,'636R Second Ave NE',636,'R',NULL,'Second','Ave','NE',NULL,NULL,NULL,NULL,'Joplin',1,1024,NULL,'64804',NULL,1228,37.047161,-94.51124,0,NULL,NULL,53),(130,36,1,1,0,'904F Lincoln Ave SE',904,'F',NULL,'Lincoln','Ave','SE',NULL,NULL,NULL,NULL,'Waterford Works',1,1029,NULL,'08089',NULL,1228,39.722622,-74.8503,0,NULL,NULL,NULL),(131,40,1,1,0,'138M College Blvd SE',138,'M',NULL,'College','Blvd','SE',NULL,NULL,NULL,NULL,'Pasadena',1,1042,NULL,'77503',NULL,1228,29.695028,-95.15798,0,NULL,NULL,54),(132,151,1,1,0,'138M College Blvd SE',138,'M',NULL,'College','Blvd','SE',NULL,NULL,NULL,NULL,'Pasadena',1,1042,NULL,'77503',NULL,1228,29.695028,-95.15798,0,NULL,NULL,54),(133,92,1,1,0,'138M College Blvd SE',138,'M',NULL,'College','Blvd','SE',NULL,NULL,NULL,NULL,'Pasadena',1,1042,NULL,'77503',NULL,1228,29.695028,-95.15798,0,NULL,NULL,54),(134,79,1,1,0,'545O Beech Rd W',545,'O',NULL,'Beech','Rd','W',NULL,NULL,NULL,NULL,'Youngstown',1,1034,NULL,'44507',NULL,1228,41.074508,-80.65562,0,NULL,NULL,NULL),(135,116,1,1,0,'904A Cadell Pl E',904,'A',NULL,'Cadell','Pl','E',NULL,NULL,NULL,NULL,'Cleveland',1,1034,NULL,'44106',NULL,1228,41.507751,-81.60883,0,NULL,NULL,55),(136,71,1,1,0,'904A Cadell Pl E',904,'A',NULL,'Cadell','Pl','E',NULL,NULL,NULL,NULL,'Cleveland',1,1034,NULL,'44106',NULL,1228,41.507751,-81.60883,0,NULL,NULL,55),(137,72,1,1,0,'904A Cadell Pl E',904,'A',NULL,'Cadell','Pl','E',NULL,NULL,NULL,NULL,'Cleveland',1,1034,NULL,'44106',NULL,1228,41.507751,-81.60883,0,NULL,NULL,55),(138,60,1,1,0,'905R El Camino Pl W',905,'R',NULL,'El Camino','Pl','W',NULL,NULL,NULL,NULL,'Mcpherson',1,1015,NULL,'67460',NULL,1228,38.367298,-97.67719,0,NULL,NULL,NULL),(139,35,1,1,0,'366C Van Ness Pl E',366,'C',NULL,'Van Ness','Pl','E',NULL,NULL,NULL,NULL,'Dunbar',1,1037,NULL,'15431',NULL,1228,39.968368,-79.61815,0,NULL,NULL,56),(140,197,1,1,0,'366C Van Ness Pl E',366,'C',NULL,'Van Ness','Pl','E',NULL,NULL,NULL,NULL,'Dunbar',1,1037,NULL,'15431',NULL,1228,39.968368,-79.61815,0,NULL,NULL,56),(141,117,1,1,0,'366C Van Ness Pl E',366,'C',NULL,'Van Ness','Pl','E',NULL,NULL,NULL,NULL,'Dunbar',1,1037,NULL,'15431',NULL,1228,39.968368,-79.61815,0,NULL,NULL,56),(142,126,1,1,0,'366C Van Ness Pl E',366,'C',NULL,'Van Ness','Pl','E',NULL,NULL,NULL,NULL,'Dunbar',1,1037,NULL,'15431',NULL,1228,39.968368,-79.61815,0,NULL,NULL,56),(143,166,1,1,0,'684L Cadell Blvd E',684,'L',NULL,'Cadell','Blvd','E',NULL,NULL,NULL,NULL,'Eagle',1,1011,NULL,'83616',NULL,1228,43.705551,-116.36346,0,NULL,NULL,57),(144,159,1,1,0,'684L Cadell Blvd E',684,'L',NULL,'Cadell','Blvd','E',NULL,NULL,NULL,NULL,'Eagle',1,1011,NULL,'83616',NULL,1228,43.705551,-116.36346,0,NULL,NULL,57),(145,3,1,1,0,'684L Cadell Blvd E',684,'L',NULL,'Cadell','Blvd','E',NULL,NULL,NULL,NULL,'Eagle',1,1011,NULL,'83616',NULL,1228,43.705551,-116.36346,0,NULL,NULL,57),(146,109,1,1,0,'684L Cadell Blvd E',684,'L',NULL,'Cadell','Blvd','E',NULL,NULL,NULL,NULL,'Eagle',1,1011,NULL,'83616',NULL,1228,43.705551,-116.36346,0,NULL,NULL,57),(147,4,1,1,0,'196N States Pl E',196,'N',NULL,'States','Pl','E',NULL,NULL,NULL,NULL,'Revere',1,1022,NULL,'56166',NULL,1228,44.2127,-95.3633,0,NULL,NULL,58),(148,70,1,1,0,'196N States Pl E',196,'N',NULL,'States','Pl','E',NULL,NULL,NULL,NULL,'Revere',1,1022,NULL,'56166',NULL,1228,44.2127,-95.3633,0,NULL,NULL,58),(149,61,1,1,0,'196N States Pl E',196,'N',NULL,'States','Pl','E',NULL,NULL,NULL,NULL,'Revere',1,1022,NULL,'56166',NULL,1228,44.2127,-95.3633,0,NULL,NULL,58),(150,187,1,1,0,'196N States Pl E',196,'N',NULL,'States','Pl','E',NULL,NULL,NULL,NULL,'Revere',1,1022,NULL,'56166',NULL,1228,44.2127,-95.3633,0,NULL,NULL,58),(151,134,1,1,0,'633J Caulder Blvd SE',633,'J',NULL,'Caulder','Blvd','SE',NULL,NULL,NULL,NULL,'Florence',1,1023,NULL,'39073',NULL,1228,32.125628,-90.10964,0,NULL,NULL,59),(152,140,1,1,0,'633J Caulder Blvd SE',633,'J',NULL,'Caulder','Blvd','SE',NULL,NULL,NULL,NULL,'Florence',1,1023,NULL,'39073',NULL,1228,32.125628,-90.10964,0,NULL,NULL,59),(153,142,1,1,0,'633J Caulder Blvd SE',633,'J',NULL,'Caulder','Blvd','SE',NULL,NULL,NULL,NULL,'Florence',1,1023,NULL,'39073',NULL,1228,32.125628,-90.10964,0,NULL,NULL,59),(154,89,1,1,0,'633J Caulder Blvd SE',633,'J',NULL,'Caulder','Blvd','SE',NULL,NULL,NULL,NULL,'Florence',1,1023,NULL,'39073',NULL,1228,32.125628,-90.10964,0,NULL,NULL,59),(155,118,1,1,0,'743Y Van Ness Pl NE',743,'Y',NULL,'Van Ness','Pl','NE',NULL,NULL,NULL,NULL,'Brookings',1,1036,NULL,'97415',NULL,1228,42.098285,-124.27265,0,NULL,NULL,60),(156,124,1,1,0,'743Y Van Ness Pl NE',743,'Y',NULL,'Van Ness','Pl','NE',NULL,NULL,NULL,NULL,'Brookings',1,1036,NULL,'97415',NULL,1228,42.098285,-124.27265,0,NULL,NULL,60),(157,11,1,1,0,'743Y Van Ness Pl NE',743,'Y',NULL,'Van Ness','Pl','NE',NULL,NULL,NULL,NULL,'Brookings',1,1036,NULL,'97415',NULL,1228,42.098285,-124.27265,0,NULL,NULL,60),(158,18,1,1,0,'408N Lincoln Rd E',408,'N',NULL,'Lincoln','Rd','E',NULL,NULL,NULL,NULL,'Clayton',1,1032,NULL,'27520',NULL,1228,35.635275,-78.4489,0,NULL,NULL,NULL),(159,131,1,1,0,'833G Green Ave SW',833,'G',NULL,'Green','Ave','SW',NULL,NULL,NULL,NULL,'Reamstown',1,1037,NULL,'17567',NULL,1228,40.209941,-76.116445,0,NULL,NULL,61),(160,121,1,1,0,'833G Green Ave SW',833,'G',NULL,'Green','Ave','SW',NULL,NULL,NULL,NULL,'Reamstown',1,1037,NULL,'17567',NULL,1228,40.209941,-76.116445,0,NULL,NULL,61),(161,132,1,1,0,'833G Green Ave SW',833,'G',NULL,'Green','Ave','SW',NULL,NULL,NULL,NULL,'Reamstown',1,1037,NULL,'17567',NULL,1228,40.209941,-76.116445,0,NULL,NULL,61),(162,201,1,1,0,'10D El Camino Dr SE',10,'D',NULL,'El Camino','Dr','SE',NULL,NULL,NULL,NULL,'Baskin',1,1017,NULL,'71219',NULL,1228,32.308243,-91.71527,0,NULL,NULL,NULL),(163,178,1,0,0,'187P States Pl S',187,'P',NULL,'States','Pl','S',NULL,NULL,NULL,NULL,'Weber City',1,1045,NULL,'24290',NULL,1228,36.617348,-82.5666,0,NULL,NULL,62),(164,30,1,1,0,'187P States Pl S',187,'P',NULL,'States','Pl','S',NULL,NULL,NULL,NULL,'Weber City',1,1045,NULL,'24290',NULL,1228,36.617348,-82.5666,0,NULL,NULL,62),(165,152,1,1,0,'187P States Pl S',187,'P',NULL,'States','Pl','S',NULL,NULL,NULL,NULL,'Weber City',1,1045,NULL,'24290',NULL,1228,36.617348,-82.5666,0,NULL,NULL,62),(166,122,1,1,0,'187P States Pl S',187,'P',NULL,'States','Pl','S',NULL,NULL,NULL,NULL,'Weber City',1,1045,NULL,'24290',NULL,1228,36.617348,-82.5666,0,NULL,NULL,62),(167,49,1,1,0,'91Z Van Ness Blvd SW',91,'Z',NULL,'Van Ness','Blvd','SW',NULL,NULL,NULL,NULL,'Ashkum',1,1012,NULL,'60911',NULL,1228,40.883641,-87.9667,0,NULL,NULL,63),(168,136,1,1,0,'91Z Van Ness Blvd SW',91,'Z',NULL,'Van Ness','Blvd','SW',NULL,NULL,NULL,NULL,'Ashkum',1,1012,NULL,'60911',NULL,1228,40.883641,-87.9667,0,NULL,NULL,63),(169,147,1,1,0,'91Z Van Ness Blvd SW',91,'Z',NULL,'Van Ness','Blvd','SW',NULL,NULL,NULL,NULL,'Ashkum',1,1012,NULL,'60911',NULL,1228,40.883641,-87.9667,0,NULL,NULL,63),(170,161,1,1,0,'91Z Van Ness Blvd SW',91,'Z',NULL,'Van Ness','Blvd','SW',NULL,NULL,NULL,NULL,'Ashkum',1,1012,NULL,'60911',NULL,1228,40.883641,-87.9667,0,NULL,NULL,63),(171,171,1,1,0,'204K El Camino Way N',204,'K',NULL,'El Camino','Way','N',NULL,NULL,NULL,NULL,'Penokee',1,1015,NULL,'67659',NULL,1228,39.301053,-99.98755,0,NULL,NULL,64),(172,138,1,0,0,'204K El Camino Way N',204,'K',NULL,'El Camino','Way','N',NULL,NULL,NULL,NULL,'Penokee',1,1015,NULL,'67659',NULL,1228,39.301053,-99.98755,0,NULL,NULL,64),(173,133,1,1,0,'204K El Camino Way N',204,'K',NULL,'El Camino','Way','N',NULL,NULL,NULL,NULL,'Penokee',1,1015,NULL,'67659',NULL,1228,39.301053,-99.98755,0,NULL,NULL,64),(174,65,1,1,0,'639K Van Ness Dr NW',639,'K',NULL,'Van Ness','Dr','NW',NULL,NULL,NULL,NULL,'Waterbury',1,1006,NULL,'06720',NULL,1228,41.365709,-72.927507,0,NULL,NULL,NULL),(175,8,1,0,0,'342K Northpoint Dr N',342,'K',NULL,'Northpoint','Dr','N',NULL,NULL,NULL,NULL,'Redfield',1,1003,NULL,'72132',NULL,1228,34.443452,-92.1854,0,NULL,NULL,65),(176,80,1,1,0,'342K Northpoint Dr N',342,'K',NULL,'Northpoint','Dr','N',NULL,NULL,NULL,NULL,'Redfield',1,1003,NULL,'72132',NULL,1228,34.443452,-92.1854,0,NULL,NULL,65),(177,13,1,1,0,'342K Northpoint Dr N',342,'K',NULL,'Northpoint','Dr','N',NULL,NULL,NULL,NULL,'Redfield',1,1003,NULL,'72132',NULL,1228,34.443452,-92.1854,0,NULL,NULL,65),(178,175,1,1,0,'933X Martin Luther King Ave E',933,'X',NULL,'Martin Luther King','Ave','E',NULL,NULL,NULL,NULL,'Oral',1,1040,NULL,'57766',NULL,1228,43.364717,-103.23035,0,NULL,NULL,NULL),(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,182,1,1,0,'454W Lincoln Ave N',454,'W',NULL,'Lincoln','Ave','N',NULL,NULL,NULL,NULL,'Hedrick',1,1014,NULL,'52563',NULL,1228,41.17196,-92.28491,0,NULL,NULL,NULL),(2,144,1,1,0,'5J Woodbridge Ave SE',5,'J',NULL,'Woodbridge','Ave','SE',NULL,NULL,NULL,NULL,'Dayton',1,1045,NULL,'22821',NULL,1228,38.436873,-78.99039,0,NULL,NULL,NULL),(3,8,1,1,0,'481N Dowlen St S',481,'N',NULL,'Dowlen','St','S',NULL,NULL,NULL,NULL,'Saint Petersburg',1,1008,NULL,'33702',NULL,1228,27.843052,-82.6449,0,NULL,NULL,NULL),(4,54,1,1,0,'492K Jackson Pl N',492,'K',NULL,'Jackson','Pl','N',NULL,NULL,NULL,NULL,'Omega',1,1035,NULL,'73764',NULL,1228,35.867757,-98.17995,0,NULL,NULL,NULL),(5,113,1,1,0,'328Q Main Rd SW',328,'Q',NULL,'Main','Rd','SW',NULL,NULL,NULL,NULL,'Cashiers',1,1032,NULL,'28717',NULL,1228,35.103251,-83.09538,0,NULL,NULL,NULL),(6,80,1,1,0,'125D Van Ness Path S',125,'D',NULL,'Van Ness','Path','S',NULL,NULL,NULL,NULL,'Liberty',1,1037,NULL,'16930',NULL,1228,41.557848,-77.13755,0,NULL,NULL,NULL),(7,27,1,1,0,'686M Northpoint Ave E',686,'M',NULL,'Northpoint','Ave','E',NULL,NULL,NULL,NULL,'Shelton',1,1026,NULL,'68876',NULL,1228,40.786865,-98.74701,0,NULL,NULL,NULL),(8,103,1,1,0,'402H Lincoln Dr NW',402,'H',NULL,'Lincoln','Dr','NW',NULL,NULL,NULL,NULL,'Auburn University',1,1000,NULL,'36849',NULL,1228,32.602434,-85.4858,0,NULL,NULL,NULL),(9,162,1,1,0,'371D Caulder Ln S',371,'D',NULL,'Caulder','Ln','S',NULL,NULL,NULL,NULL,'Ahsahka',1,1011,NULL,'83520',NULL,1228,46.505902,-116.3187,0,NULL,NULL,NULL),(10,19,1,1,0,'596T Beech Way SW',596,'T',NULL,'Beech','Way','SW',NULL,NULL,NULL,NULL,'Tulsa',1,1035,NULL,'74134',NULL,1228,36.114797,-95.82105,0,NULL,NULL,NULL),(11,65,1,1,0,'232H Maple Path W',232,'H',NULL,'Maple','Path','W',NULL,NULL,NULL,NULL,'Lilburn',1,1009,NULL,'30047',NULL,1228,33.872371,-84.11655,0,NULL,NULL,NULL),(12,6,1,1,0,'126B El Camino Way E',126,'B',NULL,'El Camino','Way','E',NULL,NULL,NULL,NULL,'Russellville',1,1000,NULL,'35659',NULL,1228,34.536839,-87.704179,0,NULL,NULL,NULL),(13,117,1,1,0,'563O Woodbridge Ave NW',563,'O',NULL,'Woodbridge','Ave','NW',NULL,NULL,NULL,NULL,'Denton',1,1019,NULL,'21629',NULL,1228,38.871895,-75.8273,0,NULL,NULL,NULL),(14,32,1,1,0,'862B Woodbridge Way E',862,'B',NULL,'Woodbridge','Way','E',NULL,NULL,NULL,NULL,'Valdosta',1,1009,NULL,'31606',NULL,1228,30.802411,-83.19624,0,NULL,NULL,NULL),(15,69,1,1,0,'108Z Northpoint Dr NW',108,'Z',NULL,'Northpoint','Dr','NW',NULL,NULL,NULL,NULL,'Applegate',1,1004,NULL,'95703',NULL,1228,38.995732,-120.99703,0,NULL,NULL,NULL),(16,34,1,1,0,'495N Main Dr SW',495,'N',NULL,'Main','Dr','SW',NULL,NULL,NULL,NULL,'Burlington',1,1012,NULL,'60109',NULL,1228,42.052112,-88.54829,0,NULL,NULL,NULL),(17,180,1,1,0,'630T Beech Rd NW',630,'T',NULL,'Beech','Rd','NW',NULL,NULL,NULL,NULL,'New Market',1,1019,NULL,'21774',NULL,1228,39.408627,-77.28676,0,NULL,NULL,NULL),(18,196,1,1,0,'915H El Camino Ln S',915,'H',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Auburn',1,1031,NULL,'13021',NULL,1228,42.922273,-76.55882,0,NULL,NULL,NULL),(19,87,1,1,0,'824K Martin Luther King Way W',824,'K',NULL,'Martin Luther King','Way','W',NULL,NULL,NULL,NULL,'May',1,1035,NULL,'73851',NULL,1228,36.614425,-99.77153,0,NULL,NULL,NULL),(20,26,1,1,0,'558D Van Ness Pl N',558,'D',NULL,'Van Ness','Pl','N',NULL,NULL,NULL,NULL,'Birch River',1,1047,NULL,'26610',NULL,1228,38.465291,-80.72323,0,NULL,NULL,NULL),(21,93,1,1,0,'126N Beech Blvd W',126,'N',NULL,'Beech','Blvd','W',NULL,NULL,NULL,NULL,'Mesa',1,1002,NULL,'85202',NULL,1228,33.381097,-111.8756,0,NULL,NULL,NULL),(22,126,1,1,0,'612N Woodbridge Way N',612,'N',NULL,'Woodbridge','Way','N',NULL,NULL,NULL,NULL,'Chester',1,1037,NULL,'19013',NULL,1228,39.84697,-75.37444,0,NULL,NULL,NULL),(23,200,1,1,0,'589C Green Blvd N',589,'C',NULL,'Green','Blvd','N',NULL,NULL,NULL,NULL,'Somers',1,1031,NULL,'10589',NULL,1228,41.331587,-73.69234,0,NULL,NULL,NULL),(24,150,1,1,0,'566I Lincoln Ln N',566,'I',NULL,'Lincoln','Ln','N',NULL,NULL,NULL,NULL,'New Orleans',1,1017,NULL,'70185',NULL,1228,30.032997,-89.882564,0,NULL,NULL,NULL),(25,51,1,1,0,'333K Second Pl SW',333,'K',NULL,'Second','Pl','SW',NULL,NULL,NULL,NULL,'Santiago',1,1022,NULL,'55377',NULL,1228,45.540181,-93.815434,0,NULL,NULL,NULL),(26,170,1,1,0,'761P Maple Way W',761,'P',NULL,'Maple','Way','W',NULL,NULL,NULL,NULL,'Celestine',1,1013,NULL,'47521',NULL,1228,38.387935,-86.74717,0,NULL,NULL,NULL),(27,99,1,1,0,'296Q Lincoln Dr S',296,'Q',NULL,'Lincoln','Dr','S',NULL,NULL,NULL,NULL,'Chester',1,1009,NULL,'31012',NULL,1228,32.396381,-83.16892,0,NULL,NULL,NULL),(28,181,1,1,0,'709L Green Path N',709,'L',NULL,'Green','Path','N',NULL,NULL,NULL,NULL,'Tunnel City',1,1048,NULL,'54662',NULL,1228,44.003084,-90.562005,0,NULL,NULL,NULL),(29,33,1,1,0,'198M Cadell Pl W',198,'M',NULL,'Cadell','Pl','W',NULL,NULL,NULL,NULL,'Fontana',1,1015,NULL,'66026',NULL,1228,38.404804,-94.85125,0,NULL,NULL,NULL),(30,184,1,1,0,'889N Bay St E',889,'N',NULL,'Bay','St','E',NULL,NULL,NULL,NULL,'Rangely',1,1005,NULL,'81648',NULL,1228,40.011447,-108.77528,0,NULL,NULL,NULL),(31,194,1,1,0,'17D Northpoint Ln E',17,'D',NULL,'Northpoint','Ln','E',NULL,NULL,NULL,NULL,'Stafford',1,1042,NULL,'77497',NULL,1228,29.525461,-95.756462,0,NULL,NULL,NULL),(32,189,1,1,0,'517V Maple Way S',517,'V',NULL,'Maple','Way','S',NULL,NULL,NULL,NULL,'Chestertown',1,1019,NULL,'21690',NULL,1228,39.034637,-76.092127,0,NULL,NULL,NULL),(33,50,1,1,0,'738B Bay St NE',738,'B',NULL,'Bay','St','NE',NULL,NULL,NULL,NULL,'Detroit',1,1021,NULL,'48216',NULL,1228,42.328338,-83.07805,0,NULL,NULL,NULL),(34,153,1,1,0,'196W Pine Pl S',196,'W',NULL,'Pine','Pl','S',NULL,NULL,NULL,NULL,'Hotevilla',1,1002,NULL,'86030',NULL,1228,36.115339,-110.61562,0,NULL,NULL,NULL),(35,115,1,1,0,'800U Jackson Way SE',800,'U',NULL,'Jackson','Way','SE',NULL,NULL,NULL,NULL,'Lyons',1,1009,NULL,'30436',NULL,1228,32.177508,-82.30448,0,NULL,NULL,NULL),(36,172,1,1,0,'91F Northpoint Pl SE',91,'F',NULL,'Northpoint','Pl','SE',NULL,NULL,NULL,NULL,'Indianapolis',1,1013,NULL,'46266',NULL,1228,39.779492,-86.132837,0,NULL,NULL,NULL),(37,98,1,1,0,'665N College Dr N',665,'N',NULL,'College','Dr','N',NULL,NULL,NULL,NULL,'Rhinelander',1,1048,NULL,'54501',NULL,1228,45.64672,-89.39408,0,NULL,NULL,NULL),(38,163,1,1,0,'146V Maple Path E',146,'V',NULL,'Maple','Path','E',NULL,NULL,NULL,NULL,'Trinity Center',1,1004,NULL,'96091',NULL,1228,41.004651,-122.71541,0,NULL,NULL,NULL),(39,139,1,1,0,'544Y Beech St W',544,'Y',NULL,'Beech','St','W',NULL,NULL,NULL,NULL,'Tampa',1,1008,NULL,'33672',NULL,1228,27.871964,-82.438841,0,NULL,NULL,NULL),(40,49,1,1,0,'832F Bay Path NE',832,'F',NULL,'Bay','Path','NE',NULL,NULL,NULL,NULL,'Belmont',1,1004,NULL,'94002',NULL,1228,37.516687,-122.29026,0,NULL,NULL,NULL),(41,123,1,1,0,'112Q Martin Luther King Ave S',112,'Q',NULL,'Martin Luther King','Ave','S',NULL,NULL,NULL,NULL,'Biddeford',1,1018,NULL,'04005',NULL,1228,43.480704,-70.45871,0,NULL,NULL,NULL),(42,22,1,1,0,'297O Main Way E',297,'O',NULL,'Main','Way','E',NULL,NULL,NULL,NULL,'Edinburg',1,1033,NULL,'58227',NULL,1228,48.527038,-97.90612,0,NULL,NULL,NULL),(43,71,1,1,0,'501T Northpoint Ln N',501,'T',NULL,'Northpoint','Ln','N',NULL,NULL,NULL,NULL,'Columbia',1,1039,NULL,'29250',NULL,1228,34.005992,-80.970766,0,NULL,NULL,NULL),(44,30,1,1,0,'427K Main Ln S',427,'K',NULL,'Main','Ln','S',NULL,NULL,NULL,NULL,'Hobart',1,1013,NULL,'46342',NULL,1228,41.533786,-87.26403,0,NULL,NULL,NULL),(45,5,1,1,0,'749V Northpoint Pl NW',749,'V',NULL,'Northpoint','Pl','NW',NULL,NULL,NULL,NULL,'York Haven',1,1037,NULL,'17370',NULL,1228,40.120806,-76.76352,0,NULL,NULL,NULL),(46,101,1,1,0,'68T Lincoln Rd SW',68,'T',NULL,'Lincoln','Rd','SW',NULL,NULL,NULL,NULL,'Glenwood',1,1009,NULL,'30428',NULL,1228,32.190739,-82.69115,0,NULL,NULL,NULL),(47,60,1,1,0,'836Y Second Blvd W',836,'Y',NULL,'Second','Blvd','W',NULL,NULL,NULL,NULL,'Denver',1,1005,NULL,'80216',NULL,1228,39.784622,-104.96214,0,NULL,NULL,NULL),(48,125,1,1,0,'164G Caulder St W',164,'G',NULL,'Caulder','St','W',NULL,NULL,NULL,NULL,'Humboldt',1,1026,NULL,'68376',NULL,1228,40.172733,-95.9426,0,NULL,NULL,NULL),(49,29,1,1,0,'840A Van Ness Dr S',840,'A',NULL,'Van Ness','Dr','S',NULL,NULL,NULL,NULL,'Germantown',1,1041,NULL,'38183',NULL,1228,35.201738,-89.971538,0,NULL,NULL,NULL),(50,130,1,1,0,'967E Beech Pl NW',967,'E',NULL,'Beech','Pl','NW',NULL,NULL,NULL,NULL,'Camden',1,1000,NULL,'36726',NULL,1228,32.008444,-87.25911,0,NULL,NULL,NULL),(51,12,1,1,0,'751Z Maple Ln N',751,'Z',NULL,'Maple','Ln','N',NULL,NULL,NULL,NULL,'Clemons',1,1014,NULL,'50051',NULL,1228,42.13644,-93.14222,0,NULL,NULL,NULL),(52,45,1,1,0,'666P Maple Ave SE',666,'P',NULL,'Maple','Ave','SE',NULL,NULL,NULL,NULL,'Bowmanstown',1,1037,NULL,'18030',NULL,1228,40.80116,-75.66158,0,NULL,NULL,NULL),(53,198,1,1,0,'512I El Camino Ln S',512,'I',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Lubbock',1,1042,NULL,'79415',NULL,1228,33.62386,-101.88057,0,NULL,NULL,NULL),(54,193,1,1,0,'650K Beech Way S',650,'K',NULL,'Beech','Way','S',NULL,NULL,NULL,NULL,'Chesapeake',1,1045,NULL,'23322',NULL,1228,36.687543,-76.22905,0,NULL,NULL,NULL),(55,147,1,1,0,'714G Lincoln St S',714,'G',NULL,'Lincoln','St','S',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20026',NULL,1228,38.893311,-77.014647,0,NULL,NULL,NULL),(56,61,1,1,0,'94N Lincoln Blvd E',94,'N',NULL,'Lincoln','Blvd','E',NULL,NULL,NULL,NULL,'Stanwood',1,1014,NULL,'52337',NULL,1228,41.888096,-91.14794,0,NULL,NULL,NULL),(57,140,1,1,0,'269H Caulder Rd SE',269,'H',NULL,'Caulder','Rd','SE',NULL,NULL,NULL,NULL,'Vermontville',1,1031,NULL,'12989',NULL,1228,44.519178,-74.06053,0,NULL,NULL,NULL),(58,13,1,1,0,'729J Martin Luther King Way SE',729,'J',NULL,'Martin Luther King','Way','SE',NULL,NULL,NULL,NULL,'Gordon',1,1048,NULL,'54838',NULL,1228,46.233591,-91.81795,0,NULL,NULL,NULL),(59,94,1,1,0,'278A Maple St E',278,'A',NULL,'Maple','St','E',NULL,NULL,NULL,NULL,'Garden',1,1021,NULL,'49835',NULL,1228,45.769159,-86.55894,0,NULL,NULL,NULL),(60,188,1,1,0,'297U Beech Dr SW',297,'U',NULL,'Beech','Dr','SW',NULL,NULL,NULL,NULL,'Columbus',1,1009,NULL,'31997',NULL,1228,32.491005,-84.874123,0,NULL,NULL,NULL),(61,131,1,1,0,'790H Bay Dr NE',790,'H',NULL,'Bay','Dr','NE',NULL,NULL,NULL,NULL,'Cohagen',1,1025,NULL,'59322',NULL,1228,47.049949,-106.58157,0,NULL,NULL,NULL),(62,155,1,1,0,'209K Caulder Path SE',209,'K',NULL,'Caulder','Path','SE',NULL,NULL,NULL,NULL,'Marsland',1,1026,NULL,'69354',NULL,1228,42.485817,-103.21227,0,NULL,NULL,NULL),(63,89,1,1,0,'183Z Pine Ave E',183,'Z',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'Fort Jennings',1,1034,NULL,'45844',NULL,1228,40.914909,-84.28717,0,NULL,NULL,NULL),(64,38,1,1,0,'694O Main Ave NW',694,'O',NULL,'Main','Ave','NW',NULL,NULL,NULL,NULL,'Galena',1,1019,NULL,'21635',NULL,1228,39.349536,-75.85332,0,NULL,NULL,NULL),(65,82,1,1,0,'61O Cadell Pl N',61,'O',NULL,'Cadell','Pl','N',NULL,NULL,NULL,NULL,'Acton',1,1018,NULL,'04001',NULL,1228,43.548123,-70.93189,0,NULL,NULL,NULL),(66,31,1,1,0,'374T College Ave N',374,'T',NULL,'College','Ave','N',NULL,NULL,NULL,NULL,'Adger',1,1000,NULL,'35006',NULL,1228,33.451714,-87.23957,0,NULL,NULL,NULL),(67,95,1,1,0,'615X College Ave N',615,'X',NULL,'College','Ave','N',NULL,NULL,NULL,NULL,'Powells Point',1,1032,NULL,'27966',NULL,1228,36.13655,-75.82653,0,NULL,NULL,NULL),(68,165,1,1,0,'409F Maple Way W',409,'F',NULL,'Maple','Way','W',NULL,NULL,NULL,NULL,'Kinston',1,1032,NULL,'28502',NULL,1228,35.288558,-77.662614,0,NULL,NULL,NULL),(69,53,3,1,0,'847K Cadell Ave E',847,'K',NULL,'Cadell','Ave','E',NULL,'Cuffe Parade',NULL,NULL,'Columbus',1,1009,NULL,'31901',NULL,1228,32.471492,-84.98005,0,NULL,NULL,NULL),(70,124,3,1,0,'874U Caulder Way E',874,'U',NULL,'Caulder','Way','E',NULL,'Cuffe Parade',NULL,NULL,'Brunswick',1,1034,NULL,'44149',NULL,1228,41.316784,-81.854005,0,NULL,NULL,NULL),(71,25,2,1,0,'874U Caulder Way E',874,'U',NULL,'Caulder','Way','E',NULL,'Cuffe Parade',NULL,NULL,'Brunswick',1,1034,NULL,'44149',NULL,1228,41.316784,-81.854005,0,NULL,NULL,70),(72,174,3,1,0,'980J Pine Ave S',980,'J',NULL,'Pine','Ave','S',NULL,'Community Relations',NULL,NULL,'Tustin',1,1004,NULL,'92780',NULL,1228,33.741651,-117.82127,0,NULL,NULL,NULL),(73,154,3,1,0,'740V Northpoint Path SE',740,'V',NULL,'Northpoint','Path','SE',NULL,'Churchgate',NULL,NULL,'Sprague River',1,1036,NULL,'97639',NULL,1228,42.440695,-121.43464,0,NULL,NULL,NULL),(74,49,2,0,0,'740V Northpoint Path SE',740,'V',NULL,'Northpoint','Path','SE',NULL,'Churchgate',NULL,NULL,'Sprague River',1,1036,NULL,'97639',NULL,1228,42.440695,-121.43464,0,NULL,NULL,73),(75,86,3,1,0,'943H El Camino Dr S',943,'H',NULL,'El Camino','Dr','S',NULL,'Attn: Development',NULL,NULL,'Saint Petersburg',1,1037,NULL,'16054',NULL,1228,41.160944,-79.65393,0,NULL,NULL,NULL),(76,162,2,0,0,'943H El Camino Dr S',943,'H',NULL,'El Camino','Dr','S',NULL,'Attn: Development',NULL,NULL,'Saint Petersburg',1,1037,NULL,'16054',NULL,1228,41.160944,-79.65393,0,NULL,NULL,75),(77,67,3,1,0,'200E El Camino St NW',200,'E',NULL,'El Camino','St','NW',NULL,'Editorial Dept',NULL,NULL,'Wellston',1,1034,NULL,'45692',NULL,1228,39.117212,-82.54811,0,NULL,NULL,NULL),(78,17,2,1,0,'200E El Camino St NW',200,'E',NULL,'El Camino','St','NW',NULL,'Editorial Dept',NULL,NULL,'Wellston',1,1034,NULL,'45692',NULL,1228,39.117212,-82.54811,0,NULL,NULL,77),(79,41,3,1,0,'797A Lincoln St SE',797,'A',NULL,'Lincoln','St','SE',NULL,'Receiving',NULL,NULL,'Baytown',1,1042,NULL,'77522',NULL,1228,29.83399,-95.434241,0,NULL,NULL,NULL),(80,47,2,1,0,'797A Lincoln St SE',797,'A',NULL,'Lincoln','St','SE',NULL,'Receiving',NULL,NULL,'Baytown',1,1042,NULL,'77522',NULL,1228,29.83399,-95.434241,0,NULL,NULL,79),(81,120,3,1,0,'911P Main Ave SE',911,'P',NULL,'Main','Ave','SE',NULL,'Attn: Accounting',NULL,NULL,'Powhatan Point',1,1034,NULL,'43942',NULL,1228,39.861984,-80.82023,0,NULL,NULL,NULL),(82,163,2,0,0,'911P Main Ave SE',911,'P',NULL,'Main','Ave','SE',NULL,'Attn: Accounting',NULL,NULL,'Powhatan Point',1,1034,NULL,'43942',NULL,1228,39.861984,-80.82023,0,NULL,NULL,81),(83,109,3,1,0,'174L Maple Dr S',174,'L',NULL,'Maple','Dr','S',NULL,'Attn: Development',NULL,NULL,'Rio Rico',1,1002,NULL,'85648',NULL,1228,31.488579,-110.98926,0,NULL,NULL,NULL),(84,132,2,1,0,'174L Maple Dr S',174,'L',NULL,'Maple','Dr','S',NULL,'Attn: Development',NULL,NULL,'Rio Rico',1,1002,NULL,'85648',NULL,1228,31.488579,-110.98926,0,NULL,NULL,83),(85,57,3,1,0,'656E Main Dr NW',656,'E',NULL,'Main','Dr','NW',NULL,'Churchgate',NULL,NULL,'Simon',1,1047,NULL,'24882',NULL,1228,37.609388,-81.75668,0,NULL,NULL,NULL),(86,148,3,1,0,'599J Jackson Ln SE',599,'J',NULL,'Jackson','Ln','SE',NULL,'Mailstop 101',NULL,NULL,'Upperville',1,1045,NULL,'20185',NULL,1228,38.992978,-77.879855,0,NULL,NULL,NULL),(87,176,3,1,0,'94Q College Dr SW',94,'Q',NULL,'College','Dr','SW',NULL,'Cuffe Parade',NULL,NULL,'New York',1,1031,NULL,'10043',NULL,1228,40.780751,-73.977182,0,NULL,NULL,NULL),(88,84,2,1,0,'94Q College Dr SW',94,'Q',NULL,'College','Dr','SW',NULL,'Cuffe Parade',NULL,NULL,'New York',1,1031,NULL,'10043',NULL,1228,40.780751,-73.977182,0,NULL,NULL,87),(89,185,3,1,0,'445D Northpoint Blvd W',445,'D',NULL,'Northpoint','Blvd','W',NULL,'Editorial Dept',NULL,NULL,'Moore',1,1042,NULL,'78057',NULL,1228,29.047934,-99.0416,0,NULL,NULL,NULL),(90,105,3,1,0,'368Z States Dr E',368,'Z',NULL,'States','Dr','E',NULL,'c/o PO Plus',NULL,NULL,'Vancouver',1,1046,NULL,'98665',NULL,1228,45.681271,-122.66712,0,NULL,NULL,NULL),(91,78,3,1,0,'283M Main Pl S',283,'M',NULL,'Main','Pl','S',NULL,'Attn: Development',NULL,NULL,'Buffalo',1,1031,NULL,'14211',NULL,1228,42.907358,-78.82355,0,NULL,NULL,NULL),(92,5,2,0,0,'283M Main Pl S',283,'M',NULL,'Main','Pl','S',NULL,'Attn: Development',NULL,NULL,'Buffalo',1,1031,NULL,'14211',NULL,1228,42.907358,-78.82355,0,NULL,NULL,91),(93,97,3,1,0,'842U Main Ln SW',842,'U',NULL,'Main','Ln','SW',NULL,'Churchgate',NULL,NULL,'Vernalis',1,1004,NULL,'95385',NULL,1228,37.609781,-121.26784,0,NULL,NULL,NULL),(94,158,2,1,0,'842U Main Ln SW',842,'U',NULL,'Main','Ln','SW',NULL,'Churchgate',NULL,NULL,'Vernalis',1,1004,NULL,'95385',NULL,1228,37.609781,-121.26784,0,NULL,NULL,93),(95,141,3,1,0,'30P Dowlen Ave S',30,'P',NULL,'Dowlen','Ave','S',NULL,'Donor Relations',NULL,NULL,'Carmel',1,1004,NULL,'93923',NULL,1228,36.517261,-121.89436,0,NULL,NULL,NULL),(96,161,3,1,0,'443I Maple Path NW',443,'I',NULL,'Maple','Path','NW',NULL,'Mailstop 101',NULL,NULL,'Leeds',1,1031,NULL,'12451',NULL,1228,42.281117,-73.94006,0,NULL,NULL,NULL),(97,59,2,1,0,'443I Maple Path NW',443,'I',NULL,'Maple','Path','NW',NULL,'Mailstop 101',NULL,NULL,'Leeds',1,1031,NULL,'12451',NULL,1228,42.281117,-73.94006,0,NULL,NULL,96),(98,164,3,1,0,'2W Bay St NE',2,'W',NULL,'Bay','St','NE',NULL,'Cuffe Parade',NULL,NULL,'Robersonville',1,1032,NULL,'27871',NULL,1228,35.821436,-77.26186,0,NULL,NULL,NULL),(99,107,2,1,0,'2W Bay St NE',2,'W',NULL,'Bay','St','NE',NULL,'Cuffe Parade',NULL,NULL,'Robersonville',1,1032,NULL,'27871',NULL,1228,35.821436,-77.26186,0,NULL,NULL,98),(100,119,3,1,0,'360J Martin Luther King Pl S',360,'J',NULL,'Martin Luther King','Pl','S',NULL,'Receiving',NULL,NULL,'Tacoma',1,1046,NULL,'98450',NULL,1228,47.066193,-122.113223,0,NULL,NULL,NULL),(101,146,2,1,0,'360J Martin Luther King Pl S',360,'J',NULL,'Martin Luther King','Pl','S',NULL,'Receiving',NULL,NULL,'Tacoma',1,1046,NULL,'98450',NULL,1228,47.066193,-122.113223,0,NULL,NULL,100),(102,192,1,1,0,'840A Van Ness Dr S',840,'A',NULL,'Van Ness','Dr','S',NULL,NULL,NULL,NULL,'Germantown',1,1041,NULL,'38183',NULL,1228,35.201738,-89.971538,0,NULL,NULL,49),(103,91,1,1,0,'840A Van Ness Dr S',840,'A',NULL,'Van Ness','Dr','S',NULL,NULL,NULL,NULL,'Germantown',1,1041,NULL,'38183',NULL,1228,35.201738,-89.971538,0,NULL,NULL,49),(104,183,1,1,0,'840A Van Ness Dr S',840,'A',NULL,'Van Ness','Dr','S',NULL,NULL,NULL,NULL,'Germantown',1,1041,NULL,'38183',NULL,1228,35.201738,-89.971538,0,NULL,NULL,49),(105,125,1,0,0,'840A Van Ness Dr S',840,'A',NULL,'Van Ness','Dr','S',NULL,NULL,NULL,NULL,'Germantown',1,1041,NULL,'38183',NULL,1228,35.201738,-89.971538,0,NULL,NULL,49),(106,151,1,1,0,'967E Beech Pl NW',967,'E',NULL,'Beech','Pl','NW',NULL,NULL,NULL,NULL,'Camden',1,1000,NULL,'36726',NULL,1228,32.008444,-87.25911,0,NULL,NULL,50),(107,111,1,1,0,'967E Beech Pl NW',967,'E',NULL,'Beech','Pl','NW',NULL,NULL,NULL,NULL,'Camden',1,1000,NULL,'36726',NULL,1228,32.008444,-87.25911,0,NULL,NULL,50),(108,129,1,1,0,'967E Beech Pl NW',967,'E',NULL,'Beech','Pl','NW',NULL,NULL,NULL,NULL,'Camden',1,1000,NULL,'36726',NULL,1228,32.008444,-87.25911,0,NULL,NULL,50),(109,14,1,1,0,'967E Beech Pl NW',967,'E',NULL,'Beech','Pl','NW',NULL,NULL,NULL,NULL,'Camden',1,1000,NULL,'36726',NULL,1228,32.008444,-87.25911,0,NULL,NULL,50),(110,55,1,1,0,'751Z Maple Ln N',751,'Z',NULL,'Maple','Ln','N',NULL,NULL,NULL,NULL,'Clemons',1,1014,NULL,'50051',NULL,1228,42.13644,-93.14222,0,NULL,NULL,51),(111,171,1,1,0,'751Z Maple Ln N',751,'Z',NULL,'Maple','Ln','N',NULL,NULL,NULL,NULL,'Clemons',1,1014,NULL,'50051',NULL,1228,42.13644,-93.14222,0,NULL,NULL,51),(112,191,1,1,0,'751Z Maple Ln N',751,'Z',NULL,'Maple','Ln','N',NULL,NULL,NULL,NULL,'Clemons',1,1014,NULL,'50051',NULL,1228,42.13644,-93.14222,0,NULL,NULL,51),(113,143,1,1,0,'751Z Maple Ln N',751,'Z',NULL,'Maple','Ln','N',NULL,NULL,NULL,NULL,'Clemons',1,1014,NULL,'50051',NULL,1228,42.13644,-93.14222,0,NULL,NULL,51),(114,77,1,1,0,'666P Maple Ave SE',666,'P',NULL,'Maple','Ave','SE',NULL,NULL,NULL,NULL,'Bowmanstown',1,1037,NULL,'18030',NULL,1228,40.80116,-75.66158,0,NULL,NULL,52),(115,68,1,1,0,'666P Maple Ave SE',666,'P',NULL,'Maple','Ave','SE',NULL,NULL,NULL,NULL,'Bowmanstown',1,1037,NULL,'18030',NULL,1228,40.80116,-75.66158,0,NULL,NULL,52),(116,135,1,1,0,'666P Maple Ave SE',666,'P',NULL,'Maple','Ave','SE',NULL,NULL,NULL,NULL,'Bowmanstown',1,1037,NULL,'18030',NULL,1228,40.80116,-75.66158,0,NULL,NULL,52),(117,28,1,1,0,'666P Maple Ave SE',666,'P',NULL,'Maple','Ave','SE',NULL,NULL,NULL,NULL,'Bowmanstown',1,1037,NULL,'18030',NULL,1228,40.80116,-75.66158,0,NULL,NULL,52),(118,70,1,1,0,'512I El Camino Ln S',512,'I',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Lubbock',1,1042,NULL,'79415',NULL,1228,33.62386,-101.88057,0,NULL,NULL,53),(119,84,1,0,0,'512I El Camino Ln S',512,'I',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Lubbock',1,1042,NULL,'79415',NULL,1228,33.62386,-101.88057,0,NULL,NULL,53),(120,74,1,1,0,'512I El Camino Ln S',512,'I',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Lubbock',1,1042,NULL,'79415',NULL,1228,33.62386,-101.88057,0,NULL,NULL,53),(121,121,1,1,0,'512I El Camino Ln S',512,'I',NULL,'El Camino','Ln','S',NULL,NULL,NULL,NULL,'Lubbock',1,1042,NULL,'79415',NULL,1228,33.62386,-101.88057,0,NULL,NULL,53),(122,42,1,1,0,'650K Beech Way S',650,'K',NULL,'Beech','Way','S',NULL,NULL,NULL,NULL,'Chesapeake',1,1045,NULL,'23322',NULL,1228,36.687543,-76.22905,0,NULL,NULL,54),(123,133,1,1,0,'650K Beech Way S',650,'K',NULL,'Beech','Way','S',NULL,NULL,NULL,NULL,'Chesapeake',1,1045,NULL,'23322',NULL,1228,36.687543,-76.22905,0,NULL,NULL,54),(124,47,1,0,0,'650K Beech Way S',650,'K',NULL,'Beech','Way','S',NULL,NULL,NULL,NULL,'Chesapeake',1,1045,NULL,'23322',NULL,1228,36.687543,-76.22905,0,NULL,NULL,54),(125,17,1,0,0,'326H Lincoln St S',326,'H',NULL,'Lincoln','St','S',NULL,NULL,NULL,NULL,'Armbrust',1,1037,NULL,'15616',NULL,1228,40.360223,-79.439801,0,NULL,NULL,NULL),(126,197,1,1,0,'714G Lincoln St S',714,'G',NULL,'Lincoln','St','S',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20026',NULL,1228,38.893311,-77.014647,0,NULL,NULL,55),(127,186,1,1,0,'714G Lincoln St S',714,'G',NULL,'Lincoln','St','S',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20026',NULL,1228,38.893311,-77.014647,0,NULL,NULL,55),(128,160,1,1,0,'714G Lincoln St S',714,'G',NULL,'Lincoln','St','S',NULL,NULL,NULL,NULL,'Washington',1,1050,NULL,'20026',NULL,1228,38.893311,-77.014647,0,NULL,NULL,55),(129,190,1,1,0,'126R Cadell St NW',126,'R',NULL,'Cadell','St','NW',NULL,NULL,NULL,NULL,'Morning View',1,1016,NULL,'41063',NULL,1228,38.842166,-84.48802,0,NULL,NULL,NULL),(130,75,1,1,0,'94N Lincoln Blvd E',94,'N',NULL,'Lincoln','Blvd','E',NULL,NULL,NULL,NULL,'Stanwood',1,1014,NULL,'52337',NULL,1228,41.888096,-91.14794,0,NULL,NULL,56),(131,112,1,1,0,'94N Lincoln Blvd E',94,'N',NULL,'Lincoln','Blvd','E',NULL,NULL,NULL,NULL,'Stanwood',1,1014,NULL,'52337',NULL,1228,41.888096,-91.14794,0,NULL,NULL,56),(132,195,1,1,0,'94N Lincoln Blvd E',94,'N',NULL,'Lincoln','Blvd','E',NULL,NULL,NULL,NULL,'Stanwood',1,1014,NULL,'52337',NULL,1228,41.888096,-91.14794,0,NULL,NULL,56),(133,178,1,1,0,'94N Lincoln Blvd E',94,'N',NULL,'Lincoln','Blvd','E',NULL,NULL,NULL,NULL,'Stanwood',1,1014,NULL,'52337',NULL,1228,41.888096,-91.14794,0,NULL,NULL,56),(134,132,1,0,0,'269H Caulder Rd SE',269,'H',NULL,'Caulder','Rd','SE',NULL,NULL,NULL,NULL,'Vermontville',1,1031,NULL,'12989',NULL,1228,44.519178,-74.06053,0,NULL,NULL,57),(135,76,1,1,0,'269H Caulder Rd SE',269,'H',NULL,'Caulder','Rd','SE',NULL,NULL,NULL,NULL,'Vermontville',1,1031,NULL,'12989',NULL,1228,44.519178,-74.06053,0,NULL,NULL,57),(136,36,1,1,0,'269H Caulder Rd SE',269,'H',NULL,'Caulder','Rd','SE',NULL,NULL,NULL,NULL,'Vermontville',1,1031,NULL,'12989',NULL,1228,44.519178,-74.06053,0,NULL,NULL,57),(137,43,1,1,0,'269H Caulder Rd SE',269,'H',NULL,'Caulder','Rd','SE',NULL,NULL,NULL,NULL,'Vermontville',1,1031,NULL,'12989',NULL,1228,44.519178,-74.06053,0,NULL,NULL,57),(138,179,1,1,0,'729J Martin Luther King Way SE',729,'J',NULL,'Martin Luther King','Way','SE',NULL,NULL,NULL,NULL,'Gordon',1,1048,NULL,'54838',NULL,1228,46.233591,-91.81795,0,NULL,NULL,58),(139,88,1,1,0,'729J Martin Luther King Way SE',729,'J',NULL,'Martin Luther King','Way','SE',NULL,NULL,NULL,NULL,'Gordon',1,1048,NULL,'54838',NULL,1228,46.233591,-91.81795,0,NULL,NULL,58),(140,169,1,1,0,'729J Martin Luther King Way SE',729,'J',NULL,'Martin Luther King','Way','SE',NULL,NULL,NULL,NULL,'Gordon',1,1048,NULL,'54838',NULL,1228,46.233591,-91.81795,0,NULL,NULL,58),(141,158,1,0,0,'823M Martin Luther King Blvd NE',823,'M',NULL,'Martin Luther King','Blvd','NE',NULL,NULL,NULL,NULL,'Abell',1,1019,NULL,'20606',NULL,1228,38.250996,-76.73974,0,NULL,NULL,NULL),(142,40,1,1,0,'278A Maple St E',278,'A',NULL,'Maple','St','E',NULL,NULL,NULL,NULL,'Garden',1,1021,NULL,'49835',NULL,1228,45.769159,-86.55894,0,NULL,NULL,59),(143,114,1,1,0,'278A Maple St E',278,'A',NULL,'Maple','St','E',NULL,NULL,NULL,NULL,'Garden',1,1021,NULL,'49835',NULL,1228,45.769159,-86.55894,0,NULL,NULL,59),(144,35,1,1,0,'278A Maple St E',278,'A',NULL,'Maple','St','E',NULL,NULL,NULL,NULL,'Garden',1,1021,NULL,'49835',NULL,1228,45.769159,-86.55894,0,NULL,NULL,59),(145,39,1,1,0,'507H Jackson Dr E',507,'H',NULL,'Jackson','Dr','E',NULL,NULL,NULL,NULL,'Okawville',1,1012,NULL,'62271',NULL,1228,38.439574,-89.5286,0,NULL,NULL,NULL),(146,137,1,1,0,'297U Beech Dr SW',297,'U',NULL,'Beech','Dr','SW',NULL,NULL,NULL,NULL,'Columbus',1,1009,NULL,'31997',NULL,1228,32.491005,-84.874123,0,NULL,NULL,60),(147,24,1,1,0,'297U Beech Dr SW',297,'U',NULL,'Beech','Dr','SW',NULL,NULL,NULL,NULL,'Columbus',1,1009,NULL,'31997',NULL,1228,32.491005,-84.874123,0,NULL,NULL,60),(148,166,1,1,0,'297U Beech Dr SW',297,'U',NULL,'Beech','Dr','SW',NULL,NULL,NULL,NULL,'Columbus',1,1009,NULL,'31997',NULL,1228,32.491005,-84.874123,0,NULL,NULL,60),(149,138,1,1,0,'297U Beech Dr SW',297,'U',NULL,'Beech','Dr','SW',NULL,NULL,NULL,NULL,'Columbus',1,1009,NULL,'31997',NULL,1228,32.491005,-84.874123,0,NULL,NULL,60),(150,168,1,1,0,'790H Bay Dr NE',790,'H',NULL,'Bay','Dr','NE',NULL,NULL,NULL,NULL,'Cohagen',1,1025,NULL,'59322',NULL,1228,47.049949,-106.58157,0,NULL,NULL,61),(151,107,1,0,0,'790H Bay Dr NE',790,'H',NULL,'Bay','Dr','NE',NULL,NULL,NULL,NULL,'Cohagen',1,1025,NULL,'59322',NULL,1228,47.049949,-106.58157,0,NULL,NULL,61),(152,96,1,1,0,'790H Bay Dr NE',790,'H',NULL,'Bay','Dr','NE',NULL,NULL,NULL,NULL,'Cohagen',1,1025,NULL,'59322',NULL,1228,47.049949,-106.58157,0,NULL,NULL,61),(153,72,1,1,0,'533U Woodbridge Blvd SE',533,'U',NULL,'Woodbridge','Blvd','SE',NULL,NULL,NULL,NULL,'Whitman',1,1020,NULL,'02382',NULL,1228,42.08235,-70.93734,0,NULL,NULL,NULL),(154,3,1,1,0,'209K Caulder Path SE',209,'K',NULL,'Caulder','Path','SE',NULL,NULL,NULL,NULL,'Marsland',1,1026,NULL,'69354',NULL,1228,42.485817,-103.21227,0,NULL,NULL,62),(155,167,1,1,0,'209K Caulder Path SE',209,'K',NULL,'Caulder','Path','SE',NULL,NULL,NULL,NULL,'Marsland',1,1026,NULL,'69354',NULL,1228,42.485817,-103.21227,0,NULL,NULL,62),(156,2,1,1,0,'209K Caulder Path SE',209,'K',NULL,'Caulder','Path','SE',NULL,NULL,NULL,NULL,'Marsland',1,1026,NULL,'69354',NULL,1228,42.485817,-103.21227,0,NULL,NULL,62),(157,37,1,1,0,'209K Caulder Path SE',209,'K',NULL,'Caulder','Path','SE',NULL,NULL,NULL,NULL,'Marsland',1,1026,NULL,'69354',NULL,1228,42.485817,-103.21227,0,NULL,NULL,62),(158,149,1,1,0,'183Z Pine Ave E',183,'Z',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'Fort Jennings',1,1034,NULL,'45844',NULL,1228,40.914909,-84.28717,0,NULL,NULL,63),(159,20,1,1,0,'183Z Pine Ave E',183,'Z',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'Fort Jennings',1,1034,NULL,'45844',NULL,1228,40.914909,-84.28717,0,NULL,NULL,63),(160,116,1,1,0,'183Z Pine Ave E',183,'Z',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'Fort Jennings',1,1034,NULL,'45844',NULL,1228,40.914909,-84.28717,0,NULL,NULL,63),(161,25,1,0,0,'183Z Pine Ave E',183,'Z',NULL,'Pine','Ave','E',NULL,NULL,NULL,NULL,'Fort Jennings',1,1034,NULL,'45844',NULL,1228,40.914909,-84.28717,0,NULL,NULL,63),(162,145,1,1,0,'694O Main Ave NW',694,'O',NULL,'Main','Ave','NW',NULL,NULL,NULL,NULL,'Galena',1,1019,NULL,'21635',NULL,1228,39.349536,-75.85332,0,NULL,NULL,64),(163,173,1,1,0,'694O Main Ave NW',694,'O',NULL,'Main','Ave','NW',NULL,NULL,NULL,NULL,'Galena',1,1019,NULL,'21635',NULL,1228,39.349536,-75.85332,0,NULL,NULL,64),(164,11,1,1,0,'694O Main Ave NW',694,'O',NULL,'Main','Ave','NW',NULL,NULL,NULL,NULL,'Galena',1,1019,NULL,'21635',NULL,1228,39.349536,-75.85332,0,NULL,NULL,64),(165,44,1,1,0,'593T Second St NW',593,'T',NULL,'Second','St','NW',NULL,NULL,NULL,NULL,'Marksville',1,1017,NULL,'71351',NULL,1228,31.140727,-92.08056,0,NULL,NULL,NULL),(166,59,1,0,0,'61O Cadell Pl N',61,'O',NULL,'Cadell','Pl','N',NULL,NULL,NULL,NULL,'Acton',1,1018,NULL,'04001',NULL,1228,43.548123,-70.93189,0,NULL,NULL,65),(167,85,1,1,0,'61O Cadell Pl N',61,'O',NULL,'Cadell','Pl','N',NULL,NULL,NULL,NULL,'Acton',1,1018,NULL,'04001',NULL,1228,43.548123,-70.93189,0,NULL,NULL,65),(168,18,1,1,0,'61O Cadell Pl N',61,'O',NULL,'Cadell','Pl','N',NULL,NULL,NULL,NULL,'Acton',1,1018,NULL,'04001',NULL,1228,43.548123,-70.93189,0,NULL,NULL,65),(169,157,1,1,0,'972H Lincoln Ln N',972,'H',NULL,'Lincoln','Ln','N',NULL,NULL,NULL,NULL,'Pompeys Pillar',1,1025,NULL,'59064',NULL,1228,45.903794,-107.92181,0,NULL,NULL,NULL),(170,63,1,1,0,'374T College Ave N',374,'T',NULL,'College','Ave','N',NULL,NULL,NULL,NULL,'Adger',1,1000,NULL,'35006',NULL,1228,33.451714,-87.23957,0,NULL,NULL,66),(171,90,1,1,0,'374T College Ave N',374,'T',NULL,'College','Ave','N',NULL,NULL,NULL,NULL,'Adger',1,1000,NULL,'35006',NULL,1228,33.451714,-87.23957,0,NULL,NULL,66),(172,7,1,1,0,'374T College Ave N',374,'T',NULL,'College','Ave','N',NULL,NULL,NULL,NULL,'Adger',1,1000,NULL,'35006',NULL,1228,33.451714,-87.23957,0,NULL,NULL,66),(173,175,1,1,0,'38O College Rd SE',38,'O',NULL,'College','Rd','SE',NULL,NULL,NULL,NULL,'Liberty',1,1047,NULL,'25124',NULL,1228,38.619376,-81.76361,0,NULL,NULL,NULL),(174,142,1,1,0,'615X College Ave N',615,'X',NULL,'College','Ave','N',NULL,NULL,NULL,NULL,'Powells Point',1,1032,NULL,'27966',NULL,1228,36.13655,-75.82653,0,NULL,NULL,67),(175,16,1,1,0,'615X College Ave N',615,'X',NULL,'College','Ave','N',NULL,NULL,NULL,NULL,'Powells Point',1,1032,NULL,'27966',NULL,1228,36.13655,-75.82653,0,NULL,NULL,67),(176,48,1,1,0,'615X College Ave N',615,'X',NULL,'College','Ave','N',NULL,NULL,NULL,NULL,'Powells Point',1,1032,NULL,'27966',NULL,1228,36.13655,-75.82653,0,NULL,NULL,67),(177,21,1,1,0,'484I Second Path W',484,'I',NULL,'Second','Path','W',NULL,NULL,NULL,NULL,'Grantsdale',1,1025,NULL,'59835',NULL,1228,46.060169,-114.040777,0,NULL,NULL,NULL),(178,201,1,1,0,'409F Maple Way W',409,'F',NULL,'Maple','Way','W',NULL,NULL,NULL,NULL,'Kinston',1,1032,NULL,'28502',NULL,1228,35.288558,-77.662614,0,NULL,NULL,68),(179,15,1,1,0,'409F Maple Way W',409,'F',NULL,'Maple','Way','W',NULL,NULL,NULL,NULL,'Kinston',1,1032,NULL,'28502',NULL,1228,35.288558,-77.662614,0,NULL,NULL,68),(180,134,1,1,0,'409F Maple Way W',409,'F',NULL,'Maple','Way','W',NULL,NULL,NULL,NULL,'Kinston',1,1032,NULL,'28502',NULL,1228,35.288558,-77.662614,0,NULL,NULL,68),(181,73,1,1,0,'409F Maple Way W',409,'F',NULL,'Maple','Way','W',NULL,NULL,NULL,NULL,'Kinston',1,1032,NULL,'28502',NULL,1228,35.288558,-77.662614,0,NULL,NULL,68),(182,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),(183,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),(184,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 @@ 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,'CiviCRM setting Spec','All','a:91:{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:\"123456789101113\";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:\"1234567891011\";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:\"1234567891012131516171819\";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:\"12345789\";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:\"1245891011\";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:\"1234567\";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:\"1234567\";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.
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:2:{i:0;a:2:{i:0;s:13:\"CRM_Case_Info\";i:1;s:18:\"onToggleComponents\";}i:1;a:2:{i:0;s:18:\"CRM_Core_Component\";i:1;s:22:\"flushEnabledComponents\";}}}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: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: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:102:\"Set this value to Yes if you want CiviCRM error/debugging messages to also appear in 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: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: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: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: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-01-20 09:35:12',NULL),(2,'CiviCRM setting Specs','settingsMetadata__','a:91:{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:\"123456789101113\";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:\"1234567891011\";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:\"1234567891012131516171819\";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:\"12345789\";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:\"1245891011\";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:\"1234567\";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:\"1234567\";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.
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:2:{i:0;a:2:{i:0;s:13:\"CRM_Case_Info\";i:1;s:18:\"onToggleComponents\";}i:1;a:2:{i:0;s:18:\"CRM_Core_Component\";i:1;s:22:\"flushEnabledComponents\";}}}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: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: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:102:\"Set this value to Yes if you want CiviCRM error/debugging messages to also appear in 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: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: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: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: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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.
Note: php.ini should support this file size.\";s:9:\"help_text\";N;}}',NULL,'2015-01-20 09:35: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-01-20 09:35: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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35:13',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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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-01-20 09:35: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:2:{i:0;a:2:{i:0;s:13:\"CRM_Case_Info\";i:1;s:18:\"onToggleComponents\";}i:1;a:2:{i:0;s:18:\"CRM_Core_Component\";i:1;s:22:\"flushEnabledComponents\";}}}}',NULL,'2015-01-20 09:35: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:2:{i:0;a:2:{i:0;s:13:\"CRM_Case_Info\";i:1;s:18:\"onToggleComponents\";}i:1;a:2:{i:0;s:18:\"CRM_Core_Component\";i:1;s:22:\"flushEnabledComponents\";}}}}',NULL,'2015-01-20 09:35:13',NULL),(44,'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-01-20 09:35:13',NULL),(45,'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-01-20 09:35:13',NULL),(46,'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-01-20 09:35:13',NULL),(47,'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-01-20 09:35:13',NULL),(48,'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-01-20 09:35: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:102:\"Set this value to Yes if you want CiviCRM error/debugging messages to also appear in 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-01-20 09:35:13',NULL),(50,'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-01-20 09:35:13',NULL),(51,'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-01-20 09:35:13',NULL),(52,'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-01-20 09:35:13',NULL),(53,'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-01-20 09:35:13',NULL),(54,'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-01-20 09:35:13',NULL),(55,'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-01-20 09:35:13',NULL),(56,'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-01-20 09:35:13',NULL),(57,'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-01-20 09:35:13',NULL),(58,'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-01-20 09:35:13',NULL),(59,'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-01-20 09:35:13',NULL),(60,'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-01-20 09:35:13',NULL),(61,'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-01-20 09:35:13',NULL),(62,'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-01-20 09:35:13',NULL),(63,'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-01-20 09:35:13',NULL),(64,'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-01-20 09:35:13',NULL),(65,'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-01-20 09:35:13',NULL),(66,'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-01-20 09:35:13',NULL),(67,'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-01-20 09:35:13',NULL),(68,'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-01-20 09:35:13',NULL),(69,'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-01-20 09:35:13',NULL),(70,'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-01-20 09:35:13',NULL),(71,'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-01-20 09:35:13',NULL),(72,'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-01-20 09:35:13',NULL),(73,'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-01-20 09:35:13',NULL),(74,'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-01-20 09:35:13',NULL),(75,'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-01-20 09:35:13',NULL),(76,'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-01-20 09:35:13',NULL),(77,'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-01-20 09:35:13',NULL),(78,'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-01-20 09:35:13',NULL),(79,'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-01-20 09:35:13',NULL),(80,'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-01-20 09:35:13',NULL),(81,'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-01-20 09:35:13',NULL),(82,'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-01-20 09:35:13',NULL),(83,'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-01-20 09:35:13',NULL),(84,'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-01-20 09:35:13',NULL),(85,'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-01-20 09:35:14',NULL),(86,'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-01-20 09:35:14',NULL),(87,'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-01-20 09:35:14',NULL),(88,'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-01-20 09:35:14',NULL),(89,'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-01-20 09:35:14',NULL),(90,'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-01-20 09:35:14',NULL),(91,'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-01-20 09:35:14',NULL); +INSERT INTO `civicrm_cache` (`id`, `group_name`, `path`, `data`, `component_id`, `created_date`, `expired_date`) VALUES (1,'2f60a144f9a32a34e16c0d026ad1fd62','mapper/moduleFiles','a:0:{}',NULL,'2015-01-16 18:12:19',NULL),(2,'CiviCRM setting Spec','All','a:91:{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:\"123456789101113\";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:\"1234567891011\";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:\"1234567891012131516171819\";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:\"12345789\";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:\"1245891011\";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:\"1234567\";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:\"1234567\";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.
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:2:{i:0;a:2:{i:0;s:13:\"CRM_Case_Info\";i:1;s:18:\"onToggleComponents\";}i:1;a:2:{i:0;s:18:\"CRM_Core_Component\";i:1;s:22:\"flushEnabledComponents\";}}}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: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: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:102:\"Set this value to Yes if you want CiviCRM error/debugging messages to also appear in 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: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: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: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: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-01-16 18:12:19',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-01-16 18:12:19',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-01-16 18:12:20',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-01-16 18:12:20',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-01-16 18:12:20',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-01-16 18:12:20',NULL),(18,'3b854fc71eb4bb05594a8626fa5541fe','mapper/moduleFiles','a:0:{}',NULL,'2015-01-16 18:16:45',NULL); /*!40000 ALTER TABLE `civicrm_cache` ENABLE KEYS */; UNLOCK TABLES; @@ -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-01-20 17:34:57'),(2,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Adams-Łąchowski, Justina','Ms. Justina Adams-Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','1253973169',NULL,'Sample Data','Justina','C','Adams-Łąchowski',2,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Ms. Justina Adams-Łąchowski',NULL,1,'1981-04-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(3,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant-Roberts, Nicole','Dr. Nicole Grant-Roberts',NULL,NULL,NULL,'2',NULL,'Both','2115587371',NULL,'Sample Data','Nicole','J','Grant-Roberts',4,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Dr. Nicole Grant-Roberts',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(4,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Nicole','Ms. Nicole Cooper',NULL,NULL,NULL,NULL,NULL,'Both','3590550594',NULL,'Sample Data','Nicole','','Cooper',2,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Ms. Nicole Cooper',NULL,1,'1957-11-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(5,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jones family','Jones family',NULL,NULL,NULL,'5',NULL,'Both','1110516799',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jones family',5,NULL,'Dear Jones family',2,NULL,'Jones family',NULL,NULL,NULL,0,NULL,'Jones family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(6,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'bryongrant@fakemail.co.pl','bryongrant@fakemail.co.pl',NULL,NULL,NULL,NULL,NULL,'Both','1813453501',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear bryongrant@fakemail.co.pl',1,NULL,'Dear bryongrant@fakemail.co.pl',1,NULL,'bryongrant@fakemail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,'Community Empowerment Center',NULL,NULL,69,0,NULL,'2015-01-20 17:35:05'),(7,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Terry, Elina','Dr. Elina Terry',NULL,NULL,NULL,'2',NULL,'Both','2453833535',NULL,'Sample Data','Elina','R','Terry',4,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Dr. Elina Terry',NULL,1,'1968-10-11',1,'2014-05-06',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(8,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Grant, Princess','Mrs. Princess Grant',NULL,NULL,NULL,'1',NULL,'Both','2348548806',NULL,'Sample Data','Princess','N','Grant',1,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Mrs. Princess Grant',NULL,1,'1961-08-25',0,NULL,NULL,NULL,'Maple Music Center',NULL,NULL,158,0,NULL,'2015-01-20 17:35:05'),(9,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Barkley, Brent','Brent Barkley',NULL,NULL,NULL,'5',NULL,'Both','2030248670',NULL,'Sample Data','Brent','T','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Barkley',NULL,NULL,'2004-03-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(10,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper family','Cooper family',NULL,NULL,NULL,NULL,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-01-20 17:35:05'),(11,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Herminia','Herminia Adams',NULL,NULL,NULL,NULL,NULL,'Both','1782178525',NULL,'Sample Data','Herminia','X','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Adams',NULL,NULL,'1994-03-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(12,'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-01-20 17:35:05'),(13,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Sherman','Sherman Grant',NULL,NULL,NULL,NULL,NULL,'Both','213837470',NULL,'Sample Data','Sherman','','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Sherman Grant',NULL,NULL,'2012-01-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(14,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Nielsen, Justina','Ms. Justina Nielsen',NULL,NULL,NULL,'5',NULL,'Both','226503148',NULL,'Sample Data','Justina','','Nielsen',2,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Ms. Justina Nielsen',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(15,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Díaz, Kenny','Kenny Díaz',NULL,NULL,NULL,NULL,NULL,'Both','3864119395',NULL,'Sample Data','Kenny','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Díaz',NULL,2,'1979-11-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(16,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Global Wellness Initiative','Global Wellness Initiative',NULL,NULL,NULL,'4',NULL,'Both','4070430447',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Wellness Initiative',NULL,NULL,NULL,0,NULL,NULL,64,'Global Wellness Initiative',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(17,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jacobs, Mei','Ms. Mei Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','1817872298',NULL,'Sample Data','Mei','B','Jacobs',2,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Ms. Mei Jacobs',NULL,1,'1937-02-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(18,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Adams, Bryon','Mr. Bryon Adams Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2117278348',NULL,'Sample Data','Bryon','','Adams',3,2,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Mr. Bryon Adams Sr.',NULL,2,NULL,1,'2014-06-19',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(19,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Roberts, Shad','Shad Roberts II',NULL,NULL,NULL,'3',NULL,'Both','808928953',NULL,'Sample Data','Shad','','Roberts',NULL,3,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Roberts II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(20,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Omar','Omar Cooper',NULL,NULL,NULL,NULL,NULL,'Both','1015907011',NULL,'Sample Data','Omar','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar Cooper',NULL,2,'2000-09-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(21,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'carlosadams92@fakemail.co.uk','carlosadams92@fakemail.co.uk',NULL,NULL,NULL,NULL,NULL,'Both','917076857',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear carlosadams92@fakemail.co.uk',1,NULL,'Dear carlosadams92@fakemail.co.uk',1,NULL,'carlosadams92@fakemail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(22,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Müller, Errol','Mr. Errol Müller',NULL,NULL,NULL,'3',NULL,'Both','807767976',NULL,'Sample Data','Errol','F','Müller',3,NULL,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Mr. Errol Müller',NULL,2,'1963-08-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(23,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'ae.dimitrov30@notmail.biz','ae.dimitrov30@notmail.biz',NULL,NULL,NULL,'1',NULL,'Both','3887969178',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear ae.dimitrov30@notmail.biz',1,NULL,'Dear ae.dimitrov30@notmail.biz',1,NULL,'ae.dimitrov30@notmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(24,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Grant family','Grant family',NULL,NULL,NULL,'5',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-01-20 17:35:05'),(25,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'dimitrov.truman@sample.co.in','dimitrov.truman@sample.co.in',NULL,NULL,NULL,'1',NULL,'Both','1081127364',NULL,'Sample Data',NULL,NULL,NULL,3,1,NULL,NULL,1,NULL,'Dear dimitrov.truman@sample.co.in',1,NULL,'Dear dimitrov.truman@sample.co.in',1,NULL,'dimitrov.truman@sample.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(26,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Caulder Agriculture Center','Caulder Agriculture Center',NULL,NULL,NULL,'5',NULL,'Both','2640879919',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Caulder Agriculture Center',NULL,NULL,NULL,0,NULL,NULL,NULL,'Caulder Agriculture Center',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(27,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Bachman, Esta','Dr. Esta Bachman',NULL,NULL,NULL,NULL,NULL,'Both','981761701',NULL,'Sample Data','Esta','','Bachman',4,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Dr. Esta Bachman',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(28,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'terry.heidi@mymail.co.nz','terry.heidi@mymail.co.nz',NULL,NULL,NULL,'1',NULL,'Both','2682047565',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear terry.heidi@mymail.co.nz',1,NULL,'Dear terry.heidi@mymail.co.nz',1,NULL,'terry.heidi@mymail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(29,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Sierra Literacy Solutions','Sierra Literacy Solutions',NULL,NULL,NULL,'5',NULL,'Both','2694441361',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Sierra Literacy Solutions',NULL,NULL,NULL,0,NULL,NULL,178,'Sierra Literacy Solutions',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(30,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Dimitrov-Barkley, Scott','Scott Dimitrov-Barkley',NULL,NULL,NULL,NULL,NULL,'Both','933928903',NULL,'Sample Data','Scott','G','Dimitrov-Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Scott Dimitrov-Barkley',NULL,2,'2010-11-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(31,'Organization',NULL,0,0,0,0,1,0,NULL,NULL,'Beattyville Culture Partnership','Beattyville Culture Partnership',NULL,NULL,NULL,NULL,NULL,'Both','798834050',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Beattyville Culture Partnership',NULL,NULL,NULL,0,NULL,NULL,NULL,'Beattyville Culture Partnership',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(32,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Alexia','Alexia Cooper',NULL,NULL,NULL,NULL,NULL,'Both','2846725010',NULL,'Sample Data','Alexia','F','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Cooper',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(33,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'lee.barry@mymail.info','lee.barry@mymail.info',NULL,NULL,NULL,'5',NULL,'Both','1303982406',NULL,'Sample Data',NULL,NULL,NULL,3,1,NULL,NULL,1,NULL,'Dear lee.barry@mymail.info',1,NULL,'Dear lee.barry@mymail.info',1,NULL,'lee.barry@mymail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(34,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Terry, Jay','Jay Terry',NULL,NULL,NULL,'2',NULL,'Both','1881110298',NULL,'Sample Data','Jay','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Terry',NULL,2,'1971-07-19',0,NULL,NULL,NULL,'El Camino Poetry Network',NULL,NULL,106,0,NULL,'2015-01-20 17:35:05'),(35,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Díaz, Herminia','Mrs. Herminia Díaz',NULL,NULL,NULL,'3',NULL,'Both','2340298735',NULL,'Sample Data','Herminia','C','Díaz',1,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Mrs. Herminia Díaz',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(36,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cooper, Andrew','Dr. Andrew Cooper Sr.',NULL,NULL,NULL,NULL,NULL,'Both','1042798620',NULL,'Sample Data','Andrew','','Cooper',4,2,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Dr. Andrew Cooper Sr.',NULL,2,'1983-07-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(37,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Nielsen, Allen','Dr. Allen Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','515166843',NULL,'Sample Data','Allen','','Nielsen',4,NULL,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Dr. Allen Nielsen',NULL,2,'1988-05-14',0,NULL,NULL,NULL,'Ohio Action Partners',NULL,NULL,68,0,NULL,'2015-01-20 17:35:05'),(38,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Dimitrov, Brittney','Brittney Dimitrov',NULL,NULL,NULL,'1',NULL,'Both','3592503963',NULL,'Sample Data','Brittney','','Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Dimitrov',NULL,NULL,'1997-08-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(39,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov, Ivey','Ivey Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','3672313510',NULL,'Sample Data','Ivey','T','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Ivanov',NULL,1,'1999-01-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(40,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Heidi','Mrs. Heidi Olsen',NULL,NULL,NULL,NULL,NULL,'Both','3023333247',NULL,'Sample Data','Heidi','B','Olsen',1,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Mrs. Heidi Olsen',NULL,1,'1981-07-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(41,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts-Díaz family','Roberts-Díaz family',NULL,NULL,NULL,NULL,NULL,'Both','289505397',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Roberts-Díaz family',5,NULL,'Dear Roberts-Díaz family',2,NULL,'Roberts-Díaz family',NULL,NULL,NULL,0,NULL,'Roberts-Díaz family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(42,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Carlos','Carlos Reynolds',NULL,NULL,NULL,'1',NULL,'Both','2492796490',NULL,'Sample Data','Carlos','','Reynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Reynolds',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(43,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Margaret','Mrs. Margaret Cooper',NULL,NULL,NULL,'3',NULL,'Both','897960138',NULL,'Sample Data','Margaret','','Cooper',1,NULL,NULL,NULL,1,NULL,'Dear Margaret',1,NULL,'Dear Margaret',1,NULL,'Mrs. Margaret Cooper',NULL,NULL,'1971-02-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(44,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jensen, Brittney','Brittney Jensen',NULL,NULL,NULL,'4',NULL,'Both','3335875143',NULL,'Sample Data','Brittney','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Jensen',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(45,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Allen','Allen Bachman',NULL,NULL,NULL,NULL,NULL,'Both','1429054990',NULL,'Sample Data','Allen','W','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen Bachman',NULL,2,'1979-05-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(46,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Russell','Russell Müller',NULL,NULL,NULL,'3',NULL,'Both','1078913970',NULL,'Sample Data','Russell','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Müller',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(47,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Bob','Bob Yadav II',NULL,NULL,NULL,NULL,NULL,'Both','3746305110',NULL,'Sample Data','Bob','','Yadav',NULL,3,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob Yadav II',NULL,NULL,'1976-05-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(48,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Herminia','Herminia Díaz',NULL,NULL,NULL,'2',NULL,'Both','2340298735',NULL,'Sample Data','Herminia','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Díaz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(49,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Alida','Alida Adams',NULL,NULL,NULL,'5',NULL,'Both','3862439898',NULL,'Sample Data','Alida','','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Alida',1,NULL,'Dear Alida',1,NULL,'Alida Adams',NULL,NULL,'1979-05-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(50,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Wagner, Allen','Allen Wagner Sr.',NULL,NULL,NULL,'2',NULL,'Both','1856322775',NULL,'Sample Data','Allen','G','Wagner',NULL,2,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Allen Wagner Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(51,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Díaz, Maxwell','Maxwell Díaz Sr.',NULL,NULL,NULL,'5',NULL,'Both','943118495',NULL,'Sample Data','Maxwell','Q','Díaz',NULL,2,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Díaz Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(52,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'bs.deforest94@testmail.co.nz','bs.deforest94@testmail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','4104914270',NULL,'Sample Data',NULL,NULL,NULL,NULL,3,NULL,NULL,1,NULL,'Dear bs.deforest94@testmail.co.nz',1,NULL,'Dear bs.deforest94@testmail.co.nz',1,NULL,'bs.deforest94@testmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,'Oklahoma Education Alliance',NULL,NULL,179,0,NULL,'2015-01-20 17:35:05'),(53,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cruz, Omar','Omar Cruz',NULL,NULL,NULL,'1',NULL,'Both','348168112',NULL,'Sample Data','Omar','Y','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Omar Cruz',NULL,NULL,'1969-07-31',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(54,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson, Ashley','Ms. Ashley Jameson',NULL,NULL,NULL,'4',NULL,'Both','3561508179',NULL,'Sample Data','Ashley','','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-01-20 17:35:05'),(55,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'adams.jed@fakemail.net','adams.jed@fakemail.net',NULL,NULL,NULL,'4',NULL,'Both','1938591371',NULL,'Sample Data',NULL,NULL,NULL,NULL,4,NULL,NULL,1,NULL,'Dear adams.jed@fakemail.net',1,NULL,'Dear adams.jed@fakemail.net',1,NULL,'adams.jed@fakemail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(56,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jacobs, Princess','Princess Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','3977012582',NULL,'Sample Data','Princess','Q','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Jacobs',NULL,1,'1944-07-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(57,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Jerome','Jerome Samuels',NULL,NULL,NULL,NULL,NULL,'Both','2129032486',NULL,'Sample Data','Jerome','','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Jerome Samuels',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(58,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Metairie Education Solutions','Metairie Education Solutions',NULL,NULL,NULL,NULL,NULL,'Both','216164701',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Metairie Education Solutions',NULL,NULL,NULL,0,NULL,NULL,123,'Metairie Education Solutions',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(59,'Household',NULL,1,0,0,0,1,0,NULL,NULL,'Nielsen family','Nielsen family',NULL,NULL,NULL,'2',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-01-20 17:35:05'),(60,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper, Ashlie','Mrs. Ashlie Cooper',NULL,NULL,NULL,'2',NULL,'Both','2771748009',NULL,'Sample Data','Ashlie','E','Cooper',1,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Mrs. Ashlie Cooper',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(61,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cooper, Merrie','Merrie Cooper',NULL,NULL,NULL,'3',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,'1999-01-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(62,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen-Barkley, Erik','Erik Jensen-Barkley II',NULL,NULL,NULL,'5',NULL,'Both','4189129066',NULL,'Sample Data','Erik','B','Jensen-Barkley',NULL,3,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Jensen-Barkley II',NULL,2,'1969-10-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(63,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Allan','Allan Bachman III',NULL,NULL,NULL,'2',NULL,'Both','826368778',NULL,'Sample Data','Allan','C','Bachman',NULL,4,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Bachman III',NULL,2,'2002-03-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(64,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Nielsen, Delana','Delana Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','1974139195',NULL,'Sample Data','Delana','','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Nielsen',NULL,1,'1998-05-22',0,NULL,NULL,NULL,'Global Wellness Initiative',NULL,NULL,16,0,NULL,'2015-01-20 17:35:05'),(65,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jones, Toby','Dr. Toby Jones',NULL,NULL,NULL,NULL,NULL,'Both','1728032569',NULL,'Sample Data','Toby','','Jones',4,NULL,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Dr. Toby Jones',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(66,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Grant, Arlyne','Arlyne Grant',NULL,NULL,NULL,'2',NULL,'Both','1053085057',NULL,'Sample Data','Arlyne','','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Grant',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(67,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Dimitrov-Barkley family','Dimitrov-Barkley family',NULL,NULL,NULL,NULL,NULL,'Both','3927054401',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Dimitrov-Barkley family',5,NULL,'Dear Dimitrov-Barkley family',2,NULL,'Dimitrov-Barkley family',NULL,NULL,NULL,0,NULL,'Dimitrov-Barkley family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(68,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Ohio Action Partners','Ohio Action Partners',NULL,NULL,NULL,'3',NULL,'Both','675901745',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Ohio Action Partners',NULL,NULL,NULL,0,NULL,NULL,37,'Ohio Action Partners',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(69,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Community Empowerment Center','Community Empowerment Center',NULL,NULL,NULL,'2',NULL,'Both','2731736324',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Community Empowerment Center',NULL,NULL,NULL,0,NULL,NULL,6,'Community Empowerment Center',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(70,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper, Elizabeth','Ms. Elizabeth Cooper',NULL,NULL,NULL,NULL,NULL,'Both','1085968806',NULL,'Sample Data','Elizabeth','','Cooper',2,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Ms. Elizabeth Cooper',NULL,NULL,'1977-11-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(71,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cooper, Jacob','Jacob Cooper Jr.',NULL,NULL,NULL,NULL,NULL,'Both','221346251',NULL,'Sample Data','Jacob','','Cooper',NULL,1,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Jacob Cooper Jr.',NULL,2,'2008-02-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(72,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Juliann','Dr. Juliann Cooper',NULL,NULL,NULL,NULL,NULL,'Both','742450300',NULL,'Sample Data','Juliann','N','Cooper',4,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Dr. Juliann Cooper',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(73,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Díaz, Jina','Jina Díaz',NULL,NULL,NULL,NULL,NULL,'Both','484938112',NULL,'Sample Data','Jina','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Díaz',NULL,1,NULL,1,'2014-04-13',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(74,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Prentice, Jackson','Mr. Jackson Prentice III',NULL,NULL,NULL,NULL,NULL,'Both','1317187713',NULL,'Sample Data','Jackson','M','Prentice',3,4,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Mr. Jackson Prentice III',NULL,NULL,'1963-02-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(75,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Bachman, Princess','Ms. Princess Bachman',NULL,NULL,NULL,NULL,NULL,'Both','2581077622',NULL,'Sample Data','Princess','','Bachman',2,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Ms. Princess Bachman',NULL,1,'1961-03-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(76,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Lee, Maria','Maria Lee',NULL,NULL,NULL,'3',NULL,'Both','474251826',NULL,'Sample Data','Maria','','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Maria Lee',NULL,2,'1960-10-27',1,'2014-11-13',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(77,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman, Lawerence','Lawerence Bachman Jr.',NULL,NULL,NULL,NULL,NULL,'Both','2961144560',NULL,'Sample Data','Lawerence','','Bachman',NULL,1,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Bachman Jr.',NULL,2,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(78,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Maxwell','Mr. Maxwell Müller',NULL,NULL,NULL,NULL,NULL,'Both','2972574046',NULL,'Sample Data','Maxwell','','Müller',3,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Mr. Maxwell Müller',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(79,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Scott','Mr. Scott Müller',NULL,NULL,NULL,'2',NULL,'Both','2575613599',NULL,'Sample Data','Scott','R','Müller',3,NULL,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Mr. Scott Müller',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(80,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Heidi','Heidi Grant',NULL,NULL,NULL,NULL,NULL,'Both','46996647',NULL,'Sample Data','Heidi','','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Heidi Grant',NULL,1,'1970-01-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(81,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Cooper, Lashawnda','Lashawnda Cooper',NULL,NULL,NULL,'4',NULL,'Both','2720051333',NULL,'Sample Data','Lashawnda','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Lashawnda Cooper',NULL,1,'1993-12-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(82,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'mller.betty25@airmail.biz','mller.betty25@airmail.biz',NULL,NULL,NULL,NULL,NULL,'Both','1519671038',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear mller.betty25@airmail.biz',1,NULL,'Dear mller.betty25@airmail.biz',1,NULL,'mller.betty25@airmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(83,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Lee, Jerome','Mr. Jerome Lee III',NULL,NULL,NULL,NULL,NULL,'Both','1739377310',NULL,'Sample Data','Jerome','X','Lee',3,4,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Mr. Jerome Lee III',NULL,NULL,'1976-09-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(84,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Lee, Justina','Justina Lee',NULL,NULL,NULL,'4',NULL,'Both','2721326696',NULL,'Sample Data','Justina','H','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Justina',1,NULL,'Dear Justina',1,NULL,'Justina Lee',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(85,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Brzęczysław','Brzęczysław Müller',NULL,NULL,NULL,NULL,NULL,'Both','1266385966',NULL,'Sample Data','Brzęczysław','','Müller',NULL,NULL,NULL,NULL,1,NULL,'Dear Brzęczysław',1,NULL,'Dear Brzęczysław',1,NULL,'Brzęczysław Müller',NULL,2,'1970-01-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(86,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller, Maria','Maria Müller Jr.',NULL,NULL,NULL,'5',NULL,'Both','1779623715',NULL,'Sample Data','Maria','','Müller',NULL,1,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Maria Müller Jr.',NULL,2,'1936-08-07',1,'2014-09-03',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(87,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Jensen-Barkley family','Jensen-Barkley family',NULL,NULL,NULL,NULL,NULL,'Both','1000260757',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen-Barkley family',5,NULL,'Dear Jensen-Barkley family',2,NULL,'Jensen-Barkley family',NULL,NULL,NULL,0,NULL,'Jensen-Barkley family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(88,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'felishag14@fakemail.co.in','felishag14@fakemail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','3344077741',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear felishag14@fakemail.co.in',1,NULL,'Dear felishag14@fakemail.co.in',1,NULL,'felishag14@fakemail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(89,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Zope, Jackson','Dr. Jackson Zope',NULL,NULL,NULL,NULL,NULL,'Both','1032195299',NULL,'Sample Data','Jackson','Y','Zope',4,NULL,NULL,NULL,1,NULL,'Dear Jackson',1,NULL,'Dear Jackson',1,NULL,'Dr. Jackson Zope',NULL,NULL,'1988-10-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(90,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Adams-Łąchowski family','Adams-Łąchowski family',NULL,NULL,NULL,NULL,NULL,'Both','82638884',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Adams-Łąchowski family',5,NULL,'Dear Adams-Łąchowski family',2,NULL,'Adams-Łąchowski family',NULL,NULL,NULL,0,NULL,'Adams-Łąchowski family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(91,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samson, Magan','Magan Samson',NULL,NULL,NULL,NULL,NULL,'Both','2138748254',NULL,'Sample Data','Magan','M','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Samson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(92,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'mller-olsen.mei@fakemail.co.pl','mller-olsen.mei@fakemail.co.pl',NULL,NULL,NULL,'3',NULL,'Both','4046269674',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear mller-olsen.mei@fakemail.co.pl',1,NULL,'Dear mller-olsen.mei@fakemail.co.pl',1,NULL,'mller-olsen.mei@fakemail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(93,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'winfordreynolds46@fakemail.co.nz','winfordreynolds46@fakemail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','675170606',NULL,'Sample Data',NULL,NULL,NULL,4,2,NULL,NULL,1,NULL,'Dear winfordreynolds46@fakemail.co.nz',1,NULL,'Dear winfordreynolds46@fakemail.co.nz',1,NULL,'winfordreynolds46@fakemail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(94,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Omar','Dr. Omar Terrell III',NULL,NULL,NULL,'3',NULL,'Both','265836995',NULL,'Sample Data','Omar','','Terrell',4,4,NULL,NULL,1,NULL,'Dear Omar',1,NULL,'Dear Omar',1,NULL,'Dr. Omar Terrell III',NULL,2,'1936-08-28',1,'2014-03-09',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(95,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Montgomery Agriculture Initiative','Montgomery Agriculture Initiative',NULL,NULL,NULL,'4',NULL,'Both','1477244511',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Montgomery Agriculture Initiative',NULL,NULL,NULL,0,NULL,NULL,139,'Montgomery Agriculture Initiative',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(96,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Jay','Mr. Jay Yadav',NULL,NULL,NULL,NULL,NULL,'Both','3317277068',NULL,'Sample Data','Jay','','Yadav',3,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Mr. Jay Yadav',NULL,2,'1986-01-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(97,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson, Miguel','Mr. Miguel Jameson',NULL,NULL,NULL,NULL,NULL,'Both','2945674825',NULL,'Sample Data','Miguel','','Jameson',3,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Mr. Miguel Jameson',NULL,NULL,NULL,1,'2014-04-26',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(98,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'np.daz@sample.com','np.daz@sample.com',NULL,NULL,NULL,'5',NULL,'Both','465667740',NULL,'Sample Data',NULL,NULL,NULL,3,NULL,NULL,NULL,1,NULL,'Dear np.daz@sample.com',1,NULL,'Dear np.daz@sample.com',1,NULL,'np.daz@sample.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(99,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Angelika','Mrs. Angelika Robertson',NULL,NULL,NULL,'5',NULL,'Both','545776365',NULL,'Sample Data','Angelika','A','Robertson',1,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Mrs. Angelika Robertson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(100,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Zope, Herminia','Mrs. Herminia Zope',NULL,NULL,NULL,'2',NULL,'Both','1359923062',NULL,'Sample Data','Herminia','B','Zope',1,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Mrs. Herminia Zope',NULL,NULL,'1976-04-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(101,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Herminia','Ms. Herminia Wagner',NULL,NULL,NULL,'2',NULL,'Both','1890057520',NULL,'Sample Data','Herminia','L','Wagner',2,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Ms. Herminia Wagner',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(102,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Nashville Software Trust','Nashville Software Trust',NULL,NULL,NULL,NULL,NULL,'Both','1586131399',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Nashville Software Trust',NULL,NULL,NULL,0,NULL,NULL,NULL,'Nashville Software Trust',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(103,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'eleonoryadav@mymail.info','eleonoryadav@mymail.info',NULL,NULL,NULL,'5',NULL,'Both','3565759814',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear eleonoryadav@mymail.info',1,NULL,'Dear eleonoryadav@mymail.info',1,NULL,'eleonoryadav@mymail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(104,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terrell, Valene','Mrs. Valene Terrell',NULL,NULL,NULL,NULL,NULL,'Both','2134208638',NULL,'Sample Data','Valene','','Terrell',1,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Mrs. Valene Terrell',NULL,NULL,'1982-08-16',0,NULL,NULL,NULL,'Arizona Sustainability Association',NULL,NULL,128,0,NULL,'2015-01-20 17:35:05'),(105,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Yadav, Sonny','Mr. Sonny Yadav',NULL,NULL,NULL,'3',NULL,'Both','836709371',NULL,'Sample Data','Sonny','N','Yadav',3,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Mr. Sonny Yadav',NULL,2,'1980-11-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(106,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'El Camino Poetry Network','El Camino Poetry Network',NULL,NULL,NULL,NULL,NULL,'Both','4230665923',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'El Camino Poetry Network',NULL,NULL,NULL,0,NULL,NULL,34,'El Camino Poetry Network',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(107,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Müller, Truman','Mr. Truman Müller',NULL,NULL,NULL,'3',NULL,'Both','1128459811',NULL,'Sample Data','Truman','W','Müller',3,NULL,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Mr. Truman Müller',NULL,NULL,'1946-07-23',1,'2014-04-08',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(108,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jones, Shad','Shad Jones',NULL,NULL,NULL,NULL,NULL,'Both','3058482719',NULL,'Sample Data','Shad','A','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Jones',NULL,2,'1961-04-19',1,'2014-07-10',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(109,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'grant.allen69@airmail.info','grant.allen69@airmail.info',NULL,NULL,NULL,'1',NULL,'Both','1677070265',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear grant.allen69@airmail.info',1,NULL,'Dear grant.allen69@airmail.info',1,NULL,'grant.allen69@airmail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(110,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Yadav, Ashlie','Mrs. Ashlie Yadav',NULL,NULL,NULL,'1',NULL,'Both','1118293525',NULL,'Sample Data','Ashlie','J','Yadav',1,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Mrs. Ashlie Yadav',NULL,1,'1964-02-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(111,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Truman','Truman Terry III',NULL,NULL,NULL,'5',NULL,'Both','3241108171',NULL,'Sample Data','Truman','P','Terry',NULL,4,NULL,NULL,1,NULL,'Dear Truman',1,NULL,'Dear Truman',1,NULL,'Truman Terry III',NULL,2,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(112,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Princess','Princess Cooper',NULL,NULL,NULL,'1',NULL,'Both','3515918144',NULL,'Sample Data','Princess','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Princess Cooper',NULL,1,'1935-03-24',1,'2014-10-12',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(113,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Iris','Iris McReynolds',NULL,NULL,NULL,'1',NULL,'Both','2556119128',NULL,'Sample Data','Iris','T','McReynolds',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris McReynolds',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(114,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Delana','Delana Cooper',NULL,NULL,NULL,NULL,NULL,'Both','3587056098',NULL,'Sample Data','Delana','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Cooper',NULL,NULL,'1990-06-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(115,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper family','Cooper family',NULL,NULL,NULL,'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-01-20 17:35:05'),(116,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Esta','Esta Cooper',NULL,NULL,NULL,NULL,NULL,'Both','4135799575',NULL,'Sample Data','Esta','W','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Esta Cooper',NULL,NULL,'1966-10-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(117,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Roberts-Díaz, Shauna','Ms. Shauna Roberts-Díaz',NULL,NULL,NULL,'3',NULL,'Both','3928961580',NULL,'Sample Data','Shauna','V','Roberts-Díaz',2,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Ms. Shauna Roberts-Díaz',NULL,1,'1987-10-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(118,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'adamse@fishmail.biz','adamse@fishmail.biz',NULL,NULL,NULL,NULL,NULL,'Both','3773537004',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear adamse@fishmail.biz',1,NULL,'Dear adamse@fishmail.biz',1,NULL,'adamse@fishmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(119,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Maine Peace Fellowship','Maine Peace Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','1673873491',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Maine Peace Fellowship',NULL,NULL,NULL,0,NULL,NULL,NULL,'Maine Peace Fellowship',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(120,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Landon','Landon Dimitrov',NULL,NULL,NULL,'5',NULL,'Both','3544857327',NULL,'Sample Data','Landon','','Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Dimitrov',NULL,2,'2001-09-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(121,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Barkley, Sonny','Sonny Barkley II',NULL,NULL,NULL,'1',NULL,'Both','4094984434',NULL,'Sample Data','Sonny','','Barkley',NULL,3,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny Barkley II',NULL,2,'1982-08-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(122,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Dimitrov, Kenny','Mr. Kenny Dimitrov',NULL,NULL,NULL,'1',NULL,'Both','2698867379',NULL,'Sample Data','Kenny','O','Dimitrov',3,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Mr. Kenny Dimitrov',NULL,2,'1951-09-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(123,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Billy','Billy Díaz',NULL,NULL,NULL,'1',NULL,'Both','2418385734',NULL,'Sample Data','Billy','H','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Díaz',NULL,NULL,'2003-06-30',0,NULL,NULL,NULL,'Metairie Education Solutions',NULL,NULL,58,0,NULL,'2015-01-20 17:35:05'),(124,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Josefa','Josefa Adams',NULL,NULL,NULL,'2',NULL,'Both','3524754614',NULL,'Sample Data','Josefa','','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Adams',NULL,1,'2003-09-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(125,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Barkley, Carylon','Mrs. Carylon Barkley',NULL,NULL,NULL,NULL,NULL,'Both','3982709827',NULL,'Sample Data','Carylon','','Barkley',1,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Mrs. Carylon Barkley',NULL,1,'1975-12-28',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(126,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Roberts, Maria','Mr. Maria Roberts III',NULL,NULL,NULL,'5',NULL,'Both','1395427104',NULL,'Sample Data','Maria','W','Roberts',3,4,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Mr. Maria Roberts III',NULL,NULL,NULL,1,'2014-11-16',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(127,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Adams family','Adams family',NULL,NULL,NULL,'2',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-01-20 17:35:05'),(128,'Organization',NULL,0,1,0,0,0,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,104,'Arizona Sustainability Association',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(129,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper, Brigette','Brigette Cooper',NULL,NULL,NULL,'3',NULL,'Both','1627670122',NULL,'Sample Data','Brigette','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Brigette Cooper',NULL,NULL,'2002-03-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(130,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Creative Literacy Academy','Creative Literacy Academy',NULL,NULL,NULL,NULL,NULL,'Both','2780723632',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Creative Literacy Academy',NULL,NULL,NULL,0,NULL,NULL,185,'Creative Literacy Academy',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(131,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Ashlie','Ashlie Barkley',NULL,NULL,NULL,NULL,NULL,'Both','1002355994',NULL,'Sample Data','Ashlie','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Barkley',NULL,1,NULL,1,'2014-02-02',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(132,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Heidi','Heidi Barkley',NULL,NULL,NULL,'2',NULL,'Both','1854810222',NULL,'Sample Data','Heidi','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Heidi Barkley',NULL,NULL,'2008-10-31',0,NULL,NULL,NULL,'Texas Environmental Partners',NULL,NULL,165,0,NULL,'2015-01-20 17:35:05'),(133,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Jones, Ivey','Ms. Ivey Jones',NULL,NULL,NULL,NULL,NULL,'Both','2553949763',NULL,'Sample Data','Ivey','','Jones',2,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ms. Ivey Jones',NULL,1,'1981-01-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(134,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Bachman-Zope, Laree','Laree Bachman-Zope',NULL,NULL,NULL,'5',NULL,'Both','3979568289',NULL,'Sample Data','Laree','C','Bachman-Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree Bachman-Zope',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(135,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Troy','Troy Terrell',NULL,NULL,NULL,'4',NULL,'Both','2532022550',NULL,'Sample Data','Troy','K','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Terrell',NULL,2,'1940-11-08',1,'2015-01-06',NULL,NULL,'California Sustainability Association',NULL,NULL,184,0,NULL,'2015-01-20 17:35:05'),(136,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González-Adams, Tanya','Ms. Tanya González-Adams',NULL,NULL,NULL,NULL,NULL,'Both','3896020987',NULL,'Sample Data','Tanya','X','González-Adams',2,NULL,NULL,NULL,1,NULL,'Dear Tanya',1,NULL,'Dear Tanya',1,NULL,'Ms. Tanya González-Adams',NULL,1,'1990-05-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(137,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Alexia','Alexia Wilson',NULL,NULL,NULL,'1',NULL,'Both','3321653861',NULL,'Sample Data','Alexia','','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Alexia Wilson',NULL,1,'1977-04-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(138,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jones, Sharyn','Sharyn Jones',NULL,NULL,NULL,NULL,NULL,'Both','3959842180',NULL,'Sample Data','Sharyn','H','Jones',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn Jones',NULL,NULL,NULL,0,NULL,NULL,NULL,'Global Technology Fellowship',NULL,NULL,193,0,NULL,'2015-01-20 17:35:05'),(139,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Łąchowski, Kacey','Ms. Kacey Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','2351570944',NULL,'Sample Data','Kacey','','Łąchowski',2,NULL,NULL,NULL,1,NULL,'Dear Kacey',1,NULL,'Dear Kacey',1,NULL,'Ms. Kacey Łąchowski',NULL,NULL,'1963-02-10',0,NULL,NULL,NULL,'Montgomery Agriculture Initiative',NULL,NULL,95,0,NULL,'2015-01-20 17:35:05'),(140,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'zope.andrew@example.biz','zope.andrew@example.biz',NULL,NULL,NULL,'5',NULL,'Both','377312305',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear zope.andrew@example.biz',1,NULL,'Dear zope.andrew@example.biz',1,NULL,'zope.andrew@example.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(141,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Scarlet','Scarlet Díaz',NULL,NULL,NULL,NULL,NULL,'Both','3578692438',NULL,'Sample Data','Scarlet','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Scarlet',1,NULL,'Dear Scarlet',1,NULL,'Scarlet Díaz',NULL,1,'1961-01-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(142,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Zope, Ashley','Ashley Zope',NULL,NULL,NULL,NULL,NULL,'Both','454484238',NULL,'Sample Data','Ashley','','Zope',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Zope',NULL,NULL,'1981-06-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(143,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Nielsen, Carylon','Carylon Nielsen',NULL,NULL,NULL,NULL,NULL,'Both','1077556196',NULL,'Sample Data','Carylon','','Nielsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Carylon',1,NULL,'Dear Carylon',1,NULL,'Carylon Nielsen',NULL,NULL,NULL,0,NULL,NULL,NULL,'Northpoint Agriculture Systems',NULL,NULL,163,0,NULL,'2015-01-20 17:35:05'),(144,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cooper, Daren','Daren Cooper Sr.',NULL,NULL,NULL,'4',NULL,'Both','1555868236',NULL,'Sample Data','Daren','E','Cooper',NULL,2,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Cooper Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(145,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Ashley','Ashley Cooper',NULL,NULL,NULL,NULL,NULL,'Both','495032298',NULL,'Sample Data','Ashley','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Cooper',NULL,NULL,'1978-10-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(146,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Yadav family','Yadav family',NULL,NULL,NULL,'2',NULL,'Both','1777336212',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Yadav family',5,NULL,'Dear Yadav family',2,NULL,'Yadav family',NULL,NULL,NULL,0,NULL,'Yadav family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(147,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'González-Adams, Laree','Laree González-Adams',NULL,NULL,NULL,'5',NULL,'Both','1284411624',NULL,'Sample Data','Laree','T','González-Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree González-Adams',NULL,1,'1998-12-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(148,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Cooper, Delana','Delana Cooper',NULL,NULL,NULL,'2',NULL,'Both','3587056098',NULL,'Sample Data','Delana','','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Delana Cooper',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(149,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Erik','Erik Terry II',NULL,NULL,NULL,NULL,NULL,'Both','4189171326',NULL,'Sample Data','Erik','B','Terry',NULL,3,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Erik Terry II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(150,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Kathlyn','Kathlyn Jacobs',NULL,NULL,NULL,'4',NULL,'Both','1747055746',NULL,'Sample Data','Kathlyn','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Kathlyn Jacobs',NULL,1,'2001-12-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(151,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Müller-Olsen, Nicole','Nicole Müller-Olsen',NULL,NULL,NULL,'2',NULL,'Both','76481044',NULL,'Sample Data','Nicole','S','Müller-Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Müller-Olsen',NULL,1,'2005-01-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(152,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Dimitrov-Barkley, Jina','Jina Dimitrov-Barkley',NULL,NULL,NULL,NULL,NULL,'Both','697176016',NULL,'Sample Data','Jina','H','Dimitrov-Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Jina',1,NULL,'Dear Jina',1,NULL,'Jina Dimitrov-Barkley',NULL,1,'2005-05-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(153,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'rdimitrov60@sample.org','rdimitrov60@sample.org',NULL,NULL,NULL,NULL,NULL,'Both','3027858956',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear rdimitrov60@sample.org',1,NULL,'Dear rdimitrov60@sample.org',1,NULL,'rdimitrov60@sample.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(154,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Toby','Mr. Toby Parker Sr.',NULL,NULL,NULL,'5',NULL,'Both','3520843398',NULL,'Sample Data','Toby','S','Parker',3,2,NULL,NULL,1,NULL,'Dear Toby',1,NULL,'Dear Toby',1,NULL,'Mr. Toby Parker Sr.',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(155,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'mllera@fakemail.co.in','mllera@fakemail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','2365407231',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear mllera@fakemail.co.in',1,NULL,'Dear mllera@fakemail.co.in',1,NULL,'mllera@fakemail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(156,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Müller-Olsen family','Müller-Olsen family',NULL,NULL,NULL,NULL,NULL,'Both','3262902204',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Müller-Olsen family',5,NULL,'Dear Müller-Olsen family',2,NULL,'Müller-Olsen family',NULL,NULL,NULL,0,NULL,'Müller-Olsen family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(157,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'González-Adams family','González-Adams family',NULL,NULL,NULL,'3',NULL,'Both','4095274103',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear González-Adams family',5,NULL,'Dear González-Adams family',2,NULL,'González-Adams family',NULL,NULL,NULL,0,NULL,'González-Adams family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(158,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Maple Music Center','Maple Music Center',NULL,NULL,NULL,'1',NULL,'Both','311658906',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Maple Music Center',NULL,NULL,NULL,0,NULL,NULL,8,'Maple Music Center',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(159,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant-Roberts, Craig','Craig Grant-Roberts II',NULL,NULL,NULL,NULL,NULL,'Both','450844673',NULL,'Sample Data','Craig','W','Grant-Roberts',NULL,3,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Grant-Roberts II',NULL,2,'2005-09-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(160,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cruz, Beula','Beula Cruz',NULL,NULL,NULL,NULL,NULL,'Both','3515356541',NULL,'Sample Data','Beula','','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Beula',1,NULL,'Dear Beula',1,NULL,'Beula Cruz',NULL,1,'1970-07-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(161,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'González, Jacob','Mr. Jacob González',NULL,NULL,NULL,'5',NULL,'Both','2352039359',NULL,'Sample Data','Jacob','X','González',3,NULL,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Mr. Jacob González',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(162,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'junkobachman@infomail.info','junkobachman@infomail.info',NULL,NULL,NULL,NULL,NULL,'Both','2234057337',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear junkobachman@infomail.info',1,NULL,'Dear junkobachman@infomail.info',1,NULL,'junkobachman@infomail.info',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(163,'Organization',NULL,0,1,0,0,1,0,NULL,NULL,'Northpoint Agriculture Systems','Northpoint Agriculture Systems',NULL,NULL,NULL,NULL,NULL,'Both','2482156527',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Northpoint Agriculture Systems',NULL,NULL,NULL,0,NULL,NULL,143,'Northpoint Agriculture Systems',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(164,'Household',NULL,0,0,0,0,0,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-01-20 17:35:05'),(165,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Texas Environmental Partners','Texas Environmental Partners',NULL,NULL,NULL,NULL,NULL,'Both','1739147799',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Texas Environmental Partners',NULL,NULL,NULL,0,NULL,NULL,132,'Texas Environmental Partners',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(166,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Roberts, Betty','Mrs. Betty Roberts',NULL,NULL,NULL,NULL,NULL,'Both','3063091038',NULL,'Sample Data','Betty','','Roberts',1,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Mrs. Betty Roberts',NULL,1,'1964-08-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(167,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Díaz, Rolando','Rolando Díaz II',NULL,NULL,NULL,'2',NULL,'Both','775772314',NULL,'Sample Data','Rolando','','Díaz',NULL,3,NULL,NULL,1,NULL,'Dear Rolando',1,NULL,'Dear Rolando',1,NULL,'Rolando Díaz II',NULL,2,'1960-05-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(168,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Carlos','Carlos Smith Sr.',NULL,NULL,NULL,'4',NULL,'Both','3642866495',NULL,'Sample Data','Carlos','','Smith',NULL,2,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Carlos Smith Sr.',NULL,2,'1966-08-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(169,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams-Łąchowski, Ashley','Ashley Adams-Łąchowski',NULL,NULL,NULL,'2',NULL,'Both','824143325',NULL,'Sample Data','Ashley','S','Adams-Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Adams-Łąchowski',NULL,1,'2004-05-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(170,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Elina','Dr. Elina McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','130391420',NULL,'Sample Data','Elina','N','McReynolds',4,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Dr. Elina McReynolds',NULL,NULL,'1961-06-11',1,'2014-05-22',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(171,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski-Jones, Lashawnda','Mrs. Lashawnda Łąchowski-Jones',NULL,NULL,NULL,'3',NULL,'Both','1801529969',NULL,'Sample Data','Lashawnda','F','Łąchowski-Jones',1,NULL,NULL,NULL,1,NULL,'Dear Lashawnda',1,NULL,'Dear Lashawnda',1,NULL,'Mrs. Lashawnda Łąchowski-Jones',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(172,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Miguel','Miguel Jensen',NULL,NULL,NULL,'1',NULL,'Both','3135288989',NULL,'Sample Data','Miguel','R','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Miguel Jensen',NULL,NULL,'1971-11-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(173,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'jh.samson@testmail.net','jh.samson@testmail.net',NULL,NULL,NULL,'4',NULL,'Both','2115238980',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear jh.samson@testmail.net',1,NULL,'Dear jh.samson@testmail.net',1,NULL,'jh.samson@testmail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(174,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Díaz family','Díaz family',NULL,NULL,NULL,'3',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-01-20 17:35:05'),(175,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Carlos','Dr. Carlos Grant',NULL,NULL,NULL,'5',NULL,'Both','329794815',NULL,'Sample Data','Carlos','','Grant',4,NULL,NULL,NULL,1,NULL,'Dear Carlos',1,NULL,'Dear Carlos',1,NULL,'Dr. Carlos Grant',NULL,NULL,'1958-04-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(176,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Bryon','Bryon González Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3874135170',NULL,'Sample Data','Bryon','X','González',NULL,1,NULL,NULL,1,NULL,'Dear Bryon',1,NULL,'Dear Bryon',1,NULL,'Bryon González Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(177,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'kathleenjensen-barkley@sample.com','kathleenjensen-barkley@sample.com',NULL,NULL,NULL,'5',NULL,'Both','428067901',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear kathleenjensen-barkley@sample.com',1,NULL,'Dear kathleenjensen-barkley@sample.com',1,NULL,'kathleenjensen-barkley@sample.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(178,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'barkleyj@sample.co.in','barkleyj@sample.co.in',NULL,NULL,NULL,NULL,NULL,'Both','1210705123',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear barkleyj@sample.co.in',1,NULL,'Dear barkleyj@sample.co.in',1,NULL,'barkleyj@sample.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,'Sierra Literacy Solutions',NULL,NULL,29,0,NULL,'2015-01-20 17:35:05'),(179,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Oklahoma Education Alliance','Oklahoma Education Alliance',NULL,NULL,NULL,NULL,NULL,'Both','4147677339',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Oklahoma Education Alliance',NULL,NULL,NULL,0,NULL,NULL,52,'Oklahoma Education Alliance',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(180,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Grant-Roberts family','Grant-Roberts family',NULL,NULL,NULL,NULL,NULL,'Both','1047427127',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Grant-Roberts family',5,NULL,'Dear Grant-Roberts family',2,NULL,'Grant-Roberts family',NULL,NULL,NULL,0,NULL,'Grant-Roberts family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(181,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Barkley, Junko','Junko Barkley',NULL,NULL,NULL,NULL,NULL,'Both','803439598',NULL,'Sample Data','Junko','O','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Barkley',NULL,NULL,'1963-08-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(182,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper family','Cooper family',NULL,NULL,NULL,'4',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-01-20 17:35:05'),(183,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Magan','Magan Cooper',NULL,NULL,NULL,NULL,NULL,'Both','791506082',NULL,'Sample Data','Magan','P','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Cooper',NULL,NULL,'1998-05-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(184,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'California Sustainability Association','California Sustainability Association',NULL,NULL,NULL,NULL,NULL,'Both','2088488697',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'California Sustainability Association',NULL,NULL,NULL,0,NULL,NULL,135,'California Sustainability Association',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(185,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'daz.tanya@example.info','daz.tanya@example.info',NULL,NULL,NULL,'4',NULL,'Both','3639575066',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear daz.tanya@example.info',1,NULL,'Dear daz.tanya@example.info',1,NULL,'daz.tanya@example.info',NULL,NULL,NULL,0,NULL,NULL,NULL,'Creative Literacy Academy',NULL,NULL,130,0,NULL,'2015-01-20 17:35:05'),(186,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Josefa','Josefa Terrell',NULL,NULL,NULL,NULL,NULL,'Both','1943995687',NULL,'Sample Data','Josefa','O','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Terrell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(187,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Rodrigo','Rodrigo Cooper',NULL,NULL,NULL,NULL,NULL,'Both','3313653264',NULL,'Sample Data','Rodrigo','D','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Rodrigo',1,NULL,'Dear Rodrigo',1,NULL,'Rodrigo Cooper',NULL,NULL,NULL,1,'2015-01-08',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(188,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'smitha@mymail.com','smitha@mymail.com',NULL,NULL,NULL,NULL,NULL,'Both','2384461487',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear smitha@mymail.com',1,NULL,'Dear smitha@mymail.com',1,NULL,'smitha@mymail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(189,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Zope family','Zope family',NULL,NULL,NULL,NULL,NULL,'Both','1649131487',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Zope family',5,NULL,'Dear Zope family',2,NULL,'Zope family',NULL,NULL,NULL,0,NULL,'Zope family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(190,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jacobs, Jed','Jed Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','396684690',NULL,'Sample Data','Jed','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Jacobs',NULL,2,'1990-01-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(191,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper family','Cooper family',NULL,NULL,NULL,'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-01-20 17:35:05'),(192,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Smith, Landon','Landon Smith II',NULL,NULL,NULL,'5',NULL,'Both','1605229740',NULL,'Sample Data','Landon','R','Smith',NULL,3,NULL,NULL,1,NULL,'Dear Landon',1,NULL,'Dear Landon',1,NULL,'Landon Smith II',NULL,NULL,'1983-03-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(193,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Global Technology Fellowship','Global Technology Fellowship',NULL,NULL,NULL,NULL,NULL,'Both','2104892393',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Technology Fellowship',NULL,NULL,NULL,0,NULL,NULL,138,'Global Technology Fellowship',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(194,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Billy','Billy Jensen',NULL,NULL,NULL,NULL,NULL,'Both','1055811033',NULL,'Sample Data','Billy','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Billy',1,NULL,'Dear Billy',1,NULL,'Billy Jensen',NULL,2,'1998-04-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(195,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Ashley','Ashley Yadav Sr.',NULL,NULL,NULL,NULL,NULL,'Both','4195605846',NULL,'Sample Data','Ashley','','Yadav',NULL,2,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Yadav Sr.',NULL,2,'1975-05-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(196,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Jay','Dr. Jay Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','281953359',NULL,'Sample Data','Jay','X','Jacobs',4,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Dr. Jay Jacobs',NULL,NULL,'1987-03-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(197,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Roberts-Díaz, Herminia','Herminia Roberts-Díaz',NULL,NULL,NULL,NULL,NULL,'Both','1038802065',NULL,'Sample Data','Herminia','','Roberts-Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Roberts-Díaz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(198,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'lashawndacooper@infomail.org','lashawndacooper@infomail.org',NULL,NULL,NULL,NULL,NULL,'Both','1268295903',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear lashawndacooper@infomail.org',1,NULL,'Dear lashawndacooper@infomail.org',1,NULL,'lashawndacooper@infomail.org',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(199,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Prentice, Teddy','Mr. Teddy Prentice',NULL,NULL,NULL,'5',NULL,'Both','3075761968',NULL,'Sample Data','Teddy','O','Prentice',3,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Mr. Teddy Prentice',NULL,NULL,'1983-07-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(200,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'New Mexico Education Collective','New Mexico Education Collective',NULL,NULL,NULL,NULL,NULL,'Both','504872690',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'New Mexico Education Collective',NULL,NULL,NULL,0,NULL,NULL,NULL,'New Mexico Education Collective',NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'),(201,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Claudio','Mr. Claudio Barkley II',NULL,NULL,NULL,'4',NULL,'Both','321246175',NULL,'Sample Data','Claudio','C','Barkley',3,3,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Mr. Claudio Barkley II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-20 17:35:05'); +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-01-16 12:41:51'),(2,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Robertson, Shad','Shad Robertson',NULL,NULL,NULL,'4',NULL,'Both','2947646147',NULL,'Sample Data','Shad','','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Robertson',NULL,2,'1996-12-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:14'),(3,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Josefa','Dr. Josefa Robertson',NULL,NULL,NULL,NULL,NULL,'Both','3330358336',NULL,'Sample Data','Josefa','G','Robertson',4,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Dr. Josefa Robertson',NULL,NULL,'1973-10-31',1,'2014-10-14',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:13'),(4,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Laree','Laree Jensen',NULL,NULL,NULL,'5',NULL,'Both','2534513195',NULL,'Sample Data','Laree','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Laree',1,NULL,'Dear Laree',1,NULL,'Laree Jensen',NULL,1,'1966-08-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:47'),(5,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Reynolds, Roland','Roland Reynolds Sr.',NULL,NULL,NULL,NULL,NULL,'Both','3254347372',NULL,'Sample Data','Roland','P','Reynolds',NULL,2,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Roland Reynolds Sr.',NULL,NULL,'1985-07-24',0,NULL,NULL,NULL,'Buffalo Family Partnership',NULL,NULL,78,0,NULL,'2015-01-16 12:43:30'),(6,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Magan','Magan Samson',NULL,NULL,NULL,'1',NULL,'Both','2138748254',NULL,'Sample Data','Magan','','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Magan Samson',NULL,1,'1970-03-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:45'),(7,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jacobs-Patel, Merrie','Merrie Jacobs-Patel',NULL,NULL,NULL,NULL,NULL,'Both','1609127267',NULL,'Sample Data','Merrie','','Jacobs-Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Merrie Jacobs-Patel',NULL,1,'1993-09-14',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:18'),(8,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Yadav, Jerome','Mr. Jerome Yadav',NULL,NULL,NULL,NULL,NULL,'Both','2655948882',NULL,'Sample Data','Jerome','','Yadav',3,NULL,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Mr. Jerome Yadav',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:39'),(9,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Jed','Jed Patel',NULL,NULL,NULL,NULL,NULL,'Both','343873374',NULL,'Sample Data','Jed','','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Patel',NULL,2,'1963-03-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:57'),(10,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'McReynolds, Iris','Dr. Iris McReynolds',NULL,NULL,NULL,'4',NULL,'Both','2556119128',NULL,'Sample Data','Iris','Q','McReynolds',4,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Dr. Iris McReynolds',NULL,1,NULL,1,'2014-07-21',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:58'),(11,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Iris','Iris Olsen',NULL,NULL,NULL,'5',NULL,'Both','313880548',NULL,'Sample Data','Iris','C','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Olsen',NULL,1,'1973-06-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:15'),(12,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Ivanov family','Ivanov family',NULL,NULL,NULL,NULL,NULL,'Both','2450779112',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Ivanov family',5,NULL,'Dear Ivanov family',2,NULL,'Ivanov family',NULL,NULL,NULL,0,NULL,'Ivanov family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:21'),(13,'Household',NULL,0,0,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-01-16 12:43:22'),(14,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Cooper, Scott','Mr. Scott Cooper Jr.',NULL,NULL,NULL,'5',NULL,'Both','2653995804',NULL,'Sample Data','Scott','','Cooper',3,1,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Mr. Scott Cooper Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:02'),(15,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Magan','Mrs. Magan Cruz',NULL,NULL,NULL,'2',NULL,'Both','3859349817',NULL,'Sample Data','Magan','','Cruz',1,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Mrs. Magan Cruz',NULL,1,'1989-09-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:20'),(16,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'wz.deforest@spamalot.net','wz.deforest@spamalot.net',NULL,NULL,NULL,'3',NULL,'Both','1941743825',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Dear wz.deforest@spamalot.net',1,NULL,'Dear wz.deforest@spamalot.net',1,NULL,'wz.deforest@spamalot.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:19'),(17,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Grant, Jed','Jed Grant II',NULL,NULL,NULL,'1',NULL,'Both','2644056120',NULL,'Sample Data','Jed','T','Grant',NULL,3,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Grant II',NULL,NULL,'1966-12-24',0,NULL,NULL,NULL,'Global Sports Partnership',NULL,NULL,67,0,NULL,'2015-01-16 12:43:27'),(18,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Wilson, Irvin','Dr. Irvin Wilson',NULL,NULL,NULL,NULL,NULL,'Both','441477896',NULL,'Sample Data','Irvin','','Wilson',4,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Dr. Irvin Wilson',NULL,2,'1990-08-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:16'),(19,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Lincoln','Lincoln McReynolds Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2687392106',NULL,'Sample Data','Lincoln','','McReynolds',NULL,2,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Lincoln McReynolds Sr.',NULL,NULL,'1992-11-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:41'),(20,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Shauna','Shauna Jensen',NULL,NULL,NULL,NULL,NULL,'Both','108136044',NULL,'Sample Data','Shauna','','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Jensen',NULL,1,'1996-01-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:15'),(21,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Deforest, Ray','Mr. Ray Deforest Sr.',NULL,NULL,NULL,'5',NULL,'Both','3478479191',NULL,'Sample Data','Ray','','Deforest',3,2,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Mr. Ray Deforest Sr.',NULL,2,'1973-06-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:18'),(22,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Müller, Erik','Mr. Erik Müller III',NULL,NULL,NULL,NULL,NULL,'Both','826359334',NULL,'Sample Data','Erik','','Müller',3,4,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Mr. Erik Müller III',NULL,NULL,'1951-12-03',1,'2014-02-13',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:59'),(23,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Robertson, Elbert','Dr. Elbert Robertson',NULL,NULL,NULL,NULL,NULL,'Both','3684824833',NULL,'Sample Data','Elbert','N','Robertson',4,NULL,NULL,NULL,1,NULL,'Dear Elbert',1,NULL,'Dear Elbert',1,NULL,'Dr. Elbert Robertson',NULL,2,'1962-09-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:42'),(24,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'lashawndat48@fishmail.co.uk','lashawndat48@fishmail.co.uk',NULL,NULL,NULL,'1',NULL,'Both','1251232201',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear lashawndat48@fishmail.co.uk',1,NULL,'Dear lashawndat48@fishmail.co.uk',1,NULL,'lashawndat48@fishmail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:11'),(25,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Ashley','Ashley Jensen',NULL,NULL,NULL,'5',NULL,'Both','3241907591',NULL,'Sample Data','Ashley','T','Jensen',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Jensen',NULL,NULL,'1974-09-21',0,NULL,NULL,NULL,'Ohio Food Partnership',NULL,NULL,124,0,NULL,'2015-01-16 12:43:26'),(26,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Errol','Errol Díaz',NULL,NULL,NULL,'2',NULL,'Both','4116027034',NULL,'Sample Data','Errol','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Díaz',NULL,2,'1949-04-17',1,'2014-12-05',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:50'),(27,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Brent','Brent Lee Jr.',NULL,NULL,NULL,'5',NULL,'Both','3880593995',NULL,'Sample Data','Brent','Y','Lee',NULL,1,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Lee Jr.',NULL,NULL,'1977-03-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:40'),(28,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Russell','Russell Cruz',NULL,NULL,NULL,'3',NULL,'Both','3756174623',NULL,'Sample Data','Russell','','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Cruz',NULL,2,NULL,1,'2014-11-10',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:03'),(29,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Samson family','Samson family',NULL,NULL,NULL,'4',NULL,'Both','333421926',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samson family',5,NULL,'Dear Samson family',2,NULL,'Samson family',NULL,NULL,NULL,0,NULL,'Samson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:20'),(30,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terrell, Daren','Mr. Daren Terrell III',NULL,NULL,NULL,'5',NULL,'Both','1552940951',NULL,'Sample Data','Daren','','Terrell',3,4,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Mr. Daren Terrell III',NULL,NULL,'1941-06-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:59'),(31,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs-Patel family','Jacobs-Patel family',NULL,NULL,NULL,'4',NULL,'Both','3843428799',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jacobs-Patel family',5,NULL,'Dear Jacobs-Patel family',2,NULL,'Jacobs-Patel family',NULL,NULL,NULL,0,NULL,'Jacobs-Patel family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:25'),(32,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Jed','Jed Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','435001033',NULL,'Sample Data','Jed','','Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Dimitrov',NULL,2,'1934-10-04',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:46'),(33,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Terrell, Claudio','Dr. Claudio Terrell Sr.',NULL,NULL,NULL,NULL,NULL,'Both','941491020',NULL,'Sample Data','Claudio','N','Terrell',4,2,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Dr. Claudio Terrell Sr.',NULL,2,'1955-12-17',1,'2014-05-22',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:53'),(34,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'badams76@airmail.biz','badams76@airmail.biz',NULL,NULL,NULL,'5',NULL,'Both','1210426469',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear badams76@airmail.biz',1,NULL,'Dear badams76@airmail.biz',1,NULL,'badams76@airmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:48'),(35,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Wattson, Rebekah','Rebekah Wattson',NULL,NULL,NULL,'1',NULL,'Both','289475581',NULL,'Sample Data','Rebekah','E','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Rebekah',1,NULL,'Dear Rebekah',1,NULL,'Rebekah Wattson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:11'),(36,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Samson, Kandace','Kandace Samson',NULL,NULL,NULL,NULL,NULL,'Both','4288681899',NULL,'Sample Data','Kandace','G','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Kandace Samson',NULL,NULL,'1974-01-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:09'),(37,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Rosario','Rosario Robertson Sr.',NULL,NULL,NULL,'2',NULL,'Both','1907398578',NULL,'Sample Data','Rosario','T','Robertson',NULL,2,NULL,NULL,1,NULL,'Dear Rosario',1,NULL,'Dear Rosario',1,NULL,'Rosario Robertson Sr.',NULL,2,'1951-11-05',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:13'),(38,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Olsen family','Olsen family',NULL,NULL,NULL,'2',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-01-16 12:43:23'),(39,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Wattson, Teddy','Teddy Wattson',NULL,NULL,NULL,NULL,NULL,'Both','3676733183',NULL,'Sample Data','Teddy','','Wattson',NULL,NULL,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Wattson',NULL,2,'1943-02-02',1,'2014-10-07',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:10'),(40,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper-Wattson, Lou','Mr. Lou Cooper-Wattson Sr.',NULL,NULL,NULL,NULL,NULL,'Both','940301646',NULL,'Sample Data','Lou','R','Cooper-Wattson',3,2,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Mr. Lou Cooper-Wattson Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:10'),(41,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Lincoln Empowerment Systems','Lincoln Empowerment Systems',NULL,NULL,NULL,NULL,NULL,'Both','2525197295',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Lincoln Empowerment Systems',NULL,NULL,NULL,0,NULL,NULL,47,'Lincoln Empowerment Systems',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:28'),(42,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Heidi','Ms. Heidi Grant',NULL,NULL,NULL,'2',NULL,'Both','46996647',NULL,'Sample Data','Heidi','T','Grant',2,NULL,NULL,NULL,1,NULL,'Dear Heidi',1,NULL,'Dear Heidi',1,NULL,'Ms. Heidi Grant',NULL,1,'1951-07-17',1,'2014-11-20',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:05'),(43,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Clint','Dr. Clint Samson',NULL,NULL,NULL,NULL,NULL,'Both','1111759709',NULL,'Sample Data','Clint','','Samson',4,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Dr. Clint Samson',NULL,NULL,'1987-08-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:08'),(44,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Olsen, Irvin','Irvin Olsen Jr.',NULL,NULL,NULL,'1',NULL,'Both','2016030282',NULL,'Sample Data','Irvin','O','Olsen',NULL,1,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Irvin Olsen Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:15'),(45,'Household',NULL,1,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-01-16 12:43:21'),(46,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Łąchowski, Barry','Barry Łąchowski',NULL,NULL,NULL,NULL,NULL,'Both','2573012896',NULL,'Sample Data','Barry','','Łąchowski',NULL,NULL,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Barry Łąchowski',NULL,NULL,NULL,1,'2014-09-25',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:51'),(47,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Megan','Megan Grant',NULL,NULL,NULL,'3',NULL,'Both','597745467',NULL,'Sample Data','Megan','V','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Megan Grant',NULL,NULL,NULL,0,NULL,NULL,NULL,'Lincoln Empowerment Systems',NULL,NULL,41,0,NULL,'2015-01-16 12:43:27'),(48,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Deforest, Roland','Mr. Roland Deforest Sr.',NULL,NULL,NULL,NULL,NULL,'Both','3507897798',NULL,'Sample Data','Roland','E','Deforest',3,2,NULL,NULL,1,NULL,'Dear Roland',1,NULL,'Dear Roland',1,NULL,'Mr. Roland Deforest Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:19'),(49,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Robertson, Herminia','Herminia Robertson',NULL,NULL,NULL,'1',NULL,'Both','1577316832',NULL,'Sample Data','Herminia','','Robertson',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Robertson',NULL,1,'1979-10-02',0,NULL,NULL,NULL,'Northpoint Software Trust',NULL,NULL,154,0,NULL,'2015-01-16 12:43:26'),(50,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jacobs, Brent','Brent Jacobs',NULL,NULL,NULL,'4',NULL,'Both','2357186266',NULL,'Sample Data','Brent','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent Jacobs',NULL,NULL,'1949-02-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:55'),(51,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Samuels, Teresa','Teresa Samuels',NULL,NULL,NULL,'3',NULL,'Both','2575395037',NULL,'Sample Data','Teresa','N','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Teresa',1,NULL,'Dear Teresa',1,NULL,'Teresa Samuels',NULL,1,'1930-04-17',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:52'),(52,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Kenny','Kenny Jameson III',NULL,NULL,NULL,'2',NULL,'Both','3782185889',NULL,'Sample Data','Kenny','','Jameson',NULL,4,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Kenny Jameson III',NULL,NULL,'1971-03-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:01'),(53,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Cadell Peace Network','Cadell Peace Network',NULL,NULL,NULL,NULL,NULL,'Both','3643285360',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Cadell Peace Network',NULL,NULL,NULL,0,NULL,NULL,NULL,'Cadell Peace Network',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:26'),(54,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Angelika','Angelika Grant',NULL,NULL,NULL,'4',NULL,'Both','4136801675',NULL,'Sample Data','Angelika','','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Angelika',1,NULL,'Dear Angelika',1,NULL,'Angelika Grant',NULL,NULL,'1972-11-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:39'),(55,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Betty','Betty Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','1501740460',NULL,'Sample Data','Betty','','Ivanov',NULL,NULL,NULL,NULL,1,NULL,'Dear Betty',1,NULL,'Dear Betty',1,NULL,'Betty Ivanov',NULL,1,'1985-01-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:03'),(56,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Ashley','Ashley González II',NULL,NULL,NULL,NULL,NULL,'Both','1248338675',NULL,'Sample Data','Ashley','','González',NULL,3,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley González II',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:39'),(57,'Organization',NULL,1,0,0,0,1,0,NULL,NULL,'Simon Development Initiative','Simon Development Initiative',NULL,NULL,NULL,NULL,NULL,'Both','2644158647',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Simon Development Initiative',NULL,NULL,NULL,0,NULL,NULL,102,'Simon Development Initiative',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:29'),(58,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds, Esta','Dr. Esta McReynolds',NULL,NULL,NULL,NULL,NULL,'Both','3751444611',NULL,'Sample Data','Esta','','McReynolds',4,NULL,NULL,NULL,1,NULL,'Dear Esta',1,NULL,'Dear Esta',1,NULL,'Dr. Esta McReynolds',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:41'),(59,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Łąchowski-Wilson, Brittney','Brittney Łąchowski-Wilson',NULL,NULL,NULL,'2',NULL,'Both','3728150060',NULL,'Sample Data','Brittney','','Łąchowski-Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Brittney',1,NULL,'Dear Brittney',1,NULL,'Brittney Łąchowski-Wilson',NULL,1,'1985-04-03',0,NULL,NULL,NULL,'New York Music Fund',NULL,NULL,161,0,NULL,'2015-01-16 12:43:31'),(60,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Jensen, Andrew','Mr. Andrew Jensen',NULL,NULL,NULL,NULL,NULL,'Both','3801995889',NULL,'Sample Data','Andrew','V','Jensen',3,NULL,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Mr. Andrew Jensen',NULL,2,'1987-10-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:00'),(61,'Household',NULL,0,1,0,0,1,0,NULL,NULL,'McReynolds-Smith family','McReynolds-Smith family',NULL,NULL,NULL,NULL,NULL,'Both','2581920458',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear McReynolds-Smith family',5,NULL,'Dear McReynolds-Smith family',2,NULL,'McReynolds-Smith family',NULL,NULL,NULL,0,NULL,'McReynolds-Smith family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:21'),(62,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jensen, Jerome','Mr. Jerome Jensen II',NULL,NULL,NULL,'2',NULL,'Both','2774980739',NULL,'Sample Data','Jerome','N','Jensen',3,3,NULL,NULL,1,NULL,'Dear Jerome',1,NULL,'Dear Jerome',1,NULL,'Mr. Jerome Jensen II',NULL,NULL,'1925-08-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:49'),(63,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Patel, Ashlie','Ashlie Patel',NULL,NULL,NULL,'4',NULL,'Both','1539401891',NULL,'Sample Data','Ashlie','','Patel',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashlie',1,NULL,'Dear Ashlie',1,NULL,'Ashlie Patel',NULL,1,'1947-12-03',1,'2014-11-10',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:17'),(64,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'olsens@mymail.co.in','olsens@mymail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','2322011233',NULL,'Sample Data',NULL,NULL,NULL,2,NULL,NULL,NULL,1,NULL,'Dear olsens@mymail.co.in',1,NULL,'Dear olsens@mymail.co.in',1,NULL,'olsens@mymail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:42'),(65,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'González, Ashley','Ms. Ashley González',NULL,NULL,NULL,NULL,NULL,'Both','1248338675',NULL,'Sample Data','Ashley','','González',2,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ms. Ashley González',NULL,1,'1984-09-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:44'),(66,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Jed','Dr. Jed Olsen',NULL,NULL,NULL,NULL,NULL,'Both','1956151934',NULL,'Sample Data','Jed','','Olsen',4,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Dr. Jed Olsen',NULL,NULL,'1942-04-25',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:39'),(67,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Global Sports Partnership','Global Sports Partnership',NULL,NULL,NULL,NULL,NULL,'Both','1090226321',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Sports Partnership',NULL,NULL,NULL,0,NULL,NULL,17,'Global Sports Partnership',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:27'),(68,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cruz, Sherman','Sherman Cruz III',NULL,NULL,NULL,'2',NULL,'Both','3295870064',NULL,'Sample Data','Sherman','','Cruz',NULL,4,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Sherman Cruz III',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:04'),(69,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Arlyne','Mrs. Arlyne Cooper',NULL,NULL,NULL,NULL,NULL,'Both','1117506834',NULL,'Sample Data','Arlyne','','Cooper',1,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Mrs. Arlyne Cooper',NULL,1,'1950-07-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:47'),(70,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Arlyne','Ms. Arlyne Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','4232136365',NULL,'Sample Data','Arlyne','B','Ivanov',2,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Ms. Arlyne Ivanov',NULL,1,'1960-02-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:04'),(71,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terrell, Craig','Craig Terrell',NULL,NULL,NULL,NULL,NULL,'Both','1728721271',NULL,'Sample Data','Craig','','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Terrell',NULL,2,'2002-04-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:59'),(72,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samuels, Mei','Mei Samuels',NULL,NULL,NULL,NULL,NULL,'Both','2521418918',NULL,'Sample Data','Mei','','Samuels',NULL,NULL,NULL,NULL,1,NULL,'Dear Mei',1,NULL,'Dear Mei',1,NULL,'Mei Samuels',NULL,1,'1963-12-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:12'),(73,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Jacob','Mr. Jacob Cruz II',NULL,NULL,NULL,NULL,NULL,'Both','3289715792',NULL,'Sample Data','Jacob','B','Cruz',3,3,NULL,NULL,1,NULL,'Dear Jacob',1,NULL,'Dear Jacob',1,NULL,'Mr. Jacob Cruz II',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:19'),(74,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov, Errol','Errol Ivanov Sr.',NULL,NULL,NULL,'2',NULL,'Both','3859438937',NULL,'Sample Data','Errol','N','Ivanov',NULL,2,NULL,NULL,1,NULL,'Dear Errol',1,NULL,'Dear Errol',1,NULL,'Errol Ivanov Sr.',NULL,2,'2003-01-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:05'),(75,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Smith, Junko','Junko Smith',NULL,NULL,NULL,'3',NULL,'Both','1889402326',NULL,'Sample Data','Junko','I','Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Smith',NULL,1,'1980-04-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:07'),(76,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'samson.roland@testmail.co.nz','samson.roland@testmail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','1950640490',NULL,'Sample Data',NULL,NULL,NULL,NULL,1,NULL,NULL,1,NULL,'Dear samson.roland@testmail.co.nz',1,NULL,'Dear samson.roland@testmail.co.nz',1,NULL,'samson.roland@testmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:09'),(77,'Individual',NULL,1,1,0,0,1,0,NULL,NULL,'Lee-Cruz, Josefa','Mrs. Josefa Lee-Cruz',NULL,NULL,NULL,NULL,NULL,'Both','2523777568',NULL,'Sample Data','Josefa','K','Lee-Cruz',1,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Mrs. Josefa Lee-Cruz',NULL,1,'1964-01-12',1,'2014-07-21',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:04'),(78,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Buffalo Family Partnership','Buffalo Family Partnership',NULL,NULL,NULL,'2',NULL,'Both','700930938',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Buffalo Family Partnership',NULL,NULL,NULL,0,NULL,NULL,5,'Buffalo Family Partnership',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:30'),(79,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Yadav, Shad','Shad Yadav',NULL,NULL,NULL,NULL,NULL,'Both','3704457125',NULL,'Sample Data','Shad','F','Yadav',NULL,NULL,NULL,NULL,1,NULL,'Dear Shad',1,NULL,'Dear Shad',1,NULL,'Shad Yadav',NULL,2,'1941-02-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:42'),(80,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Megan','Mrs. Megan Wilson',NULL,NULL,NULL,NULL,NULL,'Both','4146323873',NULL,'Sample Data','Megan','','Wilson',1,NULL,NULL,NULL,1,NULL,'Dear Megan',1,NULL,'Dear Megan',1,NULL,'Mrs. Megan Wilson',NULL,NULL,NULL,1,'2014-10-21',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:39'),(81,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'ashliemller16@fakemail.co.uk','ashliemller16@fakemail.co.uk',NULL,NULL,NULL,'2',NULL,'Both','2726925823',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear ashliemller16@fakemail.co.uk',1,NULL,'Dear ashliemller16@fakemail.co.uk',1,NULL,'ashliemller16@fakemail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:41'),(82,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Wilson family','Wilson family',NULL,NULL,NULL,'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-01-16 12:43:24'),(83,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'McReynolds, Bob','Bob McReynolds III',NULL,NULL,NULL,'2',NULL,'Both','3806973538',NULL,'Sample Data','Bob','E','McReynolds',NULL,4,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Bob McReynolds III',NULL,2,'1984-11-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:45'),(84,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'ma.ivanov@fishmail.co.in','ma.ivanov@fishmail.co.in',NULL,NULL,NULL,NULL,NULL,'Both','3104438143',NULL,'Sample Data',NULL,NULL,NULL,3,4,NULL,NULL,1,NULL,'Dear ma.ivanov@fishmail.co.in',1,NULL,'Dear ma.ivanov@fishmail.co.in',1,NULL,'ma.ivanov@fishmail.co.in',NULL,NULL,NULL,0,NULL,NULL,NULL,'Global Technology School',NULL,NULL,176,0,NULL,'2015-01-16 12:43:29'),(85,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Junko','Junko Wilson',NULL,NULL,NULL,'2',NULL,'Both','2535688637',NULL,'Sample Data','Junko','Q','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Junko',1,NULL,'Dear Junko',1,NULL,'Junko Wilson',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:16'),(86,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Urban Arts Partners','Urban Arts Partners',NULL,NULL,NULL,NULL,NULL,'Both','772584698',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Urban Arts Partners',NULL,NULL,NULL,0,NULL,NULL,162,'Urban Arts Partners',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:27'),(87,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Grant, Juliann','Ms. Juliann Grant',NULL,NULL,NULL,'4',NULL,'Both','1161460098',NULL,'Sample Data','Juliann','O','Grant',2,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Ms. Juliann Grant',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:50'),(88,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Allan','Allan Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','238176924',NULL,'Sample Data','Allan','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Jacobs',NULL,2,'2007-03-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:10'),(89,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen family','Jensen family',NULL,NULL,NULL,NULL,NULL,'Both','797435572',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Jensen family',5,NULL,'Dear Jensen family',2,NULL,'Jensen family',NULL,NULL,NULL,0,NULL,'Jensen family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:23'),(90,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'jacobs-patel.lou5@airmail.biz','jacobs-patel.lou5@airmail.biz',NULL,NULL,NULL,'2',NULL,'Both','3962497295',NULL,'Sample Data',NULL,NULL,NULL,4,1,NULL,NULL,1,NULL,'Dear jacobs-patel.lou5@airmail.biz',1,NULL,'Dear jacobs-patel.lou5@airmail.biz',1,NULL,'jacobs-patel.lou5@airmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:17'),(91,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Lincoln','Mr. Lincoln Samson',NULL,NULL,NULL,'4',NULL,'Both','1364687804',NULL,'Sample Data','Lincoln','E','Samson',3,NULL,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Samson',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:02'),(92,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Nicole','Nicole Wagner',NULL,NULL,NULL,'5',NULL,'Both','2843169462',NULL,'Sample Data','Nicole','','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Nicole',1,NULL,'Dear Nicole',1,NULL,'Nicole Wagner',NULL,1,'1996-08-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:01'),(93,'Individual',NULL,1,0,0,0,1,0,NULL,NULL,'Ivanov, Claudio','Dr. Claudio Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','447991366',NULL,'Sample Data','Claudio','','Ivanov',4,NULL,NULL,NULL,1,NULL,'Dear Claudio',1,NULL,'Dear Claudio',1,NULL,'Dr. Claudio Ivanov',NULL,NULL,NULL,1,'2014-04-28',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:50'),(94,'Household',NULL,0,0,0,0,0,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-01-16 12:43:22'),(95,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Deforest family','Deforest family',NULL,NULL,NULL,'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-01-16 12:43:25'),(96,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samuels-Parker, Sonny','Mr. Sonny Samuels-Parker III',NULL,NULL,NULL,NULL,NULL,'Both','2227326391',NULL,'Sample Data','Sonny','O','Samuels-Parker',3,4,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Mr. Sonny Samuels-Parker III',NULL,NULL,'1992-07-29',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:13'),(97,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Local Literacy Systems','Local Literacy Systems',NULL,NULL,NULL,NULL,NULL,'Both','3910469366',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Literacy Systems',NULL,NULL,NULL,0,NULL,NULL,158,'Local Literacy Systems',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:31'),(98,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Reynolds, Allen','Mr. Allen Reynolds',NULL,NULL,NULL,'5',NULL,'Both','3330814148',NULL,'Sample Data','Allen','C','Reynolds',3,NULL,NULL,NULL,1,NULL,'Dear Allen',1,NULL,'Dear Allen',1,NULL,'Mr. Allen Reynolds',NULL,NULL,'1987-01-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:57'),(99,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Magan','Dr. Magan Jensen',NULL,NULL,NULL,NULL,NULL,'Both','1126354572',NULL,'Sample Data','Magan','','Jensen',4,NULL,NULL,NULL,1,NULL,'Dear Magan',1,NULL,'Dear Magan',1,NULL,'Dr. Magan Jensen',NULL,NULL,'1944-08-16',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:52'),(100,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Sonny','Sonny Wagner',NULL,NULL,NULL,'5',NULL,'Both','93577145',NULL,'Sample Data','Sonny','K','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Sonny',1,NULL,'Dear Sonny',1,NULL,'Sonny Wagner',NULL,2,NULL,1,'2014-04-05',NULL,NULL,'Vancouver Poetry Association',NULL,NULL,105,0,NULL,'2015-01-16 12:43:30'),(101,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Terry, Jay','Jay Terry Jr.',NULL,NULL,NULL,NULL,NULL,'Both','1881110298',NULL,'Sample Data','Jay','','Terry',NULL,1,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Terry Jr.',NULL,2,'1988-05-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:59'),(102,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Ivanov, Miguel','Mr. Miguel Ivanov',NULL,NULL,NULL,NULL,NULL,'Both','3632283471',NULL,'Sample Data','Miguel','O','Ivanov',3,NULL,NULL,NULL,1,NULL,'Dear Miguel',1,NULL,'Dear Miguel',1,NULL,'Mr. Miguel Ivanov',NULL,NULL,'1942-09-15',0,NULL,NULL,NULL,'Simon Development Initiative',NULL,NULL,57,0,NULL,'2015-01-16 12:43:29'),(103,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'lawerenceterrell18@infomail.net','lawerenceterrell18@infomail.net',NULL,NULL,NULL,NULL,NULL,'Both','3764294357',NULL,'Sample Data',NULL,NULL,NULL,NULL,3,NULL,NULL,1,NULL,'Dear lawerenceterrell18@infomail.net',1,NULL,'Dear lawerenceterrell18@infomail.net',1,NULL,'lawerenceterrell18@infomail.net',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:40'),(104,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Robertson, Ivey','Mrs. Ivey Robertson',NULL,NULL,NULL,'1',NULL,'Both','2177307295',NULL,'Sample Data','Ivey','U','Robertson',1,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Mrs. Ivey Robertson',NULL,1,'1959-09-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:39'),(105,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Vancouver Poetry Association','Vancouver Poetry Association',NULL,NULL,NULL,NULL,NULL,'Both','3199921562',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Vancouver Poetry Association',NULL,NULL,NULL,0,NULL,NULL,100,'Vancouver Poetry Association',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:30'),(106,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jacobs, Ashley','Ashley Jacobs',NULL,NULL,NULL,'1',NULL,'Both','2224166572',NULL,'Sample Data','Ashley','','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Jacobs',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:01'),(107,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Samuels-Parker, Kiara','Kiara Samuels-Parker',NULL,NULL,NULL,'5',NULL,'Both','259935262',NULL,'Sample Data','Kiara','V','Samuels-Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Kiara',1,NULL,'Dear Kiara',1,NULL,'Kiara Samuels-Parker',NULL,1,'1980-02-02',0,NULL,NULL,NULL,'Bay Environmental Fellowship',NULL,NULL,164,0,NULL,'2015-01-16 12:43:32'),(108,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Wagner, Clint','Clint Wagner',NULL,NULL,NULL,NULL,NULL,'Both','205032941',NULL,'Sample Data','Clint','Z','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Clint',1,NULL,'Dear Clint',1,NULL,'Clint Wagner',NULL,2,'1980-06-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:54'),(109,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Community Wellness Initiative','Community Wellness Initiative',NULL,NULL,NULL,NULL,NULL,'Both','3374225899',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Community Wellness Initiative',NULL,NULL,NULL,0,NULL,NULL,132,'Community Wellness Initiative',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:28'),(110,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Lincoln','Mr. Lincoln Ivanov III',NULL,NULL,NULL,'3',NULL,'Both','1295096764',NULL,'Sample Data','Lincoln','R','Ivanov',3,4,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Ivanov III',NULL,2,'1982-02-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:56'),(111,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'cooper-lee.ashley@notmail.biz','cooper-lee.ashley@notmail.biz',NULL,NULL,NULL,'3',NULL,'Both','476936617',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear cooper-lee.ashley@notmail.biz',1,NULL,'Dear cooper-lee.ashley@notmail.biz',1,NULL,'cooper-lee.ashley@notmail.biz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:02'),(112,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds-Smith, Kathlyn','Dr. Kathlyn McReynolds-Smith',NULL,NULL,NULL,'3',NULL,'Both','1634015765',NULL,'Sample Data','Kathlyn','','McReynolds-Smith',4,NULL,NULL,NULL,1,NULL,'Dear Kathlyn',1,NULL,'Dear Kathlyn',1,NULL,'Dr. Kathlyn McReynolds-Smith',NULL,NULL,'1991-03-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:08'),(113,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'brentc@fakemail.com','brentc@fakemail.com',NULL,NULL,NULL,NULL,NULL,'Both','4057965617',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear brentc@fakemail.com',1,NULL,'Dear brentc@fakemail.com',1,NULL,'brentc@fakemail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:39'),(114,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson, Andrew','Andrew Wattson Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3954041415',NULL,'Sample Data','Andrew','V','Wattson',NULL,1,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew Wattson Jr.',NULL,NULL,'2000-02-12',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:10'),(115,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Blackwell, Ashley','Mrs. Ashley Blackwell',NULL,NULL,NULL,NULL,NULL,'Both','2843113739',NULL,'Sample Data','Ashley','R','Blackwell',1,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Mrs. Ashley Blackwell',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:55'),(116,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Bob','Mr. Bob Jensen',NULL,NULL,NULL,NULL,NULL,'Both','2741288215',NULL,'Sample Data','Bob','','Jensen',3,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Mr. Bob Jensen',NULL,2,NULL,0,NULL,NULL,NULL,'Local Music Solutions',NULL,NULL,174,0,NULL,'2015-01-16 12:43:26'),(117,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'josefanielsen97@infomail.co.uk','josefanielsen97@infomail.co.uk',NULL,NULL,NULL,'3',NULL,'Both','3863669561',NULL,'Sample Data',NULL,NULL,NULL,1,NULL,NULL,NULL,1,NULL,'Dear josefanielsen97@infomail.co.uk',1,NULL,'Dear josefanielsen97@infomail.co.uk',1,NULL,'josefanielsen97@infomail.co.uk',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:46'),(118,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Zope, Sherman','Mr. Sherman Zope',NULL,NULL,NULL,NULL,NULL,'Both','3265645175',NULL,'Sample Data','Sherman','F','Zope',3,NULL,NULL,NULL,1,NULL,'Dear Sherman',1,NULL,'Dear Sherman',1,NULL,'Mr. Sherman Zope',NULL,2,'1976-07-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:53'),(119,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Martin Luther King Advocacy Center','Martin Luther King Advocacy Center',NULL,NULL,NULL,NULL,NULL,'Both','97521720',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Martin Luther King Advocacy Center',NULL,NULL,NULL,0,NULL,NULL,146,'Martin Luther King Advocacy Center',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:33'),(120,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Ohio Legal Center','Ohio Legal Center',NULL,NULL,NULL,'5',NULL,'Both','2544639694',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Ohio Legal Center',NULL,NULL,NULL,0,NULL,NULL,163,'Ohio Legal Center',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:28'),(121,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Ivanov, Erik','Mr. Erik Ivanov',NULL,NULL,NULL,'2',NULL,'Both','3358599046',NULL,'Sample Data','Erik','','Ivanov',3,NULL,NULL,NULL,1,NULL,'Dear Erik',1,NULL,'Dear Erik',1,NULL,'Mr. Erik Ivanov',NULL,2,'1948-12-26',1,'2014-10-26',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:04'),(122,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Dimitrov, Felisha','Felisha Dimitrov',NULL,NULL,NULL,NULL,NULL,'Both','754737383',NULL,'Sample Data','Felisha','','Dimitrov',NULL,NULL,NULL,NULL,1,NULL,'Dear Felisha',1,NULL,'Dear Felisha',1,NULL,'Felisha Dimitrov',NULL,1,'1929-03-31',1,'2014-04-28',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:55'),(123,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Díaz, Herminia','Herminia Díaz',NULL,NULL,NULL,'5',NULL,'Both','2340298735',NULL,'Sample Data','Herminia','','Díaz',NULL,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Herminia Díaz',NULL,1,'1973-12-10',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:58'),(124,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Ohio Food Partnership','Ohio Food Partnership',NULL,NULL,NULL,'4',NULL,'Both','3449739714',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Ohio Food Partnership',NULL,NULL,NULL,0,NULL,NULL,25,'Ohio Food Partnership',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:26'),(125,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Adams, Allan','Allan Adams',NULL,NULL,NULL,'3',NULL,'Both','221973733',NULL,'Sample Data','Allan','Z','Adams',NULL,NULL,NULL,NULL,1,NULL,'Dear Allan',1,NULL,'Dear Allan',1,NULL,'Allan Adams',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:01'),(126,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Wattson, Scott','Dr. Scott Wattson Sr.',NULL,NULL,NULL,'4',NULL,'Both','1951104062',NULL,'Sample Data','Scott','','Wattson',4,2,NULL,NULL,1,NULL,'Dear Scott',1,NULL,'Dear Scott',1,NULL,'Dr. Scott Wattson Sr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:51'),(127,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Olsen, Irvin','Irvin Olsen',NULL,NULL,NULL,'3',NULL,'Both','2016030282',NULL,'Sample Data','Irvin','R','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Irvin',1,NULL,'Dear Irvin',1,NULL,'Irvin Olsen',NULL,NULL,'1977-09-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:54'),(128,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cruz, Ashley','Ashley Cruz',NULL,NULL,NULL,NULL,NULL,'Both','2056649035',NULL,'Sample Data','Ashley','Y','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Cruz',NULL,1,'2010-12-27',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:36'),(129,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Cooper-Lee, Russell','Russell Cooper-Lee Sr.',NULL,NULL,NULL,'2',NULL,'Both','2492682835',NULL,'Sample Data','Russell','','Cooper-Lee',NULL,2,NULL,NULL,1,NULL,'Dear Russell',1,NULL,'Dear Russell',1,NULL,'Russell Cooper-Lee Sr.',NULL,2,'1994-02-19',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:02'),(130,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper-Lee family','Cooper-Lee family',NULL,NULL,NULL,NULL,NULL,'Both','3406074051',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Cooper-Lee family',5,NULL,'Dear Cooper-Lee family',2,NULL,'Cooper-Lee family',NULL,NULL,NULL,0,NULL,'Cooper-Lee family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:20'),(131,'Household',NULL,0,0,0,0,1,0,NULL,NULL,'Samuels-Parker family','Samuels-Parker family',NULL,NULL,NULL,NULL,NULL,'Both','3706886616',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samuels-Parker family',5,NULL,'Dear Samuels-Parker family',2,NULL,'Samuels-Parker family',NULL,NULL,NULL,0,NULL,'Samuels-Parker family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:23'),(132,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'samson.eleonor@spamalot.co.nz','samson.eleonor@spamalot.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','1859117819',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear samson.eleonor@spamalot.co.nz',1,NULL,'Dear samson.eleonor@spamalot.co.nz',1,NULL,'samson.eleonor@spamalot.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,'Community Wellness Initiative',NULL,NULL,109,0,NULL,'2015-01-16 12:43:28'),(133,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Grant, Iris','Iris Grant',NULL,NULL,NULL,NULL,NULL,'Both','2380499675',NULL,'Sample Data','Iris','R','Grant',NULL,NULL,NULL,NULL,1,NULL,'Dear Iris',1,NULL,'Dear Iris',1,NULL,'Iris Grant',NULL,1,'1969-08-23',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:06'),(134,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Elina','Elina Cruz',NULL,NULL,NULL,'3',NULL,'Both','967491185',NULL,'Sample Data','Elina','','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Elina',1,NULL,'Dear Elina',1,NULL,'Elina Cruz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:20'),(135,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Cruz, Ashley','Ashley Cruz',NULL,NULL,NULL,NULL,NULL,'Both','2056649035',NULL,'Sample Data','Ashley','','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ashley Cruz',NULL,NULL,'1994-02-15',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:04'),(136,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cooper, Josefa','Josefa Cooper',NULL,NULL,NULL,'5',NULL,'Both','1658731822',NULL,'Sample Data','Josefa','J','Cooper',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Cooper',NULL,1,'1948-01-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:41'),(137,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wattson-Terry, Josefa','Josefa Wattson-Terry',NULL,NULL,NULL,'1',NULL,'Both','1086620659',NULL,'Sample Data','Josefa','','Wattson-Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Josefa',1,NULL,'Dear Josefa',1,NULL,'Josefa Wattson-Terry',NULL,1,'1956-09-08',1,'2014-12-30',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:11'),(138,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Jed','Jed Terry',NULL,NULL,NULL,NULL,NULL,'Both','2004213447',NULL,'Sample Data','Jed','','Terry',NULL,NULL,NULL,NULL,1,NULL,'Dear Jed',1,NULL,'Dear Jed',1,NULL,'Jed Terry',NULL,2,'1950-05-26',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:11'),(139,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Lee, Barry','Barry Lee',NULL,NULL,NULL,NULL,NULL,'Both','609109551',NULL,'Sample Data','Barry','G','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Barry',1,NULL,'Dear Barry',1,NULL,'Barry Lee',NULL,2,'2003-01-07',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:58'),(140,'Household',NULL,1,0,0,0,0,0,NULL,NULL,'Samson family','Samson family',NULL,NULL,NULL,NULL,NULL,'Both','333421926',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Samson family',5,NULL,'Dear Samson family',2,NULL,'Samson family',NULL,NULL,NULL,0,NULL,'Samson family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:22'),(141,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'United Software Academy','United Software Academy',NULL,NULL,NULL,NULL,NULL,'Both','1172522918',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'United Software Academy',NULL,NULL,NULL,0,NULL,NULL,177,'United Software Academy',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:31'),(142,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'kv.wagner-deforest30@example.co.pl','kv.wagner-deforest30@example.co.pl',NULL,NULL,NULL,'2',NULL,'Both','2515069591',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear kv.wagner-deforest30@example.co.pl',1,NULL,'Dear kv.wagner-deforest30@example.co.pl',1,NULL,'kv.wagner-deforest30@example.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:18'),(143,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Ivanov, Daren','Dr. Daren Ivanov',NULL,NULL,NULL,'2',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,'1979-08-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:03'),(144,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wagner, Elizabeth','Elizabeth Wagner',NULL,NULL,NULL,NULL,NULL,'Both','1723956436',NULL,'Sample Data','Elizabeth','B','Wagner',NULL,NULL,NULL,NULL,1,NULL,'Dear Elizabeth',1,NULL,'Dear Elizabeth',1,NULL,'Elizabeth Wagner',NULL,1,'1953-05-06',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:38'),(145,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Alexia','Ms. Alexia Olsen',NULL,NULL,NULL,'1',NULL,'Both','1565274268',NULL,'Sample Data','Alexia','Q','Olsen',2,NULL,NULL,NULL,1,NULL,'Dear Alexia',1,NULL,'Dear Alexia',1,NULL,'Ms. Alexia Olsen',NULL,1,'1980-01-20',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:15'),(146,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'mllerl@sample.co.nz','mllerl@sample.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','3707060826',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear mllerl@sample.co.nz',1,NULL,'Dear mllerl@sample.co.nz',1,NULL,'mllerl@sample.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,'Martin Luther King Advocacy Center',NULL,NULL,119,0,NULL,'2015-01-16 12:43:32'),(147,'Household',NULL,0,0,0,0,0,0,NULL,NULL,'Patel family','Patel family',NULL,NULL,NULL,'5',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-01-16 12:43:21'),(148,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Virginia Advocacy Solutions','Virginia Advocacy Solutions',NULL,NULL,NULL,'1',NULL,'Both','1056139700',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Virginia Advocacy Solutions',NULL,NULL,NULL,0,NULL,NULL,NULL,'Virginia Advocacy Solutions',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:29'),(149,'Individual',NULL,0,1,0,0,1,0,NULL,NULL,'Wagner-Jensen, Kathleen','Ms. Kathleen Wagner-Jensen',NULL,NULL,NULL,'2',NULL,'Both','2947094534',NULL,'Sample Data','Kathleen','E','Wagner-Jensen',2,NULL,NULL,NULL,1,NULL,'Dear Kathleen',1,NULL,'Dear Kathleen',1,NULL,'Ms. Kathleen Wagner-Jensen',NULL,1,'1982-09-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:14'),(150,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Wattson, Arlyne','Ms. Arlyne Wattson',NULL,NULL,NULL,'2',NULL,'Both','2534537033',NULL,'Sample Data','Arlyne','','Wattson',2,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Ms. Arlyne Wattson',NULL,1,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:52'),(151,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Lee, Juliann','Juliann Lee',NULL,NULL,NULL,NULL,NULL,'Both','2086397264',NULL,'Sample Data','Juliann','A','Lee',NULL,NULL,NULL,NULL,1,NULL,'Dear Juliann',1,NULL,'Dear Juliann',1,NULL,'Juliann Lee',NULL,NULL,'1966-08-02',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:02'),(152,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Lee, Delana','Mrs. Delana Lee',NULL,NULL,NULL,'1',NULL,'Both','3418239378',NULL,'Sample Data','Delana','','Lee',1,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Mrs. Delana Lee',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:57'),(153,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jameson, Princess','Dr. Princess Jameson',NULL,NULL,NULL,NULL,NULL,'Both','2190557362',NULL,'Sample Data','Princess','','Jameson',4,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Dr. Princess Jameson',NULL,NULL,'1937-10-04',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:55'),(154,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Northpoint Software Trust','Northpoint Software Trust',NULL,NULL,NULL,NULL,NULL,'Both','3836871429',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Northpoint Software Trust',NULL,NULL,NULL,0,NULL,NULL,49,'Northpoint Software Trust',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:27'),(155,'Household',NULL,0,1,0,0,1,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-01-16 12:43:23'),(156,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'González, Sharyn','Sharyn González',NULL,NULL,NULL,'5',NULL,'Both','491929242',NULL,'Sample Data','Sharyn','V','González',NULL,NULL,NULL,NULL,1,NULL,'Dear Sharyn',1,NULL,'Dear Sharyn',1,NULL,'Sharyn González',NULL,1,'1987-09-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:56'),(157,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Lou','Lou Wilson Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3757116240',NULL,'Sample Data','Lou','','Wilson',NULL,1,NULL,NULL,1,NULL,'Dear Lou',1,NULL,'Dear Lou',1,NULL,'Lou Wilson Jr.',NULL,2,'1973-04-11',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:16'),(158,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Maxwell','Maxwell Jacobs',NULL,NULL,NULL,'2',NULL,'Both','269604807',NULL,'Sample Data','Maxwell','D','Jacobs',NULL,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Maxwell Jacobs',NULL,2,'1959-06-10',1,NULL,NULL,NULL,'Local Literacy Systems',NULL,NULL,97,0,NULL,'2015-01-16 12:43:31'),(159,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Samson, Troy','Troy Samson',NULL,NULL,NULL,NULL,NULL,'Both','4145447526',NULL,'Sample Data','Troy','A','Samson',NULL,NULL,NULL,NULL,1,NULL,'Dear Troy',1,NULL,'Dear Troy',1,NULL,'Troy Samson',NULL,NULL,'1936-04-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:37'),(160,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Patel, Princess','Ms. Princess Patel',NULL,NULL,NULL,NULL,NULL,'Both','2193825645',NULL,'Sample Data','Princess','K','Patel',2,NULL,NULL,NULL,1,NULL,'Dear Princess',1,NULL,'Dear Princess',1,NULL,'Ms. Princess Patel',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:06'),(161,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'New York Music Fund','New York Music Fund',NULL,NULL,NULL,NULL,NULL,'Both','2345114802',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'New York Music Fund',NULL,NULL,NULL,0,NULL,NULL,59,'New York Music Fund',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:31'),(162,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'landonj59@fakemail.co.pl','landonj59@fakemail.co.pl',NULL,NULL,NULL,'1',NULL,'Both','1021069209',NULL,'Sample Data',NULL,NULL,NULL,4,NULL,NULL,NULL,1,NULL,'Dear landonj59@fakemail.co.pl',1,NULL,'Dear landonj59@fakemail.co.pl',1,NULL,'landonj59@fakemail.co.pl',NULL,NULL,NULL,0,NULL,NULL,NULL,'Urban Arts Partners',NULL,NULL,86,0,NULL,'2015-01-16 12:43:27'),(163,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jameson, Shauna','Shauna Jameson',NULL,NULL,NULL,'5',NULL,'Both','318889656',NULL,'Sample Data','Shauna','','Jameson',NULL,NULL,NULL,NULL,1,NULL,'Dear Shauna',1,NULL,'Dear Shauna',1,NULL,'Shauna Jameson',NULL,1,'1998-01-30',0,NULL,NULL,NULL,'Ohio Legal Center',NULL,NULL,120,0,NULL,'2015-01-16 12:43:28'),(164,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Bay Environmental Fellowship','Bay Environmental Fellowship',NULL,NULL,NULL,'2',NULL,'Both','3944940819',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Bay Environmental Fellowship',NULL,NULL,NULL,0,NULL,NULL,107,'Bay Environmental Fellowship',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:32'),(165,'Household',NULL,0,1,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-01-16 12:43:26'),(166,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Terry, Lincoln','Mr. Lincoln Terry III',NULL,NULL,NULL,NULL,NULL,'Both','2249730385',NULL,'Sample Data','Lincoln','','Terry',3,4,NULL,NULL,1,NULL,'Dear Lincoln',1,NULL,'Dear Lincoln',1,NULL,'Mr. Lincoln Terry III',NULL,2,'1992-08-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:11'),(167,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Robertson, Ashley','Ms. Ashley Robertson',NULL,NULL,NULL,'5',NULL,'Both','3118372484',NULL,'Sample Data','Ashley','','Robertson',2,NULL,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Ms. Ashley Robertson',NULL,NULL,'1988-12-10',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:14'),(168,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Valene','Valene Parker',NULL,NULL,NULL,'1',NULL,'Both','2439115501',NULL,'Sample Data','Valene','C','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Valene',1,NULL,'Dear Valene',1,NULL,'Valene Parker',NULL,NULL,'1951-08-01',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:13'),(169,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Jacobs, Ray','Ray Jacobs III',NULL,NULL,NULL,'5',NULL,'Both','50050695',NULL,'Sample Data','Ray','Z','Jacobs',NULL,4,NULL,NULL,1,NULL,'Dear Ray',1,NULL,'Dear Ray',1,NULL,'Ray Jacobs III',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:10'),(170,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Deforest, Maria','Maria Deforest II',NULL,NULL,NULL,NULL,NULL,'Both','4009306469',NULL,'Sample Data','Maria','S','Deforest',NULL,3,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Maria Deforest II',NULL,2,'1929-08-27',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:52'),(171,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov, Winford','Winford Ivanov Jr.',NULL,NULL,NULL,NULL,NULL,'Both','732067195',NULL,'Sample Data','Winford','','Ivanov',NULL,1,NULL,NULL,1,NULL,'Dear Winford',1,NULL,'Dear Winford',1,NULL,'Winford Ivanov Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:03'),(172,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'lee.jed@fishmail.com','lee.jed@fishmail.com',NULL,NULL,NULL,NULL,NULL,'Both','2262823442',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear lee.jed@fishmail.com',1,NULL,'Dear lee.jed@fishmail.com',1,NULL,'lee.jed@fishmail.com',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:57'),(173,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Olsen, Arlyne','Arlyne Olsen',NULL,NULL,NULL,NULL,NULL,'Both','3061476892',NULL,'Sample Data','Arlyne','','Olsen',NULL,NULL,NULL,NULL,1,NULL,'Dear Arlyne',1,NULL,'Dear Arlyne',1,NULL,'Arlyne Olsen',NULL,1,'1974-05-21',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:15'),(174,'Organization',NULL,0,1,0,0,0,0,NULL,NULL,'Local Music Solutions','Local Music Solutions',NULL,NULL,NULL,'4',NULL,'Both','3792380829',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Local Music Solutions',NULL,NULL,NULL,0,NULL,NULL,116,'Local Music Solutions',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:26'),(175,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Jacobs, Maria','Mr. Maria Jacobs Sr.',NULL,NULL,NULL,NULL,NULL,'Both','2004248227',NULL,'Sample Data','Maria','','Jacobs',3,2,NULL,NULL,1,NULL,'Dear Maria',1,NULL,'Dear Maria',1,NULL,'Mr. Maria Jacobs Sr.',NULL,NULL,'1961-11-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:17'),(176,'Organization',NULL,1,0,0,0,0,0,NULL,NULL,'Global Technology School','Global Technology School',NULL,NULL,NULL,NULL,NULL,'Both','2137564028',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Global Technology School',NULL,NULL,NULL,0,NULL,NULL,84,'Global Technology School',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:29'),(177,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Ivanov, Ashley','Ashley Ivanov',NULL,NULL,NULL,'4',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,1,'1939-05-23',1,NULL,NULL,NULL,'United Software Academy',NULL,NULL,141,0,NULL,'2015-01-16 12:43:31'),(178,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'McReynolds, Andrew','Andrew McReynolds III',NULL,NULL,NULL,NULL,NULL,'Both','666674467',NULL,'Sample Data','Andrew','','McReynolds',NULL,4,NULL,NULL,1,NULL,'Dear Andrew',1,NULL,'Dear Andrew',1,NULL,'Andrew McReynolds III',NULL,NULL,'1971-07-05',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:07'),(179,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jacobs, Delana','Ms. Delana Jacobs',NULL,NULL,NULL,NULL,NULL,'Both','1289592996',NULL,'Sample Data','Delana','U','Jacobs',2,NULL,NULL,NULL,1,NULL,'Dear Delana',1,NULL,'Dear Delana',1,NULL,'Ms. Delana Jacobs',NULL,1,'1971-05-13',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:09'),(180,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'González, Kenny','Mr. Kenny González',NULL,NULL,NULL,'5',NULL,'Both','2778042534',NULL,'Sample Data','Kenny','','González',3,NULL,NULL,NULL,1,NULL,'Dear Kenny',1,NULL,'Dear Kenny',1,NULL,'Mr. Kenny González',NULL,NULL,'1973-05-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:49'),(181,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Parker, Kandace','Kandace Parker',NULL,NULL,NULL,NULL,NULL,'Both','2827201757',NULL,'Sample Data','Kandace','I','Parker',NULL,NULL,NULL,NULL,1,NULL,'Dear Kandace',1,NULL,'Dear Kandace',1,NULL,'Kandace Parker',NULL,1,'1959-07-25',1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:53'),(182,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Jensen, Daren','Dr. Daren Jensen Jr.',NULL,NULL,NULL,NULL,NULL,'Both','817039458',NULL,'Sample Data','Daren','J','Jensen',4,1,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Dr. Daren Jensen Jr.',NULL,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:38'),(183,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Samson, Bob','Mr. Bob Samson',NULL,NULL,NULL,'2',NULL,'Both','3804857512',NULL,'Sample Data','Bob','','Samson',3,NULL,NULL,NULL,1,NULL,'Dear Bob',1,NULL,'Dear Bob',1,NULL,'Mr. Bob Samson',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:02'),(184,'Individual',NULL,0,0,0,0,1,0,NULL,NULL,'Bachman, Craig','Craig Bachman',NULL,NULL,NULL,NULL,NULL,'Both','1117434169',NULL,'Sample Data','Craig','','Bachman',NULL,NULL,NULL,NULL,1,NULL,'Dear Craig',1,NULL,'Dear Craig',1,NULL,'Craig Bachman',NULL,2,'1928-12-20',1,'2014-05-04',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:53'),(185,'Organization',NULL,0,0,0,0,0,0,NULL,NULL,'Friends Culture School','Friends Culture School',NULL,NULL,NULL,NULL,NULL,'Both','4052908986',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'Friends Culture School',NULL,NULL,NULL,0,NULL,NULL,NULL,'Friends Culture School',NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:30'),(186,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Patel, Ashley','Dr. Ashley Patel Sr.',NULL,NULL,NULL,'3',NULL,'Both','3816127456',NULL,'Sample Data','Ashley','','Patel',4,2,NULL,NULL,1,NULL,'Dear Ashley',1,NULL,'Dear Ashley',1,NULL,'Dr. Ashley Patel Sr.',NULL,NULL,'1976-10-24',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:06'),(187,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Lee, Merrie','Mrs. Merrie Lee',NULL,NULL,NULL,'5',NULL,'Both','171642625',NULL,'Sample Data','Merrie','C','Lee',1,NULL,NULL,NULL,1,NULL,'Dear Merrie',1,NULL,'Dear Merrie',1,NULL,'Mrs. Merrie Lee',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:59'),(188,'Household',NULL,0,1,0,0,0,0,NULL,NULL,'Terry family','Terry family',NULL,NULL,NULL,'5',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-01-16 12:43:22'),(189,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Wilson, Ivey','Ivey Wilson',NULL,NULL,NULL,'5',NULL,'Both','4270128246',NULL,'Sample Data','Ivey','C','Wilson',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Wilson',NULL,1,'1944-04-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:54'),(190,'Individual',NULL,1,1,0,0,0,0,NULL,NULL,'Patel, Maxwell','Dr. Maxwell Patel',NULL,NULL,NULL,NULL,NULL,'Both','1864121617',NULL,'Sample Data','Maxwell','K','Patel',4,NULL,NULL,NULL,1,NULL,'Dear Maxwell',1,NULL,'Dear Maxwell',1,NULL,'Dr. Maxwell Patel',NULL,2,'1971-12-30',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:06'),(191,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Ivanov, Teddy','Teddy Ivanov II',NULL,NULL,NULL,NULL,NULL,'Both','3771100847',NULL,'Sample Data','Teddy','','Ivanov',NULL,3,NULL,NULL,1,NULL,'Dear Teddy',1,NULL,'Dear Teddy',1,NULL,'Teddy Ivanov II',NULL,2,'2007-02-17',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:03'),(192,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Samson, Herminia','Mrs. Herminia Samson',NULL,NULL,NULL,NULL,NULL,'Both','3411088357',NULL,'Sample Data','Herminia','B','Samson',1,NULL,NULL,NULL,1,NULL,'Dear Herminia',1,NULL,'Dear Herminia',1,NULL,'Mrs. Herminia Samson',NULL,1,'1951-03-03',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:02'),(193,'Household',NULL,0,1,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-01-16 12:43:21'),(194,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'jaynielsen42@notmail.co.nz','jaynielsen42@notmail.co.nz',NULL,NULL,NULL,NULL,NULL,'Both','4124174899',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'Dear jaynielsen42@notmail.co.nz',1,NULL,'Dear jaynielsen42@notmail.co.nz',1,NULL,'jaynielsen42@notmail.co.nz',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:54'),(195,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'McReynolds-Smith, Brent','Brent McReynolds-Smith',NULL,NULL,NULL,'3',NULL,'Both','1287883913',NULL,'Sample Data','Brent','','McReynolds-Smith',NULL,NULL,NULL,NULL,1,NULL,'Dear Brent',1,NULL,'Dear Brent',1,NULL,'Brent McReynolds-Smith',NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:08'),(196,'Individual',NULL,1,0,0,0,0,0,NULL,NULL,'Terrell, Jay','Jay Terrell',NULL,NULL,NULL,'5',NULL,'Both','1859687084',NULL,'Sample Data','Jay','','Terrell',NULL,NULL,NULL,NULL,1,NULL,'Dear Jay',1,NULL,'Dear Jay',1,NULL,'Jay Terrell',NULL,2,'1941-03-18',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:50'),(197,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Patel, Brigette','Ms. Brigette Patel',NULL,NULL,NULL,NULL,NULL,'Both','844627527',NULL,'Sample Data','Brigette','','Patel',2,NULL,NULL,NULL,1,NULL,'Dear Brigette',1,NULL,'Dear Brigette',1,NULL,'Ms. Brigette Patel',NULL,1,'1956-10-22',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:06'),(198,'Household',NULL,1,1,0,0,0,0,NULL,NULL,'Ivanov family','Ivanov family',NULL,NULL,NULL,'2',NULL,'Both','2450779112',NULL,'Sample Data',NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'Dear Ivanov family',5,NULL,'Dear Ivanov family',2,NULL,'Ivanov family',NULL,NULL,NULL,0,NULL,'Ivanov family',NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:21'),(199,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Barkley, Lawerence','Lawerence Barkley',NULL,NULL,NULL,'1',NULL,'Both','3430625301',NULL,'Sample Data','Lawerence','','Barkley',NULL,NULL,NULL,NULL,1,NULL,'Dear Lawerence',1,NULL,'Dear Lawerence',1,NULL,'Lawerence Barkley',NULL,2,'1946-08-09',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:40'),(200,'Individual',NULL,0,1,0,0,0,0,NULL,NULL,'Grant, Daren','Daren Grant Jr.',NULL,NULL,NULL,NULL,NULL,'Both','3746795138',NULL,'Sample Data','Daren','','Grant',NULL,1,NULL,NULL,1,NULL,'Dear Daren',1,NULL,'Dear Daren',1,NULL,'Daren Grant Jr.',NULL,NULL,'2000-03-08',0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:42:51'),(201,'Individual',NULL,0,0,0,0,0,0,NULL,NULL,'Cruz, Ivey','Ivey Cruz',NULL,NULL,NULL,'4',NULL,'Both','3529937009',NULL,'Sample Data','Ivey','T','Cruz',NULL,NULL,NULL,NULL,1,NULL,'Dear Ivey',1,NULL,'Dear Ivey',1,NULL,'Ivey Cruz',NULL,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'2015-01-16 12:43:19'); /*!40000 ALTER TABLE `civicrm_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -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,33,2,NULL,1,'2015-01-20 09:35:06',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,9,2,NULL,1,'2015-01-20 09:35:06',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,172,2,NULL,1,'2015-01-20 09:35:06',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,138,2,NULL,1,'2015-01-20 09:35:06',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,136,2,NULL,1,'2015-01-20 09:35:06',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,152,2,NULL,1,'2015-01-20 09:35:06',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,93,2,NULL,1,'2015-01-20 09:35:06',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,96,2,NULL,1,'2015-01-20 09:35:06',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,36,2,NULL,1,'2015-01-20 09:35:06',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,22,2,NULL,1,'2015-01-20 09:35:06',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,171,2,NULL,1,'2015-01-20 09:35:06',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,175,2,NULL,1,'2015-01-20 09:35:06',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,81,2,NULL,1,'2015-01-20 09:35:06',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,188,2,NULL,1,'2015-01-20 09:35:06',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,28,2,NULL,1,'2015-01-20 09:35:06',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,139,2,NULL,1,'2015-01-20 09:35:06',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,71,2,NULL,1,'2015-01-20 09:35:06',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,19,2,NULL,1,'2015-01-20 09:35:06',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,27,2,NULL,1,'2015-01-20 09:35:06',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,186,2,NULL,1,'2015-01-20 09:35:06',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,169,2,NULL,1,'2015-01-20 09:35:06',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,147,2,NULL,1,'2015-01-20 09:35:06',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,162,2,NULL,1,'2015-01-20 09:35:06',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,65,2,NULL,1,'2015-01-20 09:35:06',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,142,2,NULL,1,'2015-01-20 09:35:06',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,46,2,NULL,1,'2015-01-20 09:35:06',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,155,2,NULL,1,'2015-01-20 09:35:06',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,168,2,NULL,1,'2015-01-20 09:35:06',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,39,2,NULL,1,'2015-01-20 09:35:06',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,64,2,NULL,1,'2015-01-20 09:35:06',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,4,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(46,9,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(47,10,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(48,18,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(49,19,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(50,20,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(51,29,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(52,32,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(53,33,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(54,35,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(55,42,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(56,44,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(57,45,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(58,51,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(59,54,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(60,57,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(61,67,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(62,68,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(63,75,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(64,81,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(65,83,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(66,92,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(67,93,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(68,96,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(69,99,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(70,100,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(71,107,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(72,109,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(73,117,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(74,119,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(75,121,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(76,125,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(77,132,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(78,133,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(79,136,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(80,139,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(81,140,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(82,142,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(83,143,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(84,148,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(85,151,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(86,155,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(87,159,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(88,166,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(89,171,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(90,174,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(91,179,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(92,180,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(93,195,4,NULL,1,'2015-01-20 09:35:06',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(94,196,4,NULL,1,'2015-01-20 09:35:06',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-20 09:35:06',NULL,'Summer Solstice Festival Day Concert : 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,133,2,NULL,1,'2015-01-16 18:16:20',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,77,2,NULL,1,'2015-01-16 18:16:20',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,96,2,NULL,1,'2015-01-16 18:16:20',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,68,2,NULL,1,'2015-01-16 18:16:20',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,72,2,NULL,1,'2015-01-16 18:16:20',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,104,2,NULL,1,'2015-01-16 18:16:20',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,55,2,NULL,1,'2015-01-16 18:16:20',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,88,2,NULL,1,'2015-01-16 18:16:20',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,132,2,NULL,1,'2015-01-16 18:16:20',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,194,2,NULL,1,'2015-01-16 18:16:20',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,2,2,NULL,1,'2015-01-16 18:16:20',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,184,2,NULL,1,'2015-01-16 18:16:20',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,99,2,NULL,1,'2015-01-16 18:16:20',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,134,2,NULL,1,'2015-01-16 18:16:20',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,153,2,NULL,1,'2015-01-16 18:16:20',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,173,2,NULL,1,'2015-01-16 18:16:20',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,159,2,NULL,1,'2015-01-16 18:16:20',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,115,2,NULL,1,'2015-01-16 18:16:20',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,178,2,NULL,1,'2015-01-16 18:16:20',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,39,2,NULL,1,'2015-01-16 18:16:20',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,34,2,NULL,1,'2015-01-16 18:16:20',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,183,2,NULL,1,'2015-01-16 18:16:20',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,126,2,NULL,1,'2015-01-16 18:16:20',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,196,2,NULL,1,'2015-01-16 18:16:20',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,79,2,NULL,1,'2015-01-16 18:16:20',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,172,2,NULL,1,'2015-01-16 18:16:20',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,69,2,NULL,1,'2015-01-16 18:16:20',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,76,2,NULL,1,'2015-01-16 18:16:20',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,106,2,NULL,1,'2015-01-16 18:16:20',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,189,2,NULL,1,'2015-01-16 18:16:20',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-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(46,2,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(47,6,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(48,12,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(49,13,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(50,14,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(51,19,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(52,21,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(53,27,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(54,29,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(55,31,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(56,32,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(57,37,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(58,40,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(59,43,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(60,44,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(61,47,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(62,53,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(63,57,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(64,62,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(65,65,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(66,67,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(67,77,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(68,87,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(69,96,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(70,103,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(71,105,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(72,107,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(73,109,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(74,119,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(75,121,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(76,122,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(77,129,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(78,132,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(79,135,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(80,139,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(81,140,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(82,143,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(83,144,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(84,151,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(85,153,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(86,155,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(87,161,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(88,162,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(89,164,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(90,173,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Summer Solstice Festival Day Concert : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(91,174,4,NULL,1,'2015-01-16 18:16:28',0.00,50.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Fall Fundraiser Dinner : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(92,188,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(93,196,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : Offline registration',NULL,NULL,0,0,1,NULL,NULL,NULL,NULL,NULL),(94,198,4,NULL,1,'2015-01-16 18:16:28',0.00,800.00,NULL,NULL,NULL,NULL,'USD',NULL,NULL,'2015-01-16 18:16:28',NULL,'Rain-forest Cup Youth Soccer Tournament : 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 @@ 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,176,10.00,'USD',1,1,'Jones Family','Helping Hands',10),(2,9,176,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,144,10.00,'USD',1,1,'Jones Family','Helping Hands',10),(2,9,144,250.00,'USD',1,1,'Annie and the kids','Annie Helps',10); /*!40000 ALTER TABLE `civicrm_contribution_soft` ENABLE KEYS */; UNLOCK TABLES; @@ -401,7 +401,7 @@ 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,66,1,'agrant@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL),(3,176,1,'gonzlez.x.bryon@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(4,185,1,'daz.tanya@example.info',1,0,0,0,NULL,NULL,NULL,NULL),(5,27,1,'bachman.esta@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(6,27,1,'ebachman95@sample.biz',0,0,0,0,NULL,NULL,NULL,NULL),(7,7,1,'elinaterry44@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(8,7,1,'terry.r.elina@infomail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(9,91,1,'mm.samson9@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(10,86,1,'mariamller@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(11,33,1,'bw.lee30@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL),(12,33,1,'lee.barry@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL),(13,129,1,'brigettec@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(14,129,1,'cooper.brigette@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(15,53,1,'oy.cruz@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(16,53,1,'omarc85@testmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(17,21,1,'carlosadams92@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(18,23,1,'ae.dimitrov30@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(19,52,1,'deforestb85@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(20,52,1,'bs.deforest94@testmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(21,6,1,'bryongrant@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(22,173,1,'samsonj@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(23,173,1,'jh.samson@testmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(24,82,1,'mllerb98@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(25,82,1,'mller.betty25@airmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(26,88,1,'felishag14@fakemail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(27,43,1,'mcooper@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(28,47,1,'bobyadav60@notmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(29,47,1,'yadav.bob4@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(30,162,1,'junkobachman@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL),(31,120,1,'landondimitrov48@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(32,120,1,'dimitrov.landon@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(33,34,1,'terry.jay77@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(34,34,1,'jterry@fishmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(35,44,1,'brittneyj65@mymail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(36,153,1,'rdimitrov60@sample.org',1,0,0,0,NULL,NULL,NULL,NULL),(37,112,1,'cooper.princess@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(38,112,1,'pcooper@testing.net',0,0,0,0,NULL,NULL,NULL,NULL),(39,45,1,'allenbachman65@mymail.net',1,0,0,0,NULL,NULL,NULL,NULL),(40,149,1,'eb.terry3@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(41,149,1,'eb.terry@sample.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(42,28,1,'terry.heidi@mymail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(43,137,1,'alexiaw@testing.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(44,137,1,'awilson@spamalot.net',0,0,0,0,NULL,NULL,NULL,NULL),(45,97,1,'jameson.miguel@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(46,97,1,'jameson.miguel39@sample.biz',0,0,0,0,NULL,NULL,NULL,NULL),(47,190,1,'jjacobs44@testing.net',1,0,0,0,NULL,NULL,NULL,NULL),(48,100,1,'herminiaz@infomail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(49,100,1,'herminiazope@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(50,17,1,'meijacobs16@fishmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(51,25,1,'dimitrovt@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(52,25,1,'dimitrov.truman@sample.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(53,74,1,'prentice.jackson85@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(54,168,1,'carlossmith@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(55,42,1,'reynolds.carlos@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(56,42,1,'reynolds.carlos@notmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(57,105,1,'sonnyy@sample.net',1,0,0,0,NULL,NULL,NULL,NULL),(58,77,1,'lawerenceb@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(59,154,1,'parker.toby@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(60,154,1,'tobyp65@infomail.org',0,0,0,0,NULL,NULL,NULL,NULL),(61,93,1,'winfordreynolds46@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(62,83,1,'jx.lee8@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL),(63,199,1,'prentice.teddy@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(64,54,1,'ashleyjameson@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(65,101,1,'wagner.l.herminia6@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(66,101,1,'hl.wagner64@infomail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(67,113,1,'mcreynoldsi@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(68,113,1,'irism@infomail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(69,32,1,'af.cooper58@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL),(70,98,1,'np.daz@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),(71,123,1,'billyd@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(72,123,1,'bh.daz@airmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(73,188,1,'al.smith@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(74,188,1,'smitha@mymail.com',0,0,0,0,NULL,NULL,NULL,NULL),(75,64,1,'delananielsen@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(76,56,1,'jacobs.q.princess@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(77,56,1,'princessj@notmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(78,181,1,'barkley.o.junko@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(79,181,1,'barkley.o.junko@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(80,143,1,'cnielsen@fishmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(81,143,1,'nielsen.carylon@testing.net',0,0,0,0,NULL,NULL,NULL,NULL),(82,172,1,'jensen.miguel83@airmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(83,125,1,'barkleyc54@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(84,177,1,'kjensen-barkley@notmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(85,177,1,'kathleenjensen-barkley@sample.com',0,0,0,0,NULL,NULL,NULL,NULL),(86,62,1,'jensen-barkleye93@lol.info',1,0,0,0,NULL,NULL,NULL,NULL),(87,55,1,'adams.jed@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(88,139,1,'chowskik@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(89,139,1,'chowski.kacey@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(90,2,1,'adams-chowski.justina46@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),(91,2,1,'justinaadams-chowski91@mymail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(92,114,1,'cooperd@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),(93,198,1,'lashawndacooper@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL),(94,195,1,'yadav.ashley@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(95,195,1,'ashleyyadav43@testmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(96,103,1,'eleonoryadav@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(97,85,1,'bmller@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL),(98,78,1,'mllerm@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(99,78,1,'mller.maxwell@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(100,46,1,'russellm@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(101,155,1,'allenmller80@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL),(102,155,1,'mllera@fakemail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(103,51,1,'maxwelld@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(104,145,1,'cooper.ashley@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(105,145,1,'coopera@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(106,183,1,'cooperm50@example.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(107,79,1,'scottm@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(108,40,1,'heidiolsen@testing.org',1,0,0,0,NULL,NULL,NULL,NULL),(109,92,1,'mller-olsen.mei@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(110,60,1,'ae.cooper@testmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(111,60,1,'cooper.ashlie@infomail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(112,116,1,'cooper.w.esta74@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(113,71,1,'jacobc@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(114,71,1,'jacobcooper12@lol.net',0,0,0,0,NULL,NULL,NULL,NULL),(115,72,1,'juliannc20@example.net',1,0,0,0,NULL,NULL,NULL,NULL),(116,35,1,'herminiad49@fishmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(117,197,1,'roberts-dazh48@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(118,197,1,'herminiar@notmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(119,117,1,'roberts-daz.v.shauna@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(120,109,1,'grant.allen69@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(121,187,1,'rodrigoc27@spamalot.info',1,0,0,0,NULL,NULL,NULL,NULL),(122,4,1,'cooper.nicole80@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(123,61,1,'cooper.merrie66@fakemail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(124,61,1,'merriec@fishmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(125,89,1,'zope.jackson@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL),(126,89,1,'jacksonzope@sample.org',0,0,0,0,NULL,NULL,NULL,NULL),(127,134,1,'lareeb50@mymail.org',1,0,0,0,NULL,NULL,NULL,NULL),(128,134,1,'bachman-zopel21@spamalot.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(129,140,1,'zopea@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL),(130,140,1,'zope.andrew@example.biz',0,0,0,0,NULL,NULL,NULL,NULL),(131,142,1,'zope.ashley25@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(132,142,1,'ashleyzope67@airmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(133,18,1,'adams.bryon84@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(134,18,1,'adams.bryon56@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL),(135,118,1,'adamse@fishmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(136,124,1,'josefaa@lol.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(137,124,1,'josefaadams@testmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(138,11,1,'herminiaadams@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(139,11,1,'adams.herminia68@infomail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(140,131,1,'barkleya55@fakemail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(141,132,1,'barkleyh24@testmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(142,122,1,'dimitrovk63@notmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(143,122,1,'kennyd17@airmail.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(144,178,1,'barkleyj@sample.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(145,30,1,'dimitrov-barkleys@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(146,152,1,'jinadimitrov-barkley@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(147,65,1,'jonest@infomail.com',1,0,0,0,NULL,NULL,NULL,NULL),(148,65,1,'tobyj@spamalot.info',0,0,0,0,NULL,NULL,NULL,NULL),(149,171,1,'lashawndachowski-jones@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(150,175,1,'carlosgrant14@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL),(151,8,1,'princessg@testing.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(152,8,1,'pn.grant@infomail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(153,80,1,'heidigrant@notmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(154,80,1,'grant.heidi26@mymail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(155,200,3,'contact@nmeducationcollective.org',1,0,0,0,NULL,NULL,NULL,NULL),(156,29,3,'feedback@sierraliteracy.org',1,0,0,0,NULL,NULL,NULL,NULL),(157,178,2,'.85@sierraliteracy.org',0,0,0,0,NULL,NULL,NULL,NULL),(158,16,3,'contact@globalinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL),(159,64,2,'dnielsen@globalinitiative.org',0,0,0,0,NULL,NULL,NULL,NULL),(160,106,3,'info@ecpoetrynetwork.org',1,0,0,0,NULL,NULL,NULL,NULL),(161,34,2,'terry.jay8@ecpoetrynetwork.org',0,0,0,0,NULL,NULL,NULL,NULL),(162,58,3,'service@metairieeducationsolutions.org',1,0,0,0,NULL,NULL,NULL,NULL),(163,123,2,'billydaz@metairieeducationsolutions.org',0,0,0,0,NULL,NULL,NULL,NULL),(164,158,3,'feedback@maplemusic.org',1,0,0,0,NULL,NULL,NULL,NULL),(165,8,2,'pn.grant96@maplemusic.org',0,0,0,0,NULL,NULL,NULL,NULL),(166,68,3,'service@ohioaction.org',1,0,0,0,NULL,NULL,NULL,NULL),(167,37,2,'nielsen.allen@ohioaction.org',1,0,0,0,NULL,NULL,NULL,NULL),(168,69,3,'info@communitycenter.org',1,0,0,0,NULL,NULL,NULL,NULL),(169,6,2,'@communitycenter.org',0,0,0,0,NULL,NULL,NULL,NULL),(170,193,3,'service@globaltechnology.org',1,0,0,0,NULL,NULL,NULL,NULL),(171,138,2,'jones.sharyn@globaltechnology.org',1,0,0,0,NULL,NULL,NULL,NULL),(172,102,3,'sales@nashvillesoftwaretrust.org',1,0,0,0,NULL,NULL,NULL,NULL),(173,130,3,'contact@creativeliteracyacademy.org',1,0,0,0,NULL,NULL,NULL,NULL),(174,185,2,'.@creativeliteracyacademy.org',0,0,0,0,NULL,NULL,NULL,NULL),(175,95,3,'info@montgomeryagricultureinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL),(176,139,2,'kchowski@montgomeryagricultureinitiative.org',0,0,0,0,NULL,NULL,NULL,NULL),(177,119,3,'contact@mainepeacefellowship.org',1,0,0,0,NULL,NULL,NULL,NULL),(178,163,3,'contact@northpointsystems.org',1,0,0,0,NULL,NULL,NULL,NULL),(179,143,2,'nielsenc@northpointsystems.org',0,0,0,0,NULL,NULL,NULL,NULL),(180,31,3,'info@beattyvillepartnership.org',1,0,0,0,NULL,NULL,NULL,NULL),(181,26,3,'contact@caulderagriculture.org',1,0,0,0,NULL,NULL,NULL,NULL),(182,179,3,'sales@oklahomaalliance.org',1,0,0,0,NULL,NULL,NULL,NULL),(183,52,2,'.83@oklahomaalliance.org',0,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,159,1,'samsont@lol.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(3,159,1,'samson.troy71@testing.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(4,182,1,'jensend@notmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(5,144,1,'eb.wagner19@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(6,144,1,'wagner.b.elizabeth@spamalot.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(7,8,1,'yadav.jerome@example.com',1,0,0,0,NULL,NULL,NULL,NULL),(8,8,1,'yadav.jerome@fishmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(9,113,1,'brentc@fakemail.com',1,0,0,0,NULL,NULL,NULL,NULL),(10,104,1,'iveyrobertson@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL),(11,27,1,'brentlee57@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(12,27,1,'lee.brent@testing.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(13,103,1,'lawerencet63@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(14,103,1,'lawerenceterrell18@infomail.net',0,0,0,0,NULL,NULL,NULL,NULL),(15,162,1,'landonj59@fakemail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(16,81,1,'mller.ashlie25@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(17,81,1,'ashliemller16@fakemail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(18,136,1,'jj.cooper66@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),(19,136,1,'jj.cooper@notmail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(20,64,1,'sharynolsen94@lol.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(21,64,1,'olsens@mymail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(22,65,1,'gonzlez.ashley72@airmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(23,65,1,'ashleyg@example.info',0,0,0,0,NULL,NULL,NULL,NULL),(24,146,1,'mllerl@sample.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(25,83,1,'bobm@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(26,83,1,'be.mcreynolds@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(27,6,1,'samsonm99@sample.info',1,0,0,0,NULL,NULL,NULL,NULL),(28,6,1,'magans@airmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(29,117,1,'josefanielsen97@infomail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(30,32,1,'jedd12@infomail.org',1,0,0,0,NULL,NULL,NULL,NULL),(31,32,1,'jedd28@testing.com',0,0,0,0,NULL,NULL,NULL,NULL),(32,102,1,'miguelivanov@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(33,102,1,'ivanov.o.miguel91@infomail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(34,69,1,'arlynecooper@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(35,34,1,'badams@airmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(36,34,1,'badams76@airmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(37,180,1,'gonzlez.kenny@spamalot.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(38,180,1,'gonzlez.kenny10@spamalot.info',0,0,0,0,NULL,NULL,NULL,NULL),(39,196,1,'jayt20@sample.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(40,196,1,'terrell.jay@lol.info',0,0,0,0,NULL,NULL,NULL,NULL),(41,26,1,'edaz@testing.biz',1,0,0,0,NULL,NULL,NULL,NULL),(42,126,1,'swattson@testmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(43,126,1,'wattsons@sample.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(44,46,1,'chowski.barry@lol.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(45,200,1,'dareng@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL),(46,51,1,'tn.samuels@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(47,51,1,'teresas@example.com',0,0,0,0,NULL,NULL,NULL,NULL),(48,170,1,'ms.deforest@infomail.info',1,0,0,0,NULL,NULL,NULL,NULL),(49,99,1,'maganjensen7@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(50,99,1,'maganjensen@infomail.org',0,0,0,0,NULL,NULL,NULL,NULL),(51,33,1,'terrell.claudio@spamalot.org',1,0,0,0,NULL,NULL,NULL,NULL),(52,33,1,'terrell.n.claudio@lol.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(53,118,1,'shermanzope@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(54,194,1,'jaynielsen42@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(55,189,1,'iveywilson@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(56,189,1,'wilsoni26@lol.org',0,0,0,0,NULL,NULL,NULL,NULL),(57,50,1,'jacobs.brent@mymail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(58,50,1,'brentjacobs@testing.org',0,0,0,0,NULL,NULL,NULL,NULL),(59,153,1,'princessj54@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(60,153,1,'princessjameson@spamalot.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(61,122,1,'dimitrov.felisha@example.org',1,0,0,0,NULL,NULL,NULL,NULL),(62,122,1,'dimitrovf@infomail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(63,156,1,'gonzlez.v.sharyn60@mymail.info',1,0,0,0,NULL,NULL,NULL,NULL),(64,172,1,'jedl@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(65,172,1,'lee.jed@fishmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(66,98,1,'allenreynolds86@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),(67,98,1,'reynolds.c.allen@notmail.net',0,0,0,0,NULL,NULL,NULL,NULL),(68,152,1,'delanal@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(69,163,1,'jamesons@fakemail.info',1,0,0,0,NULL,NULL,NULL,NULL),(70,163,1,'jameson.shauna92@example.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(71,139,1,'barrylee@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(72,10,1,'iq.mcreynolds20@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(73,123,1,'daz.herminia@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(74,22,1,'mller.erik24@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(75,22,1,'emller@testmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(76,71,1,'terrell.craig@spamalot.com',1,0,0,0,NULL,NULL,NULL,NULL),(77,92,1,'nwagner52@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(78,92,1,'wagner.nicole@example.info',0,0,0,0,NULL,NULL,NULL,NULL),(79,106,1,'ajacobs@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(80,91,1,'le.samson@lol.org',1,0,0,0,NULL,NULL,NULL,NULL),(81,14,1,'cooper.scott@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(82,151,1,'leej23@mymail.com',1,0,0,0,NULL,NULL,NULL,NULL),(83,111,1,'acooper-lee@testing.info',1,0,0,0,NULL,NULL,NULL,NULL),(84,111,1,'cooper-lee.ashley@notmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(85,129,1,'cooper-lee.russell@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(86,171,1,'winfordivanov@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(87,171,1,'winfordivanov97@fakemail.net',0,0,0,0,NULL,NULL,NULL,NULL),(88,28,1,'russellc61@airmail.info',1,0,0,0,NULL,NULL,NULL,NULL),(89,28,1,'cruz.russell@airmail.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(90,68,1,'shermanc18@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(91,135,1,'acruz23@testmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(92,121,1,'ivanov.erik@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(93,70,1,'arlyneivanov11@fakemail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(94,70,1,'arlynei@notmail.org',0,0,0,0,NULL,NULL,NULL,NULL),(95,84,1,'ma.ivanov@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(96,42,1,'granth86@infomail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(97,42,1,'ht.grant70@fakemail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(98,133,1,'granti@mymail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(99,186,1,'ashleyp@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(100,186,1,'ashleyp@example.co.pl',0,0,0,0,NULL,NULL,NULL,NULL),(101,160,1,'patel.k.princess@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),(102,160,1,'patel.princess@spamalot.biz',0,0,0,0,NULL,NULL,NULL,NULL),(103,178,1,'andrewmcreynolds@example.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(104,112,1,'kathlynmcreynolds-smith@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(105,112,1,'mcreynolds-smithk42@fakemail.info',0,0,0,0,NULL,NULL,NULL,NULL),(106,195,1,'bmcreynolds-smith65@lol.biz',1,0,0,0,NULL,NULL,NULL,NULL),(107,195,1,'mcreynolds-smith.brent94@sample.com',0,0,0,0,NULL,NULL,NULL,NULL),(108,43,1,'clints@fishmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(109,43,1,'clints@sample.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(110,132,1,'samson.eleonor@fakemail.net',1,0,0,0,NULL,NULL,NULL,NULL),(111,132,1,'samson.eleonor@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(112,76,1,'samson.roland@testmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(113,36,1,'samson.g.kandace@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(114,158,1,'maxwelljacobs@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(115,88,1,'jacobsa@spamalot.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(116,39,1,'wattson.teddy@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(117,40,1,'louc34@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(118,35,1,'wattson.rebekah@testmail.net',1,0,0,0,NULL,NULL,NULL,NULL),(119,138,1,'jedt@lol.net',1,0,0,0,NULL,NULL,NULL,NULL),(120,137,1,'jwattson-terry55@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(121,24,1,'terryl@airmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(122,24,1,'lashawndat48@fishmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(123,72,1,'msamuels@fishmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(124,72,1,'msamuels@mymail.info',0,0,0,0,NULL,NULL,NULL,NULL),(125,96,1,'sonnys79@airmail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(126,3,1,'josefarobertson@spamalot.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(127,3,1,'robertson.josefa49@spamalot.co.nz',0,0,0,0,NULL,NULL,NULL,NULL),(128,167,1,'robertsona@airmail.org',1,0,0,0,NULL,NULL,NULL,NULL),(129,167,1,'robertsona@testing.org',0,0,0,0,NULL,NULL,NULL,NULL),(130,2,1,'shadr@testing.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(131,2,1,'shadrobertson@lol.org',0,0,0,0,NULL,NULL,NULL,NULL),(132,25,1,'jensen.ashley27@notmail.co.nz',1,0,0,0,NULL,NULL,NULL,NULL),(133,20,1,'jensen.shauna86@infomail.biz',1,0,0,0,NULL,NULL,NULL,NULL),(134,20,1,'shaunaj@notmail.info',0,0,0,0,NULL,NULL,NULL,NULL),(135,116,1,'jensenb31@airmail.co.in',1,0,0,0,NULL,NULL,NULL,NULL),(136,44,1,'irvino@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(137,157,1,'wilson.lou27@spamalot.biz',1,0,0,0,NULL,NULL,NULL,NULL),(138,157,1,'wilsonl12@fishmail.com',0,0,0,0,NULL,NULL,NULL,NULL),(139,59,1,'chowski-wilsonb67@testing.com',1,0,0,0,NULL,NULL,NULL,NULL),(140,18,1,'wilson.irvin@testing.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(141,18,1,'wilson.irvin@airmail.co.uk',0,0,0,0,NULL,NULL,NULL,NULL),(142,63,1,'patel.ashlie@sample.com',1,0,0,0,NULL,NULL,NULL,NULL),(143,63,1,'patel.ashlie@lol.net',0,0,0,0,NULL,NULL,NULL,NULL),(144,90,1,'ljacobs-patel55@sample.biz',1,0,0,0,NULL,NULL,NULL,NULL),(145,90,1,'jacobs-patel.lou5@airmail.biz',0,0,0,0,NULL,NULL,NULL,NULL),(146,7,1,'jacobs-patel.merrie@fishmail.com',1,0,0,0,NULL,NULL,NULL,NULL),(147,7,1,'jacobs-patel.merrie@fakemail.co.in',0,0,0,0,NULL,NULL,NULL,NULL),(148,142,1,'kv.wagner-deforest30@example.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(149,16,1,'wz.deforest@spamalot.net',1,0,0,0,NULL,NULL,NULL,NULL),(150,73,1,'jacobc99@notmail.co.pl',1,0,0,0,NULL,NULL,NULL,NULL),(151,73,1,'cruz.b.jacob@lol.info',0,0,0,0,NULL,NULL,NULL,NULL),(152,15,1,'cruzm91@testmail.co.uk',1,0,0,0,NULL,NULL,NULL,NULL),(153,53,3,'service@cadellpeace.org',1,0,0,0,NULL,NULL,NULL,NULL),(154,154,3,'sales@northpointtrust.org',1,0,0,0,NULL,NULL,NULL,NULL),(155,49,2,'robertson.herminia@northpointtrust.org',1,0,0,0,NULL,NULL,NULL,NULL),(156,67,3,'sales@globalsports.org',1,0,0,0,NULL,NULL,NULL,NULL),(157,17,2,'grant.t.jed@globalsports.org',1,0,0,0,NULL,NULL,NULL,NULL),(158,120,3,'sales@ohiolegalcenter.org',1,0,0,0,NULL,NULL,NULL,NULL),(159,163,2,'jamesons42@ohiolegalcenter.org',0,0,0,0,NULL,NULL,NULL,NULL),(160,57,3,'service@simondevelopmentinitiative.org',1,0,0,0,NULL,NULL,NULL,NULL),(161,102,2,'ivanov.o.miguel@simondevelopmentinitiative.org',0,0,0,0,NULL,NULL,NULL,NULL),(162,148,3,'contact@virginiasolutions.org',1,0,0,0,NULL,NULL,NULL,NULL),(163,176,3,'sales@globalschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(164,84,2,'45@globalschool.org',0,0,0,0,NULL,NULL,NULL,NULL),(165,185,3,'feedback@friendscultureschool.org',1,0,0,0,NULL,NULL,NULL,NULL),(166,105,3,'feedback@vancouverpoetryassociation.org',1,0,0,0,NULL,NULL,NULL,NULL),(167,100,2,'wagner.k.sonny@vancouverpoetryassociation.org',1,0,0,0,NULL,NULL,NULL,NULL),(168,97,3,'sales@localliteracysystems.org',1,0,0,0,NULL,NULL,NULL,NULL),(169,158,2,'maxwellj13@localliteracysystems.org',0,0,0,0,NULL,NULL,NULL,NULL),(170,141,3,'service@unitedsoftwareacademy.org',1,0,0,0,NULL,NULL,NULL,NULL),(171,177,2,'ivanova@unitedsoftwareacademy.org',1,0,0,0,NULL,NULL,NULL,NULL),(172,164,3,'service@bayenvironmental.org',1,0,0,0,NULL,NULL,NULL,NULL),(173,107,2,'samuels-parker.kiara8@bayenvironmental.org',1,0,0,0,NULL,NULL,NULL,NULL),(174,119,3,'info@mlkingadvocacy.org',1,0,0,0,NULL,NULL,NULL,NULL),(175,146,2,'.5@mlkingadvocacy.org',0,0,0,0,NULL,NULL,NULL,NULL),(176,NULL,1,'development@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(177,NULL,1,'tournaments@example.org',0,0,0,0,NULL,NULL,NULL,NULL),(178,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 @@ 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',81,14,50.00),(28,'civicrm_financial_item',14,14,50.00),(29,'civicrm_contribution',61,15,50.00),(30,'civicrm_financial_item',15,15,50.00),(31,'civicrm_contribution',70,16,50.00),(32,'civicrm_financial_item',16,16,50.00),(33,'civicrm_contribution',69,17,50.00),(34,'civicrm_financial_item',17,17,50.00),(35,'civicrm_contribution',78,18,50.00),(36,'civicrm_financial_item',18,18,50.00),(37,'civicrm_contribution',79,19,50.00),(38,'civicrm_financial_item',19,19,50.00),(39,'civicrm_contribution',83,20,50.00),(40,'civicrm_financial_item',20,20,50.00),(41,'civicrm_contribution',91,21,50.00),(42,'civicrm_financial_item',21,21,50.00),(43,'civicrm_contribution',94,22,50.00),(44,'civicrm_financial_item',22,22,50.00),(45,'civicrm_contribution',58,23,50.00),(46,'civicrm_financial_item',23,23,50.00),(47,'civicrm_contribution',68,24,50.00),(48,'civicrm_financial_item',24,24,50.00),(49,'civicrm_contribution',62,25,50.00),(50,'civicrm_financial_item',25,25,50.00),(51,'civicrm_contribution',74,26,50.00),(52,'civicrm_financial_item',26,26,50.00),(53,'civicrm_contribution',82,27,50.00),(54,'civicrm_financial_item',27,27,50.00),(55,'civicrm_contribution',84,28,50.00),(56,'civicrm_financial_item',28,28,50.00),(57,'civicrm_contribution',80,29,50.00),(58,'civicrm_financial_item',29,29,50.00),(59,'civicrm_contribution',88,30,800.00),(60,'civicrm_financial_item',30,30,800.00),(61,'civicrm_contribution',64,31,800.00),(62,'civicrm_financial_item',31,31,800.00),(63,'civicrm_contribution',49,32,800.00),(64,'civicrm_financial_item',32,32,800.00),(65,'civicrm_contribution',89,33,800.00),(66,'civicrm_financial_item',33,33,800.00),(67,'civicrm_contribution',50,34,800.00),(68,'civicrm_financial_item',34,34,800.00),(69,'civicrm_contribution',90,35,800.00),(70,'civicrm_financial_item',35,35,800.00),(71,'civicrm_contribution',54,36,800.00),(72,'civicrm_financial_item',36,36,800.00),(73,'civicrm_contribution',76,37,800.00),(74,'civicrm_financial_item',37,37,800.00),(75,'civicrm_contribution',46,38,800.00),(76,'civicrm_financial_item',38,38,800.00),(77,'civicrm_contribution',85,39,800.00),(78,'civicrm_financial_item',39,39,800.00),(79,'civicrm_contribution',93,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',73,42,800.00),(84,'civicrm_financial_item',42,42,800.00),(85,'civicrm_contribution',92,43,800.00),(86,'civicrm_financial_item',43,43,800.00),(87,'civicrm_contribution',63,44,800.00),(88,'civicrm_financial_item',44,44,800.00),(89,'civicrm_contribution',87,45,800.00),(90,'civicrm_financial_item',45,45,800.00),(91,'civicrm_contribution',56,46,800.00),(92,'civicrm_financial_item',46,46,800.00),(93,'civicrm_contribution',86,47,800.00),(94,'civicrm_financial_item',47,47,800.00),(95,'civicrm_contribution',75,48,50.00),(96,'civicrm_financial_item',48,48,50.00),(97,'civicrm_contribution',45,49,50.00),(98,'civicrm_financial_item',49,49,50.00),(99,'civicrm_contribution',57,50,50.00),(100,'civicrm_financial_item',50,50,50.00),(101,'civicrm_contribution',67,51,50.00),(102,'civicrm_financial_item',51,51,50.00),(103,'civicrm_contribution',65,52,50.00),(104,'civicrm_financial_item',52,52,50.00),(105,'civicrm_contribution',77,53,50.00),(106,'civicrm_financial_item',53,53,50.00),(107,'civicrm_contribution',59,54,50.00),(108,'civicrm_financial_item',54,54,50.00),(109,'civicrm_contribution',47,55,50.00),(110,'civicrm_financial_item',55,55,50.00),(111,'civicrm_contribution',60,56,50.00),(112,'civicrm_financial_item',56,56,50.00),(113,'civicrm_contribution',72,57,50.00),(114,'civicrm_financial_item',57,57,50.00),(115,'civicrm_contribution',53,58,50.00),(116,'civicrm_financial_item',58,58,50.00),(117,'civicrm_contribution',55,59,50.00),(118,'civicrm_financial_item',59,59,50.00),(119,'civicrm_contribution',71,60,50.00),(120,'civicrm_financial_item',60,60,50.00),(121,'civicrm_contribution',48,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',66,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',47,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',77,16,50.00),(32,'civicrm_financial_item',16,16,50.00),(33,'civicrm_contribution',52,17,50.00),(34,'civicrm_financial_item',17,17,50.00),(35,'civicrm_contribution',90,18,50.00),(36,'civicrm_financial_item',18,18,50.00),(37,'civicrm_contribution',48,19,50.00),(38,'civicrm_financial_item',19,19,50.00),(39,'civicrm_contribution',45,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',62,22,50.00),(44,'civicrm_financial_item',22,22,50.00),(45,'civicrm_contribution',64,23,50.00),(46,'civicrm_financial_item',23,23,50.00),(47,'civicrm_contribution',68,24,50.00),(48,'civicrm_financial_item',24,24,50.00),(49,'civicrm_contribution',88,25,50.00),(50,'civicrm_financial_item',25,25,50.00),(51,'civicrm_contribution',87,26,50.00),(52,'civicrm_financial_item',26,26,50.00),(53,'civicrm_contribution',51,27,50.00),(54,'civicrm_financial_item',27,27,50.00),(55,'civicrm_contribution',54,28,50.00),(56,'civicrm_financial_item',28,28,50.00),(57,'civicrm_contribution',74,29,50.00),(58,'civicrm_financial_item',29,29,50.00),(59,'civicrm_contribution',61,30,800.00),(60,'civicrm_financial_item',30,30,800.00),(61,'civicrm_contribution',80,31,800.00),(62,'civicrm_financial_item',31,31,800.00),(63,'civicrm_contribution',83,32,800.00),(64,'civicrm_financial_item',32,32,800.00),(65,'civicrm_contribution',49,33,800.00),(66,'civicrm_financial_item',33,33,800.00),(67,'civicrm_contribution',93,34,800.00),(68,'civicrm_financial_item',34,34,800.00),(69,'civicrm_contribution',71,35,800.00),(70,'civicrm_financial_item',35,35,800.00),(71,'civicrm_contribution',92,36,800.00),(72,'civicrm_financial_item',36,36,800.00),(73,'civicrm_contribution',67,37,800.00),(74,'civicrm_financial_item',37,37,800.00),(75,'civicrm_contribution',76,38,800.00),(76,'civicrm_financial_item',38,38,800.00),(77,'civicrm_contribution',58,39,800.00),(78,'civicrm_financial_item',39,39,800.00),(79,'civicrm_contribution',56,40,800.00),(80,'civicrm_financial_item',40,40,800.00),(81,'civicrm_contribution',75,41,800.00),(82,'civicrm_financial_item',41,41,800.00),(83,'civicrm_contribution',57,42,800.00),(84,'civicrm_financial_item',42,42,800.00),(85,'civicrm_contribution',53,43,800.00),(86,'civicrm_financial_item',43,43,800.00),(87,'civicrm_contribution',63,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',79,46,800.00),(92,'civicrm_financial_item',46,46,800.00),(93,'civicrm_contribution',94,47,800.00),(94,'civicrm_financial_item',47,47,800.00),(95,'civicrm_contribution',86,48,50.00),(96,'civicrm_financial_item',48,48,50.00),(97,'civicrm_contribution',84,49,50.00),(98,'civicrm_financial_item',49,49,50.00),(99,'civicrm_contribution',69,50,50.00),(100,'civicrm_financial_item',50,50,50.00),(101,'civicrm_contribution',89,51,50.00),(102,'civicrm_financial_item',51,51,50.00),(103,'civicrm_contribution',72,52,50.00),(104,'civicrm_financial_item',52,52,50.00),(105,'civicrm_contribution',66,53,50.00),(106,'civicrm_financial_item',53,53,50.00),(107,'civicrm_contribution',70,54,50.00),(108,'civicrm_financial_item',54,54,50.00),(109,'civicrm_contribution',46,55,50.00),(110,'civicrm_financial_item',55,55,50.00),(111,'civicrm_contribution',91,56,50.00),(112,'civicrm_financial_item',56,56,50.00),(113,'civicrm_contribution',85,57,50.00),(114,'civicrm_financial_item',57,57,50.00),(115,'civicrm_contribution',59,58,50.00),(116,'civicrm_financial_item',58,58,50.00),(117,'civicrm_contribution',55,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',73,61,50.00),(122,'civicrm_financial_item',61,61,50.00),(123,'civicrm_contribution',60,62,50.00),(124,'civicrm_financial_item',62,62,50.00),(125,'civicrm_contribution',78,63,50.00),(126,'civicrm_financial_item',63,63,50.00); /*!40000 ALTER TABLE `civicrm_entity_financial_trxn` ENABLE KEYS */; UNLOCK TABLES; @@ -449,7 +449,7 @@ 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 (45,'civicrm_contact',9,4),(46,'civicrm_contact',9,5),(2,'civicrm_contact',16,3),(49,'civicrm_contact',17,5),(106,'civicrm_contact',18,4),(107,'civicrm_contact',18,5),(44,'civicrm_contact',28,4),(113,'civicrm_contact',30,4),(114,'civicrm_contact',30,5),(9,'civicrm_contact',31,2),(87,'civicrm_contact',36,4),(88,'civicrm_contact',36,5),(69,'civicrm_contact',37,4),(29,'civicrm_contact',38,4),(31,'civicrm_contact',43,5),(39,'civicrm_contact',44,4),(83,'civicrm_contact',46,5),(43,'civicrm_contact',50,4),(85,'civicrm_contact',51,4),(86,'civicrm_contact',51,5),(58,'civicrm_contact',54,4),(59,'civicrm_contact',54,5),(73,'civicrm_contact',55,5),(51,'civicrm_contact',57,4),(52,'civicrm_contact',57,5),(3,'civicrm_contact',58,1),(93,'civicrm_contact',60,4),(94,'civicrm_contact',60,5),(18,'civicrm_contact',63,4),(19,'civicrm_contact',63,5),(65,'civicrm_contact',64,5),(117,'civicrm_contact',65,4),(11,'civicrm_contact',66,4),(12,'civicrm_contact',66,5),(4,'civicrm_contact',68,3),(103,'civicrm_contact',70,5),(95,'civicrm_contact',71,5),(50,'civicrm_contact',74,5),(91,'civicrm_contact',79,4),(121,'civicrm_contact',80,5),(30,'civicrm_contact',82,4),(56,'civicrm_contact',83,4),(37,'civicrm_contact',84,4),(38,'civicrm_contact',84,5),(82,'civicrm_contact',85,4),(104,'civicrm_contact',89,5),(17,'civicrm_contact',91,5),(28,'civicrm_contact',94,5),(47,'civicrm_contact',97,5),(61,'civicrm_contact',98,5),(22,'civicrm_contact',99,4),(23,'civicrm_contact',99,5),(6,'civicrm_contact',102,1),(81,'civicrm_contact',103,5),(62,'civicrm_contact',104,5),(53,'civicrm_contact',105,4),(54,'civicrm_contact',105,5),(24,'civicrm_contact',108,4),(25,'civicrm_contact',108,5),(99,'civicrm_contact',109,4),(42,'civicrm_contact',112,4),(60,'civicrm_contact',113,5),(8,'civicrm_contact',119,1),(34,'civicrm_contact',120,4),(35,'civicrm_contact',120,5),(111,'civicrm_contact',121,4),(112,'civicrm_contact',122,4),(108,'civicrm_contact',124,5),(96,'civicrm_contact',126,4),(97,'civicrm_contact',126,5),(7,'civicrm_contact',128,2),(20,'civicrm_contact',129,4),(21,'civicrm_contact',129,5),(66,'civicrm_contact',135,4),(67,'civicrm_contact',135,5),(116,'civicrm_contact',136,5),(118,'civicrm_contact',138,4),(119,'civicrm_contact',138,5),(105,'civicrm_contact',140,5),(13,'civicrm_contact',141,4),(14,'civicrm_contact',141,5),(75,'civicrm_contact',144,4),(76,'civicrm_contact',144,5),(92,'civicrm_contact',151,4),(40,'civicrm_contact',153,4),(41,'civicrm_contact',153,5),(55,'civicrm_contact',154,5),(100,'civicrm_contact',159,4),(101,'civicrm_contact',159,5),(16,'civicrm_contact',160,4),(115,'civicrm_contact',161,5),(32,'civicrm_contact',162,4),(33,'civicrm_contact',162,5),(10,'civicrm_contact',165,2),(84,'civicrm_contact',167,4),(74,'civicrm_contact',169,5),(57,'civicrm_contact',170,5),(70,'civicrm_contact',172,4),(120,'civicrm_contact',175,4),(71,'civicrm_contact',177,4),(72,'civicrm_contact',177,5),(68,'civicrm_contact',181,5),(89,'civicrm_contact',183,4),(90,'civicrm_contact',183,5),(15,'civicrm_contact',185,4),(26,'civicrm_contact',186,4),(27,'civicrm_contact',186,5),(102,'civicrm_contact',187,5),(48,'civicrm_contact',190,4),(63,'civicrm_contact',192,4),(64,'civicrm_contact',192,5),(5,'civicrm_contact',193,3),(79,'civicrm_contact',195,4),(80,'civicrm_contact',195,5),(36,'civicrm_contact',196,5),(98,'civicrm_contact',197,5),(77,'civicrm_contact',198,4),(78,'civicrm_contact',198,5),(1,'civicrm_contact',200,1),(109,'civicrm_contact',201,4),(110,'civicrm_contact',201,5); +INSERT INTO `civicrm_entity_tag` (`id`, `entity_table`, `entity_id`, `tag_id`) VALUES (62,'civicrm_contact',5,4),(27,'civicrm_contact',6,4),(28,'civicrm_contact',6,5),(13,'civicrm_contact',8,4),(54,'civicrm_contact',9,4),(55,'civicrm_contact',9,5),(68,'civicrm_contact',14,5),(116,'civicrm_contact',15,4),(117,'civicrm_contact',15,5),(114,'civicrm_contact',16,4),(79,'civicrm_contact',17,4),(104,'civicrm_contact',20,5),(112,'civicrm_contact',21,4),(113,'civicrm_contact',21,5),(59,'civicrm_contact',22,4),(23,'civicrm_contact',23,5),(96,'civicrm_contact',24,4),(97,'civicrm_contact',24,5),(103,'civicrm_contact',25,5),(74,'civicrm_contact',28,4),(60,'civicrm_contact',30,4),(61,'civicrm_contact',30,5),(29,'civicrm_contact',32,4),(44,'civicrm_contact',33,4),(45,'civicrm_contact',33,5),(32,'civicrm_contact',34,5),(101,'civicrm_contact',37,4),(90,'civicrm_contact',39,4),(91,'civicrm_contact',39,5),(4,'civicrm_contact',41,3),(86,'civicrm_contact',43,5),(105,'civicrm_contact',44,4),(38,'civicrm_contact',46,4),(58,'civicrm_contact',49,4),(40,'civicrm_contact',51,4),(41,'civicrm_contact',51,5),(1,'civicrm_contact',53,2),(15,'civicrm_contact',56,4),(22,'civicrm_contact',58,5),(63,'civicrm_contact',60,4),(64,'civicrm_contact',60,5),(33,'civicrm_contact',62,5),(24,'civicrm_contact',65,4),(75,'civicrm_contact',68,5),(30,'civicrm_contact',69,4),(31,'civicrm_contact',69,5),(98,'civicrm_contact',72,4),(99,'civicrm_contact',72,5),(115,'civicrm_contact',73,5),(87,'civicrm_contact',76,5),(8,'civicrm_contact',78,2),(20,'civicrm_contact',81,4),(21,'civicrm_contact',81,5),(77,'civicrm_contact',84,4),(78,'civicrm_contact',84,5),(108,'civicrm_contact',85,4),(3,'civicrm_contact',86,3),(34,'civicrm_contact',87,4),(35,'civicrm_contact',87,5),(89,'civicrm_contact',88,4),(110,'civicrm_contact',90,4),(111,'civicrm_contact',90,5),(67,'civicrm_contact',91,5),(36,'civicrm_contact',93,4),(37,'civicrm_contact',93,5),(42,'civicrm_contact',99,4),(43,'civicrm_contact',99,5),(39,'civicrm_contact',100,5),(17,'civicrm_contact',103,4),(16,'civicrm_contact',104,4),(65,'civicrm_contact',106,4),(100,'civicrm_contact',107,5),(5,'civicrm_contact',109,3),(53,'civicrm_contact',110,4),(69,'civicrm_contact',111,4),(70,'civicrm_contact',111,5),(85,'civicrm_contact',112,4),(14,'civicrm_contact',113,4),(92,'civicrm_contact',114,4),(93,'civicrm_contact',114,5),(52,'civicrm_contact',115,5),(76,'civicrm_contact',121,5),(66,'civicrm_contact',125,5),(11,'civicrm_contact',128,5),(80,'civicrm_contact',133,5),(94,'civicrm_contact',138,4),(95,'civicrm_contact',138,5),(57,'civicrm_contact',139,4),(9,'civicrm_contact',141,1),(71,'civicrm_contact',143,5),(6,'civicrm_contact',148,1),(56,'civicrm_contact',152,5),(50,'civicrm_contact',153,4),(51,'civicrm_contact',153,5),(107,'civicrm_contact',157,4),(88,'civicrm_contact',158,4),(18,'civicrm_contact',162,4),(19,'civicrm_contact',162,5),(10,'civicrm_contact',164,1),(102,'civicrm_contact',167,5),(72,'civicrm_contact',171,4),(73,'civicrm_contact',171,5),(106,'civicrm_contact',173,4),(2,'civicrm_contact',174,3),(109,'civicrm_contact',175,4),(25,'civicrm_contact',177,4),(26,'civicrm_contact',177,5),(84,'civicrm_contact',178,4),(12,'civicrm_contact',182,4),(46,'civicrm_contact',184,5),(7,'civicrm_contact',185,1),(82,'civicrm_contact',186,4),(83,'civicrm_contact',186,5),(48,'civicrm_contact',189,4),(49,'civicrm_contact',189,5),(81,'civicrm_contact',190,5),(47,'civicrm_contact',194,5); /*!40000 ALTER TABLE `civicrm_entity_tag` ENABLE KEYS */; UNLOCK TABLES; @@ -459,7 +459,7 @@ 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-07-20 17:00:00','2015-07-22 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!','

Thank you for your support. Your contribution will help us build even better tools.

Please tell your friends and colleagues about this wonderful event.

','

Back to CiviCRM Home Page

',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-01-19 12:00:00','2015-01-19 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!','

Thank you for your support. Your participation will help build new parks.

Please tell your friends and colleagues about the concert.

','

Back to CiviCRM Home Page

',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-08-20 07:00:00','2015-08-23 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.','A Soccer Youth Event','Review and Confirm Your Registration Information','','A Soccer Youth Event',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','

Thank you for your support. Your participation will help save thousands of acres of rainforest.

','

Back to CiviCRM Home Page

',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-07-16 17:00:00','2015-07-18 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!','

Thank you for your support. Your contribution will help us build even better tools.

Please tell your friends and colleagues about this wonderful event.

','

Back to CiviCRM Home Page

',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-01-15 12:00:00','2015-01-15 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!','

Thank you for your support. Your participation will help build new parks.

Please tell your friends and colleagues about the concert.

','

Back to CiviCRM Home Page

',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-08-16 07:00:00','2015-08-19 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.','A Soccer Youth Event','Review and Confirm Your Registration Information','','A Soccer Youth Event',1,'Contact our Tournament Director for eligibility details.','Tournament Director','tournament@example.org','',NULL,NULL,NULL,'Thanks for Your Support!','

Thank you for your support. Your participation will help save thousands of acres of rainforest.

','

Back to CiviCRM Home Page

',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 @@ 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-01-20 17:35:06','2010-04-11 00:00:00',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),(2,'2015-01-20 17:35:06','2010-03-21 00:00:00',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),(3,'2015-01-20 17:35:06','2010-04-29 00:00:00',6,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',3),(4,'2015-01-20 17:35:06','2010-04-11 00:00:00',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),(5,'2015-01-20 17:35:06','2010-04-15 00:00:00',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',5),(6,'2015-01-20 17:35:06','2010-04-11 00:00:00',19,'Contribution Amount',175.00,'USD',1,1,'civicrm_line_item',6),(7,'2015-01-20 17:35:06','2010-03-27 00:00:00',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',7),(8,'2015-01-20 17:35:06','2010-03-08 00:00:00',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',8),(9,'2015-01-20 17:35:06','2010-04-22 00:00:00',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',9),(10,'2015-01-20 17:35:06','2009-07-01 11:53:50',71,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',10),(11,'2015-01-20 17:35:06','2009-07-01 12:55:41',43,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',11),(12,'2015-01-20 17:35:06','2009-10-01 11:53:50',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',12),(13,'2015-01-20 17:35:06','2009-12-01 12:55:41',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',13),(14,'2015-01-20 17:35:06','2015-01-20 09:35:06',140,'Soprano',50.00,'USD',2,1,'civicrm_line_item',81),(15,'2015-01-20 17:35:06','2015-01-20 09:35:06',67,'Soprano',50.00,'USD',2,1,'civicrm_line_item',82),(16,'2015-01-20 17:35:06','2015-01-20 09:35:06',100,'Soprano',50.00,'USD',2,1,'civicrm_line_item',83),(17,'2015-01-20 17:35:06','2015-01-20 09:35:06',99,'Soprano',50.00,'USD',2,1,'civicrm_line_item',84),(18,'2015-01-20 17:35:06','2015-01-20 09:35:06',133,'Soprano',50.00,'USD',2,1,'civicrm_line_item',85),(19,'2015-01-20 17:35:06','2015-01-20 09:35:06',136,'Soprano',50.00,'USD',2,1,'civicrm_line_item',86),(20,'2015-01-20 17:35:06','2015-01-20 09:35:06',143,'Soprano',50.00,'USD',2,1,'civicrm_line_item',87),(21,'2015-01-20 17:35:06','2015-01-20 09:35:06',179,'Soprano',50.00,'USD',2,1,'civicrm_line_item',88),(22,'2015-01-20 17:35:06','2015-01-20 09:35:06',196,'Soprano',50.00,'USD',2,1,'civicrm_line_item',89),(23,'2015-01-20 17:35:06','2015-01-20 09:35:06',51,'Soprano',50.00,'USD',2,1,'civicrm_line_item',90),(24,'2015-01-20 17:35:06','2015-01-20 09:35:06',96,'Soprano',50.00,'USD',2,1,'civicrm_line_item',91),(25,'2015-01-20 17:35:06','2015-01-20 09:35:06',68,'Soprano',50.00,'USD',2,1,'civicrm_line_item',92),(26,'2015-01-20 17:35:06','2015-01-20 09:35:06',119,'Soprano',50.00,'USD',2,1,'civicrm_line_item',93),(27,'2015-01-20 17:35:06','2015-01-20 09:35:06',142,'Soprano',50.00,'USD',2,1,'civicrm_line_item',94),(28,'2015-01-20 17:35:06','2015-01-20 09:35:06',148,'Soprano',50.00,'USD',2,1,'civicrm_line_item',95),(29,'2015-01-20 17:35:06','2015-01-20 09:35:06',139,'Soprano',50.00,'USD',2,1,'civicrm_line_item',96),(30,'2015-01-20 17:35:06','2015-01-20 09:35:06',166,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',47),(31,'2015-01-20 17:35:06','2015-01-20 09:35:06',81,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',48),(32,'2015-01-20 17:35:06','2015-01-20 09:35:06',19,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',49),(33,'2015-01-20 17:35:06','2015-01-20 09:35:06',171,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',50),(34,'2015-01-20 17:35:06','2015-01-20 09:35:06',20,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',51),(35,'2015-01-20 17:35:06','2015-01-20 09:35:06',174,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',52),(36,'2015-01-20 17:35:06','2015-01-20 09:35:06',35,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',53),(37,'2015-01-20 17:35:06','2015-01-20 09:35:06',125,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',54),(38,'2015-01-20 17:35:06','2015-01-20 09:35:06',9,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',55),(39,'2015-01-20 17:35:06','2015-01-20 09:35:06',151,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',56),(40,'2015-01-20 17:35:06','2015-01-20 09:35:06',195,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',57),(41,'2015-01-20 17:35:06','2015-01-20 09:35:06',29,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',58),(42,'2015-01-20 17:35:06','2015-01-20 09:35:06',117,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',59),(43,'2015-01-20 17:35:06','2015-01-20 09:35:06',180,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',60),(44,'2015-01-20 17:35:06','2015-01-20 09:35:06',75,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',61),(45,'2015-01-20 17:35:06','2015-01-20 09:35:06',159,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',62),(46,'2015-01-20 17:35:06','2015-01-20 09:35:06',44,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),(47,'2015-01-20 17:35:06','2015-01-20 09:35:06',155,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),(48,'2015-01-20 17:35:06','2015-01-20 09:35:06',121,'Single',50.00,'USD',4,1,'civicrm_line_item',65),(49,'2015-01-20 17:35:06','2015-01-20 09:35:06',4,'Single',50.00,'USD',4,1,'civicrm_line_item',66),(50,'2015-01-20 17:35:06','2015-01-20 09:35:06',45,'Single',50.00,'USD',4,1,'civicrm_line_item',67),(51,'2015-01-20 17:35:06','2015-01-20 09:35:06',93,'Single',50.00,'USD',4,1,'civicrm_line_item',68),(52,'2015-01-20 17:35:06','2015-01-20 09:35:06',83,'Single',50.00,'USD',4,1,'civicrm_line_item',69),(53,'2015-01-20 17:35:06','2015-01-20 09:35:06',132,'Single',50.00,'USD',4,1,'civicrm_line_item',70),(54,'2015-01-20 17:35:06','2015-01-20 09:35:06',54,'Single',50.00,'USD',4,1,'civicrm_line_item',71),(55,'2015-01-20 17:35:06','2015-01-20 09:35:06',10,'Single',50.00,'USD',4,1,'civicrm_line_item',72),(56,'2015-01-20 17:35:06','2015-01-20 09:35:06',57,'Single',50.00,'USD',4,1,'civicrm_line_item',73),(57,'2015-01-20 17:35:06','2015-01-20 09:35:06',109,'Single',50.00,'USD',4,1,'civicrm_line_item',74),(58,'2015-01-20 17:35:06','2015-01-20 09:35:06',33,'Single',50.00,'USD',4,1,'civicrm_line_item',75),(59,'2015-01-20 17:35:06','2015-01-20 09:35:06',42,'Single',50.00,'USD',4,1,'civicrm_line_item',76),(60,'2015-01-20 17:35:06','2015-01-20 09:35:06',107,'Single',50.00,'USD',4,1,'civicrm_line_item',77),(61,'2015-01-20 17:35:06','2015-01-20 09:35:06',18,'Single',50.00,'USD',4,1,'civicrm_line_item',78),(62,'2015-01-20 17:35:06','2015-01-20 09:35:06',32,'Single',50.00,'USD',4,1,'civicrm_line_item',79),(63,'2015-01-20 17:35:06','2015-01-20 09:35:06',92,'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-01-16 12:46:24','2010-04-11 00:00:00',2,'Contribution Amount',125.00,'USD',1,1,'civicrm_line_item',1),(2,'2015-01-16 12:46:24','2010-03-21 00:00:00',4,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',2),(3,'2015-01-16 12:46:24','2010-04-29 00:00:00',6,'Contribution Amount',25.00,'USD',1,1,'civicrm_line_item',3),(4,'2015-01-16 12:46:25','2010-04-11 00:00:00',8,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',4),(5,'2015-01-16 12:46:25','2010-04-15 00:00:00',16,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',5),(6,'2015-01-16 12:46:25','2010-04-11 00:00:00',19,'Contribution Amount',175.00,'USD',1,1,'civicrm_line_item',6),(7,'2015-01-16 12:46:26','2010-03-27 00:00:00',82,'Contribution Amount',50.00,'USD',1,1,'civicrm_line_item',7),(8,'2015-01-16 12:46:26','2010-03-08 00:00:00',92,'Contribution Amount',10.00,'USD',1,1,'civicrm_line_item',8),(9,'2015-01-16 12:46:27','2010-04-22 00:00:00',34,'Contribution Amount',250.00,'USD',1,1,'civicrm_line_item',9),(10,'2015-01-16 12:46:27','2009-07-01 11:53:50',71,'Contribution Amount',500.00,'USD',1,1,'civicrm_line_item',10),(11,'2015-01-16 12:46:27','2009-07-01 12:55:41',43,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',11),(12,'2015-01-16 12:46:28','2009-10-01 11:53:50',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',12),(13,'2015-01-16 12:46:28','2009-12-01 12:55:41',32,'Contribution Amount',200.00,'USD',1,1,'civicrm_line_item',13),(14,'2015-01-16 12:46:28','2015-01-16 18:16:28',6,'Soprano',50.00,'USD',2,1,'civicrm_line_item',81),(15,'2015-01-16 12:46:29','2015-01-16 18:16:28',140,'Soprano',50.00,'USD',2,1,'civicrm_line_item',82),(16,'2015-01-16 12:46:29','2015-01-16 18:16:28',129,'Soprano',50.00,'USD',2,1,'civicrm_line_item',83),(17,'2015-01-16 12:46:29','2015-01-16 18:16:28',21,'Soprano',50.00,'USD',2,1,'civicrm_line_item',84),(18,'2015-01-16 12:46:29','2015-01-16 18:16:28',173,'Soprano',50.00,'USD',2,1,'civicrm_line_item',85),(19,'2015-01-16 12:46:30','2015-01-16 18:16:28',12,'Soprano',50.00,'USD',2,1,'civicrm_line_item',86),(20,'2015-01-16 12:46:31','2015-01-16 18:16:28',1,'Soprano',50.00,'USD',2,1,'civicrm_line_item',87),(21,'2015-01-16 12:46:31','2015-01-16 18:16:28',14,'Soprano',50.00,'USD',2,1,'civicrm_line_item',88),(22,'2015-01-16 12:46:31','2015-01-16 18:16:28',53,'Soprano',50.00,'USD',2,1,'civicrm_line_item',89),(23,'2015-01-16 12:46:31','2015-01-16 18:16:28',62,'Soprano',50.00,'USD',2,1,'civicrm_line_item',90),(24,'2015-01-16 12:46:32','2015-01-16 18:16:28',87,'Soprano',50.00,'USD',2,1,'civicrm_line_item',91),(25,'2015-01-16 12:46:32','2015-01-16 18:16:28',162,'Soprano',50.00,'USD',2,1,'civicrm_line_item',92),(26,'2015-01-16 12:46:32','2015-01-16 18:16:28',161,'Soprano',50.00,'USD',2,1,'civicrm_line_item',93),(27,'2015-01-16 12:46:33','2015-01-16 18:16:28',19,'Soprano',50.00,'USD',2,1,'civicrm_line_item',94),(28,'2015-01-16 12:46:33','2015-01-16 18:16:28',29,'Soprano',50.00,'USD',2,1,'civicrm_line_item',95),(29,'2015-01-16 12:46:33','2015-01-16 18:16:28',119,'Soprano',50.00,'USD',2,1,'civicrm_line_item',96),(30,'2015-01-16 12:46:33','2015-01-16 18:16:28',47,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',47),(31,'2015-01-16 12:46:34','2015-01-16 18:16:28',139,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',48),(32,'2015-01-16 12:46:34','2015-01-16 18:16:28',144,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',49),(33,'2015-01-16 12:46:34','2015-01-16 18:16:28',13,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',50),(34,'2015-01-16 12:46:34','2015-01-16 18:16:28',196,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',51),(35,'2015-01-16 12:46:35','2015-01-16 18:16:28',105,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',52),(36,'2015-01-16 12:46:35','2015-01-16 18:16:28',188,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',53),(37,'2015-01-16 12:46:35','2015-01-16 18:16:28',77,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',54),(38,'2015-01-16 12:46:35','2015-01-16 18:16:28',122,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',55),(39,'2015-01-16 12:46:35','2015-01-16 18:16:28',40,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',56),(40,'2015-01-16 12:46:36','2015-01-16 18:16:28',32,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',57),(41,'2015-01-16 12:46:36','2015-01-16 18:16:28',121,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',58),(42,'2015-01-16 12:46:36','2015-01-16 18:16:28',37,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',59),(43,'2015-01-16 12:46:36','2015-01-16 18:16:28',27,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',60),(44,'2015-01-16 12:46:37','2015-01-16 18:16:28',57,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',61),(45,'2015-01-16 12:46:37','2015-01-16 18:16:28',143,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',62),(46,'2015-01-16 12:46:37','2015-01-16 18:16:28',135,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',63),(47,'2015-01-16 12:46:37','2015-01-16 18:16:28',198,'Tiny-tots (ages 5-8)',800.00,'USD',4,1,'civicrm_line_item',64),(48,'2015-01-16 12:46:38','2015-01-16 18:16:28',155,'Single',50.00,'USD',4,1,'civicrm_line_item',65),(49,'2015-01-16 12:46:38','2015-01-16 18:16:28',151,'Single',50.00,'USD',4,1,'civicrm_line_item',66),(50,'2015-01-16 12:46:38','2015-01-16 18:16:28',96,'Single',50.00,'USD',4,1,'civicrm_line_item',67),(51,'2015-01-16 12:46:38','2015-01-16 18:16:28',164,'Single',50.00,'USD',4,1,'civicrm_line_item',68),(52,'2015-01-16 12:46:39','2015-01-16 18:16:28',107,'Single',50.00,'USD',4,1,'civicrm_line_item',69),(53,'2015-01-16 12:46:39','2015-01-16 18:16:28',67,'Single',50.00,'USD',4,1,'civicrm_line_item',70),(54,'2015-01-16 12:46:40','2015-01-16 18:16:28',103,'Single',50.00,'USD',4,1,'civicrm_line_item',71),(55,'2015-01-16 12:46:40','2015-01-16 18:16:28',2,'Single',50.00,'USD',4,1,'civicrm_line_item',72),(56,'2015-01-16 12:46:40','2015-01-16 18:16:28',174,'Single',50.00,'USD',4,1,'civicrm_line_item',73),(57,'2015-01-16 12:46:41','2015-01-16 18:16:28',153,'Single',50.00,'USD',4,1,'civicrm_line_item',74),(58,'2015-01-16 12:46:41','2015-01-16 18:16:28',43,'Single',50.00,'USD',4,1,'civicrm_line_item',75),(59,'2015-01-16 12:46:42','2015-01-16 18:16:28',31,'Single',50.00,'USD',4,1,'civicrm_line_item',76),(60,'2015-01-16 12:46:43','2015-01-16 18:16:28',65,'Single',50.00,'USD',4,1,'civicrm_line_item',77),(61,'2015-01-16 12:46:43','2015-01-16 18:16:28',109,'Single',50.00,'USD',4,1,'civicrm_line_item',78),(62,'2015-01-16 12:46:43','2015-01-16 18:16:28',44,'Single',50.00,'USD',4,1,'civicrm_line_item',79),(63,'2015-01-16 12:46:44','2015-01-16 18:16:28',132,'Single',50.00,'USD',4,1,'civicrm_line_item',80); /*!40000 ALTER TABLE `civicrm_financial_item` ENABLE KEYS */; UNLOCK TABLES; @@ -525,7 +525,7 @@ 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-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(15,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(16,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(17,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(18,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(19,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(20,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(21,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(22,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(23,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(24,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(25,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(26,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(27,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(28,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(29,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(30,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(31,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(32,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(33,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(34,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(35,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(36,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(37,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(38,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(39,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(40,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(41,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(42,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(43,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(44,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(45,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(46,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(47,NULL,1,'2015-01-20 09:35:06',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(48,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(49,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(50,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(51,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(52,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(53,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(54,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(55,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(56,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(57,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(58,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(59,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(60,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(61,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(62,NULL,1,'2015-01-20 09:35:06',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(63,NULL,1,'2015-01-20 09:35:06',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-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(15,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(16,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(17,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(18,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(19,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(20,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(21,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(22,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(23,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(24,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(25,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(26,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(27,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(28,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(29,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(30,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(31,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(32,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(33,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(34,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(35,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(36,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(37,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(38,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(39,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(40,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(41,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(42,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(43,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(44,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(45,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(46,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(47,NULL,1,'2015-01-16 18:16:28',800.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(48,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(49,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(50,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(51,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(52,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(53,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(54,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(55,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(56,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(57,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(58,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(59,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(60,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(61,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(62,NULL,1,'2015-01-16 18:16:28',50.00,NULL,NULL,'USD',NULL,NULL,1,NULL,4,NULL),(63,NULL,1,'2015-01-16 18:16:28',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 @@ 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,66,'Added',NULL,NULL),(2,2,39,'Added',NULL,NULL),(3,2,141,'Added',NULL,NULL),(4,2,176,'Added',NULL,NULL),(5,2,185,'Added',NULL,NULL),(6,2,27,'Added',NULL,NULL),(7,2,160,'Added',NULL,NULL),(8,2,7,'Added',NULL,NULL),(9,2,91,'Added',NULL,NULL),(10,2,86,'Added',NULL,NULL),(11,2,63,'Added',NULL,NULL),(12,2,33,'Added',NULL,NULL),(13,2,129,'Added',NULL,NULL),(14,2,53,'Added',NULL,NULL),(15,2,99,'Added',NULL,NULL),(16,2,21,'Added',NULL,NULL),(17,2,108,'Added',NULL,NULL),(18,2,23,'Added',NULL,NULL),(19,2,186,'Added',NULL,NULL),(20,2,52,'Added',NULL,NULL),(21,2,94,'Added',NULL,NULL),(22,2,6,'Added',NULL,NULL),(23,2,38,'Added',NULL,NULL),(24,2,173,'Added',NULL,NULL),(25,2,82,'Added',NULL,NULL),(26,2,88,'Added',NULL,NULL),(27,2,43,'Added',NULL,NULL),(28,2,47,'Added',NULL,NULL),(29,2,162,'Added',NULL,NULL),(30,2,20,'Added',NULL,NULL),(31,2,120,'Added',NULL,NULL),(32,2,22,'Added',NULL,NULL),(33,2,196,'Added',NULL,NULL),(34,2,34,'Added',NULL,NULL),(35,2,84,'Added',NULL,NULL),(36,2,75,'Added',NULL,NULL),(37,2,44,'Added',NULL,NULL),(38,2,76,'Added',NULL,NULL),(39,2,153,'Added',NULL,NULL),(40,2,150,'Added',NULL,NULL),(41,2,112,'Added',NULL,NULL),(42,2,45,'Added',NULL,NULL),(43,2,50,'Added',NULL,NULL),(44,2,149,'Added',NULL,NULL),(45,2,28,'Added',NULL,NULL),(46,2,73,'Added',NULL,NULL),(47,2,9,'Added',NULL,NULL),(48,2,137,'Added',NULL,NULL),(49,2,97,'Added',NULL,NULL),(50,2,111,'Added',NULL,NULL),(51,2,190,'Added',NULL,NULL),(52,2,100,'Added',NULL,NULL),(53,2,17,'Added',NULL,NULL),(54,2,25,'Added',NULL,NULL),(55,2,74,'Added',NULL,NULL),(56,2,168,'Added',NULL,NULL),(57,2,57,'Added',NULL,NULL),(58,2,42,'Added',NULL,NULL),(59,2,105,'Added',NULL,NULL),(60,2,77,'Added',NULL,NULL),(61,3,154,'Added',NULL,NULL),(62,3,93,'Added',NULL,NULL),(63,3,83,'Added',NULL,NULL),(64,3,194,'Added',NULL,NULL),(65,3,170,'Added',NULL,NULL),(66,3,199,'Added',NULL,NULL),(67,3,54,'Added',NULL,NULL),(68,3,101,'Added',NULL,NULL),(69,3,113,'Added',NULL,NULL),(70,3,32,'Added',NULL,NULL),(71,3,98,'Added',NULL,NULL),(72,3,123,'Added',NULL,NULL),(73,3,104,'Added',NULL,NULL),(74,3,188,'Added',NULL,NULL),(75,3,192,'Added',NULL,NULL),(76,4,66,'Added',NULL,NULL),(77,4,7,'Added',NULL,NULL),(78,4,99,'Added',NULL,NULL),(79,4,6,'Added',NULL,NULL),(80,4,162,'Added',NULL,NULL),(81,4,75,'Added',NULL,NULL),(82,4,50,'Added',NULL,NULL),(83,4,111,'Added',NULL,NULL); +INSERT INTO `civicrm_group_contact` (`id`, `group_id`, `contact_id`, `status`, `location_id`, `email_id`) VALUES (1,2,128,'Added',NULL,NULL),(2,2,159,'Added',NULL,NULL),(3,2,182,'Added',NULL,NULL),(4,2,144,'Added',NULL,NULL),(5,2,8,'Added',NULL,NULL),(6,2,54,'Added',NULL,NULL),(7,2,113,'Added',NULL,NULL),(8,2,66,'Added',NULL,NULL),(9,2,56,'Added',NULL,NULL),(10,2,80,'Added',NULL,NULL),(11,2,104,'Added',NULL,NULL),(12,2,27,'Added',NULL,NULL),(13,2,103,'Added',NULL,NULL),(14,2,199,'Added',NULL,NULL),(15,2,162,'Added',NULL,NULL),(16,2,19,'Added',NULL,NULL),(17,2,81,'Added',NULL,NULL),(18,2,136,'Added',NULL,NULL),(19,2,58,'Added',NULL,NULL),(20,2,64,'Added',NULL,NULL),(21,2,23,'Added',NULL,NULL),(22,2,79,'Added',NULL,NULL),(23,2,65,'Added',NULL,NULL),(24,2,146,'Added',NULL,NULL),(25,2,177,'Added',NULL,NULL),(26,2,83,'Added',NULL,NULL),(27,2,6,'Added',NULL,NULL),(28,2,117,'Added',NULL,NULL),(29,2,32,'Added',NULL,NULL),(30,2,102,'Added',NULL,NULL),(31,2,69,'Added',NULL,NULL),(32,2,4,'Added',NULL,NULL),(33,2,34,'Added',NULL,NULL),(34,2,180,'Added',NULL,NULL),(35,2,62,'Added',NULL,NULL),(36,2,196,'Added',NULL,NULL),(37,2,87,'Added',NULL,NULL),(38,2,26,'Added',NULL,NULL),(39,2,93,'Added',NULL,NULL),(40,2,126,'Added',NULL,NULL),(41,2,46,'Added',NULL,NULL),(42,2,200,'Added',NULL,NULL),(43,2,100,'Added',NULL,NULL),(44,2,150,'Added',NULL,NULL),(45,2,51,'Added',NULL,NULL),(46,2,170,'Added',NULL,NULL),(47,2,99,'Added',NULL,NULL),(48,2,181,'Added',NULL,NULL),(49,2,33,'Added',NULL,NULL),(50,2,118,'Added',NULL,NULL),(51,2,184,'Added',NULL,NULL),(52,2,127,'Added',NULL,NULL),(53,2,194,'Added',NULL,NULL),(54,2,108,'Added',NULL,NULL),(55,2,189,'Added',NULL,NULL),(56,2,50,'Added',NULL,NULL),(57,2,153,'Added',NULL,NULL),(58,2,122,'Added',NULL,NULL),(59,2,115,'Added',NULL,NULL),(60,2,156,'Added',NULL,NULL),(61,3,110,'Added',NULL,NULL),(62,3,172,'Added',NULL,NULL),(63,3,9,'Added',NULL,NULL),(64,3,98,'Added',NULL,NULL),(65,3,152,'Added',NULL,NULL),(66,3,163,'Added',NULL,NULL),(67,3,139,'Added',NULL,NULL),(68,3,10,'Added',NULL,NULL),(69,3,49,'Added',NULL,NULL),(70,3,123,'Added',NULL,NULL),(71,3,22,'Added',NULL,NULL),(72,3,71,'Added',NULL,NULL),(73,3,30,'Added',NULL,NULL),(74,3,187,'Added',NULL,NULL),(75,3,5,'Added',NULL,NULL),(76,4,128,'Added',NULL,NULL),(77,4,66,'Added',NULL,NULL),(78,4,162,'Added',NULL,NULL),(79,4,79,'Added',NULL,NULL),(80,4,32,'Added',NULL,NULL),(81,4,196,'Added',NULL,NULL),(82,4,100,'Added',NULL,NULL),(83,4,118,'Added',NULL,NULL); /*!40000 ALTER TABLE `civicrm_group_contact` ENABLE KEYS */; UNLOCK TABLES; @@ -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',5,18,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(19,'civicrm_membership',7,20,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(20,'civicrm_membership',9,22,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(21,'civicrm_membership',13,26,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(22,'civicrm_membership',15,28,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(23,'civicrm_membership',17,30,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(24,'civicrm_membership',19,32,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(25,'civicrm_membership',20,33,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(26,'civicrm_membership',21,34,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(27,'civicrm_membership',23,36,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(28,'civicrm_membership',27,40,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(29,'civicrm_membership',29,42,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(30,'civicrm_membership',30,43,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(31,'civicrm_membership',2,15,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(32,'civicrm_membership',4,17,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',24,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(41,'civicrm_membership',25,38,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,88,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(48,'civicrm_participant',6,64,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(49,'civicrm_participant',9,49,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(50,'civicrm_participant',12,89,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(51,'civicrm_participant',15,50,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(52,'civicrm_participant',18,90,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(53,'civicrm_participant',21,54,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(54,'civicrm_participant',24,76,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(55,'civicrm_participant',25,46,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(56,'civicrm_participant',28,85,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(57,'civicrm_participant',31,93,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,73,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(60,'civicrm_participant',40,92,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(61,'civicrm_participant',43,63,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(62,'civicrm_participant',46,87,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(63,'civicrm_participant',49,56,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(64,'civicrm_participant',50,86,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(65,'civicrm_participant',1,75,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(66,'civicrm_participant',4,45,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(67,'civicrm_participant',7,57,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(68,'civicrm_participant',10,67,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(69,'civicrm_participant',13,65,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(70,'civicrm_participant',16,77,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(71,'civicrm_participant',19,59,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(72,'civicrm_participant',22,47,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(73,'civicrm_participant',26,60,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(74,'civicrm_participant',29,72,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(75,'civicrm_participant',32,53,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(76,'civicrm_participant',35,55,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(77,'civicrm_participant',38,71,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(78,'civicrm_participant',41,48,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,66,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(81,'civicrm_participant',2,81,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(82,'civicrm_participant',5,61,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(83,'civicrm_participant',8,70,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(84,'civicrm_participant',11,69,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(85,'civicrm_participant',14,78,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(86,'civicrm_participant',17,79,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(87,'civicrm_participant',20,83,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(88,'civicrm_participant',23,91,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(89,'civicrm_participant',27,94,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(90,'civicrm_participant',30,58,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(91,'civicrm_participant',33,68,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(92,'civicrm_participant',36,62,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(93,'civicrm_participant',39,74,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(94,'civicrm_participant',42,82,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(95,'civicrm_participant',45,84,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(96,'civicrm_participant',48,80,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',10,23,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(21,'civicrm_membership',13,26,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',20,33,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(25,'civicrm_membership',21,34,4,'General',1.00,100.00,100.00,NULL,7,2,0.00,NULL),(26,'civicrm_membership',23,36,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',12,25,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(36,'civicrm_membership',14,27,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(37,'civicrm_membership',15,28,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',24,37,4,'Student',1.00,50.00,50.00,NULL,8,2,0.00,NULL),(41,'civicrm_membership',25,38,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,61,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(48,'civicrm_participant',6,80,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(49,'civicrm_participant',9,83,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(50,'civicrm_participant',12,49,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(51,'civicrm_participant',15,93,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(52,'civicrm_participant',18,71,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(53,'civicrm_participant',21,92,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(54,'civicrm_participant',24,67,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(55,'civicrm_participant',25,76,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(56,'civicrm_participant',28,58,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(57,'civicrm_participant',31,56,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(58,'civicrm_participant',34,75,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(59,'civicrm_participant',37,57,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(60,'civicrm_participant',40,53,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(61,'civicrm_participant',43,63,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,79,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(64,'civicrm_participant',50,94,7,'Tiny-tots (ages 5-8)',1.00,800.00,800.00,0,13,4,0.00,NULL),(65,'civicrm_participant',1,86,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(66,'civicrm_participant',4,84,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(67,'civicrm_participant',7,69,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(68,'civicrm_participant',10,89,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(69,'civicrm_participant',13,72,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(70,'civicrm_participant',16,66,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(71,'civicrm_participant',19,70,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(72,'civicrm_participant',22,46,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(73,'civicrm_participant',26,91,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(74,'civicrm_participant',29,85,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(75,'civicrm_participant',32,59,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(76,'civicrm_participant',35,55,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,73,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(79,'civicrm_participant',44,60,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(80,'civicrm_participant',47,78,8,'Single',1.00,50.00,50.00,0,16,4,0.00,NULL),(81,'civicrm_participant',2,47,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,77,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(84,'civicrm_participant',11,52,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(85,'civicrm_participant',14,90,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(86,'civicrm_participant',17,48,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(87,'civicrm_participant',20,45,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,62,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(90,'civicrm_participant',30,64,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(91,'civicrm_participant',33,68,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(92,'civicrm_participant',36,88,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(93,'civicrm_participant',39,87,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(94,'civicrm_participant',42,51,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(95,'civicrm_participant',45,54,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL),(96,'civicrm_participant',48,74,9,'Soprano',1.00,50.00,50.00,0,21,2,0.00,NULL); /*!40000 ALTER TABLE `civicrm_line_item` ENABLE KEYS */; UNLOCK TABLES; @@ -639,7 +639,7 @@ 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,162,NULL,NULL,NULL,NULL,NULL),(2,180,185,163,NULL,NULL,NULL,NULL,NULL),(3,181,186,164,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,182,176,150,NULL,NULL,NULL,NULL,NULL),(2,183,177,151,NULL,NULL,NULL,NULL,NULL),(3,184,178,152,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_loc_block` ENABLE KEYS */; UNLOCK TABLES; @@ -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,33,1,'2015-01-20','2015-01-20','2017-01-19','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(2,9,2,'2015-01-19','2015-01-19','2016-01-18','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(3,172,1,'2015-01-18','2015-01-18','2017-01-17','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(4,138,2,'2015-01-17','2015-01-17','2016-01-16','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(5,136,1,'2012-12-19','2012-12-19','2014-12-18','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(6,152,2,'2015-01-15','2015-01-15','2016-01-14','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(7,93,1,'2015-01-14','2015-01-14','2017-01-13','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(8,96,2,'2015-01-13','2015-01-13','2016-01-12','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(9,36,1,'2015-01-12','2015-01-12','2017-01-11','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(10,22,2,'2014-01-11','2014-01-11','2015-01-10','Check',4,NULL,NULL,NULL,0,0,NULL,NULL),(11,171,3,'2015-01-10','2015-01-10',NULL,'Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(12,175,2,'2015-01-09','2015-01-09','2016-01-08','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(13,81,1,'2015-01-08','2015-01-08','2017-01-07','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(14,188,2,'2015-01-07','2015-01-07','2016-01-06','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(15,28,1,'2012-09-30','2012-09-30','2014-09-29','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(16,139,2,'2015-01-05','2015-01-05','2016-01-04','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(17,71,1,'2015-01-04','2015-01-04','2017-01-03','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(18,19,2,'2015-01-03','2015-01-03','2016-01-02','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(19,27,1,'2015-01-02','2015-01-02','2017-01-01','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(20,186,1,'2012-08-21','2012-08-21','2014-08-20','Payment',3,NULL,NULL,NULL,0,0,NULL,NULL),(21,169,1,'2014-12-31','2014-12-31','2016-12-30','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(22,147,3,'2014-12-30','2014-12-30',NULL,'Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(23,162,1,'2014-12-29','2014-12-29','2016-12-28','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(24,65,2,'2014-12-28','2014-12-28','2015-12-27','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(25,142,2,'2013-12-27','2013-12-27','2014-12-26','Payment',4,NULL,NULL,NULL,0,0,NULL,NULL),(26,46,2,'2014-12-26','2014-12-26','2015-12-25','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(27,155,1,'2014-12-25','2014-12-25','2016-12-24','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(28,168,2,'2014-12-24','2014-12-24','2015-12-23','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(29,39,1,'2014-12-23','2014-12-23','2016-12-22','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(30,64,1,'2012-06-02','2012-06-02','2014-06-01','Donation',3,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,133,1,'2015-01-16','2015-01-16','2017-01-15','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(2,77,2,'2015-01-15','2015-01-15','2016-01-14','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(3,96,1,'2015-01-14','2015-01-14','2017-01-13','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(4,68,2,'2015-01-13','2015-01-13','2016-01-12','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(5,72,2,'2014-01-12','2014-01-12','2015-01-11','Check',4,NULL,NULL,NULL,0,0,NULL,NULL),(6,104,2,'2015-01-11','2015-01-11','2016-01-10','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(7,55,1,'2015-01-10','2015-01-10','2017-01-09','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(8,88,2,'2015-01-09','2015-01-09','2016-01-08','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(9,132,1,'2015-01-08','2015-01-08','2017-01-07','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(10,194,1,'2012-11-05','2012-11-05','2014-11-04','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(11,2,3,'2015-01-06','2015-01-06',NULL,'Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(12,184,2,'2015-01-05','2015-01-05','2016-01-04','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(13,99,1,'2015-01-04','2015-01-04','2017-01-03','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(14,134,2,'2015-01-03','2015-01-03','2016-01-02','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(15,153,2,'2014-01-02','2014-01-02','2015-01-01','Donation',4,NULL,NULL,NULL,0,0,NULL,NULL),(16,173,2,'2015-01-01','2015-01-01','2015-12-31','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(17,159,1,'2014-12-31','2014-12-31','2016-12-30','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(18,115,2,'2014-12-30','2014-12-30','2015-12-29','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(19,178,1,'2014-12-29','2014-12-29','2016-12-28','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(20,39,1,'2012-08-17','2012-08-17','2014-08-16','Check',3,NULL,NULL,NULL,0,0,NULL,NULL),(21,34,1,'2014-12-27','2014-12-27','2016-12-26','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(22,183,3,'2014-12-26','2014-12-26',NULL,'Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(23,126,1,'2014-12-25','2014-12-25','2016-12-24','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(24,196,2,'2014-12-24','2014-12-24','2015-12-23','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(25,79,2,'2013-12-23','2013-12-23','2014-12-22','Check',4,NULL,NULL,NULL,0,0,NULL,NULL),(26,172,2,'2014-12-22','2014-12-22','2015-12-21','Check',1,NULL,NULL,NULL,0,0,NULL,NULL),(27,69,1,'2014-12-21','2014-12-21','2016-12-20','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(28,76,2,'2014-12-20','2014-12-20','2015-12-19','Payment',1,NULL,NULL,NULL,0,0,NULL,NULL),(29,106,1,'2014-12-19','2014-12-19','2016-12-18','Donation',1,NULL,NULL,NULL,0,0,NULL,NULL),(30,189,1,'2012-05-29','2012-05-29','2014-05-28','Donation',3,NULL,NULL,NULL,0,0,NULL,NULL); /*!40000 ALTER TABLE `civicrm_membership` ENABLE KEYS */; UNLOCK TABLES; @@ -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,2,1,'2015-01-19','2016-01-18',9,'2015-01-20',2,NULL),(2,18,1,'2015-01-03','2016-01-02',19,'2015-01-20',2,NULL),(3,10,4,'2014-01-11','2015-01-10',22,'2015-01-20',2,NULL),(4,19,1,'2015-01-02','2017-01-01',27,'2015-01-20',1,NULL),(5,15,3,'2012-09-30','2014-09-29',28,'2015-01-20',1,NULL),(6,1,1,'2015-01-20','2017-01-19',33,'2015-01-20',1,NULL),(7,9,1,'2015-01-12','2017-01-11',36,'2015-01-20',1,NULL),(8,29,1,'2014-12-23','2016-12-22',39,'2015-01-20',1,NULL),(9,26,1,'2014-12-26','2015-12-25',46,'2015-01-20',2,NULL),(10,30,3,'2012-06-02','2014-06-01',64,'2015-01-20',1,NULL),(11,24,1,'2014-12-28','2015-12-27',65,'2015-01-20',2,NULL),(12,17,1,'2015-01-04','2017-01-03',71,'2015-01-20',1,NULL),(13,13,1,'2015-01-08','2017-01-07',81,'2015-01-20',1,NULL),(14,7,1,'2015-01-14','2017-01-13',93,'2015-01-20',1,NULL),(15,8,1,'2015-01-13','2016-01-12',96,'2015-01-20',2,NULL),(16,5,3,'2012-12-19','2014-12-18',136,'2015-01-20',1,NULL),(17,4,1,'2015-01-17','2016-01-16',138,'2015-01-20',2,NULL),(18,16,1,'2015-01-05','2016-01-04',139,'2015-01-20',2,NULL),(19,25,4,'2013-12-27','2014-12-26',142,'2015-01-20',2,NULL),(20,22,1,'2014-12-30',NULL,147,'2015-01-20',3,NULL),(21,6,1,'2015-01-15','2016-01-14',152,'2015-01-20',2,NULL),(22,27,1,'2014-12-25','2016-12-24',155,'2015-01-20',1,NULL),(23,23,1,'2014-12-29','2016-12-28',162,'2015-01-20',1,NULL),(24,28,1,'2014-12-24','2015-12-23',168,'2015-01-20',2,NULL),(25,21,1,'2014-12-31','2016-12-30',169,'2015-01-20',1,NULL),(26,11,1,'2015-01-10',NULL,171,'2015-01-20',3,NULL),(27,3,1,'2015-01-18','2017-01-17',172,'2015-01-20',1,NULL),(28,12,1,'2015-01-09','2016-01-08',175,'2015-01-20',2,NULL),(29,20,3,'2012-08-21','2014-08-20',186,'2015-01-20',1,NULL),(30,14,1,'2015-01-07','2016-01-06',188,'2015-01-20',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,11,1,'2015-01-06',NULL,2,'2015-01-16',3,NULL),(2,21,1,'2014-12-27','2016-12-26',34,'2015-01-16',1,NULL),(3,20,3,'2012-08-17','2014-08-16',39,'2015-01-16',1,NULL),(4,7,1,'2015-01-10','2017-01-09',55,'2015-01-16',1,NULL),(5,4,1,'2015-01-13','2016-01-12',68,'2015-01-16',2,NULL),(6,27,1,'2014-12-21','2016-12-20',69,'2015-01-16',1,NULL),(7,5,4,'2014-01-12','2015-01-11',72,'2015-01-16',2,NULL),(8,28,1,'2014-12-20','2015-12-19',76,'2015-01-16',2,NULL),(9,2,1,'2015-01-15','2016-01-14',77,'2015-01-16',2,NULL),(10,25,4,'2013-12-23','2014-12-22',79,'2015-01-16',2,NULL),(11,8,1,'2015-01-09','2016-01-08',88,'2015-01-16',2,NULL),(12,3,1,'2015-01-14','2017-01-13',96,'2015-01-16',1,NULL),(13,13,1,'2015-01-04','2017-01-03',99,'2015-01-16',1,NULL),(14,6,1,'2015-01-11','2016-01-10',104,'2015-01-16',2,NULL),(15,29,1,'2014-12-19','2016-12-18',106,'2015-01-16',1,NULL),(16,18,1,'2014-12-30','2015-12-29',115,'2015-01-16',2,NULL),(17,23,1,'2014-12-25','2016-12-24',126,'2015-01-16',1,NULL),(18,9,1,'2015-01-08','2017-01-07',132,'2015-01-16',1,NULL),(19,1,1,'2015-01-16','2017-01-15',133,'2015-01-16',1,NULL),(20,14,1,'2015-01-03','2016-01-02',134,'2015-01-16',2,NULL),(21,15,4,'2014-01-02','2015-01-01',153,'2015-01-16',2,NULL),(22,17,1,'2014-12-31','2016-12-30',159,'2015-01-16',1,NULL),(23,26,1,'2014-12-22','2015-12-21',172,'2015-01-16',2,NULL),(24,16,1,'2015-01-01','2015-12-31',173,'2015-01-16',2,NULL),(25,19,1,'2014-12-29','2016-12-28',178,'2015-01-16',1,NULL),(26,22,1,'2014-12-26',NULL,183,'2015-01-16',3,NULL),(27,12,1,'2015-01-05','2016-01-04',184,'2015-01-16',2,NULL),(28,30,3,'2012-05-29','2014-05-28',189,'2015-01-16',1,NULL),(29,10,3,'2012-11-05','2014-11-04',194,'2015-01-16',1,NULL),(30,24,1,'2014-12-24','2015-12-23',196,'2015-01-16',2,NULL); /*!40000 ALTER TABLE `civicrm_membership_log` ENABLE KEYS */; UNLOCK TABLES; @@ -948,7 +948,6 @@ 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/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&action=add&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&action=add&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/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),(40,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),(41,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),(42,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),(43,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),(44,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),(45,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),(46,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),(47,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),(48,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),(49,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),(50,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),(51,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),(52,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),(53,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),(54,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),(55,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),(56,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),(57,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),(58,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),(59,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),(60,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),(61,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),(62,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),(63,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),(64,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),(65,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),(66,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),(67,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),(68,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),(69,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),(70,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),(71,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),(72,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),(73,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),(74,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),(75,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),(76,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),(77,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),(78,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),(79,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),(80,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),(81,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),(82,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),(83,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),(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&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&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&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&action=add&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&action=add&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&action=add&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&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&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&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&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&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&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&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&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&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&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&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/search',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:6:\"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),(150,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),(151,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),(152,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),(153,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),(154,1,'civicrm/ajax/ed',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:\"enableDisable\";}',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),(155,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),(156,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),(157,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),(158,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),(159,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),(160,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),(161,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),(162,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),(163,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),(164,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),(165,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),(166,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),(167,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),(168,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),(169,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),(170,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),(171,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),(172,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&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(173,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),(174,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&action=add&context=standalone\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(175,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:17:\"view all contacts\";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),(176,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),(177,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),(178,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),(179,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),(180,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),(181,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),(182,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),(183,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),(184,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),(185,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),(186,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),(187,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),(188,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),(189,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),(190,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),(191,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),(192,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),(193,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),(194,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),(195,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),(196,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),(197,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),(198,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),(199,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),(200,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),(201,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),(202,1,'civicrm/ajax/doc',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:7:\"ajaxDoc\";}',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/api/explorer',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_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),(204,1,'civicrm/api/doc',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:21:\"CRM_Admin_Page_APIDoc\";',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),(205,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),(206,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: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/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),(208,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),(209,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),(210,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&action=add\";}}',NULL,NULL,2,NULL,1,NULL,0,1,1,0,NULL),(211,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),(212,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),(213,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),(214,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),(215,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),(216,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),(217,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),(218,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),(219,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:21:\"CRM_Core_Page_Angular\";',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/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),(221,1,'civicrm/ajax/recurringentity/generate-preview',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:15:\"generatePreview\";}',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/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),(223,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),(224,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),(225,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),(226,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),(227,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),(228,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),(229,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),(230,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),(231,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),(232,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),(233,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),(234,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),(235,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),(236,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),(237,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),(238,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),(239,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),(240,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),(241,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),(242,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),(243,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),(244,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),(245,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),(246,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),(247,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),(248,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),(249,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),(250,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),(251,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),(252,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),(253,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),(254,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),(255,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),(256,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),(257,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),(258,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&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,4,1,0,NULL),(259,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),(260,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),(261,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),(262,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),(263,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),(264,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),(265,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),(266,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),(267,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),(268,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),(269,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),(270,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),(271,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),(272,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),(273,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),(274,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),(275,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),(276,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),(277,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),(278,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),(279,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),(280,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),(281,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),(282,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),(283,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),(284,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),(285,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),(286,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),(287,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),(288,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),(289,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),(290,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),(291,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),(292,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),(293,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&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(294,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&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(295,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&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),(296,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),(297,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),(298,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),(299,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),(300,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),(301,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),(302,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),(303,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),(304,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),(305,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),(306,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),(307,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),(308,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),(309,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),(310,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),(311,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),(312,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&action=add\";}}',NULL,NULL,2,NULL,NULL,NULL,0,1,1,1,NULL),(313,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),(314,1,'civicrm/contribute/invoice',NULL,'CiviContributePdf','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),(315,1,'civicrm/contribute/invoice/email',NULL,'CiviContributePdf','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:17:\"CiviContributePdf\";s:3:\"url\";s:35:\"/civicrm/contribute/invoice?reset=1\";}}',NULL,NULL,2,NULL,NULL,NULL,0,630,1,1,NULL),(316,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),(317,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),(318,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),(319,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),(320,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),(321,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),(322,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&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,2,1,0,NULL),(323,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),(324,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),(325,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),(326,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),(327,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),(328,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),(329,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),(330,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),(331,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),(332,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),(333,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),(334,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),(335,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),(336,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),(337,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),(338,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),(339,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),(340,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),(341,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),(342,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),(343,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),(344,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),(345,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),(346,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),(347,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&mid=%%mid%%\";}}',NULL,NULL,4,NULL,NULL,NULL,0,695,1,0,NULL),(348,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),(349,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:1:{i:0;s:17:\"schedule mailings\";}i:1;s:3:\"and\";}','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),(350,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),(351,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:1:{i:0;s:16:\"approve mailings\";}i:1;s:3:\"and\";}','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),(352,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&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(353,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),(354,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),(355,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),(356,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),(357,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),(358,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&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(359,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),(360,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),(361,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&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,570,1,0,NULL),(362,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),(363,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),(364,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),(365,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),(366,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),(367,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),(368,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),(369,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),(370,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),(371,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),(372,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&cid=%%cid%%\";}}',NULL,NULL,NULL,NULL,NULL,NULL,0,1,1,0,NULL),(373,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),(374,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&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),(375,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),(376,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),(377,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),(378,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),(379,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),(380,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),(381,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),(382,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),(383,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),(384,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),(385,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),(386,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),(387,1,'civicrm/case/changeactivitystatus',NULL,'Change Activity Status','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:34:\"CRM_Case_Form_ActivityChangeStatus\";',NULL,'a:2:{i:0;a: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),(388,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),(389,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),(390,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),(391,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),(392,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),(393,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),(394,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),(395,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),(396,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),(397,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),(398,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),(399,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),(400,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),(401,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),(402,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),(403,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),(404,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),(405,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),(406,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),(407,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),(408,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),(409,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),(410,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),(411,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),(412,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),(413,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),(414,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),(415,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),(416,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),(417,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),(418,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&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&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&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&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; @@ -958,7 +957,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_msg_template` WRITE; /*!40000 ALTER TABLE `civicrm_msg_template` DISABLE KEYS */; -INSERT INTO `civicrm_msg_template` (`id`, `msg_title`, `msg_subject`, `msg_text`, `msg_html`, `is_active`, `workflow_id`, `is_default`, `is_reserved`, `is_sms`, `pdf_format_id`) VALUES (1,'Cases - Send Copy of an Activity','{if $idHash}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if $isCaseActivity}\n{ts}Your Case Role(s){/ts} : {$contact.role}\n{if $manageCaseURL}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if $editActURL}\n{ts}Edit activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value}\n{/if}\n{/foreach}\n\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n {if $isCaseActivity}\n \n \n \n \n {if $manageCaseURL}\n \n \n \n {/if}\n {/if}\n {if $editActURL}\n \n \n \n {/if}\n {if $viewActURL}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n
\n {ts}Activity Summary{/ts} - {$activityTypeName}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\n
\n {$field.label}{if $field.category}({$field.category}){/if}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n
\n\n\n\n',1,731,1,0,0,NULL),(2,'Cases - Send Copy of an Activity','{if $idHash}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if $isCaseActivity}\n{ts}Your Case Role(s){/ts} : {$contact.role}\n{if $manageCaseURL}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if $editActURL}\n{ts}Edit activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value}\n{/if}\n{/foreach}\n\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n {if $isCaseActivity}\n \n \n \n \n {if $manageCaseURL}\n \n \n \n {/if}\n {/if}\n {if $editActURL}\n \n \n \n {/if}\n {if $viewActURL}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n
\n {ts}Activity Summary{/ts} - {$activityTypeName}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\n
\n {$field.label}{if $field.category}({$field.category}){/if}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n
\n\n\n\n',1,731,0,1,0,NULL),(3,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts}\n','{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}\n{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}\n\n{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact ID{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact ID{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n
\n\n\n\n',1,732,1,0,0,NULL),(4,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts}\n','{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}\n{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}\n\n{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact ID{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured Duplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact ID{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record - Go to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict rule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n
\n\n\n\n',1,732,0,1,0,NULL),(5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts}\n','{if $formValues.receipt_text}\n{$formValues.receipt_text}\n{else}{ts}Thank you for your support.{/ts}{/if}\n\n{ts}Please print this receipt for your records.{/ts}\n\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $getTaxDetails}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $getTaxDetails} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $getTaxDetails}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $getTaxDetails && $dataArray}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0 || $value != \'\'}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}% : {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm} : {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n\n{if isset($totalTaxAmount) && $totalTaxAmount !== \'null\'}\n{ts}Total Tax Amount{/ts} : {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{ts}Total Amount{/ts} : {$formValues.total_amount|crmMoney:$currency}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $receipt_date}\n{ts}Receipt Date{/ts}: {$receipt_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy and !$formValues.hidden_CreditCard}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{if $formValues.trxn_id}\n{ts}Transaction ID{/ts}: {$formValues.trxn_id}\n{/if}\n\n{if $ccContribution}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $softCreditTypes and $softCredits}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $formValues.product_name}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if $fulfilled_date}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $formValues.receipt_text}\n

{$formValues.receipt_text|htmlize}

\n {else}\n

{ts}Thank you for your support.{/ts}

\n {/if}\n\n

{ts}Please print this receipt for your records.{/ts}

\n\n
\n \n \n \n \n \n \n \n \n\n {if $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n {if $getTaxDetails && $dataArray}\n \n \n \n \n\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0 || $value != \'\'}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n\n {if isset($totalTaxAmount) && $totalTaxAmount !== \'null\'}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $receipt_date}\n \n \n \n \n {/if}\n\n {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n\n {if $formValues.trxn_id}\n \n \n \n \n {/if}\n\n {if $ccContribution}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if $softCreditTypes and $softCredits}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $formValues.product_name}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if $fulfilled_date}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $getTaxDetails}\n \n \n \n {/if}\n \n \n {foreach from=$value item=line}\n \n \n \n \n {if $getTaxDetails}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney:$currency}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:$currency}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {$formValues.total_amount|crmMoney:$currency}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Receipt Date{/ts}\n \n {$receipt_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {$formValues.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n
\n\n\n\n',1,733,1,0,0,NULL),(6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts}\n','{if $formValues.receipt_text}\n{$formValues.receipt_text}\n{else}{ts}Thank you for your support.{/ts}{/if}\n\n{ts}Please print this receipt for your records.{/ts}\n\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $getTaxDetails}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $getTaxDetails} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $getTaxDetails}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $getTaxDetails && $dataArray}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0 || $value != \'\'}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}% : {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm} : {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n\n{if isset($totalTaxAmount) && $totalTaxAmount !== \'null\'}\n{ts}Total Tax Amount{/ts} : {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{ts}Total Amount{/ts} : {$formValues.total_amount|crmMoney:$currency}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $receipt_date}\n{ts}Receipt Date{/ts}: {$receipt_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy and !$formValues.hidden_CreditCard}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{if $formValues.trxn_id}\n{ts}Transaction ID{/ts}: {$formValues.trxn_id}\n{/if}\n\n{if $ccContribution}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $softCreditTypes and $softCredits}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $formValues.product_name}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if $fulfilled_date}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $formValues.receipt_text}\n

{$formValues.receipt_text|htmlize}

\n {else}\n

{ts}Thank you for your support.{/ts}

\n {/if}\n\n

{ts}Please print this receipt for your records.{/ts}

\n\n
\n \n \n \n \n \n \n \n \n\n {if $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n {if $getTaxDetails && $dataArray}\n \n \n \n \n\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0 || $value != \'\'}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n\n {if isset($totalTaxAmount) && $totalTaxAmount !== \'null\'}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $receipt_date}\n \n \n \n \n {/if}\n\n {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n\n {if $formValues.trxn_id}\n \n \n \n \n {/if}\n\n {if $ccContribution}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if $softCreditTypes and $softCredits}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $formValues.product_name}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if $fulfilled_date}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $getTaxDetails}\n \n \n \n {/if}\n \n \n {foreach from=$value item=line}\n \n \n \n \n {if $getTaxDetails}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney:$currency}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:$currency}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {$formValues.total_amount|crmMoney:$currency}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Receipt Date{/ts}\n \n {$receipt_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {$formValues.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n
\n\n\n\n',1,733,0,1,0,NULL),(7,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $amount}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $lineItem and $priceSetID and !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $dataArray}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney:$currency}\n{else}\n{ts}Amount{/ts}: {$amount|crmMoney:$currency} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{/if}\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if $is_recur and ($contributeMode eq \'notify\' or $contributeMode eq \'directIPN\')}\n{ts}This is a recurring contribution. You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n{elseif $softCreditTypes and $softCredits}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later && !$isBillingAddressRequiredForPayLater}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $amount}\n\n\n \n \n \n\n {if $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if $dataArray}\n \n \n \n \n\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {else}\n\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif $softCreditTypes and $softCredits}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShare}\n \n \n \n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later && !$isBillingAddressRequiredForPayLater}\n \n \n \n \n \n \n {elseif $amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $dataArray}\n \n \n \n {/if}\n \n \n {foreach from=$value item=line}\n \n \n \n \n {if $getTaxDetails}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney:$currency}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:$currency}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$amount-$totalTaxAmount|crmMoney:$currency}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney:$currency} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts 1=$cancelSubscriptionUrl}This is a recurring contribution. You can cancel future contributions by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,734,1,0,0,NULL),(8,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $amount}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $lineItem and $priceSetID and !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $dataArray}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney:$currency}\n{else}\n{ts}Amount{/ts}: {$amount|crmMoney:$currency} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{/if}\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if $is_recur and ($contributeMode eq \'notify\' or $contributeMode eq \'directIPN\')}\n{ts}This is a recurring contribution. You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n{elseif $softCreditTypes and $softCredits}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later && !$isBillingAddressRequiredForPayLater}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $amount}\n\n\n \n \n \n\n {if $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if $dataArray}\n \n \n \n \n\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {else}\n\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif $softCreditTypes and $softCredits}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShare}\n \n \n \n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later && !$isBillingAddressRequiredForPayLater}\n \n \n \n \n \n \n {elseif $amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $dataArray}\n \n \n \n {/if}\n \n \n {foreach from=$value item=line}\n \n \n \n \n {if $getTaxDetails}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney:$currency}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:$currency}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$amount-$totalTaxAmount|crmMoney:$currency}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney:$currency} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts 1=$cancelSubscriptionUrl}This is a recurring contribution. You can cancel future contributions by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,734,0,1,0,NULL),(9,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n','{ts}Contribution Invoice{/ts}\n','\n\n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n \n {if $organization_name}\n \n {else}\n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
INVOICEInvoice Date:{$domain_organization}
{$display_name} ({$organization_name}){$display_name}{$invoice_date}\n {if $domain_street_address }\n {$domain_street_address}\n {/if}\n {if $domain_supplemental_address_1 }{$domain_supplemental_address_1}{/if}
{$street_address} {$supplemental_address_1}Invoice Number:{if $domain_supplemental_address_2 }{$domain_supplemental_address_2}{/if}\n {if $domain_state }{$domain_state}{/if}
{$supplemental_address_2} {$stateProvinceAbbreviation}{$invoice_id}{if $domain_city}\n {$domain_city}\n {/if}\n {if $domain_postal_code }\n {$domain_postal_code}\n {/if}\n
{$city} {$postal_code}Reference: {if $domain_country}\n {$domain_country}\n {/if}
{$source} {if $domain_phone}{$domain_phone}{/if}
{if $domain_email}\n {$domain_email}\n {/if}
\n \n \n \n \n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n \n {foreach from=$lineItem item=value key=priceset name=taxpricevalue}\n {if $smarty.foreach.taxpricevalue.index eq 0}\n \n {else}\n \n {/if}\n \n \n \n \n {if $value.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from = $dataArray item = value key = priceset}\n \n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n \n {/if}\n {/foreach}\n \n \n \n \n\n \n \n \n \n \n\n {if $is_pay_later == 0}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
DescriptionQuantityUnit Price{$taxTerm} Amount {$defaultCurrency}


\n {if $value.html_type eq \'Text\'}{$value.label}{else}{$value.field_title} - {$value.label}{/if} {if $value.description}
{$value.description|truncate:30:\"...\"}
{/if}\n
{$value.qty} {$value.unit_price|crmMoney:$currency} {$value.tax_rate}%No {$taxTerm}{$value.subTotal|crmMoney:$currency}

Sub Total {$subTotal|crmMoney:$currency}
TOTAL {$taxTerm} {$priceset}%{$value|crmMoney:$currency} TOTAL NO {$taxTerm}{$value|crmMoney:$currency}

TOTAL {$defaultCurrency}{$amount|crmMoney:$currency}
\n {if $contribution_status_id == $refundedStatusId}\n LESS Amount Credited\n {else}\n LESS Amount Paid\n {/if}\n {$amount|crmMoney:$currency}

AMOUNT DUE: {$amountDue|crmMoney:$currency}
DUE DATE: {$dueDate}
\n
\n \n \n \n \n
\n \n \n \n \n \n
PAYMENT ADVICE

To:
\n {$domain_organization}
\n {$domain_street_address} {$domain_supplemental_address_1}
\n {$domain_supplemental_address_2} {$domain_state}
\n {$domain_city} {$domain_postal_code}
\n {$domain_country}
\n {$domain_phone}
\n {$domain_email}
\n


{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n {if $is_pay_later == 1}\n \n \n \n \n \n {else}\n \n \n \n \n \n {/if}\n \n \n \n \n \n \n \n \n
Customer: {$display_name}
Invoice Number: {$invoice_id}

Amount Due:{$amount|crmMoney:$currency}
Amount Due: {$amountDue|crmMoney:$currency}
Due Date: {$dueDate}

\n
\n\n\n {if $contribution_status_id == $refundedStatusId}\n \n \n \n \n
\n
\n\n \n \n \n \n \n \n \n \n {if $organization_name}\n \n {else}\n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
CREDIT NOTEDate:{$domain_organization}
{$display_name} ({$organization_name}){$display_name}{$invoice_date}\n {if $domain_street_address }\n {$domain_street_address}\n {/if}\n {if $domain_supplemental_address_1 }\n {$domain_supplemental_address_1}\n {/if}
{$street_address} {$supplemental_address_1}Credit Note Number:{if $domain_supplemental_address_2 }\n {$domain_supplemental_address_2}\n {/if}\n {if $domain_state }\n {$domain_state}\n {/if}\n
{$supplemental_address_2} {$stateProvinceAbbreviation}{$creditnote_id}{if $domain_city}\n {$domain_city}\n {/if}\n {if $domain_postal_code }\n {$domain_postal_code}\n {/if}\n
{$city} {$postal_code}Reference: {if $domain_country}\n {$domain_country}\n {/if}
{$source} {if $domain_phone}\n {$domain_phone}\n {/if}
{if $domain_email}\n {$domain_email}\n {/if}
\n\n \n \n \n \n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n \n {foreach from=$lineItem item=value key=priceset name=pricevalue}\n {if $smarty.foreach.pricevalue.index eq 0}\n \n {else}\n \n {/if}\n \n \n \n \n {if $value.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from = $dataArray item = value key = priceset}\n \n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n \n {/if}\n {/foreach}\n \n \n \n \n\n \n \n \n \n \n\n {if $is_pay_later == 0}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
DescriptionQuantityUnit Price{$taxTerm} Amount {$defaultCurrency}


\n {if $value.html_type eq \'Text\'}{$value.label}{else}{$value.field_title} - {$value.label}{/if} {if $value.description}
{$value.description|truncate:30:\"...\"}
{/if}\n
{$value.qty} {$value.unit_price|crmMoney:$currency} {$value.tax_rate}%No {$taxTerm}{$value.subTotal|crmMoney:$currency}

Sub Total {$subTotal|crmMoney:$currency}
TOTAL {$taxTerm} {$priceset}%{$value|crmMoney:$currency} TOTAL NO {$taxTerm}{$value|crmMoney:$currency}

TOTAL {$defaultCurrency}{$amount|crmMoney:$currency}
LESS Credit to invoice(s){$amount|crmMoney:$currency}

REMAINING CREDIT{$amountDue|crmMoney:$currency}
\n
\n\n \n \n \n \n
\n\n \n \n \n \n \n
CREDIT ADVICE

Please do not pay on this advice. Deduct the amount of this Credit Note\nfrom your next payment to us

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Customer: {$display_name}
Credit Note#: {$creditnote_id}

Credit Amount:{$amount|crmMoney:$currency}
\n
\n {/if}\n
\n \n\n',1,735,1,0,0,NULL),(10,'Contributions - Invoice','{if $title}\n {if $component}\n {if $component == \'event\'}\n {ts 1=$title}Event Registration Invoice: %1{/ts}\n {else}\n {ts 1=$title}Contribution Invoice: %1{/ts}\n {/if}\n {/if}\n{else}\n {ts}Invoice{/ts}\n{/if}\n','{ts}Contribution Invoice{/ts}\n','\n\n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n \n {if $organization_name}\n \n {else}\n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
INVOICEInvoice Date:{$domain_organization}
{$display_name} ({$organization_name}){$display_name}{$invoice_date}\n {if $domain_street_address }\n {$domain_street_address}\n {/if}\n {if $domain_supplemental_address_1 }{$domain_supplemental_address_1}{/if}
{$street_address} {$supplemental_address_1}Invoice Number:{if $domain_supplemental_address_2 }{$domain_supplemental_address_2}{/if}\n {if $domain_state }{$domain_state}{/if}
{$supplemental_address_2} {$stateProvinceAbbreviation}{$invoice_id}{if $domain_city}\n {$domain_city}\n {/if}\n {if $domain_postal_code }\n {$domain_postal_code}\n {/if}\n
{$city} {$postal_code}Reference: {if $domain_country}\n {$domain_country}\n {/if}
{$source} {if $domain_phone}{$domain_phone}{/if}
{if $domain_email}\n {$domain_email}\n {/if}
\n \n \n \n \n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n \n {foreach from=$lineItem item=value key=priceset name=taxpricevalue}\n {if $smarty.foreach.taxpricevalue.index eq 0}\n \n {else}\n \n {/if}\n \n \n \n \n {if $value.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from = $dataArray item = value key = priceset}\n \n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n \n {/if}\n {/foreach}\n \n \n \n \n\n \n \n \n \n \n\n {if $is_pay_later == 0}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
DescriptionQuantityUnit Price{$taxTerm} Amount {$defaultCurrency}


\n {if $value.html_type eq \'Text\'}{$value.label}{else}{$value.field_title} - {$value.label}{/if} {if $value.description}
{$value.description|truncate:30:\"...\"}
{/if}\n
{$value.qty} {$value.unit_price|crmMoney:$currency} {$value.tax_rate}%No {$taxTerm}{$value.subTotal|crmMoney:$currency}

Sub Total {$subTotal|crmMoney:$currency}
TOTAL {$taxTerm} {$priceset}%{$value|crmMoney:$currency} TOTAL NO {$taxTerm}{$value|crmMoney:$currency}

TOTAL {$defaultCurrency}{$amount|crmMoney:$currency}
\n {if $contribution_status_id == $refundedStatusId}\n LESS Amount Credited\n {else}\n LESS Amount Paid\n {/if}\n {$amount|crmMoney:$currency}

AMOUNT DUE: {$amountDue|crmMoney:$currency}
DUE DATE: {$dueDate}
\n
\n \n \n \n \n
\n \n \n \n \n \n
PAYMENT ADVICE

To:
\n {$domain_organization}
\n {$domain_street_address} {$domain_supplemental_address_1}
\n {$domain_supplemental_address_2} {$domain_state}
\n {$domain_city} {$domain_postal_code}
\n {$domain_country}
\n {$domain_phone}
\n {$domain_email}
\n


{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n {if $is_pay_later == 1}\n \n \n \n \n \n {else}\n \n \n \n \n \n {/if}\n \n \n \n \n \n \n \n \n
Customer: {$display_name}
Invoice Number: {$invoice_id}

Amount Due:{$amount|crmMoney:$currency}
Amount Due: {$amountDue|crmMoney:$currency}
Due Date: {$dueDate}

\n
\n\n\n {if $contribution_status_id == $refundedStatusId}\n \n \n \n \n
\n
\n\n \n \n \n \n \n \n \n \n {if $organization_name}\n \n {else}\n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
CREDIT NOTEDate:{$domain_organization}
{$display_name} ({$organization_name}){$display_name}{$invoice_date}\n {if $domain_street_address }\n {$domain_street_address}\n {/if}\n {if $domain_supplemental_address_1 }\n {$domain_supplemental_address_1}\n {/if}
{$street_address} {$supplemental_address_1}Credit Note Number:{if $domain_supplemental_address_2 }\n {$domain_supplemental_address_2}\n {/if}\n {if $domain_state }\n {$domain_state}\n {/if}\n
{$supplemental_address_2} {$stateProvinceAbbreviation}{$creditnote_id}{if $domain_city}\n {$domain_city}\n {/if}\n {if $domain_postal_code }\n {$domain_postal_code}\n {/if}\n
{$city} {$postal_code}Reference: {if $domain_country}\n {$domain_country}\n {/if}
{$source} {if $domain_phone}\n {$domain_phone}\n {/if}
{if $domain_email}\n {$domain_email}\n {/if}
\n\n \n \n \n \n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n \n {foreach from=$lineItem item=value key=priceset name=pricevalue}\n {if $smarty.foreach.pricevalue.index eq 0}\n \n {else}\n \n {/if}\n \n \n \n \n {if $value.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from = $dataArray item = value key = priceset}\n \n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n \n {/if}\n {/foreach}\n \n \n \n \n\n \n \n \n \n \n\n {if $is_pay_later == 0}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
DescriptionQuantityUnit Price{$taxTerm} Amount {$defaultCurrency}


\n {if $value.html_type eq \'Text\'}{$value.label}{else}{$value.field_title} - {$value.label}{/if} {if $value.description}
{$value.description|truncate:30:\"...\"}
{/if}\n
{$value.qty} {$value.unit_price|crmMoney:$currency} {$value.tax_rate}%No {$taxTerm}{$value.subTotal|crmMoney:$currency}

Sub Total {$subTotal|crmMoney:$currency}
TOTAL {$taxTerm} {$priceset}%{$value|crmMoney:$currency} TOTAL NO {$taxTerm}{$value|crmMoney:$currency}

TOTAL {$defaultCurrency}{$amount|crmMoney:$currency}
LESS Credit to invoice(s){$amount|crmMoney:$currency}

REMAINING CREDIT{$amountDue|crmMoney:$currency}
\n
\n\n \n \n \n \n
\n\n \n \n \n \n \n
CREDIT ADVICE

Please do not pay on this advice. Deduct the amount of this Credit Note\nfrom your next payment to us

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Customer: {$display_name}
Credit Note#: {$creditnote_id}

Credit Amount:{$amount|crmMoney:$currency}
\n
\n {/if}\n
\n \n\n',1,735,0,1,0,NULL),(11,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts}\n','{ts 1=$displayName}Dear %1{/ts},\n\n{if $recur_txnType eq \'START\'}\n{if $auto_renew_membership}\n{ts}Thanks for your auto renew membership sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s).{/ts}\n\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments } {ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.\n\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n{/if}\n\n{elseif $recur_txnType eq \'END\'}\n{if $auto_renew_membership}\n{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}\n\n\n{else}\n{ts}Your recurring contribution term has ended.{/ts}\n\n\n{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}\n\n\n==================================================\n{ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n\n==================================================\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts}End Date{/ts}: {$recur_end_date|crmDate}\n\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n

{ts 1=$displayName}Dear %1{/ts},

\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments }{ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n
\n\n\n\n',1,736,1,0,0,NULL),(12,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts}\n','{ts 1=$displayName}Dear %1{/ts},\n\n{if $recur_txnType eq \'START\'}\n{if $auto_renew_membership}\n{ts}Thanks for your auto renew membership sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s).{/ts}\n\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments } {ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.\n\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n{/if}\n\n{elseif $recur_txnType eq \'END\'}\n{if $auto_renew_membership}\n{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}\n\n\n{else}\n{ts}Your recurring contribution term has ended.{/ts}\n\n\n{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}\n\n\n==================================================\n{ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n\n==================================================\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts}End Date{/ts}: {$recur_end_date|crmDate}\n\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n

{ts 1=$displayName}Dear %1{/ts},

\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments }{ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n
\n\n\n\n',1,736,0,1,0,NULL),(13,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n
\n\n\n\n',1,737,1,0,0,NULL),(14,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n
\n\n\n\n',1,737,0,1,0,NULL),(15,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n',1,738,1,0,0,NULL),(16,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n',1,738,0,1,0,NULL),(17,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your recurring contribution has been updated as requested:{/ts}\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}\n{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts}Your recurring contribution has been updated as requested:{/ts}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}{if $installments}{ts 1=$installments} for %1 installments{/ts}{/if}.

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n
\n\n\n\n',1,739,1,0,0,NULL),(18,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your recurring contribution has been updated as requested:{/ts}\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}\n{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts}Your recurring contribution has been updated as requested:{/ts}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}{if $installments}{ts 1=$installments} for %1 installments{/ts}{/if}.

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n
\n\n\n\n',1,739,0,1,0,NULL),(19,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts}\n','===========================================================\n{ts}Personal Campaign Page Notification{/ts}\n\n===========================================================\n{ts}Action{/ts}: {if $mode EQ \'Update\'}{ts}Updated personal campaign page{/ts}{else}{ts}New personal campaign page{/ts}{/if}\n{ts}Personal Campaign Page Title{/ts}: {$pcpTitle}\n{ts}Current Status{/ts}: {$pcpStatus}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n{ts}View Page{/ts}:\n>> {$pcpURL}\n\n{ts}Supporter{/ts}: {$supporterName}\n>> {$supporterUrl}\n\n{ts}Linked to Contribution Page{/ts}: {$contribPageTitle}\n>> {$contribPageUrl}\n\n{ts}Manage Personal Campaign Pages{/ts}:\n>> {$managePCPUrl}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n
\n\n\n\n',1,740,1,0,0,NULL),(20,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts}\n','===========================================================\n{ts}Personal Campaign Page Notification{/ts}\n\n===========================================================\n{ts}Action{/ts}: {if $mode EQ \'Update\'}{ts}Updated personal campaign page{/ts}{else}{ts}New personal campaign page{/ts}{/if}\n{ts}Personal Campaign Page Title{/ts}: {$pcpTitle}\n{ts}Current Status{/ts}: {$pcpStatus}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n{ts}View Page{/ts}:\n>> {$pcpURL}\n\n{ts}Supporter{/ts}: {$supporterName}\n>> {$supporterUrl}\n\n{ts}Linked to Contribution Page{/ts}: {$contribPageTitle}\n>> {$contribPageUrl}\n\n{ts}Manage Personal Campaign Pages{/ts}:\n>> {$managePCPUrl}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n
\n\n\n\n',1,740,0,1,0,NULL),(21,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{if $pcpStatus eq \'Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been approved and is now live.{/ts}\n\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}\n\n{if $isTellFriendEnabled}\n\n{ts}After logging in, you can use this form to promote your fundraising page{/ts}:\n{$pcpTellFriendURL}\n\n{/if}\n\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{* Rejected message *}\n{elseif $pcpStatus eq \'Not Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been reviewed. There were some issues with the content which prevented us from approving the page. We are sorry for any inconvenience.{/ts}\n\n{if $pcpNotifyEmailAddress}\n\n{ts}Please contact our site administrator for more information{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{/if}\n','\n\n\n \n \n\n\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content which prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n
\n\n\n\n',1,741,1,0,0,NULL),(22,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{if $pcpStatus eq \'Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been approved and is now live.{/ts}\n\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}\n\n{if $isTellFriendEnabled}\n\n{ts}After logging in, you can use this form to promote your fundraising page{/ts}:\n{$pcpTellFriendURL}\n\n{/if}\n\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{* Rejected message *}\n{elseif $pcpStatus eq \'Not Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been reviewed. There were some issues with the content which prevented us from approving the page. We are sorry for any inconvenience.{/ts}\n\n{if $pcpNotifyEmailAddress}\n\n{ts}Please contact our site administrator for more information{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{/if}\n','\n\n\n \n \n\n\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content which prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n
\n\n\n\n',1,741,0,1,0,NULL),(23,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{ts}Dear supporter{/ts},\n{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}\n\n{if $pcpStatus eq \'Approved\'}\n====================\n{ts}Promoting Your Page{/ts}\n\n====================\n{if $isTellFriendEnabled}\n\n{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:\n\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser and follow the prompts{/ts}:\n{$pcpTellFriendURL}\n{else}\n\n{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts}\n{ts}Include this link to your fundraising page in your emails{/ts}:\n{$pcpInfoURL}\n{/if}\n\n===================\n{ts}Managing Your Page{/ts}\n\n===================\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}\n\n\n{elseif $pcpStatus EQ \'Waiting Review\'}\n{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}\n\n\n{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}\n\n\n{ts}You can still preview your page prior to approval{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser{/ts}:\n{$pcpInfoURL}\n\n{/if}\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n

{ts}Dear supporter{/ts},

\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n
\n\n\n\n',1,742,1,0,0,NULL),(24,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{ts}Dear supporter{/ts},\n{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}\n\n{if $pcpStatus eq \'Approved\'}\n====================\n{ts}Promoting Your Page{/ts}\n\n====================\n{if $isTellFriendEnabled}\n\n{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:\n\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser and follow the prompts{/ts}:\n{$pcpTellFriendURL}\n{else}\n\n{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts}\n{ts}Include this link to your fundraising page in your emails{/ts}:\n{$pcpInfoURL}\n{/if}\n\n===================\n{ts}Managing Your Page{/ts}\n\n===================\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}\n\n\n{elseif $pcpStatus EQ \'Waiting Review\'}\n{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}\n\n\n{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}\n\n\n{ts}You can still preview your page prior to approval{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser{/ts}:\n{$pcpInfoURL}\n\n{/if}\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n

{ts}Dear supporter{/ts},

\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit your page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n
\n\n\n\n',1,742,0,1,0,NULL),(25,'Additional Payment Receipt or Refund Notification','{if $isRefund}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if} - {if $component eq \'event\'}{$event.title}{/if}','Dear {$contactDisplayName}\n{if $paymentConfig.confirm_email_text}\n{$paymentConfig.confirm_email_text}\n{elseif $isRefund}\n{ts}A refund has been issued based on changes in your registration selections.{/ts}\n{else}\n{ts}A payment has been received.{/ts}\n{/if}\n\n{ts}Please print this confirmation for your records.{/ts}\n\n{if $isRefund}\n===============================================================================\n\n{ts}Refund Details{/ts}\n\n===============================================================================\n{ts}Total Fees{/ts}: {$totalAmount|crmMoney}\n{ts}You Paid{/ts}: {$totalPaid|crmMoney}\n------------------------------------------------------------------------------------\n{ts}Refund Amount{/ts}: {$refundAmount|crmMoney}\n\n{else}\n===============================================================================\n\n{ts}Payment Details{/ts}\n\n===============================================================================\n{ts}Total Fees{/ts}: {$totalAmount|crmMoney}\n{ts}This Payment Amount{/ts}: {$paymentAmount|crmMoney}\n------------------------------------------------------------------------------------\n{ts}Balance Owed{/ts}: {$amountOwed|crmMoney} {* This will be zero after final payment. *}\n\n{if $paymentsComplete}\n\n{ts}Thank-you. This completes your payment for {/ts}{if $component eq \'event\'}{$event.event_title}{/if}.\n{/if}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode eq \'direct\' and !$isAmountzero}\n\n===============================================================================\n\n{ts}Billing Name and Address{/ts}\n\n===============================================================================\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===============================================================================\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $component eq \'event\'}\n===============================================================================\n\n{ts}Event Information and Location{/ts}\n\n===============================================================================\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle }style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle }style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n

Dear {$contactDisplayName}

\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n\n
\n {if $paymentConfig.confirm_email_text}\n

{$paymentConfig.confirm_email_text|htmlize}

\n {elseif $isRefund}\n

{ts}A refund has been issued based on changes in your registration selections.{/ts}

\n {else}\n

{ts}A payment has been received.{/ts}

\n {/if}\n

{ts}Please print this confirmation for your records.{/ts}

\n
\n \n {if $isRefund}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n \n \n \n \n \n \n {* This will be zero after final payment. *}\n \n \n \n {if $paymentsComplete}\n \n \n \n {/if}\n {/if}\n {if $receive_date}\n \n \n \n \n {/if}\n {if $trxn_id}\n \n \n \n \n {/if}\n {if $paidBy}\n \n \n \n \n {/if}\n {if $checkNumber}\n \n \n \n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}Total Fees{/ts}\n \n {$totalAmount|crmMoney}\n
\n {ts}You Paid{/ts}\n \n {$totalPaid|crmMoney}\n
\n {ts}Refund Amount{/ts}\n \n {$refundAmount|crmMoney}\n \n
{ts}Payment Details{/ts}
\n {ts}{if $component eq \'event\'}Total Fees{/if}{/ts}\n \n {$totalAmount|crmMoney}\n
\n {ts}This Payment Amount{/ts}\n \n {$paymentAmount|crmMoney}\n
\n {ts}Balance Owed{/ts}\n \n {$amountOwed|crmMoney}\n
\n {ts}Thank-you. This completes your payment for {if $component eq \'event\'}{$event.event_title}{/if}.{/ts}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n
\n \n {if $contributeMode eq \'direct\' and !$isAmountzero}\n \n \n \n \n \n \n {/if}\n {if $contributeMode eq\'direct\' and !$isAmountzero}\n \n \n \n \n \n \n {/if}\n {if $component eq \'event\'}\n \n \n \n \n \n \n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if} {*phone block close*}\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires:{/ts} {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n
\n
\n\n \n\n',1,743,1,0,0,NULL),(26,'Additional Payment Receipt or Refund Notification','{if $isRefund}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if} - {if $component eq \'event\'}{$event.title}{/if}','Dear {$contactDisplayName}\n{if $paymentConfig.confirm_email_text}\n{$paymentConfig.confirm_email_text}\n{elseif $isRefund}\n{ts}A refund has been issued based on changes in your registration selections.{/ts}\n{else}\n{ts}A payment has been received.{/ts}\n{/if}\n\n{ts}Please print this confirmation for your records.{/ts}\n\n{if $isRefund}\n===============================================================================\n\n{ts}Refund Details{/ts}\n\n===============================================================================\n{ts}Total Fees{/ts}: {$totalAmount|crmMoney}\n{ts}You Paid{/ts}: {$totalPaid|crmMoney}\n------------------------------------------------------------------------------------\n{ts}Refund Amount{/ts}: {$refundAmount|crmMoney}\n\n{else}\n===============================================================================\n\n{ts}Payment Details{/ts}\n\n===============================================================================\n{ts}Total Fees{/ts}: {$totalAmount|crmMoney}\n{ts}This Payment Amount{/ts}: {$paymentAmount|crmMoney}\n------------------------------------------------------------------------------------\n{ts}Balance Owed{/ts}: {$amountOwed|crmMoney} {* This will be zero after final payment. *}\n\n{if $paymentsComplete}\n\n{ts}Thank-you. This completes your payment for {/ts}{if $component eq \'event\'}{$event.event_title}{/if}.\n{/if}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode eq \'direct\' and !$isAmountzero}\n\n===============================================================================\n\n{ts}Billing Name and Address{/ts}\n\n===============================================================================\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===============================================================================\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $component eq \'event\'}\n===============================================================================\n\n{ts}Event Information and Location{/ts}\n\n===============================================================================\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle }style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle }style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n

Dear {$contactDisplayName}

\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n\n
\n {if $paymentConfig.confirm_email_text}\n

{$paymentConfig.confirm_email_text|htmlize}

\n {elseif $isRefund}\n

{ts}A refund has been issued based on changes in your registration selections.{/ts}

\n {else}\n

{ts}A payment has been received.{/ts}

\n {/if}\n

{ts}Please print this confirmation for your records.{/ts}

\n
\n \n {if $isRefund}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n \n \n \n \n \n \n {* This will be zero after final payment. *}\n \n \n \n {if $paymentsComplete}\n \n \n \n {/if}\n {/if}\n {if $receive_date}\n \n \n \n \n {/if}\n {if $trxn_id}\n \n \n \n \n {/if}\n {if $paidBy}\n \n \n \n \n {/if}\n {if $checkNumber}\n \n \n \n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}Total Fees{/ts}\n \n {$totalAmount|crmMoney}\n
\n {ts}You Paid{/ts}\n \n {$totalPaid|crmMoney}\n
\n {ts}Refund Amount{/ts}\n \n {$refundAmount|crmMoney}\n \n
{ts}Payment Details{/ts}
\n {ts}{if $component eq \'event\'}Total Fees{/if}{/ts}\n \n {$totalAmount|crmMoney}\n
\n {ts}This Payment Amount{/ts}\n \n {$paymentAmount|crmMoney}\n
\n {ts}Balance Owed{/ts}\n \n {$amountOwed|crmMoney}\n
\n {ts}Thank-you. This completes your payment for {if $component eq \'event\'}{$event.event_title}{/if}.{/ts}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n
\n \n {if $contributeMode eq \'direct\' and !$isAmountzero}\n \n \n \n \n \n \n {/if}\n {if $contributeMode eq\'direct\' and !$isAmountzero}\n \n \n \n \n \n \n {/if}\n {if $component eq \'event\'}\n \n \n \n \n \n \n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if} {*phone block close*}\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires:{/ts} {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n
\n
\n\n \n\n',1,743,0,1,0,NULL),(27,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {$event.title}\n','{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{/if}\n\n{if $email}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$email}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts}\n{/if}\n{/if}\n---------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if $pricesetFieldsCount }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if $amount && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if $isPrimary}\n\n{if $balanceAmount}{ts}Total Paid{/ts}{else}{ts}Total Amount{/ts}{/if}: {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $balanceAmount}\n{ts}Balance{/ts}: {$balanceAmount|crmMoney}\n{/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $is_pay_later }\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if $customPost}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=val key=field}\n{if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\' }\n{if $field eq \'additionalCustomPre\' }\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{/if}\n{foreach from=$val item=v key=f}\n{$f}: {$v}\n{/foreach}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n {/if}\n\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {/if}\n {elseif $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n {/if}\n\n {if $email}\n \n \n \n \n \n \n {/if}\n\n\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if $amount && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $balanceAmount}\n \n \n \n \n {/if}\n {if $pricesetFieldsCount }\n \n \n \n \n {/if}\n {if $is_pay_later}\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customProfile}\n {foreach from=$customProfile item=value key=customName}\n \n \n \n {foreach from=$value item=val key=field}\n {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n \n \n \n {foreach from=$val item=v key=f}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $dataArray}\n \n \n \n {/if}\n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $pricesetFieldsCount }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.participant_count}\n
\n
\n {ts} Amount Before Tax : {/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {if $balanceAmount}\n {ts}Total Paid{/ts}\n {else}\n {ts}Total Amount{/ts}\n {/if}\n \n {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Balance{/ts}\n \n {$balanceAmount|crmMoney}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {$pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n
\n {if $field eq \'additionalCustomPre\'}\n {$additionalCustomPre_grouptitle}\n {else}\n {$additionalCustomPost_grouptitle}\n {/if}\n
\n {$f}\n \n {$v}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,744,1,0,0,NULL),(28,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {$event.title}\n','{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{/if}\n\n{if $email}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$email}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts}\n{/if}\n{/if}\n---------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if $pricesetFieldsCount }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if $amount && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if $isPrimary}\n\n{if $balanceAmount}{ts}Total Paid{/ts}{else}{ts}Total Amount{/ts}{/if}: {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $balanceAmount}\n{ts}Balance{/ts}: {$balanceAmount|crmMoney}\n{/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $is_pay_later }\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if $customPost}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=val key=field}\n{if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\' }\n{if $field eq \'additionalCustomPre\' }\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{/if}\n{foreach from=$val item=v key=f}\n{$f}: {$v}\n{/foreach}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n {/if}\n\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {/if}\n {elseif $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n {/if}\n\n {if $email}\n \n \n \n \n \n \n {/if}\n\n\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if $amount && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $balanceAmount}\n \n \n \n \n {/if}\n {if $pricesetFieldsCount }\n \n \n \n \n {/if}\n {if $is_pay_later}\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customProfile}\n {foreach from=$customProfile item=value key=customName}\n \n \n \n {foreach from=$value item=val key=field}\n {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n \n \n \n {foreach from=$val item=v key=f}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $dataArray}\n \n \n \n {/if}\n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $pricesetFieldsCount }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.participant_count}\n
\n
\n {ts} Amount Before Tax : {/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {if $balanceAmount}\n {ts}Total Paid{/ts}\n {else}\n {ts}Total Amount{/ts}\n {/if}\n \n {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Balance{/ts}\n \n {$balanceAmount|crmMoney}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {$pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n
\n {if $field eq \'additionalCustomPre\'}\n {$additionalCustomPre_grouptitle}\n {else}\n {$additionalCustomPost_grouptitle}\n {/if}\n
\n {$f}\n \n {$v}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,744,0,1,0,NULL),(29,'Events - Registration Confirmation and Receipt (on-line)','{if $isOnWaitlist}{ts}Wait List Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {$event.event_title}','Dear {contact.display_name},\n\n{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n\n{else}\nThank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.\n\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{/if}\n\n{if $payer.name}\nYou were registered by: {$payer.name}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if $pricesetFieldsCount }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}{$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if $amounts && !$lineItem}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and (!$is_pay_later or $isBillingAddressRequiredForPayLater) and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$eachProfile item=val key=field}\n{foreach from=$val item=v key=f}\n{$field}: {$v}\n{/foreach}\n{/foreach}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n
\n

Dear {contact.display_name},

\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n\n {else}\n

Thank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.

\n\n {/if}\n\n

\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {/if}\n {elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n\n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n {/if}\n\n {if $event.is_share}\n \n \n \n {/if}\n {if $payer.name}\n \n \n \n \n \n \n {/if}\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if $amounts && !$lineItem}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $pricesetFieldsCount }\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and (!$is_pay_later or $isBillingAddressRequiredForPayLater) and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n \n {foreach from=$customPr item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n \n {foreach from=$customPos item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customProfile}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n {foreach from=$eachProfile item=val key=field}\n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id=`$event.id`&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl title=$event.title pageURL=$eventUrl}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $dataArray}\n \n \n \n {/if}\n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $pricesetFieldsCount } {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n {$line.participant_count}
\n
\n {ts} Amount Before Tax: {/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,745,1,0,0,NULL),(30,'Events - Registration Confirmation and Receipt (on-line)','{if $isOnWaitlist}{ts}Wait List Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {$event.event_title}','Dear {contact.display_name},\n\n{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n\n{else}\nThank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.\n\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{/if}\n\n{if $payer.name}\nYou were registered by: {$payer.name}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if $pricesetFieldsCount }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}{$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if $amounts && !$lineItem}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and (!$is_pay_later or $isBillingAddressRequiredForPayLater) and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$eachProfile item=val key=field}\n{foreach from=$val item=v key=f}\n{$field}: {$v}\n{/foreach}\n{/foreach}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n
\n

Dear {contact.display_name},

\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n\n {else}\n

Thank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.

\n\n {/if}\n\n

\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with a link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive an email with a link to a web page where you can complete the registration process.{/ts}

\n {/if}\n {elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n\n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n {/if}\n\n {if $event.is_share}\n \n \n \n {/if}\n {if $payer.name}\n \n \n \n \n \n \n {/if}\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if $amounts && !$lineItem}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $pricesetFieldsCount }\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and (!$is_pay_later or $isBillingAddressRequiredForPayLater) and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n \n {foreach from=$customPr item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n \n {foreach from=$customPos item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customProfile}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n {foreach from=$eachProfile item=val key=field}\n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id=`$event.id`&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl title=$event.title pageURL=$eventUrl}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $dataArray}\n \n \n \n {/if}\n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $pricesetFieldsCount } {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n {$line.participant_count}
\n
\n {ts} Amount Before Tax: {/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,745,0,1,0,NULL),(31,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if}\n','Dear {contact.display_name},\n{if $is_pay_later}\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n{else}\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n{/if}\n\n{if $is_pay_later}\n {$pay_later_receipt}\n{/if}\n\n Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:\n\n{if $billing_name}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billing_name}\n\n{$billing_street_address}\n\n{$billing_city}, {$billing_state} {$billing_postal_code}\n\n{$email}\n{/if}\n\n{if $source}\n{$source}\n{/if}\n\n\n{foreach from=$line_items item=line_item}\n{$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})\n{if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$line_item.location.address.1.postal_code}\n {/if}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n\n Quantity: {$line_item.num_participants}\n\n{if $line_item.num_participants > 0}\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\n{if $line_item.num_waiting_participants > 0}\n Waitlisted:\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\nCost: {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\nTotal For This Event: {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n\n{/foreach}\n\n{if $discounts}\nSubtotal: {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n--------------------------------------\nDiscounts\n{foreach from=$discounts key=myId item=i}\n {$i.title}: -{$i.amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/if}\n======================================\nTotal: {$total|crmMoney:$currency|string_format:\"%10s\"}\n\n{if $credit_card_type}\n===========================================================\n{ts}Payment Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n{/if}\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n','\n\n \n \n \n \n \n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n

Dear {contact.display_name},

\n {if $is_pay_later}\n

\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n

\n {else}\n

\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

\n {/if}\n\n

Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:

\n\n\n{if $billing_name}\n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billing_name}
\n {$billing_street_address}
\n {$billing_city}, {$billing_state} {$billing_postal_code}
\n
\n {$email}\n
\n{/if}\n{if $credit_card_type}\n

 

\n \n \n \n \n \n \n \n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n
\n{/if}\n{if $source}\n

 

\n {$source}\n{/if}\n

 

\n \n \n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n \n {foreach from=$line_items item=line_item}\n \n \n \n \n \n \n {/foreach}\n \n \n {if $discounts}\n \n \n \n \n \n \n {foreach from=$discounts key=myId item=i}\n \n \n \n \n \n \n {/foreach}\n {/if}\n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n
\n Event\n \n Participants\n \n Price\n \n Total\n
\n {$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})
\n {if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}
\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}
\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$location.address.1.postal_code}\n {/if}\n {/if}{*End of isShowLocation condition*}

\n {$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n
\n {$line_item.num_participants}\n {if $line_item.num_participants > 0}\n
\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n {if $line_item.num_waiting_participants > 0}\n Waitlisted:
\n
\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n
\n {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n \n  {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n
\n \n \n Subtotal:\n \n  {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n
\n {$i.title}\n \n \n \n -{$i.amount}\n
\n \n \n Total:\n \n  {$total|crmMoney:$currency|string_format:\"%10s\"}\n
\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n \n\n',1,746,1,0,0,NULL),(32,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if}\n','Dear {contact.display_name},\n{if $is_pay_later}\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n{else}\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n{/if}\n\n{if $is_pay_later}\n {$pay_later_receipt}\n{/if}\n\n Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:\n\n{if $billing_name}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billing_name}\n\n{$billing_street_address}\n\n{$billing_city}, {$billing_state} {$billing_postal_code}\n\n{$email}\n{/if}\n\n{if $source}\n{$source}\n{/if}\n\n\n{foreach from=$line_items item=line_item}\n{$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})\n{if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$line_item.location.address.1.postal_code}\n {/if}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n\n Quantity: {$line_item.num_participants}\n\n{if $line_item.num_participants > 0}\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\n{if $line_item.num_waiting_participants > 0}\n Waitlisted:\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\nCost: {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\nTotal For This Event: {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n\n{/foreach}\n\n{if $discounts}\nSubtotal: {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n--------------------------------------\nDiscounts\n{foreach from=$discounts key=myId item=i}\n {$i.title}: -{$i.amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/if}\n======================================\nTotal: {$total|crmMoney:$currency|string_format:\"%10s\"}\n\n{if $credit_card_type}\n===========================================================\n{ts}Payment Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n{/if}\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n','\n\n \n \n \n \n \n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n

Dear {contact.display_name},

\n {if $is_pay_later}\n

\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n

\n {else}\n

\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

\n {/if}\n\n

Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:

\n\n\n{if $billing_name}\n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billing_name}
\n {$billing_street_address}
\n {$billing_city}, {$billing_state} {$billing_postal_code}
\n
\n {$email}\n
\n{/if}\n{if $credit_card_type}\n

 

\n \n \n \n \n \n \n \n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n
\n{/if}\n{if $source}\n

 

\n {$source}\n{/if}\n

 

\n \n \n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n \n {foreach from=$line_items item=line_item}\n \n \n \n \n \n \n {/foreach}\n \n \n {if $discounts}\n \n \n \n \n \n \n {foreach from=$discounts key=myId item=i}\n \n \n \n \n \n \n {/foreach}\n {/if}\n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n
\n Event\n \n Participants\n \n Price\n \n Total\n
\n {$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})
\n {if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}
\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}
\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$location.address.1.postal_code}\n {/if}\n {/if}{*End of isShowLocation condition*}

\n {$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n
\n {$line_item.num_participants}\n {if $line_item.num_participants > 0}\n
\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n {if $line_item.num_waiting_participants > 0}\n Waitlisted:
\n
\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n
\n {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n \n  {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n
\n \n \n Subtotal:\n \n  {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n
\n {$i.title}\n \n \n \n -{$i.amount}\n
\n \n \n Total:\n \n  {$total|crmMoney:$currency|string_format:\"%10s\"}\n
\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n \n\n',1,746,0,1,0,NULL),(33,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your Event Registration has been cancelled.{/ts}\n\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,747,1,0,0,NULL),(34,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your Event Registration has been cancelled.{/ts}\n\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,747,0,1,0,NULL),(35,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n{if !$isAdditional and $participant.id}\n\n===========================================================\n{ts}Confirm Your Registration{/ts}\n\n===========================================================\n{capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\nClick this link to go to a web page where you can confirm your registration online:\n{$confirmUrl}\n{/if}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{/if}\n\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n {if !$isAdditional and $participant.id}\n \n \n \n \n \n \n {/if}\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n Go to a web page where you can confirm your registration online\n
\n \n \n \n \n \n \n \n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n {/if}\n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,748,1,0,0,NULL),(36,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n{if !$isAdditional and $participant.id}\n\n===========================================================\n{ts}Confirm Your Registration{/ts}\n\n===========================================================\n{capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\nClick this link to go to a web page where you can confirm your registration online:\n{$confirmUrl}\n{/if}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{/if}\n\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n {if !$isAdditional and $participant.id}\n \n \n \n \n \n \n {/if}\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n Go to a web page where you can confirm your registration online\n
\n \n \n \n \n \n \n \n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n {/if}\n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,748,0,1,0,NULL),(37,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,749,1,0,0,NULL),(38,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,749,0,1,0,NULL),(39,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','{$senderMessage}\n\n{if $generalLink}{ts}For more information, visit:{/ts}\n>> {$generalLink}\n\n{/if}\n{if $contribute}{ts}To make a contribution, go to:{/ts}\n>> {$pageURL}\n\n{/if}\n{if $event}{ts}To find out more about this event, go to:{/ts}\n>> {$pageURL}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n
\n\n\n\n',1,750,1,0,0,NULL),(40,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','{$senderMessage}\n\n{if $generalLink}{ts}For more information, visit:{/ts}\n>> {$generalLink}\n\n{/if}\n{if $contribute}{ts}To make a contribution, go to:{/ts}\n>> {$pageURL}\n\n{/if}\n{if $event}{ts}To find out more about this event, go to:{/ts}\n>> {$pageURL}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n
\n\n\n\n',1,750,0,1,0,NULL),(41,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if}\n','{if $formValues.receipt_text_signup}\n{$formValues.receipt_text_signup}\n{elseif $formValues.receipt_text_renewal}\n{$formValues.receipt_text_renewal}\n{else}{ts}Thank you for your support.{/ts}{/if}\n\n{if ! $cancelled}{ts}Please print this receipt for your records.{/ts}\n\n\n{/if}\n{if !$lineItem}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if ! $cancelled}\n{if !$lineItem}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount OR $formValues.total_amount eq 0 }\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if $formValues.contributionType_name}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset}\n{$taxTerm} {$priceset|string_format:\"%.2f\"} %: {$value|crmMoney:$currency}\n{elseif $priceset == 0}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if isset($totalTaxAmount)}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if $isPrimary }\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if $customValues}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n {if $isPrimary}\n \n \n \n {/if}\n\n {if $customValues}\n \n \n \n {/if}\n\n
\n {if $formValues.receipt_text_signup}\n

{$formValues.receipt_text_signup|htmlize}

\n {elseif $formValues.receipt_text_renewal}\n

{$formValues.receipt_text_renewal|htmlize}

\n {else}\n

{ts}Thank you for your support.{/ts}

\n {/if}\n {if ! $cancelled}\n

{ts}Please print this receipt for your records.{/ts}

\n {/if}\n
\n \n {if !$lineItem}\n \n \n \n \n \n \n \n {/if}\n {if ! $cancelled}\n {if !$lineItem}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount OR $formValues.total_amount eq 0 }\n \n \n \n {if $formValues.contributionType_name}\n \n \n \n \n {/if}\n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if isset($totalTaxAmount)}\n \n \n \n \n {/if}\n \n \n \n \n {if $receive_date}\n \n \n \n \n {/if}\n {if $formValues.paidBy}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n {if $dataArray}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount Before Tax : {/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n
\n \n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,751,1,0,0,NULL),(42,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if}\n','{if $formValues.receipt_text_signup}\n{$formValues.receipt_text_signup}\n{elseif $formValues.receipt_text_renewal}\n{$formValues.receipt_text_renewal}\n{else}{ts}Thank you for your support.{/ts}{/if}\n\n{if ! $cancelled}{ts}Please print this receipt for your records.{/ts}\n\n\n{/if}\n{if !$lineItem}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if ! $cancelled}\n{if !$lineItem}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount OR $formValues.total_amount eq 0 }\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if $formValues.contributionType_name}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset}\n{$taxTerm} {$priceset|string_format:\"%.2f\"} %: {$value|crmMoney:$currency}\n{elseif $priceset == 0}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if isset($totalTaxAmount)}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if $isPrimary }\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if $customValues}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n {if $isPrimary}\n \n \n \n {/if}\n\n {if $customValues}\n \n \n \n {/if}\n\n
\n {if $formValues.receipt_text_signup}\n

{$formValues.receipt_text_signup|htmlize}

\n {elseif $formValues.receipt_text_renewal}\n

{$formValues.receipt_text_renewal|htmlize}

\n {else}\n

{ts}Thank you for your support.{/ts}

\n {/if}\n {if ! $cancelled}\n

{ts}Please print this receipt for your records.{/ts}

\n {/if}\n
\n \n {if !$lineItem}\n \n \n \n \n \n \n \n {/if}\n {if ! $cancelled}\n {if !$lineItem}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount OR $formValues.total_amount eq 0 }\n \n \n \n {if $formValues.contributionType_name}\n \n \n \n \n {/if}\n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if isset($totalTaxAmount)}\n \n \n \n \n {/if}\n \n \n \n \n {if $receive_date}\n \n \n \n \n {/if}\n {if $formValues.paidBy}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n {if $dataArray}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount Before Tax : {/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n
\n \n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,751,0,1,0,NULL),(43,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $membership_assign && !$useForMember}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n{/if}\n{if $amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !$useForMember && $membership_amount && $is_quick_config}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount}\n{if ! $is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n{else}\n{ts}Additional Contribution{/ts}: {$amount|crmMoney}\n{/if}\n{/if}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{elseif !$useForMember && $lineItem and $priceSetID & !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$amount|crmMoney} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{elseif $membership_amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if $membership_trx_id}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if $is_recur}\n{if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0 OR $membership_amount GT 0 }\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND ( $amount GT 0 OR $membership_amount GT 0 ) }\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $membership_assign && !$useForMember}\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n {/if}\n\n\n {if $amount}\n \n \n \n\n {if !$useForMember and $membership_amount and $is_quick_config}\n\n \n \n \n \n {if $amount}\n {if ! $is_separate_payment }\n \n \n \n \n {else}\n \n \n \n \n {/if}\n {/if}\n \n \n \n \n\n {elseif !$useForMember && $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n \n \n \n \n\n {else}\n {if $useForMember && $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n\n {elseif $membership_amount}\n\n\n \n \n \n \n \n \n \n\n\n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $membership_trx_id}\n \n \n \n \n {/if}\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later}\n \n \n \n \n \n \n {elseif $amount GT 0 OR $membership_amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND ($amount GT 0 OR $membership_amount GT 0)}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Contribution Amount{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Additional Contribution{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Total{/ts}\n \n {$amount+$membership_amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {$line.description|truncate:30:\"...\"}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.line_total|crmMoney}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n {if $dataArray}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts} Amount Before Tax : {/ts}\n \n {$amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}NO{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Membership Transaction #{/ts}\n \n {$membership_trx_id}\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,752,1,0,0,NULL),(44,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $membership_assign && !$useForMember}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n{/if}\n{if $amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !$useForMember && $membership_amount && $is_quick_config}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount}\n{if ! $is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n{else}\n{ts}Additional Contribution{/ts}: {$amount|crmMoney}\n{/if}\n{/if}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{elseif !$useForMember && $lineItem and $priceSetID & !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$amount|crmMoney} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{elseif $membership_amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if $membership_trx_id}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if $is_recur}\n{if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0 OR $membership_amount GT 0 }\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND ( $amount GT 0 OR $membership_amount GT 0 ) }\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $membership_assign && !$useForMember}\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n {/if}\n\n\n {if $amount}\n \n \n \n\n {if !$useForMember and $membership_amount and $is_quick_config}\n\n \n \n \n \n {if $amount}\n {if ! $is_separate_payment }\n \n \n \n \n {else}\n \n \n \n \n {/if}\n {/if}\n \n \n \n \n\n {elseif !$useForMember && $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n \n \n \n \n\n {else}\n {if $useForMember && $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n\n {elseif $membership_amount}\n\n\n \n \n \n \n \n \n \n\n\n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $membership_trx_id}\n \n \n \n \n {/if}\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later}\n \n \n \n \n \n \n {elseif $amount GT 0 OR $membership_amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND ($amount GT 0 OR $membership_amount GT 0)}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Contribution Amount{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Additional Contribution{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Total{/ts}\n \n {$amount+$membership_amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {$line.description|truncate:30:\"...\"}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.line_total|crmMoney}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n {if $dataArray}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts} Amount Before Tax : {/ts}\n \n {$amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}NO{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Membership Transaction #{/ts}\n \n {$membership_trx_id}\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,752,0,1,0,NULL),(45,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts}\n','{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}\n\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Status{/ts}: {$membership_status}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n
\n\n\n\n',1,753,1,0,0,NULL),(46,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts}\n','{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}\n\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Status{/ts}: {$membership_status}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n
\n\n\n\n',1,753,0,1,0,NULL),(47,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n\n',1,754,1,0,0,NULL),(48,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n\n',1,754,0,1,0,NULL),(49,'Test-drive - Receipt Header','[TEST]\n','***********************************************************\n\n{ts}Test-drive Email / Receipt{/ts}\n\n{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}\n\n***********************************************************\n','
\n \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n
\n',1,755,1,0,0,NULL),(50,'Test-drive - Receipt Header','[TEST]\n','***********************************************************\n\n{ts}Test-drive Email / Receipt{/ts}\n\n{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}\n\n***********************************************************\n','
\n \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n
\n',1,755,0,1,0,NULL),(51,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Thank you for your generous pledge. Please print this acknowledgment for your records.{/ts}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$total_pledge_amount|crmMoney:$currency}\n\n===========================================================\n{ts}Payment Schedule{/ts}\n\n===========================================================\n{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}\n\n{if $frequency_day}\n\n{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}\n{/if}\n\n{if $payments}\n{assign var=\"count\" value=\"1\"}\n{foreach from=$payments item=payment}\n\n{ts 1=$count}Payment %1{/ts}: {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n{assign var=\"count\" value=`$count+1`}\n{/foreach}\n{/if}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n

{ts 1=$contact.display_name}dear %1{/ts},

\n

{ts}thank you for your generous pledge. please print this acknowledgment for your records.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=\"1\"}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=`$count+1`}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,756,1,0,0,NULL),(52,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Thank you for your generous pledge. Please print this acknowledgment for your records.{/ts}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$total_pledge_amount|crmMoney:$currency}\n\n===========================================================\n{ts}Payment Schedule{/ts}\n\n===========================================================\n{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}\n\n{if $frequency_day}\n\n{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}\n{/if}\n\n{if $payments}\n{assign var=\"count\" value=\"1\"}\n{foreach from=$payments item=payment}\n\n{ts 1=$count}Payment %1{/ts}: {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n{assign var=\"count\" value=`$count+1`}\n{/foreach}\n{/if}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n

{ts 1=$contact.display_name}dear %1{/ts},

\n

{ts}thank you for your generous pledge. please print this acknowledgment for your records.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=\"1\"}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=`$count+1`}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,756,0,1,0,NULL),(53,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}\n\n===========================================================\n{ts}Payment Due{/ts}\n\n===========================================================\n{ts}Amount Due{/ts}: {$amount_due|crmMoney:$currency}\n{ts}Due Date{/ts}: {$scheduled_payment_date|truncate:10:\'\'|crmDate}\n\n{if $contribution_page_id}\n{capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\nClick this link to go to a web page where you can make your payment online:\n{$contributionUrl}\n{else}\n{ts}Please mail your payment to{/ts}:\n{$domain.address}\n{/if}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$amount|crmMoney:$currency}\n{ts}Total Paid{/ts}: {$amount_paid|crmMoney:$currency}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n\n{ts}Thank your for your generous support.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {$domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank your for your generous support.{/ts}

\n
\n
\n\n\n\n',1,757,1,0,0,NULL),(54,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}\n\n===========================================================\n{ts}Payment Due{/ts}\n\n===========================================================\n{ts}Amount Due{/ts}: {$amount_due|crmMoney:$currency}\n{ts}Due Date{/ts}: {$scheduled_payment_date|truncate:10:\'\'|crmDate}\n\n{if $contribution_page_id}\n{capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\nClick this link to go to a web page where you can make your payment online:\n{$contributionUrl}\n{else}\n{ts}Please mail your payment to{/ts}:\n{$domain.address}\n{/if}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$amount|crmMoney:$currency}\n{ts}Total Paid{/ts}: {$amount_paid|crmMoney:$currency}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n\n{ts}Thank your for your generous support.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {$domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank your for your generous support.{/ts}

\n
\n
\n\n\n\n',1,757,0,1,0,NULL),(55,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts}\n','{ts}Submitted For:{/ts} {$displayName}\n{ts}Date:{/ts} {$currentDate}\n{ts}Contact Summary:{/ts} {$contactLink}\n\n===========================================================\n{$grouptitle}\n\n===========================================================\n{foreach from=$values item=value key=valueName}\n{$valueName}: {$value}\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {$displayName}\n
\n {ts}Date{/ts}\n \n {$currentDate}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,758,1,0,0,NULL),(56,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts}\n','{ts}Submitted For:{/ts} {$displayName}\n{ts}Date:{/ts} {$currentDate}\n{ts}Contact Summary:{/ts} {$contactLink}\n\n===========================================================\n{$grouptitle}\n\n===========================================================\n{foreach from=$values item=value key=valueName}\n{$valueName}: {$value}\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {$displayName}\n
\n {ts}Date{/ts}\n \n {$currentDate}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,758,0,1,0,NULL),(57,'Petition - signature added','Thank you for signing {$petition.title}','Thank you for signing {$petition.title}.\n','

Thank you for signing {$petition.title}.

\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true emailMode=true}\n',1,759,1,0,0,NULL),(58,'Petition - signature added','Thank you for signing {$petition.title}','Thank you for signing {$petition.title}.\n','

Thank you for signing {$petition.title}.

\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true emailMode=true}\n',1,759,0,1,0,NULL),(59,'Petition - need verification','Confirmation of signature needed for {$petition.title}\n','Thank you for signing {$petition.title}.\n\nIn order to complete your signature, we must confirm your e-mail.\nPlease do so by visiting the following email confirmation web page:\n\n{$petition.confirmUrlPlainText}\n\nIf you did not sign this petition, please ignore this message.\n','

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,760,1,0,0,NULL),(60,'Petition - need verification','Confirmation of signature needed for {$petition.title}\n','Thank you for signing {$petition.title}.\n\nIn order to complete your signature, we must confirm your e-mail.\nPlease do so by visiting the following email confirmation web page:\n\n{$petition.confirmUrlPlainText}\n\nIf you did not sign this petition, please ignore this message.\n','

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,760,0,1,0,NULL),(61,'Sample CiviMail Newsletter Template','Sample CiviMail Newsletter','','\n\n\n \n \n\n\n\n\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \"Replace\n    \n Your Newsletter Title\n
\n
\n \n \n \n \n \n
\n \n Greetings {contact.display_name},\n

\n This is a sample template designed to help you get started creating and sending your own CiviMail messages. This template uses an HTML layout that is generally compatible with the wide variety of email clients that your recipients might be using (e.g. Gmail, Outlook, Yahoo, etc.).\n

You can select this \"Sample CiviMail Newsletter Template\" from the \"Use Template\" drop-down in Step 3 of creating a mailing, and customize it to your needs. Then check the \"Save as New Template\" box on the bottom the page to save your customized version for use in future mailings.\n

The logo you use must be uploaded to your server. Copy and paste the URL path to the logo into the <img src= tag in the HTML at the top. Click \"Source\" or the Image button if you are using the text editor.\n

\n Edit the color of the links and headers using the color button or by editing the HTML.\n

\n Your newsletter message and donation appeal can go here. Click the link button to create links - remember to use a fully qualified URL starting with http:// in all your links!\n

\n To use CiviMail:\n \n Sincerely,\n

\n Your Team\n

\n
\n
\n
\n \n \n \n \n \n \n \n \n
News and Events
\n \n Featured Events
\n Fundraising Dinner
\n Training Meeting
\n Board of Directors Annual Meeting
\n\n

\n Community Events
\n Bake Sale
\n Charity Auction
\n Art Exhibit
\n\n

\n Important Dates
\n Tuesday August 27
\n Wednesday September 8
\n Thursday September 29
\n Saturday October 1
\n Sunday October 20
\n
\n
\n
\n \n \n \n \n
\n \n Helpful Tips\n

\n Tokens
\n Click \"Insert Tokens\" to dynamically insert names, addresses, and other contact data of your recipients.\n

\n Plain Text Version
\n Some people refuse HTML emails altogether. We recommend sending a plain-text version of your important communications to accommodate them. Luckily, CiviCRM accommodates for this! Just click \"Plain Text\" and copy and paste in some text. Line breaks (carriage returns) and fully qualified URLs like http://www.example.com are all you get, no HTML here!\n

\n Play by the Rules
\n The address of the sender is required by the Can Spam Act law. This is an available token called domain.address. An unsubscribe or opt-out link is also required. There are several available tokens for this. {action.optOutUrl} creates a link for recipients to click if they want to opt out of receiving emails from your organization. {action.unsubscribeUrl} creates a link to unsubscribe from the specific mailing list used to send this message. Click on \"Insert Tokens\" to find these and look for tokens named \"Domain\" or \"Unsubscribe\". This sample template includes both required tokens at the bottom of the message. You can also configure a default Mailing Footer containing these tokens.\n

\n Composing Offline
\n If you prefer to compose an HTML email offline in your own text editor, you can upload this HTML content into CiviMail or simply click \"Source\" and then copy and paste the HTML in.\n

\n Images
\n Most email clients these days (Outlook, Gmail, etc) block image loading by default. This is to protect their users from annoying or harmful email. Not much we can do about this, so encourage recipients to add you to their contacts or \"whitelist\". Also use images sparingly, do not rely on images to convey vital information, and always use HTML \"alt\" tags which describe the image content.\n
\n
\n \n
\n Click here to unsubscribe from this mailing list.

\n Our mailing address is:
\n {domain.address}\n
\n\n\n\n',1,NULL,1,0,0,NULL),(62,'Sample Responsive Design Newsletter - Single Column Template','Sample Responsive Design Newsletter - Single Column','','\n\n \n \n\n \n\n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
Organization or Program Name Here
\n\n \n \n \n \n \n \n
Month and Year
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
\"Replace\n
 
\n
\n
 
\n
\n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
Headline Here
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
Your Heading Here
 
\n

{contact.email_greeting},

\n

Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!

\n
Read More
 
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
Your Heading Here
 
\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna

\n
Read More
 
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna

\n
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
\n

Remember to link the facebook and twitter links below to your pages!

\n
Read More
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n \n \n \n \n \n
 Unsubscribe | Subscribe | Opt out
 {domain.address}
\n \n\n \n \n \n \n \n \n \n \n \n
\n \n  \n \n  
\n
 
\n
\n
\n\n\n\n',1,NULL,1,0,0,NULL),(63,'Sample Responsive Design Newsletter - Two Column Template','Sample Responsive Design Newsletter - Two Column','','\n \n \n \n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
Organization or Program Name Here
\n\n \n \n \n \n \n \n
Month Year
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n\n \n
\n \n \n \n \n \n \n \n \n \n \n
\"Replace
\n
 
\n
\n\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
Hero Story Heading
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n\n \n\n \n\n\n\n \n \n
\n
\"\"
\n
 
Subheading Here
 
Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!
 
\n
\n
\n
Section Heading Here
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n\n\n\n\n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n

Remember to link the facebook and twitter links below to your pages!

\n
\n
\n
\n \n\n \n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n \n \n \n \n \n
 Unsubscribe | Subscribe | Opt out
 {domain.address}
\n \n \n \n \n \n \n \n \n \n \n
\n  \n \n  
\n
 
 
\n
\n
\n \n \n\n',1,NULL,1,0,0,NULL); +INSERT INTO `civicrm_msg_template` (`id`, `msg_title`, `msg_subject`, `msg_text`, `msg_html`, `is_active`, `workflow_id`, `is_default`, `is_reserved`, `is_sms`, `pdf_format_id`) VALUES (1,'Cases - Send Copy of an Activity','{if $idHash}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if $isCaseActivity}\n{ts}Your Case Role(s){/ts} : {$contact.role}\n{if $manageCaseURL}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if $editActURL}\n{ts}Edit activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value}\n{/if}\n{/foreach}\n\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n {if $isCaseActivity}\n \n \n \n \n {if $manageCaseURL}\n \n \n \n {/if}\n {/if}\n {if $editActURL}\n \n \n \n {/if}\n {if $viewActURL}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n
\n {ts}Activity Summary{/ts} - {$activityTypeName}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\n
\n {$field.label}{if $field.category}({$field.category}){/if}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n
\n\n\n\n',1,734,1,0,0,NULL),(2,'Cases - Send Copy of an Activity','{if $idHash}[case #{$idHash}]{/if} {$activitySubject}\n','===========================================================\n{ts}Activity Summary{/ts} - {$activityTypeName}\n===========================================================\n{if $isCaseActivity}\n{ts}Your Case Role(s){/ts} : {$contact.role}\n{if $manageCaseURL}\n{ts}Manage Case{/ts} : {$manageCaseURL}\n{/if}\n{/if}\n\n{if $editActURL}\n{ts}Edit activity{/ts} : {$editActURL}\n{/if}\n{if $viewActURL}\n{ts}View activity{/ts} : {$viewActURL}\n{/if}\n\n{foreach from=$activity.fields item=field}\n{if $field.type eq \'Date\'}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label}{if $field.category}({$field.category}){/if} : {$field.value}\n{/if}\n{/foreach}\n\n{foreach from=$activity.customGroups key=customGroupName item=customGroup}\n==========================================================\n{$customGroupName}\n==========================================================\n{foreach from=$customGroup item=field}\n{if $field.type eq \'Date\'}\n{$field.label} : {$field.value|crmDate:$config->dateformatDatetime}\n{else}\n{$field.label} : {$field.value}\n{/if}\n{/foreach}\n\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n {if $isCaseActivity}\n \n \n \n \n {if $manageCaseURL}\n \n \n \n {/if}\n {/if}\n {if $editActURL}\n \n \n \n {/if}\n {if $viewActURL}\n \n \n \n {/if}\n {foreach from=$activity.fields item=field}\n \n \n \n \n {/foreach}\n\n {foreach from=$activity.customGroups key=customGroupName item=customGroup}\n \n \n \n {foreach from=$customGroup item=field}\n \n \n \n \n {/foreach}\n {/foreach}\n
\n {ts}Activity Summary{/ts} - {$activityTypeName}\n
\n {ts}Your Case Role(s){/ts}\n \n {$contact.role}\n
\n {ts}Manage Case{/ts}\n
\n {ts}Edit activity{/ts}\n
\n {ts}View activity{/ts}\n
\n {$field.label}{if $field.category}({$field.category}){/if}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n {$customGroupName}\n
\n {$field.label}\n \n {if $field.type eq \'Date\'}\n {$field.value|crmDate:$config->dateformatDatetime}\n {else}\n {$field.value}\n {/if}\n
\n
\n
\n\n\n\n',1,734,0,1,0,NULL),(3,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts}\n','{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}\n{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}\n\n{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact ID{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact ID{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n
\n\n\n\n',1,735,1,0,0,NULL),(4,'Contributions - Duplicate Organization Alert','{ts}CiviContribute Alert: Possible Duplicate Contact Record{/ts}\n','{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}\n{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}\n\n{ts}Organization Name{/ts}: {$onBehalfName}\n{ts}Organization Email{/ts}: {$onBehalfEmail}\n{ts}Organization Contact ID{/ts}: {$onBehalfID}\n\n{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}\n\n{if $receiptMessage}\n###########################################################\n{ts}Copy of Contribution Receipt{/ts}\n\n###########################################################\n{$receiptMessage}\n\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n {if $receiptMessage}\n \n \n \n {/if}\n
\n

{ts}A contribution / membership signup was made on behalf of the organization listed below.{/ts}

\n

{ts}The information provided matched multiple existing database records based on the configured\nDuplicate Matching Rules for your site.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Organization Name{/ts}\n \n {$onBehalfName}\n
\n {ts}Organization Email{/ts}\n \n {$onBehalfEmail}\n
\n {ts}Organization Contact ID{/ts}\n \n {$onBehalfID}\n
\n
\n

{ts}If you think this may be a duplicate contact which should be merged with an existing record -\nGo to \"Contacts >> Find and Merge Duplicate Contacts\". Use the strict\nrule for Organizations to find the potential duplicates and merge them if appropriate.{/ts}

\n
\n \n \n \n \n \n \n \n
\n {ts}Copy of Contribution Receipt{/ts}\n
\n {* FIXME: the below is most probably not HTML-ised *}\n {$receiptMessage}\n
\n
\n
\n\n\n\n',1,735,0,1,0,NULL),(5,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts}\n','{if $formValues.receipt_text}\n{$formValues.receipt_text}\n{else}{ts}Thank you for your support.{/ts}{/if}\n\n{ts}Please print this receipt for your records.{/ts}\n\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $getTaxDetails}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $getTaxDetails} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $getTaxDetails}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $getTaxDetails && $dataArray}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0 || $value != \'\'}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}% : {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm} : {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n\n{if isset($totalTaxAmount) && $totalTaxAmount !== \'null\'}\n{ts}Total Tax Amount{/ts} : {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{ts}Total Amount{/ts} : {$formValues.total_amount|crmMoney:$currency}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $receipt_date}\n{ts}Receipt Date{/ts}: {$receipt_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy and !$formValues.hidden_CreditCard}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{if $formValues.trxn_id}\n{ts}Transaction ID{/ts}: {$formValues.trxn_id}\n{/if}\n\n{if $ccContribution}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $softCreditTypes and $softCredits}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $formValues.product_name}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if $fulfilled_date}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $formValues.receipt_text}\n

{$formValues.receipt_text|htmlize}

\n {else}\n

{ts}Thank you for your support.{/ts}

\n {/if}\n\n

{ts}Please print this receipt for your records.{/ts}

\n\n
\n \n \n \n \n \n \n \n \n\n {if $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n {if $getTaxDetails && $dataArray}\n \n \n \n \n\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0 || $value != \'\'}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n\n {if isset($totalTaxAmount) && $totalTaxAmount !== \'null\'}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $receipt_date}\n \n \n \n \n {/if}\n\n {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n\n {if $formValues.trxn_id}\n \n \n \n \n {/if}\n\n {if $ccContribution}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if $softCreditTypes and $softCredits}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $formValues.product_name}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if $fulfilled_date}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $getTaxDetails}\n \n \n \n {/if}\n \n \n {foreach from=$value item=line}\n \n \n \n \n {if $getTaxDetails}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney:$currency}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:$currency}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {$formValues.total_amount|crmMoney:$currency}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Receipt Date{/ts}\n \n {$receipt_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {$formValues.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n
\n\n\n\n',1,736,1,0,0,NULL),(6,'Contributions - Receipt (off-line)','{ts}Contribution Receipt{/ts}\n','{if $formValues.receipt_text}\n{$formValues.receipt_text}\n{else}{ts}Thank you for your support.{/ts}{/if}\n\n{ts}Please print this receipt for your records.{/ts}\n\n\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $getTaxDetails}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $getTaxDetails} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $getTaxDetails}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $getTaxDetails && $dataArray}\n{ts}Amount before Tax{/ts} : {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0 || $value != \'\'}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}% : {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm} : {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n\n{if isset($totalTaxAmount) && $totalTaxAmount !== \'null\'}\n{ts}Total Tax Amount{/ts} : {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{ts}Total Amount{/ts} : {$formValues.total_amount|crmMoney:$currency}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $receipt_date}\n{ts}Receipt Date{/ts}: {$receipt_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy and !$formValues.hidden_CreditCard}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{if $formValues.trxn_id}\n{ts}Transaction ID{/ts}: {$formValues.trxn_id}\n{/if}\n\n{if $ccContribution}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $softCreditTypes and $softCredits}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $formValues.product_name}\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$formValues.product_name}\n{if $formValues.product_option}\n{ts}Option{/ts}: {$formValues.product_option}\n{/if}\n{if $formValues.product_sku}\n{ts}SKU{/ts}: {$formValues.product_sku}\n{/if}\n{if $fulfilled_date}\n{ts}Sent{/ts}: {$fulfilled_date|crmDate}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $formValues.receipt_text}\n

{$formValues.receipt_text|htmlize}

\n {else}\n

{ts}Thank you for your support.{/ts}

\n {/if}\n\n

{ts}Please print this receipt for your records.{/ts}

\n\n
\n \n \n \n \n \n \n \n \n\n {if $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {/if}\n {if $getTaxDetails && $dataArray}\n \n \n \n \n\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0 || $value != \'\'}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n\n {if isset($totalTaxAmount) && $totalTaxAmount !== \'null\'}\n \n \n \n \n {/if}\n\n \n \n \n \n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $receipt_date}\n \n \n \n \n {/if}\n\n {if $formValues.paidBy and !$formValues.hidden_CreditCard}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n\n {if $formValues.trxn_id}\n \n \n \n \n {/if}\n\n {if $ccContribution}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {if $softCreditTypes and $softCredits}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $formValues.product_name}\n \n \n \n \n \n \n {if $formValues.product_option}\n \n \n \n \n {/if}\n {if $formValues.product_sku}\n \n \n \n \n {/if}\n {if $fulfilled_date}\n \n \n \n \n {/if}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $getTaxDetails}\n \n \n \n {/if}\n \n \n {foreach from=$value item=line}\n \n \n \n \n {if $getTaxDetails}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney:$currency}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:$currency}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {$formValues.total_amount|crmMoney:$currency}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Receipt Date{/ts}\n \n {$receipt_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n {ts}Transaction ID{/ts}\n \n {$formValues.trxn_id}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n {ts}Premium Information{/ts}\n
\n {$formValues.product_name}\n
\n {ts}Option{/ts}\n \n {$formValues.product_option}\n
\n {ts}SKU{/ts}\n \n {$formValues.product_sku}\n
\n {ts}Sent{/ts}\n \n {$fulfilled_date|truncate:10:\'\'|crmDate}\n
\n
\n
\n\n\n\n',1,736,0,1,0,NULL),(7,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $amount}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $lineItem and $priceSetID and !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $dataArray}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney:$currency}\n{else}\n{ts}Amount{/ts}: {$amount|crmMoney:$currency} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{/if}\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if $is_recur and ($contributeMode eq \'notify\' or $contributeMode eq \'directIPN\')}\n{ts}This is a recurring contribution. You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n{elseif $softCreditTypes and $softCredits}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later && !$isBillingAddressRequiredForPayLater}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $amount}\n\n\n \n \n \n\n {if $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if $dataArray}\n \n \n \n \n\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {else}\n\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif $softCreditTypes and $softCredits}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShare}\n \n \n \n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later && !$isBillingAddressRequiredForPayLater}\n \n \n \n \n \n \n {elseif $amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $dataArray}\n \n \n \n {/if}\n \n \n {foreach from=$value item=line}\n \n \n \n \n {if $getTaxDetails}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney:$currency}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:$currency}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$amount-$totalTaxAmount|crmMoney:$currency}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney:$currency} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts 1=$cancelSubscriptionUrl}This is a recurring contribution. You can cancel future contributions by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,737,1,0,0,NULL),(8,'Contributions - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $amount}\n===========================================================\n{ts}Contribution Information{/ts}\n\n===========================================================\n{if $lineItem and $priceSetID and !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $dataArray}{$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney:$currency}\n{else}\n{ts}Amount{/ts}: {$amount|crmMoney:$currency} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{/if}\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n\n{if $is_recur and ($contributeMode eq \'notify\' or $contributeMode eq \'directIPN\')}\n{ts}This is a recurring contribution. You can cancel future contributions at:{/ts}\n\n{$cancelSubscriptionUrl}\n\n{if $updateSubscriptionBillingUrl}\n{ts}You can update billing details for this recurring contribution at:{/ts}\n\n{$updateSubscriptionBillingUrl}\n\n{/if}\n{ts}You can update recurring contribution amount or change the number of installments for this recurring contribution at:{/ts}\n\n{$updateSubscriptionUrl}\n\n{/if}\n\n{if $honor_block_is_active}\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n{elseif $softCreditTypes and $softCredits}\n{foreach from=$softCreditTypes item=softCreditType key=n}\n===========================================================\n{$softCreditType}\n===========================================================\n{foreach from=$softCredits.$n item=value key=label}\n{$label}: {$value}\n{/foreach}\n{/foreach}\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later && !$isBillingAddressRequiredForPayLater}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $amount}\n\n\n \n \n \n\n {if $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if $dataArray}\n \n \n \n \n\n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {else}\n\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n {/if}\n\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n {if $updateSubscriptionBillingUrl}\n \n \n \n {/if}\n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {elseif $softCreditTypes and $softCredits}\n {foreach from=$softCreditTypes item=softCreditType key=n}\n \n \n \n {foreach from=$softCredits.$n item=value key=label}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $isShare}\n \n \n \n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later && !$isBillingAddressRequiredForPayLater}\n \n \n \n \n \n \n {elseif $amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND $amount GT 0}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Contribution Information{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $dataArray}\n \n \n \n {/if}\n \n \n {foreach from=$value item=line}\n \n \n \n \n {if $getTaxDetails}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Subtotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney:$currency}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney:$currency}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n
\n
\n {ts} Amount before Tax : {/ts}\n \n {$amount-$totalTaxAmount|crmMoney:$currency}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney:$currency} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts 1=$cancelSubscriptionUrl}This is a recurring contribution. You can cancel future contributions by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {$softCreditType}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contributionPageId`\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$contributionUrl title=$title pageURL=$contributionUrl}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney:$currency}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,737,0,1,0,NULL),(9,'Contributions - Invoice','{if $title}{if $component}{if $component == \'event\'} {ts}Event Registration Invoice:- {$title}{/ts}{else}{ts}Contribution Invoice :\n {$title}{/ts}{/if}{/if} {else} {ts}Invoice {/ts} {/if}\n','{ts}Contribution Invoice{/ts}\n','\n\n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n \n {if $organization_name}\n \n {else}\n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
INVOICEInvoice Date:{$domain_organization}
{$display_name} ({$organization_name}){$display_name}{$invoice_date}\n {if $domain_street_address }\n {$domain_street_address}\n {/if}\n {if $domain_supplemental_address_1 }{$domain_supplemental_address_1}{/if}
{$street_address} {$supplemental_address_1}Invoice Number:{if $domain_supplemental_address_2 }{$domain_supplemental_address_2}{/if}\n {if $domain_state }{$domain_state}{/if}
{$supplemental_address_2} {$stateProvinceAbbreviation}{$invoice_id}{if $domain_city}\n {$domain_city}\n {/if}\n {if $domain_postal_code }\n {$domain_postal_code}\n {/if}\n
{$city} {$postal_code}Reference: {if $domain_country}\n {$domain_country}\n {/if}
{$source} {if $domain_phone}{$domain_phone}{/if}
{if $domain_email}\n {$domain_email}\n {/if}
\n \n \n \n \n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n \n {foreach from=$lineItem item=value key=priceset name=taxpricevalue}\n {if $smarty.foreach.taxpricevalue.index eq 0}\n \n {else}\n \n {/if}\n \n \n \n \n {if $value.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from = $dataArray item = value key = priceset}\n \n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n \n {/if}\n {/foreach}\n \n \n \n \n\n \n \n \n \n \n\n {if $is_pay_later == 0}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
DescriptionQuantityUnit Price{$taxTerm} Amount {$defaultCurrency}


\n {if $value.html_type eq \'Text\'}{$value.label}{else}{$value.field_title} - {$value.label}{/if} {if $value.description}
{$value.description|truncate:30:\"...\"}
{/if}\n
{$value.qty} {$value.unit_price|crmMoney:$currency} {$value.tax_rate}%No {$taxTerm}{$value.subTotal|crmMoney:$currency}

Sub Total {$subTotal|crmMoney:$currency}
TOTAL {$taxTerm} {$priceset}%{$value|crmMoney:$currency} TOTAL NO {$taxTerm}{$value|crmMoney:$currency}

TOTAL {$defaultCurrency}{$amount|crmMoney:$currency}
\n {if $contribution_status_id == $refundedStatusId}\n LESS Amount Credited\n {else}\n LESS Amount Paid\n {/if}\n {$amount|crmMoney:$currency}

AMOUNT DUE: {$amountDue|crmMoney:$currency}
DUE DATE: {$dueDate}
\n
\n \n \n \n \n
\n \n \n \n \n \n
PAYMENT ADVICE

To:
\n {$domain_organization}
\n {$domain_street_address} {$domain_supplemental_address_1}
\n {$domain_supplemental_address_2} {$domain_state}
\n {$domain_city} {$domain_postal_code}
\n {$domain_country}
\n {$domain_phone}
\n {$domain_email}
\n


{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n {if $is_pay_later == 1}\n \n \n \n \n \n {else}\n \n \n \n \n \n {/if}\n \n \n \n \n \n \n \n \n
Customer: {$display_name}
Invoice Number: {$invoice_id}

Amount Due:{$amount|crmMoney:$currency}
Amount Due: {$amountDue|crmMoney:$currency}
Due Date: {$dueDate}

\n
\n\n\n {if $contribution_status_id == $refundedStatusId}\n \n \n \n \n
\n
\n\n \n \n \n \n \n \n \n \n {if $organization_name}\n \n {else}\n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
CREDIT NOTEDate:{$domain_organization}
{$display_name} ({$organization_name}){$display_name}{$invoice_date}\n {if $domain_street_address }\n {$domain_street_address}\n {/if}\n {if $domain_supplemental_address_1 }\n {$domain_supplemental_address_1}\n {/if}
{$street_address} {$supplemental_address_1}Credit Note Number:{if $domain_supplemental_address_2 }\n {$domain_supplemental_address_2}\n {/if}\n {if $domain_state }\n {$domain_state}\n {/if}\n
{$supplemental_address_2} {$stateProvinceAbbreviation}{$creditnote_id}{if $domain_city}\n {$domain_city}\n {/if}\n {if $domain_postal_code }\n {$domain_postal_code}\n {/if}\n
{$city} {$postal_code}Reference: {if $domain_country}\n {$domain_country}\n {/if}
{$source} {if $domain_phone}\n {$domain_phone}\n {/if}
{if $domain_email}\n {$domain_email}\n {/if}
\n\n \n \n \n \n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n \n {foreach from=$lineItem item=value key=priceset name=pricevalue}\n {if $smarty.foreach.pricevalue.index eq 0}\n \n {else}\n \n {/if}\n \n \n \n \n {if $value.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from = $dataArray item = value key = priceset}\n \n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n \n {/if}\n {/foreach}\n \n \n \n \n\n \n \n \n \n \n\n {if $is_pay_later == 0}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
DescriptionQuantityUnit Price{$taxTerm} Amount {$defaultCurrency}


\n {if $value.html_type eq \'Text\'}{$value.label}{else}{$value.field_title} - {$value.label}{/if} {if $value.description}
{$value.description|truncate:30:\"...\"}
{/if}\n
{$value.qty} {$value.unit_price|crmMoney:$currency} {$value.tax_rate}%No {$taxTerm}{$value.subTotal|crmMoney:$currency}

Sub Total {$subTotal|crmMoney:$currency}
TOTAL {$taxTerm} {$priceset}%{$value|crmMoney:$currency} TOTAL NO {$taxTerm}{$value|crmMoney:$currency}

TOTAL {$defaultCurrency}{$amount|crmMoney:$currency}
LESS Credit to invoice(s){$amount|crmMoney:$currency}

REMAINING CREDIT{$amountDue|crmMoney:$currency}
\n
\n\n \n \n \n \n
\n\n \n \n \n \n \n
CREDIT ADVICE

Please do not pay on this advice. Deduct the amount of this Credit Note\nfrom your next payment to us

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Customer: {$display_name}
Credit Note#: {$creditnote_id}

Credit Amount:{$amount|crmMoney:$currency}
\n
\n {/if}\n
\n \n\n',1,738,1,0,0,NULL),(10,'Contributions - Invoice','{if $title}{if $component}{if $component == \'event\'} {ts}Event Registration Invoice:- {$title}{/ts}{else}{ts}Contribution Invoice :\n {$title}{/ts}{/if}{/if} {else} {ts}Invoice {/ts} {/if}\n','{ts}Contribution Invoice{/ts}\n','\n\n \n \n \n \n \n \n \n \n \n
\n
\n \n \n \n \n \n \n \n \n {if $organization_name}\n \n {else}\n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
INVOICEInvoice Date:{$domain_organization}
{$display_name} ({$organization_name}){$display_name}{$invoice_date}\n {if $domain_street_address }\n {$domain_street_address}\n {/if}\n {if $domain_supplemental_address_1 }{$domain_supplemental_address_1}{/if}
{$street_address} {$supplemental_address_1}Invoice Number:{if $domain_supplemental_address_2 }{$domain_supplemental_address_2}{/if}\n {if $domain_state }{$domain_state}{/if}
{$supplemental_address_2} {$stateProvinceAbbreviation}{$invoice_id}{if $domain_city}\n {$domain_city}\n {/if}\n {if $domain_postal_code }\n {$domain_postal_code}\n {/if}\n
{$city} {$postal_code}Reference: {if $domain_country}\n {$domain_country}\n {/if}
{$source} {if $domain_phone}{$domain_phone}{/if}
{if $domain_email}\n {$domain_email}\n {/if}
\n \n \n \n \n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n \n {foreach from=$lineItem item=value key=priceset name=taxpricevalue}\n {if $smarty.foreach.taxpricevalue.index eq 0}\n \n {else}\n \n {/if}\n \n \n \n \n {if $value.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from = $dataArray item = value key = priceset}\n \n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n \n {/if}\n {/foreach}\n \n \n \n \n\n \n \n \n \n \n\n {if $is_pay_later == 0}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
DescriptionQuantityUnit Price{$taxTerm} Amount {$defaultCurrency}


\n {if $value.html_type eq \'Text\'}{$value.label}{else}{$value.field_title} - {$value.label}{/if} {if $value.description}
{$value.description|truncate:30:\"...\"}
{/if}\n
{$value.qty} {$value.unit_price|crmMoney:$currency} {$value.tax_rate}%No {$taxTerm}{$value.subTotal|crmMoney:$currency}

Sub Total {$subTotal|crmMoney:$currency}
TOTAL {$taxTerm} {$priceset}%{$value|crmMoney:$currency} TOTAL NO {$taxTerm}{$value|crmMoney:$currency}

TOTAL {$defaultCurrency}{$amount|crmMoney:$currency}
\n {if $contribution_status_id == $refundedStatusId}\n LESS Amount Credited\n {else}\n LESS Amount Paid\n {/if}\n {$amount|crmMoney:$currency}

AMOUNT DUE: {$amountDue|crmMoney:$currency}
DUE DATE: {$dueDate}
\n
\n \n \n \n \n
\n \n \n \n \n \n
PAYMENT ADVICE

To:
\n {$domain_organization}
\n {$domain_street_address} {$domain_supplemental_address_1}
\n {$domain_supplemental_address_2} {$domain_state}
\n {$domain_city} {$domain_postal_code}
\n {$domain_country}
\n {$domain_phone}
\n {$domain_email}
\n


{$notes}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n {if $is_pay_later == 1}\n \n \n \n \n \n {else}\n \n \n \n \n \n {/if}\n \n \n \n \n \n \n \n \n
Customer: {$display_name}
Invoice Number: {$invoice_id}

Amount Due:{$amount|crmMoney:$currency}
Amount Due: {$amountDue|crmMoney:$currency}
Due Date: {$dueDate}

\n
\n\n\n {if $contribution_status_id == $refundedStatusId}\n \n \n \n \n
\n
\n\n \n \n \n \n \n \n \n \n {if $organization_name}\n \n {else}\n \n {/if}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
CREDIT NOTEDate:{$domain_organization}
{$display_name} ({$organization_name}){$display_name}{$invoice_date}\n {if $domain_street_address }\n {$domain_street_address}\n {/if}\n {if $domain_supplemental_address_1 }\n {$domain_supplemental_address_1}\n {/if}
{$street_address} {$supplemental_address_1}Credit Note Number:{if $domain_supplemental_address_2 }\n {$domain_supplemental_address_2}\n {/if}\n {if $domain_state }\n {$domain_state}\n {/if}\n
{$supplemental_address_2} {$stateProvinceAbbreviation}{$creditnote_id}{if $domain_city}\n {$domain_city}\n {/if}\n {if $domain_postal_code }\n {$domain_postal_code}\n {/if}\n
{$city} {$postal_code}Reference: {if $domain_country}\n {$domain_country}\n {/if}
{$source} {if $domain_phone}\n {$domain_phone}\n {/if}
{if $domain_email}\n {$domain_email}\n {/if}
\n\n \n \n \n \n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n \n {foreach from=$lineItem item=value key=priceset name=pricevalue}\n {if $smarty.foreach.pricevalue.index eq 0}\n \n {else}\n \n {/if}\n \n \n \n \n {if $value.tax_amount != \'\'}\n \n {else}\n \n {/if}\n \n \n {/foreach}\n \n \n \n \n \n \n {foreach from = $dataArray item = value key = priceset}\n \n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n \n {/if}\n {/foreach}\n \n \n \n \n\n \n \n \n \n \n\n {if $is_pay_later == 0}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n


\n \n \n \n \n \n \n \n
DescriptionQuantityUnit Price{$taxTerm} Amount {$defaultCurrency}


\n {if $value.html_type eq \'Text\'}{$value.label}{else}{$value.field_title} - {$value.label}{/if} {if $value.description}
{$value.description|truncate:30:\"...\"}
{/if}\n
{$value.qty} {$value.unit_price|crmMoney:$currency} {$value.tax_rate}%No {$taxTerm}{$value.subTotal|crmMoney:$currency}

Sub Total {$subTotal|crmMoney:$currency}
TOTAL {$taxTerm} {$priceset}%{$value|crmMoney:$currency} TOTAL NO {$taxTerm}{$value|crmMoney:$currency}

TOTAL {$defaultCurrency}{$amount|crmMoney:$currency}
LESS Credit to invoice(s){$amount|crmMoney:$currency}

REMAINING CREDIT{$amountDue|crmMoney:$currency}
\n
\n\n \n \n \n \n
\n\n \n \n \n \n \n
CREDIT ADVICE

Please do not pay on this advice. Deduct the amount of this Credit Note\nfrom your next payment to us

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Customer: {$display_name}
Credit Note#: {$creditnote_id}

Credit Amount:{$amount|crmMoney:$currency}
\n
\n {/if}\n
\n \n\n',1,738,0,1,0,NULL),(11,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts}\n','{ts 1=$displayName}Dear %1{/ts},\n\n{if $recur_txnType eq \'START\'}\n{if $auto_renew_membership}\n{ts}Thanks for your auto renew membership sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s).{/ts}\n\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments } {ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.\n\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n{/if}\n\n{elseif $recur_txnType eq \'END\'}\n{if $auto_renew_membership}\n{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}\n\n\n{else}\n{ts}Your recurring contribution term has ended.{/ts}\n\n\n{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}\n\n\n==================================================\n{ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n\n==================================================\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts}End Date{/ts}: {$recur_end_date|crmDate}\n\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n

{ts 1=$displayName}Dear %1{/ts},

\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments }{ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n
\n\n\n\n',1,739,1,0,0,NULL),(12,'Contributions - Recurring Start and End Notification','{ts}Recurring Contribution Notification{/ts}\n','{ts 1=$displayName}Dear %1{/ts},\n\n{if $recur_txnType eq \'START\'}\n{if $auto_renew_membership}\n{ts}Thanks for your auto renew membership sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s).{/ts}\n\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n\n{else}\n{ts}Thanks for your recurring contribution sign-up.{/ts}\n\n\n{ts 1=$recur_frequency_interval 2=$recur_frequency_unit 3=$recur_installments}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments } {ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.\n\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts 1=$cancelSubscriptionUrl}You can cancel the recurring contribution option by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n\n{ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments for this recurring contribution by visiting this web page.{/ts}\n{/if}\n\n{elseif $recur_txnType eq \'END\'}\n{if $auto_renew_membership}\n{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}\n\n\n{else}\n{ts}Your recurring contribution term has ended.{/ts}\n\n\n{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}\n\n\n==================================================\n{ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n\n==================================================\n{ts}Start Date{/ts}: {$recur_start_date|crmDate}\n\n{ts}End Date{/ts}: {$recur_end_date|crmDate}\n\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n \n \n \n\n {if $recur_txnType eq \'START\'}\n {if $auto_renew_membership}\n \n \n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n \n \n \n \n \n {/if}\n\n {elseif $recur_txnType eq \'END\'}\n\n {if $auto_renew_membership}\n \n \n \n {else}\n \n \n \n \n \n \n\n {/if}\n {/if}\n\n
\n

{ts 1=$displayName}Dear %1{/ts},

\n
 
\n

{ts}Thanks for your auto renew membership sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This membership will be automatically renewed every %1 %2(s). {/ts}

\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n

{ts}Thanks for your recurring contribution sign-up.{/ts}

\n

{ts 1=$recur_frequency_interval 2=$recur_frequency_unit}This recurring contribution will be automatically processed every %1 %2(s){/ts}{if $recur_installments }{ts 1=$recur_installments} for a total of %1 installment(s){/ts}{/if}.

\n

{ts}Start Date{/ts}: {$recur_start_date|crmDate}

\n
\n {ts 1=$cancelSubscriptionUrl} You can cancel the recurring contribution option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this recurring contribution by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionUrl}You can update recurring contribution amount or change the number of installments details for this recurring contribution by visiting this web page.{/ts}\n
\n

{ts}Your auto renew membership sign-up has ended and your membership will not be automatically renewed.{/ts}

\n
\n

{ts}Your recurring contribution term has ended.{/ts}

\n

{ts 1=$recur_installments}You have successfully completed %1 recurring contributions. Thank you for your support.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts 1=$recur_installments}Interval of Subscription for %1 installment(s){/ts}\n
\n {ts}Start Date{/ts}\n \n {$recur_start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$recur_end_date|crmDate}\n
\n
\n
\n\n\n\n',1,739,0,1,0,NULL),(13,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n
\n\n\n\n',1,740,1,0,0,NULL),(14,'Contributions - Recurring Cancellation Notification','{ts}Recurring Contribution Cancellation Notification{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Your recurring contribution of %1, every %2 %3 has been cancelled as requested.{/ts}

\n
\n
\n\n\n\n',1,740,0,1,0,NULL),(15,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n',1,741,1,0,0,NULL),(16,'Contributions - Recurring Billing Updates','{ts}Recurring Contribution Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Billing details for your recurring contribution of %1, every %2 %3 have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n',1,741,0,1,0,NULL),(17,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your recurring contribution has been updated as requested:{/ts}\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}\n{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts}Your recurring contribution has been updated as requested:{/ts}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}{if $installments}{ts 1=$installments} for %1 installments{/ts}{/if}.

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n
\n\n\n\n',1,742,1,0,0,NULL),(18,'Contributions - Recurring Updates','{ts}Recurring Contribution Update Notification{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your recurring contribution has been updated as requested:{/ts}\n\n{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}\n{if $installments}{ts 1=$installments} for %1 installments.{/ts}{/if}\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts}Your recurring contribution has been updated as requested:{/ts}\n

{ts 1=$amount 2=$recur_frequency_interval 3=$recur_frequency_unit}Recurring contribution is for %1, every %2 %3(s){/ts}{if $installments}{ts 1=$installments} for %1 installments{/ts}{/if}.

\n\n

{ts 1=$receipt_from_email}If you have questions please contact us at %1.{/ts}

\n
\n
\n\n\n\n',1,742,0,1,0,NULL),(19,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts}\n','===========================================================\n{ts}Personal Campaign Page Notification{/ts}\n\n===========================================================\n{ts}Action{/ts}: {if $mode EQ \'Update\'}{ts}Updated personal campaign page{/ts}{else}{ts}New personal campaign page{/ts}{/if}\n{ts}Personal Campaign Page Title{/ts}: {$pcpTitle}\n{ts}Current Status{/ts}: {$pcpStatus}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n{ts}View Page{/ts}:\n>> {$pcpURL}\n\n{ts}Supporter{/ts}: {$supporterName}\n>> {$supporterUrl}\n\n{ts}Linked to Contribution Page{/ts}: {$contribPageTitle}\n>> {$contribPageUrl}\n\n{ts}Manage Personal Campaign Pages{/ts}:\n>> {$managePCPUrl}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n
\n\n\n\n',1,743,1,0,0,NULL),(20,'Personal Campaign Pages - Admin Notification','{ts}Personal Campaign Page Notification{/ts}\n','===========================================================\n{ts}Personal Campaign Page Notification{/ts}\n\n===========================================================\n{ts}Action{/ts}: {if $mode EQ \'Update\'}{ts}Updated personal campaign page{/ts}{else}{ts}New personal campaign page{/ts}{/if}\n{ts}Personal Campaign Page Title{/ts}: {$pcpTitle}\n{ts}Current Status{/ts}: {$pcpStatus}\n{capture assign=pcpURL}{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n{ts}View Page{/ts}:\n>> {$pcpURL}\n\n{ts}Supporter{/ts}: {$supporterName}\n>> {$supporterUrl}\n\n{ts}Linked to Contribution Page{/ts}: {$contribPageTitle}\n>> {$contribPageUrl}\n\n{ts}Manage Personal Campaign Pages{/ts}:\n>> {$managePCPUrl}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Personal Campaign Page Notification{/ts}\n
\n {ts}Action{/ts}:\n \n {if $mode EQ \'Update\'}\n {ts}Updated personal campaign page{/ts}\n {else}\n {ts}New personal campaign page{/ts}\n {/if}\n
\n {ts}Personal Campaign Page Title{/ts}\n \n {$pcpTitle}\n
\n {ts}Current Status{/ts}\n \n {$pcpStatus}\n
\n {ts}View Page{/ts}\n
\n {ts}Supporter{/ts}\n \n {$supporterName}\n
\n {ts}Linked to Contribution Page{/ts}\n \n {$contribPageTitle}\n
\n {ts}Manage Personal Campaign Pages{/ts}\n
\n
\n
\n\n\n\n',1,743,0,1,0,NULL),(21,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{if $pcpStatus eq \'Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been approved and is now live.{/ts}\n\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}\n\n{if $isTellFriendEnabled}\n\n{ts}After logging in, you can use this form to promote your fundraising page{/ts}:\n{$pcpTellFriendURL}\n\n{/if}\n\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{* Rejected message *}\n{elseif $pcpStatus eq \'Not Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been reviewed. There were some issues with the content\nwhich prevented us from approving the page. We are sorry for any inconvenience.{/ts}\n\n{if $pcpNotifyEmailAddress}\n\n{ts}Please contact our site administrator for more information{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{/if}\n','\n\n\n \n \n\n\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content\nwhich prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n
\n\n\n\n',1,744,1,0,0,NULL),(22,'Personal Campaign Pages - Supporter Status Change Notification','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{if $pcpStatus eq \'Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been approved and is now live.{/ts}\n\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}\n\n{if $isTellFriendEnabled}\n\n{ts}After logging in, you can use this form to promote your fundraising page{/ts}:\n{$pcpTellFriendURL}\n\n{/if}\n\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{* Rejected message *}\n{elseif $pcpStatus eq \'Not Approved\'}\n============================\n{ts}Your Personal Campaign Page{/ts}\n\n============================\n\n{ts}Your personal campaign page has been reviewed. There were some issues with the content\nwhich prevented us from approving the page. We are sorry for any inconvenience.{/ts}\n\n{if $pcpNotifyEmailAddress}\n\n{ts}Please contact our site administrator for more information{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n\n{/if}\n','\n\n\n \n \n\n\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n\n

{ts}Your Personal Campaign Page{/ts}

\n\n {if $pcpStatus eq \'Approved\'}\n\n

{ts}Your personal campaign page has been approved and is now live.{/ts}

\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}

\n\n {if $isTellFriendEnabled}\n

{ts}After logging in, you can use this form to promote your fundraising page{/ts}

\n {/if}\n\n {if $pcpNotifyEmailAddress}\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {elseif $pcpStatus eq \'Not Approved\'}\n\n

{ts}Your personal campaign page has been reviewed. There were some issues with the content\nwhich prevented us from approving the page. We are sorry for any inconvenience.{/ts}

\n {if $pcpNotifyEmailAddress}\n

{ts}Please contact our site administrator for more information{/ts}: {$pcpNotifyEmailAddress}

\n {/if}\n\n {/if}\n\n
\n
\n\n\n\n',1,744,0,1,0,NULL),(23,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{ts}Dear supporter{/ts},\n{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}\n\n{if $pcpStatus eq \'Approved\'}\n====================\n{ts}Promoting Your Page{/ts}\n\n====================\n{if $isTellFriendEnabled}\n\n{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:\n\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser and follow the prompts{/ts}:\n{$pcpTellFriendURL}\n{else}\n\n{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts}\n{ts}Include this link to your fundraising page in your emails{/ts}:\n{$pcpInfoURL}\n{/if}\n\n===================\n{ts}Managing Your Page{/ts}\n\n===================\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}\n\n\n{elseif $pcpStatus EQ \'Waiting Review\'}\n{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}\n\n\n{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}\n\n\n{ts}You can still preview your page prior to approval{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser{/ts}:\n{$pcpInfoURL}\n\n{/if}\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n

{ts}Dear supporter{/ts},

\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n
\n\n\n\n',1,745,1,0,0,NULL),(24,'Personal Campaign Pages - Supporter Welcome','{ts 1=$contribPageTitle}Your Personal Campaign Page for %1{/ts}\n','{ts}Dear supporter{/ts},\n{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}\n\n{if $pcpStatus eq \'Approved\'}\n====================\n{ts}Promoting Your Page{/ts}\n\n====================\n{if $isTellFriendEnabled}\n\n{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:\n\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser and follow the prompts{/ts}:\n{$pcpTellFriendURL}\n{else}\n\n{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts}\n{ts}Include this link to your fundraising page in your emails{/ts}:\n{$pcpInfoURL}\n{/if}\n\n===================\n{ts}Managing Your Page{/ts}\n\n===================\n{ts}Whenever you want to preview, update or promote your page{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser to go to your page{/ts}:\n{$pcpInfoURL}\n\n{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}\n\n\n{elseif $pcpStatus EQ \'Waiting Review\'}\n{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}\n\n\n{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}\n\n\n{ts}You can still preview your page prior to approval{/ts}:\n1. {ts}Login to your account at{/ts}:\n{$loginUrl}\n\n2. {ts}Click or paste this link into your browser{/ts}:\n{$pcpInfoURL}\n\n{/if}\n{if $pcpNotifyEmailAddress}\n{ts}Questions? Send email to{/ts}:\n{$pcpNotifyEmailAddress}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n {if $pcpStatus eq \'Approved\'}\n\n \n \n \n\n {elseif $pcpStatus EQ \'Waiting Review\'}\n\n \n \n \n\n {/if}\n\n {if $pcpNotifyEmailAddress}\n \n \n \n {/if}\n\n
\n

{ts}Dear supporter{/ts},

\n

{ts 1=\"$contribPageTitle\"}Thanks for creating a personal campaign page in support of %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Promoting Your Page{/ts}\n
\n {if $isTellFriendEnabled}\n

{ts}You can begin your fundraising efforts using our \"Tell a Friend\" form{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link and follow the prompts{/ts}
  4. \n
\n {else}\n

{ts}Send email to family, friends and colleagues with a personal message about this campaign.{/ts} {ts}Include this link to your fundraising page in your emails{/ts}: {$pcpInfoURL}

\n {/if}\n
\n {ts}Managing Your Page{/ts}\n
\n

{ts}Whenever you want to preview, update or promote your page{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Go to your page{/ts}
  4. \n
\n

{ts}When you view your campaign page WHILE LOGGED IN, the page includes links to edit\nyour page, tell friends, and update your contact info.{/ts}

\n
\n
\n

{ts}Your page requires administrator review before you can begin your fundraising efforts.{/ts}

\n

{ts}A notification email has been sent to the site administrator, and you will receive another notification from them as soon as the review process is complete.{/ts}

\n

{ts}You can still preview your page prior to approval{/ts}:

\n
    \n
  1. {ts}Login to your account{/ts}
  2. \n
  3. {ts}Click this link{/ts}
  4. \n
\n
\n

{ts}Questions? Send email to{/ts}: {$pcpNotifyEmailAddress}

\n
\n
\n\n\n\n',1,745,0,1,0,NULL),(25,'Personal Campaign Pages - Owner Notification','{ts}Someone has just donated to your personal campaign page{/ts}\n','===========================================================\n{ts}Personal Campaign Page Owner Notification{/ts}\n\n===========================================================\n{ts}You have received a donation at your personal page{/ts}: {$page_title}\n\n{ts}Your fundraising total has been updated.{/ts}\n{ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}\n{if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}\n{/if}\n\n{ts}Receive Date{/ts}: {$receive_date|crmDate}\n\n{ts}Amount{/ts}: {$total_amount|crmMoney}\n\n{ts}Name{/ts}: {$donors_display_name}\n\n{ts}Email{/ts}: {$donors_email}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n

{ts}You have received a donation at your personal page{/ts}: {$page_title}

\n

{ts}Your fundraising total has been updated.{/ts}
\n {ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}
\n {if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}
\n {/if}\n

\n \n \n \n \n \n
{ts}Receive Date{/ts}: {$receive_date|crmDate}
{ts}Amount{/ts}: {$total_amount|crmMoney}
{ts}Name{/ts}: {$donors_display_name}
{ts}Email{/ts}: {$donors_email}
\n\n\n',1,746,1,0,0,NULL),(26,'Personal Campaign Pages - Owner Notification','{ts}Someone has just donated to your personal campaign page{/ts}\n','===========================================================\n{ts}Personal Campaign Page Owner Notification{/ts}\n\n===========================================================\n{ts}You have received a donation at your personal page{/ts}: {$page_title}\n\n{ts}Your fundraising total has been updated.{/ts}\n{ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}\n{if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}\n{/if}\n\n{ts}Receive Date{/ts}: {$receive_date|crmDate}\n\n{ts}Amount{/ts}: {$total_amount|crmMoney}\n\n{ts}Name{/ts}: {$donors_display_name}\n\n{ts}Email{/ts}: {$donors_email}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=pcpURL }{crmURL p=\"civicrm/pcp/info\" q=\"reset=1&id=`$pcpId`\" h=0 a=1}{/capture}\n\n

{ts}You have received a donation at your personal page{/ts}: {$page_title}

\n

{ts}Your fundraising total has been updated.{/ts}
\n {ts}The donor\'s information is listed below. You can choose to contact them and convey your thanks if you wish.{/ts}
\n {if $is_honor_roll_enabled}\n {ts}The donor\'s name has been added to your honor roll unless they asked not to be included.{/ts}
\n {/if}\n

\n \n \n \n \n \n
{ts}Receive Date{/ts}: {$receive_date|crmDate}
{ts}Amount{/ts}: {$total_amount|crmMoney}
{ts}Name{/ts}: {$donors_display_name}
{ts}Email{/ts}: {$donors_email}
\n\n\n',1,746,0,1,0,NULL),(27,'Additional Payment Receipt or Refund Notification','{if $isRefund}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if} - {if $component eq \'event\'}{$event.title}{/if}','Dear {$contactDisplayName}\n{if $paymentConfig.confirm_email_text}\n{$paymentConfig.confirm_email_text}\n{elseif $isRefund}\n{ts}A refund has been issued based on changes in your registration selections.{/ts}\n{else}\n{ts}A payment has been received.{/ts}\n{/if}\n\n{ts}Please print this confirmation for your records.{/ts}\n\n{if $isRefund}\n===============================================================================\n\n{ts}Refund Details{/ts}\n\n===============================================================================\n{ts}Total Fees{/ts}: {$totalAmount|crmMoney}\n{ts}You Paid{/ts}: {$totalPaid|crmMoney}\n------------------------------------------------------------------------------------\n{ts}Refund Amount{/ts}: {$refundAmount|crmMoney}\n\n{else}\n===============================================================================\n\n{ts}Payment Details{/ts}\n\n===============================================================================\n{ts}Total Fees{/ts}: {$totalAmount|crmMoney}\n{ts}This Payment Amount{/ts}: {$paymentAmount|crmMoney}\n------------------------------------------------------------------------------------\n{ts}Balance Owed{/ts}: {$amountOwed|crmMoney} {* This will be zero after final payment. *}\n\n{if $paymentsComplete}\n\n{ts}Thank-you. This completes your payment for {/ts}{if $component eq \'event\'}{$event.event_title}{/if}.\n{/if}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode eq \'direct\' and !$isAmountzero}\n\n===============================================================================\n\n{ts}Billing Name and Address{/ts}\n\n===============================================================================\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===============================================================================\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $component eq \'event\'}\n===============================================================================\n\n{ts}Event Information and Location{/ts}\n\n===============================================================================\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle }style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle }style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n

Dear {$contactDisplayName}

\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n\n
\n {if $paymentConfig.confirm_email_text}\n

{$paymentConfig.confirm_email_text|htmlize}

\n {elseif $isRefund}\n

{ts}A refund has been issued based on changes in your registration selections.{/ts}

\n {else}\n

{ts}A payment has been received.{/ts}

\n {/if}\n

{ts}Please print this confirmation for your records.{/ts}

\n
\n \n {if $isRefund}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n \n \n \n \n \n \n {* This will be zero after final payment. *}\n \n \n \n {if $paymentsComplete}\n \n \n \n {/if}\n {/if}\n {if $receive_date}\n \n \n \n \n {/if}\n {if $trxn_id}\n \n \n \n \n {/if}\n {if $paidBy}\n \n \n \n \n {/if}\n {if $checkNumber}\n \n \n \n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}Total Fees{/ts}\n \n {$totalAmount|crmMoney}\n
\n {ts}You Paid{/ts}\n \n {$totalPaid|crmMoney}\n
\n {ts}Refund Amount{/ts}\n \n {$refundAmount|crmMoney}\n \n
{ts}Payment Details{/ts}
\n {ts}{if $component eq \'event\'}Total Fees{/if}{/ts}\n \n {$totalAmount|crmMoney}\n
\n {ts}This Payment Amount{/ts}\n \n {$paymentAmount|crmMoney}\n
\n {ts}Balance Owed{/ts}\n \n {$amountOwed|crmMoney}\n
\n {ts}Thank-you. This completes your payment for {if $component eq \'event\'}{$event.event_title}{/if}.{/ts}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n
\n \n {if $contributeMode eq \'direct\' and !$isAmountzero}\n \n \n \n \n \n \n {/if}\n {if $contributeMode eq\'direct\' and !$isAmountzero}\n \n \n \n \n \n \n {/if}\n {if $component eq \'event\'}\n \n \n \n \n \n \n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if} {*phone block close*}\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires:{/ts} {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n
\n
\n\n \n\n',1,747,1,0,0,NULL),(28,'Additional Payment Receipt or Refund Notification','{if $isRefund}{ts}Refund Notification{/ts}{else}{ts}Payment Receipt{/ts}{/if} - {if $component eq \'event\'}{$event.title}{/if}','Dear {$contactDisplayName}\n{if $paymentConfig.confirm_email_text}\n{$paymentConfig.confirm_email_text}\n{elseif $isRefund}\n{ts}A refund has been issued based on changes in your registration selections.{/ts}\n{else}\n{ts}A payment has been received.{/ts}\n{/if}\n\n{ts}Please print this confirmation for your records.{/ts}\n\n{if $isRefund}\n===============================================================================\n\n{ts}Refund Details{/ts}\n\n===============================================================================\n{ts}Total Fees{/ts}: {$totalAmount|crmMoney}\n{ts}You Paid{/ts}: {$totalPaid|crmMoney}\n------------------------------------------------------------------------------------\n{ts}Refund Amount{/ts}: {$refundAmount|crmMoney}\n\n{else}\n===============================================================================\n\n{ts}Payment Details{/ts}\n\n===============================================================================\n{ts}Total Fees{/ts}: {$totalAmount|crmMoney}\n{ts}This Payment Amount{/ts}: {$paymentAmount|crmMoney}\n------------------------------------------------------------------------------------\n{ts}Balance Owed{/ts}: {$amountOwed|crmMoney} {* This will be zero after final payment. *}\n\n{if $paymentsComplete}\n\n{ts}Thank-you. This completes your payment for {/ts}{if $component eq \'event\'}{$event.event_title}{/if}.\n{/if}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode eq \'direct\' and !$isAmountzero}\n\n===============================================================================\n\n{ts}Billing Name and Address{/ts}\n\n===============================================================================\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===============================================================================\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{if $component eq \'event\'}\n===============================================================================\n\n{ts}Event Information and Location{/ts}\n\n===============================================================================\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n{capture assign=emptyBlockStyle }style=\"padding: 10px; border-bottom: 1px solid #999;background-color: #f7f7f7;\"{/capture}\n{capture assign=emptyBlockValueStyle }style=\"padding: 10px; border-bottom: 1px solid #999;\"{/capture}\n\n

Dear {$contactDisplayName}

\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n \n \n \n\n
\n {if $paymentConfig.confirm_email_text}\n

{$paymentConfig.confirm_email_text|htmlize}

\n {elseif $isRefund}\n

{ts}A refund has been issued based on changes in your registration selections.{/ts}

\n {else}\n

{ts}A payment has been received.{/ts}

\n {/if}\n

{ts}Please print this confirmation for your records.{/ts}

\n
\n \n {if $isRefund}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n {else}\n \n \n \n \n \n \n \n \n \n \n \n \n \n {* This will be zero after final payment. *}\n \n \n \n {if $paymentsComplete}\n \n \n \n {/if}\n {/if}\n {if $receive_date}\n \n \n \n \n {/if}\n {if $trxn_id}\n \n \n \n \n {/if}\n {if $paidBy}\n \n \n \n \n {/if}\n {if $checkNumber}\n \n \n \n \n {/if}\n
{ts}Refund Details{/ts}
\n {ts}Total Fees{/ts}\n \n {$totalAmount|crmMoney}\n
\n {ts}You Paid{/ts}\n \n {$totalPaid|crmMoney}\n
\n {ts}Refund Amount{/ts}\n \n {$refundAmount|crmMoney}\n \n
{ts}Payment Details{/ts}
\n {ts}{if $component eq \'event\'}Total Fees{/if}{/ts}\n \n {$totalAmount|crmMoney}\n
\n {ts}This Payment Amount{/ts}\n \n {$paymentAmount|crmMoney}\n
\n {ts}Balance Owed{/ts}\n \n {$amountOwed|crmMoney}\n
\n {ts}Thank-you. This completes your payment for {if $component eq \'event\'}{$event.event_title}{/if}.{/ts}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n
\n \n {if $contributeMode eq \'direct\' and !$isAmountzero}\n \n \n \n \n \n \n {/if}\n {if $contributeMode eq\'direct\' and !$isAmountzero}\n \n \n \n \n \n \n {/if}\n {if $component eq \'event\'}\n \n \n \n \n \n \n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if} {*phone block close*}\n {/if}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires:{/ts} {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n
\n
\n\n \n\n',1,747,0,1,0,NULL),(29,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {$event.title}\n','{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{/if}\n\n{if $email}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$email}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts}\n{/if}\n{/if}\n---------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if $pricesetFieldsCount }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if $amount && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if $isPrimary}\n\n{if $balanceAmount}{ts}Total Paid{/ts}{else}{ts}Total Amount{/ts}{/if}: {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $balanceAmount}\n{ts}Balance{/ts}: {$balanceAmount|crmMoney}\n{/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $is_pay_later }\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if $customPost}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=val key=field}\n{if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\' }\n{if $field eq \'additionalCustomPre\' }\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{/if}\n{foreach from=$val item=v key=f}\n{$f}: {$v}\n{/foreach}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n {/if}\n\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}

\n {/if}\n {elseif $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n {/if}\n\n {if $email}\n \n \n \n \n \n \n {/if}\n\n\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if $amount && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $balanceAmount}\n \n \n \n \n {/if}\n {if $pricesetFieldsCount }\n \n \n \n \n {/if}\n {if $is_pay_later}\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customProfile}\n {foreach from=$customProfile item=value key=customName}\n \n \n \n {foreach from=$value item=val key=field}\n {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n \n \n \n {foreach from=$val item=v key=f}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $dataArray}\n \n \n \n {/if}\n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $pricesetFieldsCount }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.participant_count}\n
\n
\n {ts} Amount Before Tax : {/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {if $balanceAmount}\n {ts}Total Paid{/ts}\n {else}\n {ts}Total Amount{/ts}\n {/if}\n \n {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Balance{/ts}\n \n {$balanceAmount|crmMoney}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {$pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n
\n {if $field eq \'additionalCustomPre\'}\n {$additionalCustomPre_grouptitle}\n {else}\n {$additionalCustomPost_grouptitle}\n {/if}\n
\n {$f}\n \n {$v}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,748,1,0,0,NULL),(30,'Events - Registration Confirmation and Receipt (off-line)','{ts}Event Confirmation{/ts} - {$event.title}\n','{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{/if}\n\n{if $email}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Registered Email{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$email}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts}\n{/if}\n{/if}\n---------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{capture assign=ts_participant_total}{if $pricesetFieldsCount }{ts}Total Participants{/ts}{/if}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if $amount && !$lineItem}\n{foreach from=$amount item=amnt key=level}{$amnt.amount|crmMoney} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if $isPrimary}\n\n{if $balanceAmount}{ts}Total Paid{/ts}{else}{ts}Total Amount{/ts}{/if}: {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $balanceAmount}\n{ts}Balance{/ts}: {$balanceAmount|crmMoney}\n{/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $is_pay_later }\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPre item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n\n{if $customPost}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPost item=value key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n{$customName}: {$value}\n{/if}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile item=value key=customName}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$customName+1}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=val key=field}\n{if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\' }\n{if $field eq \'additionalCustomPre\' }\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPre_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{else}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$additionalCustomPost_grouptitle}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{/if}\n{foreach from=$val item=v key=f}\n{$f}: {$v}\n{/foreach}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n {/if}\n\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}

\n {/if}\n {elseif $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n {/if}\n\n {if $email}\n \n \n \n \n \n \n {/if}\n\n\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if $amount && !$lineItem}\n {foreach from=$amount item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $balanceAmount}\n \n \n \n \n {/if}\n {if $pricesetFieldsCount }\n \n \n \n \n {/if}\n {if $is_pay_later}\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=value key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customProfile}\n {foreach from=$customProfile item=value key=customName}\n \n \n \n {foreach from=$value item=val key=field}\n {if $field eq \'additionalCustomPre\' or $field eq \'additionalCustomPost\'}\n \n \n \n {foreach from=$val item=v key=f}\n \n \n \n \n {/foreach}\n {/if}\n {/foreach}\n {/foreach}\n {/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $dataArray}\n \n \n \n {/if}\n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $pricesetFieldsCount }\n \n {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.participant_count}\n
\n
\n {ts} Amount Before Tax : {/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {if $balanceAmount}\n {ts}Total Paid{/ts}\n {else}\n {ts}Total Amount{/ts}\n {/if}\n \n {$totalAmount|crmMoney} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Balance{/ts}\n \n {$balanceAmount|crmMoney}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {$pay_later_receipt}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$value}\n
\n {ts 1=$customName+1}Participant Information - Participant %1{/ts}\n
\n {if $field eq \'additionalCustomPre\'}\n {$additionalCustomPre_grouptitle}\n {else}\n {$additionalCustomPost_grouptitle}\n {/if}\n
\n {$f}\n \n {$v}\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,748,0,1,0,NULL),(31,'Events - Registration Confirmation and Receipt (on-line)','{if $isOnWaitlist}{ts}Wait List Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {$event.event_title}','Dear {contact.display_name},\n\n{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n\n{else}\nThank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.\n\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{/if}\n\n{if $payer.name}\nYou were registered by: {$payer.name}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if $pricesetFieldsCount }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}{$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if $amounts && !$lineItem}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and (!$is_pay_later or $isBillingAddressRequiredForPayLater) and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$eachProfile item=val key=field}\n{foreach from=$val item=v key=f}\n{$field}: {$v}\n{/foreach}\n{/foreach}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n
\n

Dear {contact.display_name},

\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n\n {else}\n

Thank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.

\n\n {/if}\n\n

\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}

\n {/if}\n {elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n\n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n {/if}\n\n {if $event.is_share}\n \n \n \n {/if}\n {if $payer.name}\n \n \n \n \n \n \n {/if}\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if $amounts && !$lineItem}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $pricesetFieldsCount }\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and (!$is_pay_later or $isBillingAddressRequiredForPayLater) and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n \n {foreach from=$customPr item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n \n {foreach from=$customPos item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customProfile}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n {foreach from=$eachProfile item=val key=field}\n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id=`$event.id`&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl title=$event.title pageURL=$eventUrl}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $dataArray}\n \n \n \n {/if}\n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $pricesetFieldsCount } {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n {$line.participant_count}
\n
\n {ts} Amount Before Tax: {/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,749,1,0,0,NULL),(32,'Events - Registration Confirmation and Receipt (on-line)','{if $isOnWaitlist}{ts}Wait List Confirmation{/ts}{else}{ts}Registration Confirmation{/ts}{/if} - {$event.event_title}','Dear {contact.display_name},\n\n{if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n{$event.confirm_email_text}\n\n{else}\nThank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.\n\n{/if}\n\n{if $isOnWaitlist}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}You have been added to the WAIT LIST for this event.{/ts}\n\n{if $isPrimary}\n{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Your registration has been submitted.{/ts}\n\n{if $isPrimary}\n{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}\n\n{/if}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$pay_later_receipt}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{else}\n\n{ts}Please print this confirmation for your records.{/ts}\n{/if}\n\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Event Information and Location{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.event_title}\n{$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n{if $event.participant_role neq \'Attendee\' and $defaultRole}\n{ts}Participant Role{/ts}: {$event.participant_role}\n{/if}\n\n{if $isShowLocation}\n{if $location.address.1.name}\n\n{$location.address.1.name}\n{/if}\n{if $location.address.1.street_address}{$location.address.1.street_address}\n{/if}\n{if $location.address.1.supplemental_address_1}{$location.address.1.supplemental_address_1}\n{/if}\n{if $location.address.1.supplemental_address_2}{$location.address.1.supplemental_address_2}\n{/if}\n{if $location.address.1.city}{$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $location.phone.1.phone || $location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n{/foreach}\n{foreach from=$location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{/if}\n\n{if $payer.name}\nYou were registered by: {$payer.name}\n{/if}\n{if $event.is_monetary} {* This section for Paid events only.*}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$event.fee_label}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{if $lineItem}{foreach from=$lineItem item=value key=priceset}\n\n{if $value neq \'skip\'}\n{if $isPrimary}\n{if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n{ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n\n{/if}\n{/if}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{/if}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{if $pricesetFieldsCount }{capture assign=ts_participant_total}{ts}Total Participants{/ts}{/capture}{/if}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {/if} {$ts_total|string_format:\"%10s\"} {$ts_participant_total|string_format:\"%10s\"}\n-----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$value item=line}\n{if $pricesetFieldsCount }{capture assign=ts_participant_count}{$line.participant_count}{/capture}{/if}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney:$currency|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {/if} {$line.line_total+$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"}{$ts_participant_count|string_format:\"%10s\"}\n{/foreach}\n{/if}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$totalAmount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n{/if}\n\n{if $amounts && !$lineItem}\n{foreach from=$amounts item=amnt key=level}{$amnt.amount|crmMoney:$currency} {$amnt.label}\n{/foreach}\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n{if $isPrimary }\n\n{ts}Total Amount{/ts}: {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n\n{if $pricesetFieldsCount }\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n\n{ts}Total Participants{/ts}: {$count}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$register_date|crmDate}\n{/if}\n{if $receive_date}\n{ts}Transaction Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $contributionTypeName}\n{ts}Financial Type{/ts}: {$contributionTypeName}\n{/if}\n{if $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n{/if}\n{if $paidBy}\n{ts}Paid By{/ts}: {$paidBy}\n{/if}\n{if $checkNumber}\n{ts}Check Number{/ts}: {$checkNumber}\n{/if}\n{if $contributeMode ne \'notify\' and !$isAmountzero and (!$is_pay_later or $isBillingAddressRequiredForPayLater) and !$isOnWaitlist and !$isRequireApproval}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Billing Name and Address{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts}Credit Card Information{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n{/if} {* End of conditional section for Paid events *}\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPre_grouptitle.$i}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPr item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customPost_grouptitle.$j}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$customPos item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/foreach}\n{/if}\n{if $customProfile}\n\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{ts 1=$participantID+2}Participant Information - Participant %1{/ts}\n\n==========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$eachParticipant item=eachProfile key=pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{$customProfile.title.$pid}\n----------------------------------------------------------{if $pricesetFieldsCount }--------------------{/if}\n\n{foreach from=$eachProfile item=val key=field}\n{foreach from=$val item=v key=f}\n{$field}: {$v}\n{/foreach}\n{/foreach}\n{/foreach}\n{/foreach}\n{/if}\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{$customName}\n=========================================================={if $pricesetFieldsCount }===================={/if}\n\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n
\n

Dear {contact.display_name},

\n\n {if $event.confirm_email_text AND (not $isOnWaitlist AND not $isRequireApproval)}\n

{$event.confirm_email_text|htmlize}

\n\n {else}\n

Thank you for your participation. This letter is a confirmation that your registration has been received and your status has been updated to {if $participant_status}{$participant_status}{else}{if $isOnWaitlist}waitlisted{else}registered{/if}{/if}.

\n\n {/if}\n\n

\n {if $isOnWaitlist}\n

{ts}You have been added to the WAIT LIST for this event.{/ts}

\n {if $isPrimary}\n

{ts}If space becomes available you will receive an email with\na link to a web page where you can complete your registration.{/ts}

\n {/if}\n {elseif $isRequireApproval}\n

{ts}Your registration has been submitted.{/ts}

\n {if $isPrimary}\n

{ts}Once your registration has been reviewed, you will receive\nan email with a link to a web page where you can complete the\nregistration process.{/ts}

\n {/if}\n {elseif $is_pay_later && !$isAmountzero && !$isAdditionalParticipant}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n \n \n \n \n \n \n\n\n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n\n {if $event.participant_role neq \'Attendee\' and $defaultRole}\n \n \n \n \n {/if}\n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $location.phone.1.phone || $location.email.1.email}\n \n \n \n {foreach from=$location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n {/if}\n\n {if $event.is_share}\n \n \n \n {/if}\n {if $payer.name}\n \n \n \n \n \n \n {/if}\n {if $event.is_monetary}\n\n \n \n \n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n {if $value neq \'skip\'}\n {if $isPrimary}\n {if $lineItem|@count GT 1} {* Header for multi participant registration cases. *}\n \n \n \n {/if}\n {/if}\n \n \n \n {/if}\n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n\n {if $amounts && !$lineItem}\n {foreach from=$amounts item=amnt key=level}\n \n \n \n {/foreach}\n {/if}\n\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n {if $isPrimary}\n \n \n \n \n {if $pricesetFieldsCount }\n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $contributionTypeName}\n \n \n \n \n {/if}\n\n {if $trxn_id}\n \n \n \n \n {/if}\n\n {if $paidBy}\n \n \n \n \n {/if}\n\n {if $checkNumber}\n \n \n \n \n {/if}\n\n {if $contributeMode ne \'notify\' and !$isAmountzero and (!$is_pay_later or $isBillingAddressRequiredForPayLater) and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later and !$isOnWaitlist and !$isRequireApproval}\n \n \n \n \n \n \n {/if}\n\n {/if}\n\n {/if} {* End of conditional section for Paid events *}\n\n\n{if $customPre}\n{foreach from=$customPre item=customPr key=i}\n \n {foreach from=$customPr item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n{/foreach}\n{/if}\n\n{if $customPost}\n{foreach from=$customPost item=customPos key=j}\n \n {foreach from=$customPos item=customValue key=customName}\n {if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n \n \n \n \n{/if}\n{/foreach}\n{/foreach}\n{/if}\n\n{if $customProfile}\n{foreach from=$customProfile.profile item=eachParticipant key=participantID}\n \n {foreach from=$eachParticipant item=eachProfile key=pid}\n \n {foreach from=$eachProfile item=val key=field}\n {foreach from=$val item=v key=f}\n \n \n {/foreach}\n \n {/foreach}\n{/foreach}\n{/foreach}\n{/if}\n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|date_format:\"%A\"} {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|date_format:\"%A\"} {$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}\n \n {$event.participant_role}\n
\n {if $location.address.1.name}\n {$location.address.1.name}
\n {/if}\n {if $location.address.1.street_address}\n {$location.address.1.street_address}
\n {/if}\n {if $location.address.1.supplemental_address_1}\n {$location.address.1.supplemental_address_1}
\n {/if}\n {if $location.address.1.supplemental_address_2}\n {$location.address.1.supplemental_address_2}
\n {/if}\n {if $location.address.1.city}\n {$location.address.1.city}, {$location.address.1.state_province} {$location.address.1.postal_code}{if $location.address.1.postal_code_suffix} - {$location.address.1.postal_code_suffix}{/if}
\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}\n {$phone.phone_type_display}\n {else}\n {ts}Phone{/ts}\n {/if}\n \n {$phone.phone} {if $phone.phone_ext} {ts}ext.{/ts} {$phone.phone_ext}{/if}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {capture assign=eventUrl}{crmURL p=\'civicrm/event/info\' q=\"id=`$event.id`&reset=1\" a=true fe=1 h=1}{/capture}\n {include file=\"CRM/common/SocialNetwork.tpl\" emailMode=true url=$eventUrl title=$event.title pageURL=$eventUrl}\n
\n {ts}You were registered by:{/ts}\n
\n {$payer.name}\n
\n {$event.fee_label}\n
\n {ts 1=$priceset+1}Participant %1{/ts} {$part.$priceset.info}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n {if $dataArray}\n \n \n \n {/if}\n \n {if $pricesetFieldsCount }{/if}\n \n {foreach from=$value item=line}\n \n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n {/if}\n \n {if $pricesetFieldsCount } {/if}\n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Total Participants{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.qty}\n \n {$line.unit_price|crmMoney:$currency}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney:$currency}\n {$line.participant_count}
\n
\n {ts} Amount Before Tax: {/ts}\n \n {$totalAmount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {$amnt.amount|crmMoney:$currency} {$amnt.label}\n
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Total Amount{/ts}\n \n {$totalAmount|crmMoney:$currency} {if $hookDiscount.message}({$hookDiscount.message}){/if}\n
\n {ts}Total Participants{/ts}\n {assign var=\"count\" value= 0}\n {foreach from=$lineItem item=pcount}\n {assign var=\"lineItemCount\" value=0}\n {if $pcount neq \'skip\'}\n {foreach from=$pcount item=p_count}\n {assign var=\"lineItemCount\" value=$lineItemCount+$p_count.participant_count}\n {/foreach}\n {if $lineItemCount < 1 }\n {assign var=\"lineItemCount\" value=1}\n {/if}\n {assign var=\"count\" value=$count+$lineItemCount}\n {/if}\n {/foreach}\n {$count}\n
\n {ts}Registration Date{/ts}\n \n {$register_date|crmDate}\n
\n {ts}Transaction Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Financial Type{/ts}\n \n {$contributionTypeName}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Paid By{/ts}\n \n {$paidBy}\n
\n {ts}Check Number{/ts}\n \n {$checkNumber}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
{$customPre_grouptitle.$i}
{$customName}{$customValue}
{$customPost_grouptitle.$j}
{$customName}{$customValue}
{ts 1=$participantID+2}Participant %1{/ts}
{$customProfile.title.$pid}
{$field}{$v}
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,749,0,1,0,NULL),(33,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if}\n','Dear {contact.display_name},\n{if $is_pay_later}\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n{else}\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n{/if}\n\n{if $is_pay_later}\n {$pay_later_receipt}\n{/if}\n\n Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:\n\n{if $billing_name}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billing_name}\n\n{$billing_street_address}\n\n{$billing_city}, {$billing_state} {$billing_postal_code}\n\n{$email}\n{/if}\n\n{if $source}\n{$source}\n{/if}\n\n\n{foreach from=$line_items item=line_item}\n{$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})\n{if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$line_item.location.address.1.postal_code}\n {/if}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n\n Quantity: {$line_item.num_participants}\n\n{if $line_item.num_participants > 0}\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\n{if $line_item.num_waiting_participants > 0}\n Waitlisted:\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\nCost: {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\nTotal For This Event: {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n\n{/foreach}\n\n{if $discounts}\nSubtotal: {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n--------------------------------------\nDiscounts\n{foreach from=$discounts key=myId item=i}\n {$i.title}: -{$i.amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/if}\n======================================\nTotal: {$total|crmMoney:$currency|string_format:\"%10s\"}\n\n{if $credit_card_type}\n===========================================================\n{ts}Payment Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n{/if}\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n','\n\n \n \n \n \n \n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n

Dear {contact.display_name},

\n {if $is_pay_later}\n

\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n

\n {else}\n

\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

\n {/if}\n\n

Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:

\n\n\n{if $billing_name}\n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billing_name}
\n {$billing_street_address}
\n {$billing_city}, {$billing_state} {$billing_postal_code}
\n
\n {$email}\n
\n{/if}\n{if $credit_card_type}\n

 

\n \n \n \n \n \n \n \n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n
\n{/if}\n{if $source}\n

 

\n {$source}\n{/if}\n

 

\n \n \n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n \n {foreach from=$line_items item=line_item}\n \n \n \n \n \n \n {/foreach}\n \n \n {if $discounts}\n \n \n \n \n \n \n {foreach from=$discounts key=myId item=i}\n \n \n \n \n \n \n {/foreach}\n {/if}\n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n
\n Event\n \n Participants\n \n Price\n \n Total\n
\n {$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})
\n {if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}
\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}
\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$location.address.1.postal_code}\n {/if}\n {/if}{*End of isShowLocation condition*}

\n {$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n
\n {$line_item.num_participants}\n {if $line_item.num_participants > 0}\n
\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n {if $line_item.num_waiting_participants > 0}\n Waitlisted:
\n
\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n
\n {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n \n  {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n
\n \n \n Subtotal:\n \n  {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n
\n {$i.title}\n \n \n \n -{$i.amount}\n
\n \n \n Total:\n \n  {$total|crmMoney:$currency|string_format:\"%10s\"}\n
\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n \n\n',1,750,1,0,0,NULL),(34,'Events - Receipt only','Receipt for {if $events_in_cart} Event Registration{/if}\n','Dear {contact.display_name},\n{if $is_pay_later}\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n{else}\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n{/if}\n\n{if $is_pay_later}\n {$pay_later_receipt}\n{/if}\n\n Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:\n\n{if $billing_name}\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billing_name}\n\n{$billing_street_address}\n\n{$billing_city}, {$billing_state} {$billing_postal_code}\n\n{$email}\n{/if}\n\n{if $source}\n{$source}\n{/if}\n\n\n{foreach from=$line_items item=line_item}\n{$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})\n{if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$line_item.location.address.1.postal_code}\n {/if}\n{/if}{*End of isShowLocation condition*}\n{$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n\n Quantity: {$line_item.num_participants}\n\n{if $line_item.num_participants > 0}\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\n{if $line_item.num_waiting_participants > 0}\n Waitlisted:\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}\n {/foreach}\n{/if}\nCost: {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\nTotal For This Event: {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n\n{/foreach}\n\n{if $discounts}\nSubtotal: {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n--------------------------------------\nDiscounts\n{foreach from=$discounts key=myId item=i}\n {$i.title}: -{$i.amount|crmMoney:$currency|string_format:\"%10s\"}\n{/foreach}\n{/if}\n======================================\nTotal: {$total|crmMoney:$currency|string_format:\"%10s\"}\n\n{if $credit_card_type}\n===========================================================\n{ts}Payment Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n{/if}\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n','\n\n \n \n \n \n \n {capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n {capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n {capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n

Dear {contact.display_name},

\n {if $is_pay_later}\n

\n This is being sent to you as an acknowledgement that you have registered one or more members for the following workshop, event or purchase. Please note, however, that the status of your payment is pending, and the registration for this event will not be completed until your payment is received.\n

\n {else}\n

\n This is being sent to you as a {if $is_refund}confirmation of refund{else}receipt of payment made{/if} for the following workshop, event registration or purchase.\n

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

\n {/if}\n\n

Your order number is #{$transaction_id}. Please print this confirmation for your records.{if $line_items && !$is_refund} Information about the workshops will be sent separately to each participant.{/if}\n Here\'s a summary of your transaction placed on {$transaction_date|date_format:\"%D %I:%M %p %Z\"}:

\n\n\n{if $billing_name}\n \n \n \n \n \n \n \n
\n {ts}Billing Name and Address{/ts}\n
\n {$billing_name}
\n {$billing_street_address}
\n {$billing_city}, {$billing_state} {$billing_postal_code}
\n
\n {$email}\n
\n{/if}\n{if $credit_card_type}\n

 

\n \n \n \n \n \n \n \n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date.M}/{$credit_card_exp_date.Y}\n
\n{/if}\n{if $source}\n

 

\n {$source}\n{/if}\n

 

\n \n \n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n \n {foreach from=$line_items item=line_item}\n \n \n \n \n \n \n {/foreach}\n \n \n {if $discounts}\n \n \n \n \n \n \n {foreach from=$discounts key=myId item=i}\n \n \n \n \n \n \n {/foreach}\n {/if}\n \n{if $line_items}\n \n \n{/if}\n \n \n \n \n
\n Event\n \n Participants\n \n Price\n \n Total\n
\n {$line_item.event->title} ({$line_item.event->start_date|date_format:\"%D\"})
\n {if $line_item.event->is_show_location}\n {if $line_item.location.address.1.name}\n {$line_item.location.address.1.name}
\n {/if}\n {if $line_item.location.address.1.street_address}\n {$line_item.location.address.1.street_address}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_1}\n {$line_item.location.address.1.supplemental_address_1}
\n {/if}\n {if $line_item.location.address.1.supplemental_address_2}\n {$line_item.location.address.1.supplemental_address_2}
\n {/if}\n {if $line_item.location.address.1.city}\n {$line_item.location.address.1.city}, {$line_item.location.address.1.state_province} {$location.address.1.postal_code}\n {/if}\n {/if}{*End of isShowLocation condition*}

\n {$line_item.event->start_date|date_format:\"%D %I:%M %p\"} - {$line_item.event->end_date|date_format:\"%I:%M %p\"}\n
\n {$line_item.num_participants}\n {if $line_item.num_participants > 0}\n
\n {foreach from=$line_item.participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n {if $line_item.num_waiting_participants > 0}\n Waitlisted:
\n
\n {foreach from=$line_item.waiting_participants item=participant}\n {$participant.display_name}
\n {/foreach}\n
\n {/if}\n
\n {$line_item.cost|crmMoney:$currency|string_format:\"%10s\"}\n \n  {$line_item.amount|crmMoney:$currency|string_format:\"%10s\"}\n
\n \n \n Subtotal:\n \n  {$sub_total|crmMoney:$currency|string_format:\"%10s\"}\n
\n {$i.title}\n \n \n \n -{$i.amount}\n
\n \n \n Total:\n \n  {$total|crmMoney:$currency|string_format:\"%10s\"}\n
\n\n If you have questions about the status of your registration or purchase please feel free to contact us.\n \n\n',1,750,0,1,0,NULL),(35,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your Event Registration has been cancelled.{/ts}\n\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,751,1,0,0,NULL),(36,'Events - Registration Cancellation Notice','{ts 1=$event.event_title}Event Registration Cancelled for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Your Event Registration has been cancelled.{/ts}\n\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts}Your Event Registration has been cancelled.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,751,0,1,0,NULL),(37,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n{if !$isAdditional and $participant.id}\n\n===========================================================\n{ts}Confirm Your Registration{/ts}\n\n===========================================================\n{capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\nClick this link to go to a web page where you can confirm your registration online:\n{$confirmUrl}\n{/if}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{/if}\n\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n {if !$isAdditional and $participant.id}\n \n \n \n \n \n \n {/if}\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n Go to a web page where you can confirm your registration online\n
\n \n \n \n \n \n \n \n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n {/if}\n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,752,1,0,0,NULL),(38,'Events - Registration Confirmation Invite','{ts 1=$event.event_title}Confirm your registration for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n{if !$isAdditional and $participant.id}\n\n===========================================================\n{ts}Confirm Your Registration{/ts}\n\n===========================================================\n{capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\nClick this link to go to a web page where you can confirm your registration online:\n{$confirmUrl}\n{/if}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n{if $conference_sessions}\n\n\n{ts}Your schedule:{/ts}\n{assign var=\'group_by_day\' value=\'NA\'}\n{foreach from=$conference_sessions item=session}\n{if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n{assign var=\'group_by_day\' value=$session.start_date}\n\n{$group_by_day|date_format:\"%m/%d/%Y\"}\n\n\n{/if}\n{$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}\n{if $session.location} {$session.location}{/if}\n{/foreach}\n{/if}\n\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $event.is_public}\n{capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n{ts}Download iCalendar File:{/ts} {$icalFeed}\n{/if}\n\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n {if !$isAdditional and $participant.id}\n \n \n \n \n \n \n {/if}\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n
\n {ts}Confirm Your Registration{/ts}\n
\n {capture assign=confirmUrl}{crmURL p=\'civicrm/event/confirm\' q=\"reset=1&participantId=`$participant.id`&cs=`$checksumValue`\" a=true h=0 fe=1}{/capture}\n Go to a web page where you can confirm your registration online\n
\n \n \n \n \n \n \n \n {if $conference_sessions}\n \n \n \n \n \n \n {/if}\n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $event.is_public}\n \n \n \n {/if}\n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Your schedule:{/ts}\n
\n {assign var=\'group_by_day\' value=\'NA\'}\n {foreach from=$conference_sessions item=session}\n {if $session.start_date|date_format:\"%Y/%m/%d\" != $group_by_day|date_format:\"%Y/%m/%d\"}\n {assign var=\'group_by_day\' value=$session.start_date}\n {$group_by_day|date_format:\"%m/%d/%Y\"}
\n {/if}\n {$session.start_date|crmDate:0:1}{if $session.end_date}-{$session.end_date|crmDate:0:1}{/if} {$session.title}
\n {if $session.location}    {$session.location}
{/if}\n {/foreach}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {capture assign=icalFeed}{crmURL p=\'civicrm/event/ical\' q=\"reset=1&id=`$event.id`\" h=0 a=1 fe=1}{/capture}\n {ts}Download iCalendar File{/ts}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,752,0,1,0,NULL),(39,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,753,1,0,0,NULL),(40,'Events - Pending Registration Expiration Notice','{ts 1=$event.event_title}Event registration has expired for %1{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}\n\n===========================================================\n{ts}Event Information and Location{/ts}\n\n===========================================================\n{$event.event_title}\n{$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n\n{ts}Participant Role{/ts}: {$participant.role}\n\n{if $isShowLocation}\n{if $event.location.address.1.name}\n\n{$event.location.address.1.name}\n{/if}\n{if $event.location.address.1.street_address}{$event.location.address.1.street_address}\n{/if}\n{if $event.location.address.1.supplemental_address_1}{$event.location.address.1.supplemental_address_1}\n{/if}\n{if $event.location.address.1.supplemental_address_2}{$event.location.address.1.supplemental_address_2}\n{/if}\n{if $event.location.address.1.city}{$event.location.address.1.city} {$event.location.address.1.postal_code}{if $event.location.address.1.postal_code_suffix} - {$event.location.address.1.postal_code_suffix}{/if}\n{/if}\n\n{/if}{*End of isShowLocation condition*}\n\n{if $event.location.phone.1.phone || $event.location.email.1.email}\n\n{ts}Event Contacts:{/ts}\n{foreach from=$event.location.phone item=phone}\n{if $phone.phone}\n\n{if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}: {$phone.phone}{/if}\n{/foreach}\n{foreach from=$event.location.email item=eventEmail}\n{if $eventEmail.email}\n\n{ts}Email{/ts}: {$eventEmail.email}{/if}{/foreach}\n{/if}\n\n{if $contact.email}\n\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$contact.email}\n{/if}\n\n{if $register_date}\n{ts}Registration Date{/ts}: {$participant.register_date|crmDate}\n{/if}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$event.event_title}Your pending event registration for %1 has expired\nbecause you did not confirm your registration.{/ts}

\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor want to inquire about reinstating your registration for this event.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n\n {if $isShowLocation}\n \n \n \n {/if}\n\n {if $event.location.phone.1.phone || $event.location.email.1.email}\n \n \n \n {foreach from=$event.location.phone item=phone}\n {if $phone.phone}\n \n \n \n \n {/if}\n {/foreach}\n {foreach from=$event.location.email item=eventEmail}\n {if $eventEmail.email}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $contact.email}\n \n \n \n \n \n \n {/if}\n\n {if $register_date}\n \n \n \n \n {/if}\n\n
\n {ts}Event Information and Location{/ts}\n
\n {$event.event_title}
\n {$event.event_start_date|crmDate}{if $event.event_end_date}-{if $event.event_end_date|date_format:\"%Y%m%d\" == $event.event_start_date|date_format:\"%Y%m%d\"}{$event.event_end_date|crmDate:0:1}{else}{$event.event_end_date|crmDate}{/if}{/if}\n
\n {ts}Participant Role{/ts}:\n \n {$participant.role}\n
\n {if $event.location.address.1.name}\n {$event.location.address.1.name}
\n {/if}\n {if $event.location.address.1.street_address}\n {$event.location.address.1.street_address}
\n {/if}\n {if $event.location.address.1.supplemental_address_1}\n {$event.location.address.1.supplemental_address_1}
\n {/if}\n {if $event.location.address.1.supplemental_address_2}\n {$event.location.address.1.supplemental_address_2}
\n {/if}\n {if $event.location.address.1.city}\n {$event.location.address.1.city} {$event.location.address.1.postal_code}\n {if $event.location.address.1.postal_code_suffix}\n - {$event.location.address.1.postal_code_suffix}\n {/if}\n {/if}\n
\n {ts}Event Contacts:{/ts}\n
\n {if $phone.phone_type}{$phone.phone_type_display}{else}{ts}Phone{/ts}{/if}\n \n {$phone.phone}\n
\n {ts}Email{/ts}\n \n {$eventEmail.email}\n
\n {ts}Registered Email{/ts}\n
\n {$contact.email}\n
\n {ts}Registration Date{/ts}\n \n {$participant.register_date|crmDate}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions.{/ts}

\n
\n
\n\n\n\n',1,753,0,1,0,NULL),(41,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','{$senderMessage}\n\n{if $generalLink}{ts}For more information, visit:{/ts}\n>> {$generalLink}\n\n{/if}\n{if $contribute}{ts}To make a contribution, go to:{/ts}\n>> {$pageURL}\n\n{/if}\n{if $event}{ts}To find out more about this event, go to:{/ts}\n>> {$pageURL}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n
\n\n\n\n',1,754,1,0,0,NULL),(42,'Tell-a-Friend Email','{ts 1=$senderContactName 2=$title}%1 wants you to know about %2{/ts}\n','{$senderMessage}\n\n{if $generalLink}{ts}For more information, visit:{/ts}\n>> {$generalLink}\n\n{/if}\n{if $contribute}{ts}To make a contribution, go to:{/ts}\n>> {$pageURL}\n\n{/if}\n{if $event}{ts}To find out more about this event, go to:{/ts}\n>> {$pageURL}\n{/if}\n\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n

{$senderMessage}

\n {if $generalLink}\n

{ts}More information{/ts}

\n {/if}\n {if $contribute}\n

{ts}Make a contribution{/ts}

\n {/if}\n {if $event}\n

{ts}Find out more about this event{/ts}

\n {/if}\n
\n
\n\n\n\n',1,754,0,1,0,NULL),(43,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if}\n','{if $formValues.receipt_text_signup}\n{$formValues.receipt_text_signup}\n{elseif $formValues.receipt_text_renewal}\n{$formValues.receipt_text_renewal}\n{else}{ts}Thank you for your support.{/ts}{/if}\n\n{if ! $cancelled}{ts}Please print this receipt for your records.{/ts}\n\n\n{/if}\n{if !$lineItem}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if ! $cancelled}\n{if !$lineItem}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount OR $formValues.total_amount eq 0 }\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if $formValues.contributionType_name}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset}\n{$taxTerm} {$priceset|string_format:\"%.2f\"} %: {$value|crmMoney:$currency}\n{elseif $priceset == 0}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if isset($totalTaxAmount)}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if $isPrimary }\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if $customValues}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n {if $isPrimary}\n \n \n \n {/if}\n\n {if $customValues}\n \n \n \n {/if}\n\n
\n {if $formValues.receipt_text_signup}\n

{$formValues.receipt_text_signup|htmlize}

\n {elseif $formValues.receipt_text_renewal}\n

{$formValues.receipt_text_renewal|htmlize}

\n {else}\n

{ts}Thank you for your support.{/ts}

\n {/if}\n {if ! $cancelled}\n

{ts}Please print this receipt for your records.{/ts}

\n {/if}\n
\n \n {if !$lineItem}\n \n \n \n \n \n \n \n {/if}\n {if ! $cancelled}\n {if !$lineItem}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount OR $formValues.total_amount eq 0 }\n \n \n \n {if $formValues.contributionType_name}\n \n \n \n \n {/if}\n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if isset($totalTaxAmount)}\n \n \n \n \n {/if}\n \n \n \n \n {if $receive_date}\n \n \n \n \n {/if}\n {if $formValues.paidBy}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n {if $dataArray}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount Before Tax : {/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n
\n \n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,755,1,0,0,NULL),(44,'Memberships - Signup and Renewal Receipts (off-line)','{if $receiptType EQ \'membership signup\'}\n{ts}Membership Confirmation and Receipt{/ts}\n{elseif $receiptType EQ \'membership renewal\'}\n{ts}Membership Renewal Confirmation and Receipt{/ts}\n{/if}\n','{if $formValues.receipt_text_signup}\n{$formValues.receipt_text_signup}\n{elseif $formValues.receipt_text_renewal}\n{$formValues.receipt_text_renewal}\n{else}{ts}Thank you for your support.{/ts}{/if}\n\n{if ! $cancelled}{ts}Please print this receipt for your records.{/ts}\n\n\n{/if}\n{if !$lineItem}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{/if}\n{if ! $cancelled}\n{if !$lineItem}\n{ts}Membership Start Date{/ts}: {$mem_start_date}\n{ts}Membership End Date{/ts}: {$mem_end_date}\n{/if}\n\n{if $formValues.total_amount OR $formValues.total_amount eq 0 }\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if $formValues.contributionType_name}\n{ts}Financial Type{/ts}: {$formValues.contributionType_name}\n{/if}\n{if $lineItem}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$formValues.total_amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset}\n{$taxTerm} {$priceset|string_format:\"%.2f\"} %: {$value|crmMoney:$currency}\n{elseif $priceset == 0}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if isset($totalTaxAmount)}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$formValues.total_amount|crmMoney}\n{if $receive_date}\n{ts}Received Date{/ts}: {$receive_date|truncate:10:\'\'|crmDate}\n{/if}\n{if $formValues.paidBy}\n{ts}Paid By{/ts}: {$formValues.paidBy}\n{if $formValues.check_number}\n{ts}Check Number{/ts}: {$formValues.check_number}\n{/if}\n{/if}\n{/if}\n{/if}\n\n{if $isPrimary }\n{if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n{/if}\n\n{if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n{/if}\n\n{if $customValues}\n===========================================================\n{ts}Membership Options{/ts}\n\n===========================================================\n{foreach from=$customValues item=value key=customName}\n {$customName} : {$value}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n {if $isPrimary}\n \n \n \n {/if}\n\n {if $customValues}\n \n \n \n {/if}\n\n
\n {if $formValues.receipt_text_signup}\n

{$formValues.receipt_text_signup|htmlize}

\n {elseif $formValues.receipt_text_renewal}\n

{$formValues.receipt_text_renewal|htmlize}

\n {else}\n

{ts}Thank you for your support.{/ts}

\n {/if}\n {if ! $cancelled}\n

{ts}Please print this receipt for your records.{/ts}

\n {/if}\n
\n \n {if !$lineItem}\n \n \n \n \n \n \n \n {/if}\n {if ! $cancelled}\n {if !$lineItem}\n \n \n \n \n \n \n \n \n {/if}\n {if $formValues.total_amount OR $formValues.total_amount eq 0 }\n \n \n \n {if $formValues.contributionType_name}\n \n \n \n \n {/if}\n\n {if $lineItem}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset}\n \n \n {elseif $priceset == 0}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if isset($totalTaxAmount)}\n \n \n \n \n {/if}\n \n \n \n \n {if $receive_date}\n \n \n \n \n {/if}\n {if $formValues.paidBy}\n \n \n \n \n {if $formValues.check_number}\n \n \n \n \n {/if}\n {/if}\n {/if}\n {/if}\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date}\n
\n {ts}Membership Fee{/ts}\n
\n {ts}Financial Type{/ts}\n \n {$formValues.contributionType_name}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n {if $dataArray}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts}Amount Before Tax : {/ts}\n \n {$formValues.total_amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}No{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$formValues.total_amount|crmMoney}\n
\n {ts}Received Date{/ts}\n \n {$receive_date|truncate:10:\'\'|crmDate}\n
\n {ts}Paid By{/ts}\n \n {$formValues.paidBy}\n
\n {ts}Check Number{/ts}\n \n {$formValues.check_number}\n
\n
\n \n\n {if $contributeMode ne \'notify\' and !$isAmountzero and !$is_pay_later }\n \n \n \n \n \n \n {/if}\n\n {if $contributeMode eq \'direct\' and !$isAmountzero and !$is_pay_later}\n \n \n \n \n \n \n \n \n \n \n {/if}\n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}\n
\n {ts}Expires{/ts}\n \n {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n
\n
\n \n \n \n \n {foreach from=$customValues item=value key=customName}\n \n \n \n \n {/foreach}\n
\n {ts}Membership Options{/ts}\n
\n {$customName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,755,0,1,0,NULL),(45,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $membership_assign && !$useForMember}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n{/if}\n{if $amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !$useForMember && $membership_amount && $is_quick_config}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount}\n{if ! $is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n{else}\n{ts}Additional Contribution{/ts}: {$amount|crmMoney}\n{/if}\n{/if}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{elseif !$useForMember && $lineItem and $priceSetID & !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$amount|crmMoney} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{elseif $membership_amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if $membership_trx_id}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if $is_recur}\n{if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0 OR $membership_amount GT 0 }\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND ( $amount GT 0 OR $membership_amount GT 0 ) }\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $membership_assign && !$useForMember}\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n {/if}\n\n\n {if $amount}\n \n \n \n\n {if !$useForMember and $membership_amount and $is_quick_config}\n\n \n \n \n \n {if $amount}\n {if ! $is_separate_payment }\n \n \n \n \n {else}\n \n \n \n \n {/if}\n {/if}\n \n \n \n \n\n {elseif !$useForMember && $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n \n \n \n \n\n {else}\n {if $useForMember && $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n\n {elseif $membership_amount}\n\n\n \n \n \n \n \n \n \n\n\n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $membership_trx_id}\n \n \n \n \n {/if}\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later}\n \n \n \n \n \n \n {elseif $amount GT 0 OR $membership_amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND ($amount GT 0 OR $membership_amount GT 0)}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Contribution Amount{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Additional Contribution{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Total{/ts}\n \n {$amount+$membership_amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {$line.description|truncate:30:\"...\"}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.line_total|crmMoney}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n {if $dataArray}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts} Amount Before Tax : {/ts}\n \n {$amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}NO{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Membership Transaction #{/ts}\n \n {$membership_trx_id}\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,756,1,0,0,NULL),(46,'Memberships - Receipt (on-line)','{if $is_pay_later}{ts}Invoice{/ts}{else}{ts}Receipt{/ts}{/if} - {$title}\n','{if $receipt_text}\n{$receipt_text}\n{/if}\n{if $is_pay_later}\n\n===========================================================\n{$pay_later_receipt}\n===========================================================\n{else}\n\n{ts}Please print this receipt for your records.{/ts}\n{/if}\n\n{if $membership_assign && !$useForMember}\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Type{/ts}: {$membership_name}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n{/if}\n{if $amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{if !$useForMember && $membership_amount && $is_quick_config}\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{if $amount}\n{if ! $is_separate_payment }\n{ts}Contribution Amount{/ts}: {$amount|crmMoney}\n{else}\n{ts}Additional Contribution{/ts}: {$amount|crmMoney}\n{/if}\n{/if}\n-------------------------------------------\n{ts}Total{/ts}: {$amount+$membership_amount|crmMoney}\n{elseif !$useForMember && $lineItem and $priceSetID & !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n---------------------------------------------------------\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_qty}{ts}Qty{/ts}{/capture}\n{capture assign=ts_each}{ts}Each{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_qty|string_format:\"%5s\"} {$ts_each|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"}\n----------------------------------------------------------\n{foreach from=$value item=line}\n{$line.description|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.qty|string_format:\"%5s\"} {$line.unit_price|crmMoney|string_format:\"%10s\"} {$line.line_total|crmMoney|string_format:\"%10s\"}\n{/foreach}\n{/foreach}\n\n{ts}Total Amount{/ts}: {$amount|crmMoney}\n{else}\n{if $useForMember && $lineItem && !$is_quick_config}\n{foreach from=$lineItem item=value key=priceset}\n{capture assign=ts_item}{ts}Item{/ts}{/capture}\n{capture assign=ts_total}{ts}Fee{/ts}{/capture}\n{if $dataArray}\n{capture assign=ts_subtotal}{ts}Subtotal{/ts}{/capture}\n{capture assign=ts_taxRate}{ts}Tax Rate{/ts}{/capture}\n{capture assign=ts_taxAmount}{ts}Tax Amount{/ts}{/capture}\n{capture assign=ts_total}{ts}Total{/ts}{/capture}\n{/if}\n{capture assign=ts_start_date}{ts}Membership Start Date{/ts}{/capture}\n{capture assign=ts_end_date}{ts}Membership End Date{/ts}{/capture}\n{$ts_item|string_format:\"%-30s\"} {$ts_total|string_format:\"%10s\"} {if $dataArray} {$ts_subtotal|string_format:\"%10s\"} {$ts_taxRate|string_format:\"%10s\"} {$ts_taxAmount|string_format:\"%10s\"} {$ts_total|string_format:\"%10s\"} {/if} {$ts_start_date|string_format:\"%20s\"} {$ts_end_date|string_format:\"%20s\"}\n--------------------------------------------------------------------------------------------------\n\n{foreach from=$value item=line}\n{capture assign=ts_item}{if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description} {$line.description}{/if}{/capture}{$ts_item|truncate:30:\"...\"|string_format:\"%-30s\"} {$line.line_total|crmMoney|string_format:\"%10s\"} {if $dataArray} {$line.unit_price*$line.qty|crmMoney:$currency|string_format:\"%10s\"} {if $line.tax_rate != \"\" || $line.tax_amount != \"\"} {$line.tax_rate|string_format:\"%.2f\"} % {$line.tax_amount|crmMoney:$currency|string_format:\"%10s\"} {else} {/if} {$line.line_total+$line.tax_amount|crmMoney|string_format:\"%10s\"} {/if} {$line.start_date|string_format:\"%20s\"} {$line.end_date|string_format:\"%20s\"}\n{/foreach}\n{/foreach}\n\n{if $dataArray}\n{ts}Amount before Tax{/ts}: {$amount-$totalTaxAmount|crmMoney:$currency}\n\n{foreach from=$dataArray item=value key=priceset}\n{if $priceset || $priceset == 0}\n{$taxTerm} {$priceset|string_format:\"%.2f\"}%: {$value|crmMoney:$currency}\n{else}\n{ts}No{/ts} {$taxTerm}: {$value|crmMoney:$currency}\n{/if}\n{/foreach}\n{/if}\n--------------------------------------------------------------------------------------------------\n{/if}\n\n{if $totalTaxAmount}\n{ts}Total Tax Amount{/ts}: {$totalTaxAmount|crmMoney:$currency}\n{/if}\n\n{ts}Amount{/ts}: {$amount|crmMoney} {if $amount_level } - {$amount_level} {/if}\n{/if}\n{elseif $membership_amount}\n===========================================================\n{ts}Membership Fee{/ts}\n\n===========================================================\n{ts 1=$membership_name}%1 Membership{/ts}: {$membership_amount|crmMoney}\n{/if}\n\n{if $receive_date}\n\n{ts}Date{/ts}: {$receive_date|crmDate}\n{/if}\n{if $is_monetary and $trxn_id}\n{ts}Transaction #{/ts}: {$trxn_id}\n\n{/if}\n{if $membership_trx_id}\n{ts}Membership Transaction #{/ts}: {$membership_trx_id}\n\n{/if}\n{if $is_recur}\n{if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n{ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page: %1.{/ts}\n\n{ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n{/if}\n{/if}\n\n{if $honor_block_is_active }\n===========================================================\n{$soft_credit_type}\n===========================================================\n{foreach from=$honoreeProfile item=value key=label}\n{$label}: {$value}\n{/foreach}\n\n{/if}\n{if $pcpBlock}\n===========================================================\n{ts}Personal Campaign Page{/ts}\n\n===========================================================\n{ts}Display In Honor Roll{/ts}: {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n\n{if $pcp_roll_nickname}{ts}Nickname{/ts}: {$pcp_roll_nickname}{/if}\n\n{if $pcp_personal_note}{ts}Personal Note{/ts}: {$pcp_personal_note}{/if}\n\n{/if}\n{if $onBehalfProfile}\n===========================================================\n{ts}On Behalf Of{/ts}\n\n===========================================================\n{foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n{$onBehalfName}: {$onBehalfValue}\n{/foreach}\n{/if}\n\n{if !( $contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\' ) and $is_monetary}\n{if $is_pay_later}\n===========================================================\n{ts}Registered Email{/ts}\n\n===========================================================\n{$email}\n{elseif $amount GT 0 OR $membership_amount GT 0 }\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n{/if} {* End ! is_pay_later condition. *}\n{/if}\n{if $contributeMode eq \'direct\' AND !$is_pay_later AND ( $amount GT 0 OR $membership_amount GT 0 ) }\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n{/if}\n\n{if $selectPremium }\n===========================================================\n{ts}Premium Information{/ts}\n\n===========================================================\n{$product_name}\n{if $option}\n{ts}Option{/ts}: {$option}\n{/if}\n{if $sku}\n{ts}SKU{/ts}: {$sku}\n{/if}\n{if $start_date}\n{ts}Start Date{/ts}: {$start_date|crmDate}\n{/if}\n{if $end_date}\n{ts}End Date{/ts}: {$end_date|crmDate}\n{/if}\n{if $contact_email OR $contact_phone}\n\n{ts}For information about this premium, contact:{/ts}\n\n{if $contact_email}\n {$contact_email}\n{/if}\n{if $contact_phone}\n {$contact_phone}\n{/if}\n{/if}\n{if $is_deductible AND $price}\n\n{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}{/if}\n{/if}\n\n{if $customPre}\n===========================================================\n{$customPre_grouptitle}\n\n===========================================================\n{foreach from=$customPre item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n\n\n{if $customPost}\n===========================================================\n{$customPost_grouptitle}\n\n===========================================================\n{foreach from=$customPost item=customValue key=customName}\n{if ( $trackingFields and ! in_array( $customName, $trackingFields ) ) or ! $trackingFields}\n {$customName}: {$customValue}\n{/if}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n {if $receipt_text}\n

{$receipt_text|htmlize}

\n {/if}\n\n {if $is_pay_later}\n

{$pay_later_receipt}

{* FIXME: this might be text rather than HTML *}\n {else}\n

{ts}Please print this confirmation for your records.{/ts}

\n {/if}\n\n
\n \n\n {if $membership_assign && !$useForMember}\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n {/if}\n\n\n {if $amount}\n \n \n \n\n {if !$useForMember and $membership_amount and $is_quick_config}\n\n \n \n \n \n {if $amount}\n {if ! $is_separate_payment }\n \n \n \n \n {else}\n \n \n \n \n {/if}\n {/if}\n \n \n \n \n\n {elseif !$useForMember && $lineItem and $priceSetID and !$is_quick_config}\n\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n \n \n \n \n\n {else}\n {if $useForMember && $lineItem and !$is_quick_config}\n {foreach from=$lineItem item=value key=priceset}\n \n \n \n {/foreach}\n {if $dataArray}\n \n \n \n \n {foreach from=$dataArray item=value key=priceset}\n \n {if $priceset || $priceset == 0}\n \n \n {else}\n \n \n {/if}\n \n {/foreach}\n {/if}\n {/if}\n {if $totalTaxAmount}\n \n \n \n \n {/if}\n \n \n \n \n\n {/if}\n\n\n {elseif $membership_amount}\n\n\n \n \n \n \n \n \n \n\n\n {/if}\n\n {if $receive_date}\n \n \n \n \n {/if}\n\n {if $is_monetary and $trxn_id}\n \n \n \n \n {/if}\n\n {if $membership_trx_id}\n \n \n \n \n {/if}\n {if $is_recur}\n {if $contributeMode eq \'notify\' or $contributeMode eq \'directIPN\'}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $honor_block_is_active}\n \n \n \n {foreach from=$honoreeProfile item=value key=label}\n \n \n \n \n {/foreach}\n {/if}\n\n {if $pcpBlock}\n \n \n \n \n \n \n \n {if $pcp_roll_nickname}\n \n \n \n \n {/if}\n {if $pcp_personal_note}\n \n \n \n \n {/if}\n {/if}\n\n {if $onBehalfProfile}\n \n \n \n {foreach from=$onBehalfProfile item=onBehalfValue key=onBehalfName}\n \n \n \n \n {/foreach}\n {/if}\n\n {if ! ($contributeMode eq \'notify\' OR $contributeMode eq \'directIPN\') and $is_monetary}\n {if $is_pay_later}\n \n \n \n \n \n \n {elseif $amount GT 0 OR $membership_amount GT 0}\n \n \n \n \n \n \n {/if}\n {/if}\n\n {if $contributeMode eq \'direct\' AND !$is_pay_later AND ($amount GT 0 OR $membership_amount GT 0)}\n \n \n \n \n \n \n {/if}\n\n {if $selectPremium}\n \n \n \n \n \n \n {if $option}\n \n \n \n \n {/if}\n {if $sku}\n \n \n \n \n {/if}\n {if $start_date}\n \n \n \n \n {/if}\n {if $end_date}\n \n \n \n \n {/if}\n {if $contact_email OR $contact_phone}\n \n \n \n {/if}\n {if $is_deductible AND $price}\n \n \n \n {/if}\n {/if}\n\n {if $customPre}\n \n \n \n {foreach from=$customPre item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n {if $customPost}\n \n \n \n {foreach from=$customPost item=customValue key=customName}\n {if ($trackingFields and ! in_array($customName, $trackingFields)) or ! $trackingFields}\n \n \n \n \n {/if}\n {/foreach}\n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Type{/ts}\n \n {$membership_name}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Contribution Amount{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Additional Contribution{/ts}\n \n {$amount|crmMoney}\n
\n {ts}Total{/ts}\n \n {$amount+$membership_amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n \n \n \n {foreach from=$value item=line}\n \n \n \n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Qty{/ts}{ts}Each{/ts}{ts}Total{/ts}
\n {$line.description|truncate:30:\"...\"}\n \n {$line.qty}\n \n {$line.unit_price|crmMoney}\n \n {$line.line_total|crmMoney}\n
\n
\n {ts}Total Amount{/ts}\n \n {$amount|crmMoney}\n
\n {* FIXME: style this table so that it looks like the text version (justification, etc.) *}\n \n \n \n {if $dataArray}\n \n \n \n \n {/if}\n \n \n \n {foreach from=$value item=line}\n \n \n \n {if $dataArray}\n \n {if $line.tax_rate != \"\" || $line.tax_amount != \"\"}\n \n \n {else}\n \n \n {/if}\n \n {/if}\n \n \n \n {/foreach}\n
{ts}Item{/ts}{ts}Fee{/ts}{ts}SubTotal{/ts}{ts}Tax Rate{/ts}{ts}Tax Amount{/ts}{ts}Total{/ts}{ts}Membership Start Date{/ts}{ts}Membership End Date{/ts}
\n {if $line.html_type eq \'Text\'}{$line.label}{else}{$line.field_title} - {$line.label}{/if} {if $line.description}
{$line.description|truncate:30:\"...\"}
{/if}\n
\n {$line.line_total|crmMoney}\n \n {$line.unit_price*$line.qty|crmMoney}\n \n {$line.tax_rate|string_format:\"%.2f\"}%\n \n {$line.tax_amount|crmMoney}\n \n {$line.line_total+$line.tax_amount|crmMoney}\n \n {$line.start_date}\n \n {$line.end_date}\n
\n
\n {ts} Amount Before Tax : {/ts}\n \n {$amount-$totalTaxAmount|crmMoney}\n
 {$taxTerm} {$priceset|string_format:\"%.2f\"}% {$value|crmMoney:$currency} {ts}NO{/ts} {$taxTerm} {$value|crmMoney:$currency}
\n {ts}Total Tax Amount{/ts}\n \n {$totalTaxAmount|crmMoney:$currency}\n
\n {ts}Amount{/ts}\n \n {$amount|crmMoney} {if $amount_level} - {$amount_level}{/if}\n
\n {ts}Membership Fee{/ts}\n
\n {ts 1=$membership_name}%1 Membership{/ts}\n \n {$membership_amount|crmMoney}\n
\n {ts}Date{/ts}\n \n {$receive_date|crmDate}\n
\n {ts}Transaction #{/ts}\n \n {$trxn_id}\n
\n {ts}Membership Transaction #{/ts}\n \n {$membership_trx_id}\n
\n {ts 1=$cancelSubscriptionUrl}This membership will be renewed automatically. You can cancel the auto-renewal option by visiting this web page.{/ts}\n
\n {ts 1=$updateSubscriptionBillingUrl}You can update billing details for this automatically renewed membership by visiting this web page.{/ts}\n
\n {$soft_credit_type}\n
\n {$label}\n \n {$value}\n
\n {ts}Personal Campaign Page{/ts}\n
\n {ts}Display In Honor Roll{/ts}\n \n {if $pcp_display_in_roll}{ts}Yes{/ts}{else}{ts}No{/ts}{/if}\n
\n {ts}Nickname{/ts}\n \n {$pcp_roll_nickname}\n
\n {ts}Personal Note{/ts}\n \n {$pcp_personal_note}\n
\n {$onBehalfProfile_grouptitle}\n
\n {$onBehalfName}\n \n {$onBehalfValue}\n
\n {ts}Registered Email{/ts}\n
\n {$email}\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts}Premium Information{/ts}\n
\n {$product_name}\n
\n {ts}Option{/ts}\n \n {$option}\n
\n {ts}SKU{/ts}\n \n {$sku}\n
\n {ts}Start Date{/ts}\n \n {$start_date|crmDate}\n
\n {ts}End Date{/ts}\n \n {$end_date|crmDate}\n
\n

{ts}For information about this premium, contact:{/ts}

\n {if $contact_email}\n

{$contact_email}

\n {/if}\n {if $contact_phone}\n

{$contact_phone}

\n {/if}\n
\n

{ts 1=$price|crmMoney}The value of this premium is %1. This may affect the amount of the tax deduction you can claim. Consult your tax advisor for more information.{/ts}

\n
\n {$customPre_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n {$customPost_grouptitle}\n
\n {$customName}\n \n {$customValue}\n
\n
\n\n\n\n',1,756,0,1,0,NULL),(47,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts}\n','{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}\n\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Status{/ts}: {$membership_status}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n
\n\n\n\n',1,757,1,0,0,NULL),(48,'Memberships - Auto-renew Cancellation Notification','{ts}Autorenew Membership Cancellation Notification{/ts}\n','{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}\n\n===========================================================\n{ts}Membership Information{/ts}\n\n===========================================================\n{ts}Membership Status{/ts}: {$membership_status}\n{if $mem_start_date}{ts}Membership Start Date{/ts}: {$mem_start_date|crmDate}\n{/if}\n{if $mem_end_date}{ts}Membership End Date{/ts}: {$mem_end_date|crmDate}\n{/if}\n\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n
\n\n

{ts 1=$membershipType}The automatic renewal of your %1 membership has been cancelled as requested. This does not affect the status of your membership - you will receive a separate notification when your membership is up for renewal.{/ts}

\n\n
\n \n\n \n \n \n \n \n \n \n {if $mem_start_date}\n \n \n \n \n {/if}\n {if $mem_end_date}\n \n \n \n \n {/if}\n\n
\n {ts}Membership Information{/ts}\n
\n {ts}Membership Status{/ts}\n \n {$membership_status}\n
\n {ts}Membership Start Date{/ts}\n \n {$mem_start_date|crmDate}\n
\n {ts}Membership End Date{/ts}\n \n {$mem_end_date|crmDate}\n
\n
\n\n\n\n',1,757,0,1,0,NULL),(49,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n\n',1,758,1,0,0,NULL),(50,'Memberships - Auto-renew Billing Updates','{ts}Membership Autorenewal Billing Updates{/ts}','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}\n\n===========================================================\n{ts}Billing Name and Address{/ts}\n\n===========================================================\n{$billingName}\n{$address}\n\n{$email}\n\n===========================================================\n{ts}Credit Card Information{/ts}\n\n===========================================================\n{$credit_card_type}\n{$credit_card_number}\n{ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}\n\n\n{ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$membershipType}Billing details for your automatically renewed %1 membership have been updated.{/ts}

\n
\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n
\n {ts}Billing Name and Address{/ts}\n
\n {$billingName}
\n {$address|nl2br}
\n {$email}\n
\n {ts}Credit Card Information{/ts}\n
\n {$credit_card_type}
\n {$credit_card_number}
\n {ts}Expires{/ts}: {$credit_card_exp_date|truncate:7:\'\'|crmDate}
\n
\n {ts 1=$receipt_from_email}If you have questions please contact us at %1{/ts}\n
\n
\n\n\n\n',1,758,0,1,0,NULL),(51,'Test-drive - Receipt Header','[TEST]\n','***********************************************************\n\n{ts}Test-drive Email / Receipt{/ts}\n\n{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}\n\n***********************************************************\n','
\n \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n
\n',1,759,1,0,0,NULL),(52,'Test-drive - Receipt Header','[TEST]\n','***********************************************************\n\n{ts}Test-drive Email / Receipt{/ts}\n\n{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}\n\n***********************************************************\n','
\n \n \n \n \n
\n

{ts}Test-drive Email / Receipt{/ts}

\n

{ts}This is a test-drive email. No live financial transaction has occurred.{/ts}

\n
\n
\n',1,759,0,1,0,NULL),(53,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Thank you for your generous pledge. Please print this acknowledgment for your records.{/ts}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$total_pledge_amount|crmMoney:$currency}\n\n===========================================================\n{ts}Payment Schedule{/ts}\n\n===========================================================\n{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}\n\n{if $frequency_day}\n\n{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}\n{/if}\n\n{if $payments}\n{assign var=\"count\" value=\"1\"}\n{foreach from=$payments item=payment}\n\n{ts 1=$count}Payment %1{/ts}: {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n{assign var=\"count\" value=`$count+1`}\n{/foreach}\n{/if}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n

{ts 1=$contact.display_name}dear %1{/ts},

\n

{ts}thank you for your generous pledge. please print this acknowledgment for your records.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=\"1\"}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=`$count+1`}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,760,1,0,0,NULL),(54,'Pledges - Acknowledgement','{ts}Thank you for your Pledge{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts}Thank you for your generous pledge. Please print this acknowledgment for your records.{/ts}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$total_pledge_amount|crmMoney:$currency}\n\n===========================================================\n{ts}Payment Schedule{/ts}\n\n===========================================================\n{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}\n\n{if $frequency_day}\n\n{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}\n{/if}\n\n{if $payments}\n{assign var=\"count\" value=\"1\"}\n{foreach from=$payments item=payment}\n\n{ts 1=$count}Payment %1{/ts}: {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n{assign var=\"count\" value=`$count+1`}\n{/foreach}\n{/if}\n\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n{if $customGroup}\n{foreach from=$customGroup item=value key=customName}\n===========================================================\n{$customName}\n===========================================================\n{foreach from=$value item=v key=n}\n{$n}: {$v}\n{/foreach}\n{/foreach}\n{/if}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n
\n

{ts 1=$contact.display_name}dear %1{/ts},

\n

{ts}thank you for your generous pledge. please print this acknowledgment for your records.{/ts}

\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n {if $payments}\n {assign var=\"count\" value=\"1\"}\n {foreach from=$payments item=payment}\n \n \n \n \n {assign var=\"count\" value=`$count+1`}\n {/foreach}\n {/if}\n\n \n \n \n\n {if $customGroup}\n {foreach from=$customGroup item=value key=customName}\n \n \n \n {foreach from=$value item=v key=n}\n \n \n \n \n {/foreach}\n {/foreach}\n {/if}\n\n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$total_pledge_amount|crmMoney:$currency}\n
\n {ts}Payment Schedule{/ts}\n
\n

{ts 1=$scheduled_amount|crmMoney:$currency 2=$frequency_interval 3=$frequency_unit 4=$installments}%1 every %2 %3 for %4 installments.{/ts}

\n\n {if $frequency_day}\n

{ts 1=$frequency_day 2=$frequency_unit}Payments are due on day %1 of the %2.{/ts}

\n {/if}\n
\n {ts 1=$count}Payment %1{/ts}\n \n {$payment.amount|crmMoney:$currency} {if $payment.status eq 1}{ts}paid{/ts} {$payment.receive_date|truncate:10:\'\'|crmDate}{else}{ts}due{/ts} {$payment.due_date|truncate:10:\'\'|crmDate}{/if}\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n
\n {$customName}\n
\n {$n}\n \n {$v}\n
\n
\n
\n\n\n\n',1,760,0,1,0,NULL),(55,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}\n\n===========================================================\n{ts}Payment Due{/ts}\n\n===========================================================\n{ts}Amount Due{/ts}: {$amount_due|crmMoney:$currency}\n{ts}Due Date{/ts}: {$scheduled_payment_date|truncate:10:\'\'|crmDate}\n\n{if $contribution_page_id}\n{capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\nClick this link to go to a web page where you can make your payment online:\n{$contributionUrl}\n{else}\n{ts}Please mail your payment to{/ts}:\n{$domain.address}\n{/if}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$amount|crmMoney:$currency}\n{ts}Total Paid{/ts}: {$amount_paid|crmMoney:$currency}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n\n{ts}Thank your for your generous support.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {$domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank your for your generous support.{/ts}

\n
\n
\n\n\n\n',1,761,1,0,0,NULL),(56,'Pledges - Payment Reminder','{ts}Pledge Payment Reminder{/ts}\n','{ts 1=$contact.display_name}Dear %1{/ts},\n\n{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}\n\n===========================================================\n{ts}Payment Due{/ts}\n\n===========================================================\n{ts}Amount Due{/ts}: {$amount_due|crmMoney:$currency}\n{ts}Due Date{/ts}: {$scheduled_payment_date|truncate:10:\'\'|crmDate}\n\n{if $contribution_page_id}\n{capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\nClick this link to go to a web page where you can make your payment online:\n{$contributionUrl}\n{else}\n{ts}Please mail your payment to{/ts}:\n{$domain.address}\n{/if}\n\n===========================================================\n{ts}Pledge Information{/ts}\n\n===========================================================\n{ts}Pledge Received{/ts}: {$create_date|truncate:10:\'\'|crmDate}\n{ts}Total Pledge Amount{/ts}: {$amount|crmMoney:$currency}\n{ts}Total Paid{/ts}: {$amount_paid|crmMoney:$currency}\n\n{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}\n\n\n{ts}Thank your for your generous support.{/ts}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n \n \n \n\n \n \n \n\n \n \n \n\n \n \n \n\n
\n

{ts 1=$contact.display_name}Dear %1{/ts},

\n

{ts 1=$next_payment|truncate:10:\'\'|crmDate}This is a reminder that the next payment on your pledge is due on %1.{/ts}

\n
\n \n \n \n \n \n \n \n \n
\n {ts}Payment Due{/ts}\n
\n {ts}Amount Due{/ts}\n \n {$amount_due|crmMoney:$currency}\n
\n
\n {if $contribution_page_id}\n {capture assign=contributionUrl}{crmURL p=\'civicrm/contribute/transact\' q=\"reset=1&id=`$contribution_page_id`&cid=`$contact.contact_id`&pledgeId=`$pledge_id`&cs=`$checksumValue`\" a=true h=0}{/capture}\n

{ts}Go to a web page where you can make your payment online{/ts}

\n {else}\n

{ts}Please mail your payment to{/ts}: {$domain.address}

\n {/if}\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n {ts}Pledge Information{/ts}\n
\n {ts}Pledge Received{/ts}\n \n {$create_date|truncate:10:\'\'|crmDate}\n
\n {ts}Total Pledge Amount{/ts}\n \n {$amount|crmMoney:$currency}\n
\n {ts}Total Paid{/ts}\n \n {$amount_paid|crmMoney:$currency}\n
\n
\n

{ts 1=$domain.phone 2=$domain.email}Please contact us at %1 or send email to %2 if you have questions\nor need to modify your payment schedule.{/ts}

\n

{ts}Thank your for your generous support.{/ts}

\n
\n
\n\n\n\n',1,761,0,1,0,NULL),(57,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts}\n','{ts}Submitted For:{/ts} {$displayName}\n{ts}Date:{/ts} {$currentDate}\n{ts}Contact Summary:{/ts} {$contactLink}\n\n===========================================================\n{$grouptitle}\n\n===========================================================\n{foreach from=$values item=value key=valueName}\n{$valueName}: {$value}\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {$displayName}\n
\n {ts}Date{/ts}\n \n {$currentDate}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,762,1,0,0,NULL),(58,'Profiles - Admin Notification','{$grouptitle} {ts 1=$displayName}Submitted by %1{/ts}\n','{ts}Submitted For:{/ts} {$displayName}\n{ts}Date:{/ts} {$currentDate}\n{ts}Contact Summary:{/ts} {$contactLink}\n\n===========================================================\n{$grouptitle}\n\n===========================================================\n{foreach from=$values item=value key=valueName}\n{$valueName}: {$value}\n{/foreach}\n','\n\n\n \n \n\n\n\n{capture assign=headerStyle}colspan=\"2\" style=\"text-align: left; padding: 4px; border-bottom: 1px solid #999; background-color: #eee;\"{/capture}\n{capture assign=labelStyle }style=\"padding: 4px; border-bottom: 1px solid #999; background-color: #f7f7f7;\"{/capture}\n{capture assign=valueStyle }style=\"padding: 4px; border-bottom: 1px solid #999;\"{/capture}\n\n
\n \n\n \n \n \n\n \n\n \n \n \n\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n\n {foreach from=$values item=value key=valueName}\n \n \n \n \n {/foreach}\n
\n {ts}Submitted For{/ts}\n \n {$displayName}\n
\n {ts}Date{/ts}\n \n {$currentDate}\n
\n {ts}Contact Summary{/ts}\n \n {$contactLink}\n
\n {$grouptitle}\n
\n {$valueName}\n \n {$value}\n
\n
\n
\n\n\n\n',1,762,0,1,0,NULL),(59,'Petition - signature added','Thank you for signing {$petition.title}','Thank you for signing {$petition.title}.\n','

Thank you for signing {$petition.title}.

\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true emailMode=true}\n',1,763,1,0,0,NULL),(60,'Petition - signature added','Thank you for signing {$petition.title}','Thank you for signing {$petition.title}.\n','

Thank you for signing {$petition.title}.

\n\n{include file=\"CRM/Campaign/Page/Petition/SocialNetwork.tpl\" petition_id=$survey_id noscript=true emailMode=true}\n',1,763,0,1,0,NULL),(61,'Petition - need verification','Confirmation of signature needed for {$petition.title}\n','Thank you for signing {$petition.title}.\n\nIn order to complete your signature, we must confirm your e-mail.\nPlease do so by visiting the following email confirmation web page:\n\n{$petition.confirmUrlPlainText}\n\nIf you did not sign this petition, please ignore this message.\n','

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,764,1,0,0,NULL),(62,'Petition - need verification','Confirmation of signature needed for {$petition.title}\n','Thank you for signing {$petition.title}.\n\nIn order to complete your signature, we must confirm your e-mail.\nPlease do so by visiting the following email confirmation web page:\n\n{$petition.confirmUrlPlainText}\n\nIf you did not sign this petition, please ignore this message.\n','

Thank you for signing {$petition.title}.

\n\n

In order to complete your signature, we must confirm your e-mail.\n
\nPlease do so by visiting the following web page by clicking\non the link below or pasting the link into your browser.\n

\nEmail confirmation page: {$petition.confirmUrl}

\n\n

If you did not sign this petition, please ignore this message.

\n',1,764,0,1,0,NULL),(63,'Sample CiviMail Newsletter Template','Sample CiviMail Newsletter','','\n\n\n \n \n\n\n\n\n \n \n \n \n \n\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \"Replace\n    \n Your Newsletter Title\n
\n
\n \n \n \n \n \n
\n \n Greetings {contact.display_name},\n

\n This is a sample template designed to help you get started creating and sending your own CiviMail messages. This template uses an HTML layout that is generally compatible with the wide variety of email clients that your recipients might be using (e.g. Gmail, Outlook, Yahoo, etc.).\n

You can select this \"Sample CiviMail Newsletter Template\" from the \"Use Template\" drop-down in Step 3 of creating a mailing, and customize it to your needs. Then check the \"Save as New Template\" box on the bottom the page to save your customized version for use in future mailings.\n

The logo you use must be uploaded to your server. Copy and paste the URL path to the logo into the <img src= tag in the HTML at the top. Click \"Source\" or the Image button if you are using the text editor.\n

\n Edit the color of the links and headers using the color button or by editing the HTML.\n

\n Your newsletter message and donation appeal can go here. Click the link button to create links - remember to use a fully qualified URL starting with http:// in all your links!\n

\n To use CiviMail:\n \n Sincerely,\n

\n Your Team\n

\n
\n
\n
\n \n \n \n \n \n \n \n \n
News and Events
\n \n Featured Events
\n Fundraising Dinner
\n Training Meeting
\n Board of Directors Annual Meeting
\n\n

\n Community Events
\n Bake Sale
\n Charity Auction
\n Art Exhibit
\n\n

\n Important Dates
\n Tuesday August 27
\n Wednesday September 8
\n Thursday September 29
\n Saturday October 1
\n Sunday October 20
\n
\n
\n
\n \n \n \n \n
\n \n Helpful Tips\n

\n Tokens
\n Click \"Insert Tokens\" to dynamically insert names, addresses, and other contact data of your recipients.\n

\n Plain Text Version
\n Some people refuse HTML emails altogether. We recommend sending a plain-text version of your important communications to accommodate them. Luckily, CiviCRM accommodates for this! Just click \"Plain Text\" and copy and paste in some text. Line breaks (carriage returns) and fully qualified URLs like http://www.example.com are all you get, no HTML here!\n

\n Play by the Rules
\n The address of the sender is required by the Can Spam Act law. This is an available token called domain.address. An unsubscribe or opt-out link is also required. There are several available tokens for this. {action.optOutUrl} creates a link for recipients to click if they want to opt out of receiving emails from your organization. {action.unsubscribeUrl} creates a link to unsubscribe from the specific mailing list used to send this message. Click on \"Insert Tokens\" to find these and look for tokens named \"Domain\" or \"Unsubscribe\". This sample template includes both required tokens at the bottom of the message. You can also configure a default Mailing Footer containing these tokens.\n

\n Composing Offline
\n If you prefer to compose an HTML email offline in your own text editor, you can upload this HTML content into CiviMail or simply click \"Source\" and then copy and paste the HTML in.\n

\n Images
\n Most email clients these days (Outlook, Gmail, etc) block image loading by default. This is to protect their users from annoying or harmful email. Not much we can do about this, so encourage recipients to add you to their contacts or \"whitelist\". Also use images sparingly, do not rely on images to convey vital information, and always use HTML \"alt\" tags which describe the image content.\n
\n
\n \n
\n Click here to unsubscribe from this mailing list.

\n Our mailing address is:
\n {domain.address}\n
\n\n\n\n',1,NULL,1,0,0,NULL),(64,'Sample Responsive Design Newsletter - Single Column Template','Sample Responsive Design Newsletter - Single Column','','\n\n \n \n\n \n\n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
Organization or Program Name Here
\n\n \n \n \n \n \n \n
Month and Year
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
\"Replace\n
 
\n
\n
 
\n
\n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
Headline Here
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
Your Heading Here
 
\n

{contact.email_greeting},

\n

Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!

\n
Read More
 
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
Your Heading Here
 
\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna

\n
Read More
 
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
\n

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna

\n
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\"\"
\n
 
\n

Remember to link the facebook and twitter links below to your pages!

\n
Read More
\n
\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n \n \n \n \n \n
 Unsubscribe | Subscribe | Opt out
 {domain.address}
\n \n\n \n \n \n \n \n \n \n \n \n
\n \n  \n \n  
\n
 
\n
\n
\n\n\n\n',1,NULL,1,0,0,NULL),(65,'Sample Responsive Design Newsletter - Two Column Template','Sample Responsive Design Newsletter - Two Column','','\n \n \n \n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
Organization or Program Name Here
\n\n \n \n \n \n \n \n
Month Year
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n\n \n
\n \n \n \n \n \n \n \n \n \n \n
\"Replace
\n
 
\n
\n\n
\n
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n
Hero Story Heading
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n\n \n\n \n\n\n\n \n \n
\n
\"\"
\n
 
Subheading Here
 
Replace with your text and images, and remember to link the facebook and twitter links in the footer to your pages. Have fun!
 
\n
\n
\n
Section Heading Here
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n\n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n
\n
\n \n\n\n\n\n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
 
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n
\"\"
\n \n\n \n \n \n \n \n \n
 
\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Heading Here
 
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna
Read More
\n
\n
 
\n

Remember to link the facebook and twitter links below to your pages!

\n
\n
\n
\n \n\n \n\n \n \n \n \n \n \n \n
\n \n \n \n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
 
\n \n \n \n \n \n \n \n \n \n \n \n
 Unsubscribe | Subscribe | Opt out
 {domain.address}
\n \n \n \n \n \n \n \n \n \n \n
\n  \n \n  
\n
 
 
\n
\n
\n \n \n\n',1,NULL,1,0,0,NULL); /*!40000 ALTER TABLE `civicrm_msg_template` ENABLE KEYS */; UNLOCK TABLES; @@ -968,7 +967,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_navigation` WRITE; /*!40000 ALTER TABLE `civicrm_navigation` DISABLE KEYS */; -INSERT INTO `civicrm_navigation` (`id`, `domain_id`, `label`, `name`, `url`, `permission`, `permission_operator`, `parent_id`, `is_active`, `has_separator`, `weight`) VALUES (1,1,'Home','Home','civicrm/dashboard?reset=1',NULL,'',NULL,1,NULL,0),(2,1,'Search','Search...',NULL,NULL,'',NULL,1,NULL,10),(3,1,'Find Contacts','Find Contacts','civicrm/contact/search?reset=1',NULL,'',2,1,NULL,1),(4,1,'Advanced Search','Advanced Search','civicrm/contact/search/advanced?reset=1',NULL,'',2,1,NULL,2),(5,1,'Full-text Search','Full-text Search','civicrm/contact/search/custom?csid=15&reset=1',NULL,'',2,1,NULL,3),(6,1,'Search Builder','Search Builder','civicrm/contact/search/builder?reset=1',NULL,'',2,1,1,4),(7,1,'Find Cases','Find Cases','civicrm/case/search?reset=1','access my cases and activities,access all cases and activities','OR',2,1,NULL,5),(8,1,'Find Contributions','Find Contributions','civicrm/contribute/search?reset=1','access CiviContribute','',2,1,NULL,6),(9,1,'Find Mailings','Find Mailings','civicrm/mailing?reset=1','access CiviMail','',2,1,NULL,7),(10,1,'Find Memberships','Find Memberships','civicrm/member/search?reset=1','access CiviMember','',2,1,NULL,8),(11,1,'Find Participants','Find Participants','civicrm/event/search?reset=1','access CiviEvent','',2,1,NULL,9),(12,1,'Find Pledges','Find Pledges','civicrm/pledge/search?reset=1','access CiviPledge','',2,1,NULL,10),(13,1,'Find Activities','Find Activities','civicrm/activity/search?reset=1',NULL,'',2,1,1,11),(14,1,'Custom Searches','Custom Searches','civicrm/contact/search/custom/list?reset=1',NULL,'',2,1,NULL,12),(15,1,'Contacts','Contacts',NULL,NULL,'',NULL,1,NULL,20),(16,1,'New Individual','New Individual','civicrm/contact/add?reset=1&ct=Individual','add contacts','',15,1,NULL,1),(17,1,'New Household','New Household','civicrm/contact/add?reset=1&ct=Household','add contacts','',15,1,NULL,2),(18,1,'New Organization','New Organization','civicrm/contact/add?reset=1&ct=Organization','add contacts','',15,1,1,3),(19,1,'Contact Reports','Contact Reports','civicrm/report/list?compid=99&reset=1','access CiviReport','',15,1,1,4),(20,1,'New Activity','New Activity','civicrm/activity?reset=1&action=add&context=standalone',NULL,'',15,1,NULL,5),(21,1,'New Email','New Email','civicrm/activity/email/add?atype=3&action=add&reset=1&context=standalone',NULL,'',15,1,1,6),(22,1,'Import Contacts','Import Contacts','civicrm/import/contact?reset=1','import contacts','',15,1,NULL,7),(23,1,'Import Activities','Import Activities','civicrm/import/activity?reset=1','import contacts','',15,1,1,8),(24,1,'New Group','New Group','civicrm/group/add?reset=1','edit groups','',15,1,NULL,9),(25,1,'Manage Groups','Manage Groups','civicrm/group?reset=1','access CiviCRM','',15,1,1,10),(26,1,'New Tag','New Tag','civicrm/admin/tag?reset=1&action=add','administer CiviCRM','',15,1,NULL,11),(27,1,'Manage Tags (Categories)','Manage Tags (Categories)','civicrm/admin/tag?reset=1','administer CiviCRM','',15,1,1,12),(28,1,'Find and Merge Duplicate Contacts','Find and Merge Duplicate Contacts','civicrm/contact/deduperules?reset=1','administer dedupe rules,merge duplicate contacts','OR',15,1,NULL,13),(29,1,'Contributions','Contributions',NULL,'access CiviContribute','',NULL,1,NULL,30),(30,1,'Dashboard','Dashboard','civicrm/contribute?reset=1','access CiviContribute','',29,1,NULL,1),(31,1,'New Contribution','New Contribution','civicrm/contribute/add?reset=1&action=add&context=standalone','access CiviContribute,edit contributions','AND',29,1,NULL,2),(32,1,'Find Contributions','Find Contributions','civicrm/contribute/search?reset=1','access CiviContribute','',29,1,NULL,3),(33,1,'Contribution Reports','Contribution Reports','civicrm/report/list?compid=2&reset=1','access CiviContribute','',29,1,1,4),(34,1,'Import Contributions','Import Contributions','civicrm/contribute/import?reset=1','access CiviContribute,edit contributions','AND',29,1,1,5),(35,1,'Batch Data Entry','Batch Data Entry','civicrm/batch?reset=1','access CiviContribute','',29,1,NULL,7),(36,1,'Pledges','Pledges',NULL,'access CiviPledge','',29,1,1,6),(37,1,'Accounting Batches','Accounting Batches',NULL,'view own manual batches,view all manual batches','OR',29,1,1,8),(38,1,'Dashboard','Dashboard','civicrm/pledge?reset=1','access CiviPledge','',36,1,NULL,1),(39,1,'New Pledge','New Pledge','civicrm/pledge/add?reset=1&action=add&context=standalone','access CiviPledge,edit pledges','AND',36,1,NULL,2),(40,1,'Find Pledges','Find Pledges','civicrm/pledge/search?reset=1','access CiviPledge','',36,1,NULL,3),(41,1,'Pledge Reports','Pledge Reports','civicrm/report/list?compid=6&reset=1','access CiviPledge','',36,1,0,4),(42,1,'New Contribution Page','New Contribution Page','civicrm/admin/contribute/add?reset=1&action=add','access CiviContribute,administer CiviCRM','AND',29,1,NULL,9),(43,1,'Manage Contribution Pages','Manage Contribution Pages','civicrm/admin/contribute?reset=1','access CiviContribute,administer CiviCRM','AND',29,1,1,10),(44,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=contribute','access CiviContribute,administer CiviCRM','AND',29,1,NULL,11),(45,1,'Premiums (Thank-you Gifts)','Premiums','civicrm/admin/contribute/managePremiums?reset=1','access CiviContribute,administer CiviCRM','AND',29,1,1,12),(46,1,'New Price Set','New Price Set','civicrm/admin/price?reset=1&action=add','access CiviContribute,administer CiviCRM','AND',29,1,NULL,13),(47,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1','access CiviContribute,administer CiviCRM','AND',29,1,NULL,14),(48,1,'New Batch','New Batch','civicrm/financial/batch?reset=1&action=add','create manual batch','AND',37,1,NULL,1),(49,1,'Open Batches','Open Batches','civicrm/financial/financialbatches?reset=1&batchStatus=1','view own manual batches,view all manual batches','OR',37,1,NULL,2),(50,1,'Closed Batches','Closed Batches','civicrm/financial/financialbatches?reset=1&batchStatus=2','view own manual batches,view all manual batches','OR',37,1,NULL,3),(51,1,'Exported Batches','Exported Batches','civicrm/financial/financialbatches?reset=1&batchStatus=5','view own manual batches,view all manual batches','OR',37,1,NULL,4),(52,1,'Events','Events',NULL,'access CiviEvent','',NULL,1,NULL,40),(53,1,'Dashboard','CiviEvent Dashboard','civicrm/event?reset=1','access CiviEvent','',52,1,NULL,1),(54,1,'Register Event Participant','Register Event Participant','civicrm/participant/add?reset=1&action=add&context=standalone','access CiviEvent,edit event participants','AND',52,1,NULL,2),(55,1,'Find Participants','Find Participants','civicrm/event/search?reset=1','access CiviEvent','',52,1,NULL,3),(56,1,'Event Reports','Event Reports','civicrm/report/list?compid=1&reset=1','access CiviEvent','',52,1,1,4),(57,1,'Import Participants','Import Participants','civicrm/event/import?reset=1','access CiviEvent,edit event participants','AND',52,1,1,5),(58,1,'New Event','New Event','civicrm/event/add?reset=1&action=add','access CiviEvent,edit all events','AND',52,1,NULL,6),(59,1,'Manage Events','Manage Events','civicrm/event/manage?reset=1','access CiviEvent,edit all events','AND',52,1,1,7),(60,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=event','access CiviEvent,administer CiviCRM','AND',52,1,1,8),(61,1,'Event Templates','Event Templates','civicrm/admin/eventTemplate?reset=1','access CiviEvent,edit all events','AND',52,1,1,9),(62,1,'New Price Set','New Price Set','civicrm/admin/price?reset=1&action=add','access CiviEvent,edit all events','AND',52,1,NULL,10),(63,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1','access CiviEvent,edit all events','AND',52,1,NULL,11),(64,1,'Mailings','Mailings',NULL,'access CiviMail,create mailings,approve mailings,schedule mailings','OR',NULL,1,NULL,50),(65,1,'New Mailing','New Mailing','civicrm/mailing/send?reset=1','access CiviMail,create mailings','OR',64,1,NULL,1),(66,1,'Draft and Unscheduled Mailings','Draft and Unscheduled Mailings','civicrm/mailing/browse/unscheduled?reset=1&scheduled=false','access CiviMail,create mailings,schedule mailings','OR',64,1,NULL,2),(67,1,'Scheduled and Sent Mailings','Scheduled and Sent Mailings','civicrm/mailing/browse/scheduled?reset=1&scheduled=true','access CiviMail,approve mailings,create mailings,schedule mailings','OR',64,1,NULL,3),(68,1,'Archived Mailings','Archived Mailings','civicrm/mailing/browse/archived?reset=1','access CiviMail,create mailings','OR',64,1,NULL,4),(69,1,'Mailing Reports','Mailing Reports','civicrm/report/list?compid=4&reset=1','access CiviMail','',64,1,1,5),(70,1,'Headers, Footers, and Automated Messages','Headers, Footers, and Automated Messages','civicrm/admin/component?reset=1','access CiviMail,administer CiviCRM','AND',64,1,NULL,6),(71,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1','edit message templates','',64,1,NULL,7),(72,1,'From Email Addresses','From Email Addresses','civicrm/admin/options/from_email_address?reset=1','administer CiviCRM','',64,1,1,8),(73,1,'New SMS','New SMS','civicrm/sms/send?reset=1','administer CiviCRM',NULL,64,1,NULL,9),(74,1,'Find Mass SMS','Find Mass SMS','civicrm/mailing/browse?reset=1&sms=1','administer CiviCRM',NULL,64,1,1,10),(75,1,'New A/B Test','New A/B Test','civicrm/a/#/abtest/new','access CiviMail,create mailings','OR',64,1,NULL,15),(76,1,'Manage A/B Tests','Manage A/B Tests','civicrm/a/#/abtest','access CiviMail,create mailings','OR',64,1,1,16),(77,1,'Memberships','Memberships',NULL,'access CiviMember','',NULL,1,NULL,60),(78,1,'Dashboard','Dashboard','civicrm/member?reset=1','access CiviMember','',77,1,NULL,1),(79,1,'New Membership','New Membership','civicrm/member/add?reset=1&action=add&context=standalone','access CiviMember,edit memberships','AND',77,1,NULL,2),(80,1,'Find Memberships','Find Memberships','civicrm/member/search?reset=1','access CiviMember','',77,1,NULL,3),(81,1,'Membership Reports','Membership Reports','civicrm/report/list?compid=3&reset=1','access CiviMember','',77,1,1,4),(82,1,'Batch Data Entry','Batch Data Entry','civicrm/batch?reset=1','access CiviContribute','',77,1,NULL,5),(83,1,'Import Memberships','Import Members','civicrm/member/import?reset=1','access CiviMember,edit memberships','AND',77,1,1,6),(84,1,'New Price Set','New Price Set','civicrm/admin/price?reset=1&action=add','access CiviMember,administer CiviCRM','AND',77,1,NULL,7),(85,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1','access CiviMember,administer CiviCRM','AND',77,1,NULL,8),(86,1,'Campaigns','Campaigns',NULL,'interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',NULL,1,NULL,70),(87,1,'Dashboard','Dashboard','civicrm/campaign?reset=1','manage campaign,administer CiviCampaign','OR',86,1,NULL,1),(88,1,'Surveys','Survey Dashboard','civicrm/campaign?reset=1&subPage=survey','manage campaign,administer CiviCampaign','OR',87,1,NULL,1),(89,1,'Petitions','Petition Dashboard','civicrm/campaign?reset=1&subPage=petition','manage campaign,administer CiviCampaign','OR',87,1,NULL,2),(90,1,'Campaigns','Campaign Dashboard','civicrm/campaign?reset=1&subPage=campaign','manage campaign,administer CiviCampaign','OR',87,1,NULL,3),(91,1,'New Campaign','New Campaign','civicrm/campaign/add?reset=1','manage campaign,administer CiviCampaign','OR',86,1,NULL,2),(92,1,'New Survey','New Survey','civicrm/survey/add?reset=1','manage campaign,administer CiviCampaign','OR',86,1,NULL,3),(93,1,'New Petition','New Petition','civicrm/petition/add?reset=1','manage campaign,administer CiviCampaign','OR',86,1,NULL,4),(94,1,'Reserve Respondents','Reserve Respondents','civicrm/survey/search?reset=1&op=reserve','administer CiviCampaign,manage campaign,reserve campaign contacts','OR',86,1,NULL,5),(95,1,'Interview Respondents','Interview Respondents','civicrm/survey/search?reset=1&op=interview','administer CiviCampaign,manage campaign,interview campaign contacts','OR',86,1,NULL,6),(96,1,'Release Respondents','Release Respondents','civicrm/survey/search?reset=1&op=release','administer CiviCampaign,manage campaign,release campaign contacts','OR',86,1,NULL,7),(97,1,'Campaign Reports','Campaign Reports','civicrm/report/list?compid=9&reset=1','interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',86,1,1,8),(98,1,'Conduct Survey','Conduct Survey','civicrm/campaign/vote?reset=1','administer CiviCampaign,manage campaign,reserve campaign contacts,interview campaign contacts','OR',86,1,NULL,9),(99,1,'GOTV (Voter Tracking)','Voter Listing','civicrm/campaign/gotv?reset=1','administer CiviCampaign,manage campaign,release campaign contacts,gotv campaign contacts','OR',86,1,NULL,10),(100,1,'Cases','Cases',NULL,'access my cases and activities,access all cases and activities','OR',NULL,1,NULL,80),(101,1,'Dashboard','Dashboard','civicrm/case?reset=1','access my cases and activities,access all cases and activities','OR',100,1,NULL,1),(102,1,'New Case','New Case','civicrm/case/add?reset=1&action=add&atype=13&context=standalone','add cases,access all cases and activities','OR',100,1,NULL,2),(103,1,'Find Cases','Find Cases','civicrm/case/search?reset=1','access my cases and activities,access all cases and activities','OR',100,1,1,3),(104,1,'Case Reports','Case Reports','civicrm/report/list?compid=7&reset=1','access my cases and activities,access all cases and activities,administer CiviCase','OR',100,1,0,4),(105,1,'Grants','Grants',NULL,'access CiviGrant','',NULL,1,NULL,90),(106,1,'Dashboard','Dashboard','civicrm/grant?reset=1','access CiviGrant','',105,1,NULL,1),(107,1,'New Grant','New Grant','civicrm/grant/add?reset=1&action=add&context=standalone','access CiviGrant,edit grants','AND',105,1,NULL,2),(108,1,'Find Grants','Find Grants','civicrm/grant/search?reset=1','access CiviGrant','',105,1,1,3),(109,1,'Grant Reports','Grant Reports','civicrm/report/list?compid=5&reset=1','access CiviGrant','',105,1,0,4),(110,1,'Administer','Administer',NULL,'administer CiviCRM','',NULL,1,NULL,100),(111,1,'Administration Console','Administration Console','civicrm/admin?reset=1','administer CiviCRM','',110,1,NULL,1),(112,1,'Configuration Checklist','Configuration Checklist','civicrm/admin/configtask?reset=1','administer CiviCRM','',111,1,NULL,1),(113,1,'Customize Data and Screens','Customize Data and Screens',NULL,'administer CiviCRM','',110,1,NULL,3),(114,1,'Custom Fields','Custom Fields','civicrm/admin/custom/group?reset=1','administer CiviCRM','',113,1,NULL,1),(115,1,'Profiles','Profiles','civicrm/admin/uf/group?reset=1','administer CiviCRM','',113,1,NULL,2),(116,1,'Tags (Categories)','Tags (Categories)','civicrm/admin/tag?reset=1','administer CiviCRM','',113,1,NULL,3),(117,1,'Activity Types','Activity Types','civicrm/admin/options/activity_type?reset=1','administer CiviCRM','',113,1,NULL,4),(118,1,'Relationship Types','Relationship Types','civicrm/admin/reltype?reset=1','administer CiviCRM','',113,1,NULL,5),(119,1,'Contact Types','Contact Types','civicrm/admin/options/subtype?reset=1','administer CiviCRM','',113,1,NULL,6),(120,1,'Display Preferences','Display Preferences','civicrm/admin/setting/preferences/display?reset=1','administer CiviCRM','',113,1,NULL,9),(121,1,'Search Preferences','Search Preferences','civicrm/admin/setting/search?reset=1','administer CiviCRM','',113,1,NULL,10),(122,1,'Navigation Menu','Navigation Menu','civicrm/admin/menu?reset=1','administer CiviCRM','',113,1,NULL,11),(123,1,'Word Replacements','Word Replacements','civicrm/admin/options/wordreplacements?reset=1','administer CiviCRM','',113,1,NULL,12),(124,1,'Manage Custom Searches','Manage Custom Searches','civicrm/admin/options/custom_search?reset=1','administer CiviCRM','',113,1,NULL,13),(125,1,'Dropdown Options','Dropdown Options',NULL,'administer CiviCRM','',113,1,NULL,8),(126,1,'Gender Options','Gender Options','civicrm/admin/options/gender?reset=1','administer CiviCRM','',125,1,NULL,1),(127,1,'Individual Prefixes (Ms, Mr...)','Individual Prefixes (Ms, Mr...)','civicrm/admin/options/individual_prefix?reset=1','administer CiviCRM','',125,1,NULL,2),(128,1,'Individual Suffixes (Jr, Sr...)','Individual Suffixes (Jr, Sr...)','civicrm/admin/options/individual_suffix?reset=1','administer CiviCRM','',125,1,NULL,3),(129,1,'Instant Messenger Services','Instant Messenger Services','civicrm/admin/options/instant_messenger_service?reset=1','administer CiviCRM','',125,1,NULL,4),(130,1,'Location Types (Home, Work...)','Location Types (Home, Work...)','civicrm/admin/locationType?reset=1','administer CiviCRM','',125,1,NULL,5),(131,1,'Mobile Phone Providers','Mobile Phone Providers','civicrm/admin/options/mobile_provider?reset=1','administer CiviCRM','',125,1,NULL,6),(132,1,'Phone Types','Phone Types','civicrm/admin/options/phone_type?reset=1','administer CiviCRM','',125,1,NULL,7),(133,1,'Website Types','Website Types','civicrm/admin/options/website_type?reset=1','administer CiviCRM','',125,1,NULL,8),(134,1,'Communications','Communications',NULL,'administer CiviCRM','',110,1,NULL,4),(135,1,'Organization Address and Contact Info','Organization Address and Contact Info','civicrm/admin/domain?action=update&reset=1','administer CiviCRM','',134,1,NULL,1),(136,1,'FROM Email Addresses','FROM Email Addresses','civicrm/admin/options/from_email_address?reset=1','administer CiviCRM','',134,1,NULL,2),(137,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1','administer CiviCRM','',134,1,NULL,3),(138,1,'Schedule Reminders','Schedule Reminders','civicrm/admin/scheduleReminders?reset=1','administer CiviCRM','',134,1,NULL,4),(139,1,'Preferred Communication Methods','Preferred Communication Methods','civicrm/admin/options/preferred_communication_method?reset=1','administer CiviCRM','',134,1,NULL,5),(140,1,'Label Formats','Label Formats','civicrm/admin/labelFormats?reset=1','administer CiviCRM','',134,1,NULL,6),(141,1,'Print Page (PDF) Formats','Print Page (PDF) Formats','civicrm/admin/pdfFormats?reset=1','administer CiviCRM','',134,1,NULL,7),(142,1,'Communication Style Options','Communication Style Options','civicrm/admin/options/communication_style?reset=1','administer CiviCRM','',134,1,NULL,8),(143,1,'Email Greeting Formats','Email Greeting Formats','civicrm/admin/options/email_greeting?reset=1','administer CiviCRM','',134,1,NULL,9),(144,1,'Postal Greeting Formats','Postal Greeting Formats','civicrm/admin/options/postal_greeting?reset=1','administer CiviCRM','',134,1,NULL,10),(145,1,'Addressee Formats','Addressee Formats','civicrm/admin/options/addressee?reset=1','administer CiviCRM','',134,1,NULL,11),(146,1,'Localization','Localization',NULL,'administer CiviCRM','',110,1,NULL,6),(147,1,'Languages, Currency, Locations','Languages, Currency, Locations','civicrm/admin/setting/localization?reset=1','administer CiviCRM','',146,1,NULL,1),(148,1,'Address Settings','Address Settings','civicrm/admin/setting/preferences/address?reset=1','administer CiviCRM','',146,1,NULL,2),(149,1,'Date Formats','Date Formats','civicrm/admin/setting/date?reset=1','administer CiviCRM','',146,1,NULL,3),(150,1,'Preferred Language Options','Preferred Language Options','civicrm/admin/options/languages?reset=1','administer CiviCRM','',146,1,NULL,4),(151,1,'Users and Permissions','Users and Permissions',NULL,'administer CiviCRM','',110,1,NULL,7),(152,1,'Permissions (Access Control)','Permissions (Access Control)','civicrm/admin/access?reset=1','administer CiviCRM','',151,1,NULL,1),(153,1,'Synchronize Users to Contacts','Synchronize Users to Contacts','civicrm/admin/synchUser?reset=1','administer CiviCRM','',151,1,NULL,2),(154,1,'System Settings','System Settings',NULL,'administer CiviCRM','',110,1,NULL,8),(155,1,'Enable CiviCRM Components','Enable Components','civicrm/admin/setting/component?reset=1','administer CiviCRM','',154,1,NULL,1),(156,1,'Manage Extensions','Manage Extensions','civicrm/admin/extensions?reset=1','administer CiviCRM','',154,1,NULL,2),(157,1,'Outbound Email (SMTP/Sendmail)','Outbound Email','civicrm/admin/setting/smtp?reset=1','administer CiviCRM','',154,1,NULL,3),(158,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1','administer CiviCRM','',154,1,NULL,4),(159,1,'Mapping and Geocoding','Mapping and Geocoding','civicrm/admin/setting/mapping?reset=1','administer CiviCRM','',154,1,NULL,5),(160,1,'Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)','Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)','civicrm/admin/setting/misc?reset=1','administer CiviCRM','',154,1,NULL,6),(161,1,'Directories','Directories','civicrm/admin/setting/path?reset=1','administer CiviCRM','',154,1,NULL,7),(162,1,'Resource URLs','Resource URLs','civicrm/admin/setting/url?reset=1','administer CiviCRM','',154,1,NULL,8),(163,1,'Cleanup Caches and Update Paths','Cleanup Caches and Update Paths','civicrm/admin/setting/updateConfigBackend?reset=1','administer CiviCRM','',154,1,NULL,9),(164,1,'CMS Database Integration','CMS Integration','civicrm/admin/setting/uf?reset=1','administer CiviCRM','',154,1,NULL,10),(165,1,'Safe File Extensions','Safe File Extensions','civicrm/admin/options/safe_file_extension?reset=1','administer CiviCRM','',154,1,NULL,11),(166,1,'Option Groups','Option Groups','civicrm/admin/options?reset=1','administer CiviCRM','',154,1,NULL,12),(167,1,'Import/Export Mappings','Import/Export Mappings','civicrm/admin/mapping?reset=1','administer CiviCRM','',154,1,NULL,13),(168,1,'Debugging and Error Handling','Debugging and Error Handling','civicrm/admin/setting/debug?reset=1','administer CiviCRM','',154,1,NULL,14),(169,1,'Multi Site Settings','Multi Site Settings','civicrm/admin/setting/preferences/multisite?reset=1','administer CiviCRM','',154,1,NULL,15),(170,1,'Scheduled Jobs','Scheduled Jobs','civicrm/admin/job?reset=1','administer CiviCRM','',154,1,NULL,16),(171,1,'SMS Providers','SMS Providers','civicrm/admin/sms/provider?reset=1','administer CiviCRM','',154,1,NULL,17),(172,1,'CiviCampaign','CiviCampaign',NULL,'administer CiviCampaign,administer CiviCRM','AND',110,1,NULL,9),(173,1,'Survey Types','Survey Types','civicrm/admin/campaign/surveyType?reset=1','administer CiviCampaign','',172,1,NULL,1),(174,1,'Campaign Types','Campaign Types','civicrm/admin/options/campaign_type?reset=1','administer CiviCampaign','',172,1,NULL,2),(175,1,'Campaign Status','Campaign Status','civicrm/admin/options/campaign_status?reset=1','administer CiviCampaign','',172,1,NULL,3),(176,1,'Engagement Index','Engagement Index','civicrm/admin/options/engagement_index?reset=1','administer CiviCampaign','',172,1,NULL,4),(177,1,'CiviCampaign Component Settings','CiviCampaign Component Settings','civicrm/admin/setting/preferences/campaign?reset=1','administer CiviCampaign','',172,1,NULL,5),(178,1,'CiviCase','CiviCase',NULL,'administer CiviCase',NULL,110,1,NULL,10),(179,1,'Case Types','Case Types','civicrm/a/#/caseType','administer CiviCase',NULL,178,1,NULL,1),(180,1,'Redaction Rules','Redaction Rules','civicrm/admin/options/redaction_rule?reset=1','administer CiviCase',NULL,178,1,NULL,2),(181,1,'Case Statuses','Case Statuses','civicrm/admin/options/case_status?reset=1','administer CiviCase',NULL,178,1,NULL,3),(182,1,'Encounter Medium','Encounter Medium','civicrm/admin/options/encounter_medium?reset=1','administer CiviCase',NULL,178,1,NULL,4),(183,1,'CiviContribute','CiviContribute',NULL,'access CiviContribute,administer CiviCRM','AND',110,1,NULL,11),(184,1,'New Contribution Page','New Contribution Page','civicrm/admin/contribute?reset=1&action=add','access CiviContribute,administer CiviCRM','AND',183,1,NULL,6),(185,1,'Manage Contribution Pages','Manage Contribution Pages','civicrm/admin/contribute?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,1,7),(186,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=contribute','access CiviContribute,administer CiviCRM','AND',183,1,NULL,8),(187,1,'Premiums (Thank-you Gifts)','Premiums','civicrm/admin/contribute/managePremiums?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,1,9),(188,1,'Financial Types','Financial Types','civicrm/admin/financial/financialType?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,NULL,10),(189,1,'Financial Accounts','Financial Accounts','civicrm/admin/financial/financialAccount?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,NULL,11),(190,1,'Payment Instruments','Payment Instruments','civicrm/admin/options/payment_instrument?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,NULL,12),(191,1,'Accepted Credit Cards','Accepted Credit Cards','civicrm/admin/options/accept_creditcard?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,NULL,13),(192,1,'Soft Credit Types','Soft Credit Types','civicrm/admin/options/soft_credit_type?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,1,14),(193,1,'New Price Set','New Price Set','civicrm/admin/price?reset=1&action=add','access CiviContribute,administer CiviCRM','AND',183,1,NULL,15),(194,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,NULL,16),(195,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1','administer CiviCRM','',183,1,NULL,17),(196,1,'CiviContribute Component Settings','CiviContribute Component Settings','civicrm/admin/setting/preferences/contribute?reset=1','administer CiviCRM','',183,1,NULL,18),(197,1,'CiviEvent','CiviEvent',NULL,'access CiviEvent,administer CiviCRM','AND',110,1,NULL,12),(198,1,'New Event','New Event','civicrm/event/add?reset=1&action=add','access CiviEvent,administer CiviCRM','AND',197,1,NULL,1),(199,1,'Manage Events','Manage Events','civicrm/event/manage?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,1,2),(200,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=event','access CiviEvent,administer CiviCRM','AND',197,1,1,3),(201,1,'Event Templates','Event Templates','civicrm/admin/eventTemplate?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,1,4),(202,1,'New Price Set','New Price Set','civicrm/admin/price?reset=1&action=add','access CiviEvent,administer CiviCRM','AND',197,1,NULL,5),(203,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,1,6),(204,1,'Event Types','Event Types','civicrm/admin/options/event_type?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,NULL,7),(205,1,'Participant Statuses','Participant Statuses','civicrm/admin/participant_status?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,NULL,8),(206,1,'Participant Roles','Participant Roles','civicrm/admin/options/participant_role?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,NULL,9),(207,1,'Participant Listing Options','Participant Listing Options','civicrm/admin/options/participant_listing?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,NULL,10),(208,1,'Event Name Badge Layouts','Event Name Badge Layouts','civicrm/admin/badgelayout?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,NULL,11),(209,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1','administer CiviCRM','',197,1,NULL,12),(210,1,'CiviEvent Component Settings','CiviEvent Component Settings','civicrm/admin/setting/preferences/event?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,NULL,13),(211,1,'CiviGrant','CiviGrant',NULL,'access CiviGrant,administer CiviCRM','AND',110,1,NULL,13),(212,1,'Grant Types','Grant Types','civicrm/admin/options/grant_type?reset=1','access CiviGrant,administer CiviCRM','AND',211,1,NULL,1),(213,1,'Grant Status','Grant Status','civicrm/admin/options/grant_status?reset=1','access CiviGrant,administer CiviCRM','AND',211,1,NULL,2),(214,1,'CiviMail','CiviMail',NULL,'access CiviMail,administer CiviCRM','AND',110,1,NULL,14),(215,1,'Headers, Footers, and Automated Messages','Headers, Footers, and Automated Messages','civicrm/admin/component?reset=1','access CiviMail,administer CiviCRM','AND',214,1,NULL,1),(216,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1','administer CiviCRM','',214,1,NULL,2),(217,1,'From Email Addresses','From Email Addresses','civicrm/admin/options/from_email_address?reset=1','administer CiviCRM','',214,1,NULL,3),(218,1,'Mail Accounts','Mail Accounts','civicrm/admin/mailSettings?reset=1','access CiviMail,administer CiviCRM','AND',214,1,NULL,4),(219,1,'Mailer Settings','Mailer Settings','civicrm/admin/mail?reset=1','access CiviMail,administer CiviCRM','AND',214,1,NULL,5),(220,1,'CiviMail Component Settings','CiviMail Component Settings','civicrm/admin/setting/preferences/mailing?reset=1','access CiviMail,administer CiviCRM','AND',214,1,NULL,6),(221,1,'CiviMember','CiviMember',NULL,'access CiviMember,administer CiviCRM','AND',110,1,NULL,15),(222,1,'Membership Types','Membership Types','civicrm/admin/member/membershipType?reset=1','access CiviMember,administer CiviCRM','AND',221,1,NULL,1),(223,1,'Membership Status Rules','Membership Status Rules','civicrm/admin/member/membershipStatus?reset=1','access CiviMember,administer CiviCRM','AND',221,1,1,2),(224,1,'New Price Set','New Price Set','civicrm/admin/price?reset=1&action=add','access CiviMember,administer CiviCRM','AND',221,1,NULL,3),(225,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1','access CiviMember,administer CiviCRM','AND',221,1,NULL,4),(226,1,'CiviMember Component Settings','CiviMember Component Settings','civicrm/admin/setting/preferences/member?reset=1','access CiviMember,administer CiviCRM','AND',221,1,NULL,5),(227,1,'CiviReport','CiviReport',NULL,'access CiviReport,administer CiviCRM','AND',110,1,NULL,16),(228,1,'All Reports','All Reports','civicrm/report/list?reset=1','access CiviReport','',227,1,NULL,1),(229,1,'Create New Report from Template','Create New Report from Template','civicrm/admin/report/template/list?reset=1','administer Reports','',227,1,NULL,2),(230,1,'Manage Templates','Manage Templates','civicrm/admin/report/options/report_template?reset=1','administer Reports','',227,1,NULL,3),(231,1,'Register Report','Register Report','civicrm/admin/report/register?reset=1','administer Reports','',227,1,NULL,4),(232,1,'Help','Help',NULL,NULL,'',NULL,1,NULL,110),(233,1,'Documentation','Documentation','http://documentation.civicrm.org',NULL,'AND',232,1,NULL,1),(234,1,'Community Forums','Community Forums','http://forum.civicrm.org',NULL,'AND',232,1,NULL,2),(235,1,'Participate','Participate','http://civicrm.org/participate',NULL,'AND',232,1,NULL,3),(236,1,'About','About','http://civicrm.org/what/whatiscivicrm',NULL,'AND',232,1,NULL,4),(237,1,'Developer','Developer',NULL,'administer CiviCRM','',232,1,NULL,5),(238,1,'API Explorer','API Explorer','civicrm/api/explorer','administer CiviCRM','',237,1,NULL,1),(239,1,'Developer Docs','Developer Docs','http://wiki.civicrm.org/confluence/display/CRMDOC/Develop','administer CiviCRM','',237,1,NULL,3),(240,1,'Reports','Reports',NULL,'access CiviReport','',NULL,1,NULL,95),(241,1,'Contact Reports','Contact Reports','civicrm/report/list?compid=99&reset=1','administer CiviCRM','',240,1,0,1),(242,1,'Contribution Reports','Contribution Reports','civicrm/report/list?compid=2&reset=1','access CiviContribute','',240,1,0,2),(243,1,'Pledge Reports','Pledge Reports','civicrm/report/list?compid=6&reset=1','access CiviPledge','',240,1,0,3),(244,1,'Event Reports','Event Reports','civicrm/report/list?compid=1&reset=1','access CiviEvent','',240,1,0,4),(245,1,'Mailing Reports','Mailing Reports','civicrm/report/list?compid=4&reset=1','access CiviMail','',240,1,0,5),(246,1,'Membership Reports','Membership Reports','civicrm/report/list?compid=3&reset=1','access CiviMember','',240,1,0,6),(247,1,'Campaign Reports','Campaign Reports','civicrm/report/list?compid=9&reset=1','interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',240,1,0,7),(248,1,'Case Reports','Case Reports','civicrm/report/list?compid=7&reset=1','access my cases and activities,access all cases and activities,administer CiviCase','OR',240,1,0,8),(249,1,'Grant Reports','Grant Reports','civicrm/report/list?compid=5&reset=1','access CiviGrant','',240,1,0,9),(250,1,'All Reports','All Reports','civicrm/report/list?reset=1','access CiviReport','',240,1,1,10),(251,1,'New Student','New Student','civicrm/contact/add?ct=Individual&cst=Student&reset=1','add contacts','',16,1,NULL,1),(252,1,'New Parent','New Parent','civicrm/contact/add?ct=Individual&cst=Parent&reset=1','add contacts','',16,1,NULL,2),(253,1,'New Staff','New Staff','civicrm/contact/add?ct=Individual&cst=Staff&reset=1','add contacts','',16,1,NULL,3),(254,1,'New Team','New Team','civicrm/contact/add?ct=Organization&cst=Team&reset=1','add contacts','',18,1,NULL,1),(255,1,'New Sponsor','New Sponsor','civicrm/contact/add?ct=Organization&cst=Sponsor&reset=1','add contacts','',18,1,NULL,2); +INSERT INTO `civicrm_navigation` (`id`, `domain_id`, `label`, `name`, `url`, `permission`, `permission_operator`, `parent_id`, `is_active`, `has_separator`, `weight`) VALUES (1,1,'Home','Home','civicrm/dashboard?reset=1',NULL,'',NULL,1,NULL,0),(2,1,'Search','Search...',NULL,NULL,'',NULL,1,NULL,10),(3,1,'Find Contacts','Find Contacts','civicrm/contact/search?reset=1',NULL,'',2,1,NULL,1),(4,1,'Advanced Search','Advanced Search','civicrm/contact/search/advanced?reset=1',NULL,'',2,1,NULL,2),(5,1,'Full-text Search','Full-text Search','civicrm/contact/search/custom?csid=15&reset=1',NULL,'',2,1,NULL,3),(6,1,'Search Builder','Search Builder','civicrm/contact/search/builder?reset=1',NULL,'',2,1,1,4),(7,1,'Find Cases','Find Cases','civicrm/case/search?reset=1','access my cases and activities,access all cases and activities','OR',2,1,NULL,5),(8,1,'Find Contributions','Find Contributions','civicrm/contribute/search?reset=1','access CiviContribute','',2,1,NULL,6),(9,1,'Find Mailings','Find Mailings','civicrm/mailing?reset=1','access CiviMail','',2,1,NULL,7),(10,1,'Find Memberships','Find Memberships','civicrm/member/search?reset=1','access CiviMember','',2,1,NULL,8),(11,1,'Find Participants','Find Participants','civicrm/event/search?reset=1','access CiviEvent','',2,1,NULL,9),(12,1,'Find Pledges','Find Pledges','civicrm/pledge/search?reset=1','access CiviPledge','',2,1,NULL,10),(13,1,'Find Activities','Find Activities','civicrm/activity/search?reset=1',NULL,'',2,1,1,11),(14,1,'Custom Searches','Custom Searches','civicrm/contact/search/custom/list?reset=1',NULL,'',2,1,NULL,12),(15,1,'Contacts','Contacts',NULL,NULL,'',NULL,1,NULL,20),(16,1,'New Individual','New Individual','civicrm/contact/add?reset=1&ct=Individual','add contacts','',15,1,NULL,1),(17,1,'New Household','New Household','civicrm/contact/add?reset=1&ct=Household','add contacts','',15,1,NULL,2),(18,1,'New Organization','New Organization','civicrm/contact/add?reset=1&ct=Organization','add contacts','',15,1,1,3),(19,1,'Contact Reports','Contact Reports','civicrm/report/list?compid=99&reset=1','access CiviReport','',15,1,1,4),(20,1,'New Activity','New Activity','civicrm/activity?reset=1&action=add&context=standalone',NULL,'',15,1,NULL,5),(21,1,'New Email','New Email','civicrm/activity/email/add?atype=3&action=add&reset=1&context=standalone',NULL,'',15,1,1,6),(22,1,'Import Contacts','Import Contacts','civicrm/import/contact?reset=1','import contacts','',15,1,NULL,7),(23,1,'Import Activities','Import Activities','civicrm/import/activity?reset=1','import contacts','',15,1,1,8),(24,1,'New Group','New Group','civicrm/group/add?reset=1','edit groups','',15,1,NULL,9),(25,1,'Manage Groups','Manage Groups','civicrm/group?reset=1','access CiviCRM','',15,1,1,10),(26,1,'New Tag','New Tag','civicrm/admin/tag?reset=1&action=add','administer CiviCRM','',15,1,NULL,11),(27,1,'Manage Tags (Categories)','Manage Tags (Categories)','civicrm/admin/tag?reset=1','administer CiviCRM','',15,1,1,12),(28,1,'Find and Merge Duplicate Contacts','Find and Merge Duplicate Contacts','civicrm/contact/deduperules?reset=1','administer dedupe rules,merge duplicate contacts','OR',15,1,NULL,13),(29,1,'Contributions','Contributions',NULL,'access CiviContribute','',NULL,1,NULL,30),(30,1,'Dashboard','Dashboard','civicrm/contribute?reset=1','access CiviContribute','',29,1,NULL,1),(31,1,'New Contribution','New Contribution','civicrm/contribute/add?reset=1&action=add&context=standalone','access CiviContribute,edit contributions','AND',29,1,NULL,2),(32,1,'Find Contributions','Find Contributions','civicrm/contribute/search?reset=1','access CiviContribute','',29,1,NULL,3),(33,1,'Contribution Reports','Contribution Reports','civicrm/report/list?compid=2&reset=1','access CiviContribute','',29,1,1,4),(34,1,'Import Contributions','Import Contributions','civicrm/contribute/import?reset=1','access CiviContribute,edit contributions','AND',29,1,1,5),(35,1,'Batch Data Entry','Batch Data Entry','civicrm/batch?reset=1','access CiviContribute','',29,1,NULL,7),(36,1,'Pledges','Pledges',NULL,'access CiviPledge','',29,1,1,6),(37,1,'Accounting Batches','Accounting Batches',NULL,'view own manual batches,view all manual batches','OR',29,1,1,8),(38,1,'Dashboard','Dashboard','civicrm/pledge?reset=1','access CiviPledge','',36,1,NULL,1),(39,1,'New Pledge','New Pledge','civicrm/pledge/add?reset=1&action=add&context=standalone','access CiviPledge,edit pledges','AND',36,1,NULL,2),(40,1,'Find Pledges','Find Pledges','civicrm/pledge/search?reset=1','access CiviPledge','',36,1,NULL,3),(41,1,'Pledge Reports','Pledge Reports','civicrm/report/list?compid=6&reset=1','access CiviPledge','',36,1,0,4),(42,1,'New Contribution Page','New Contribution Page','civicrm/admin/contribute/add?reset=1&action=add','access CiviContribute,administer CiviCRM','AND',29,1,NULL,9),(43,1,'Manage Contribution Pages','Manage Contribution Pages','civicrm/admin/contribute?reset=1','access CiviContribute,administer CiviCRM','AND',29,1,1,10),(44,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=contribute','access CiviContribute,administer CiviCRM','AND',29,1,NULL,11),(45,1,'Premiums (Thank-you Gifts)','Premiums','civicrm/admin/contribute/managePremiums?reset=1','access CiviContribute,administer CiviCRM','AND',29,1,1,12),(46,1,'New Price Set','New Price Set','civicrm/admin/price?reset=1&action=add','access CiviContribute,administer CiviCRM','AND',29,1,NULL,13),(47,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1','access CiviContribute,administer CiviCRM','AND',29,1,NULL,14),(48,1,'New Batch','New Batch','civicrm/financial/batch?reset=1&action=add','create manual batch','AND',37,1,NULL,1),(49,1,'Open Batches','Open Batches','civicrm/financial/financialbatches?reset=1&batchStatus=1','view own manual batches,view all manual batches','OR',37,1,NULL,2),(50,1,'Closed Batches','Closed Batches','civicrm/financial/financialbatches?reset=1&batchStatus=2','view own manual batches,view all manual batches','OR',37,1,NULL,3),(51,1,'Exported Batches','Exported Batches','civicrm/financial/financialbatches?reset=1&batchStatus=5','view own manual batches,view all manual batches','OR',37,1,NULL,4),(52,1,'Events','Events',NULL,'access CiviEvent','',NULL,1,NULL,40),(53,1,'Dashboard','CiviEvent Dashboard','civicrm/event?reset=1','access CiviEvent','',52,1,NULL,1),(54,1,'Register Event Participant','Register Event Participant','civicrm/participant/add?reset=1&action=add&context=standalone','access CiviEvent,edit event participants','AND',52,1,NULL,2),(55,1,'Find Participants','Find Participants','civicrm/event/search?reset=1','access CiviEvent','',52,1,NULL,3),(56,1,'Event Reports','Event Reports','civicrm/report/list?compid=1&reset=1','access CiviEvent','',52,1,1,4),(57,1,'Import Participants','Import Participants','civicrm/event/import?reset=1','access CiviEvent,edit event participants','AND',52,1,1,5),(58,1,'New Event','New Event','civicrm/event/add?reset=1&action=add','access CiviEvent,edit all events','AND',52,1,NULL,6),(59,1,'Manage Events','Manage Events','civicrm/event/manage?reset=1','access CiviEvent,edit all events','AND',52,1,1,7),(60,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=event','access CiviEvent,administer CiviCRM','AND',52,1,1,8),(61,1,'Event Templates','Event Templates','civicrm/admin/eventTemplate?reset=1','access CiviEvent,edit all events','AND',52,1,1,9),(62,1,'New Price Set','New Price Set','civicrm/admin/price?reset=1&action=add','access CiviEvent,edit all events','AND',52,1,NULL,10),(63,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1','access CiviEvent,edit all events','AND',52,1,NULL,11),(64,1,'Mailings','Mailings',NULL,'access CiviMail,create mailings,approve mailings,schedule mailings','OR',NULL,1,NULL,50),(65,1,'New Mailing','New Mailing','civicrm/mailing/send?reset=1','access CiviMail,create mailings','OR',64,1,NULL,1),(66,1,'Draft and Unscheduled Mailings','Draft and Unscheduled Mailings','civicrm/mailing/browse/unscheduled?reset=1&scheduled=false','access CiviMail,create mailings,schedule mailings','OR',64,1,NULL,2),(67,1,'Scheduled and Sent Mailings','Scheduled and Sent Mailings','civicrm/mailing/browse/scheduled?reset=1&scheduled=true','access CiviMail,approve mailings,create mailings,schedule mailings','OR',64,1,NULL,3),(68,1,'Archived Mailings','Archived Mailings','civicrm/mailing/browse/archived?reset=1','access CiviMail,create mailings','OR',64,1,NULL,4),(69,1,'Mailing Reports','Mailing Reports','civicrm/report/list?compid=4&reset=1','access CiviMail','',64,1,1,5),(70,1,'Headers, Footers, and Automated Messages','Headers, Footers, and Automated Messages','civicrm/admin/component?reset=1','access CiviMail,administer CiviCRM','AND',64,1,NULL,6),(71,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1','administer CiviCRM','',64,1,NULL,7),(72,1,'From Email Addresses','From Email Addresses','civicrm/admin/options/from_email_address?reset=1','administer CiviCRM','',64,1,1,8),(73,1,'New SMS','New SMS','civicrm/sms/send?reset=1','administer CiviCRM',NULL,64,1,NULL,9),(74,1,'Find Mass SMS','Find Mass SMS','civicrm/mailing/browse?reset=1&sms=1','administer CiviCRM',NULL,64,1,1,10),(75,1,'New A/B Test','New A/B Test','civicrm/a/#/abtest/new','access CiviMail,create mailings','OR',64,1,NULL,15),(76,1,'Manage A/B Tests','Manage A/B Tests','civicrm/a/#/abtest','access CiviMail,create mailings','OR',64,1,1,16),(77,1,'Memberships','Memberships',NULL,'access CiviMember','',NULL,1,NULL,60),(78,1,'Dashboard','Dashboard','civicrm/member?reset=1','access CiviMember','',77,1,NULL,1),(79,1,'New Membership','New Membership','civicrm/member/add?reset=1&action=add&context=standalone','access CiviMember,edit memberships','AND',77,1,NULL,2),(80,1,'Find Memberships','Find Memberships','civicrm/member/search?reset=1','access CiviMember','',77,1,NULL,3),(81,1,'Membership Reports','Membership Reports','civicrm/report/list?compid=3&reset=1','access CiviMember','',77,1,1,4),(82,1,'Batch Data Entry','Batch Data Entry','civicrm/batch?reset=1','access CiviContribute','',77,1,NULL,5),(83,1,'Import Memberships','Import Members','civicrm/member/import?reset=1','access CiviMember,edit memberships','AND',77,1,1,6),(84,1,'New Price Set','New Price Set','civicrm/admin/price?reset=1&action=add','access CiviMember,administer CiviCRM','AND',77,1,NULL,7),(85,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1','access CiviMember,administer CiviCRM','AND',77,1,NULL,8),(86,1,'Campaigns','Campaigns',NULL,'interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',NULL,1,NULL,70),(87,1,'Dashboard','Dashboard','civicrm/campaign?reset=1','manage campaign,administer CiviCampaign','OR',86,1,NULL,1),(88,1,'Surveys','Survey Dashboard','civicrm/campaign?reset=1&subPage=survey','manage campaign,administer CiviCampaign','OR',87,1,NULL,1),(89,1,'Petitions','Petition Dashboard','civicrm/campaign?reset=1&subPage=petition','manage campaign,administer CiviCampaign','OR',87,1,NULL,2),(90,1,'Campaigns','Campaign Dashboard','civicrm/campaign?reset=1&subPage=campaign','manage campaign,administer CiviCampaign','OR',87,1,NULL,3),(91,1,'New Campaign','New Campaign','civicrm/campaign/add?reset=1','manage campaign,administer CiviCampaign','OR',86,1,NULL,2),(92,1,'New Survey','New Survey','civicrm/survey/add?reset=1','manage campaign,administer CiviCampaign','OR',86,1,NULL,3),(93,1,'New Petition','New Petition','civicrm/petition/add?reset=1','manage campaign,administer CiviCampaign','OR',86,1,NULL,4),(94,1,'Reserve Respondents','Reserve Respondents','civicrm/survey/search?reset=1&op=reserve','administer CiviCampaign,manage campaign,reserve campaign contacts','OR',86,1,NULL,5),(95,1,'Interview Respondents','Interview Respondents','civicrm/survey/search?reset=1&op=interview','administer CiviCampaign,manage campaign,interview campaign contacts','OR',86,1,NULL,6),(96,1,'Release Respondents','Release Respondents','civicrm/survey/search?reset=1&op=release','administer CiviCampaign,manage campaign,release campaign contacts','OR',86,1,NULL,7),(97,1,'Campaign Reports','Campaign Reports','civicrm/report/list?compid=9&reset=1','interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',86,1,1,8),(98,1,'Conduct Survey','Conduct Survey','civicrm/campaign/vote?reset=1','administer CiviCampaign,manage campaign,reserve campaign contacts,interview campaign contacts','OR',86,1,NULL,9),(99,1,'GOTV (Voter Tracking)','Voter Listing','civicrm/campaign/gotv?reset=1','administer CiviCampaign,manage campaign,release campaign contacts,gotv campaign contacts','OR',86,1,NULL,10),(100,1,'Cases','Cases',NULL,'access my cases and activities,access all cases and activities','OR',NULL,1,NULL,80),(101,1,'Dashboard','Dashboard','civicrm/case?reset=1','access my cases and activities,access all cases and activities','OR',100,1,NULL,1),(102,1,'New Case','New Case','civicrm/case/add?reset=1&action=add&atype=13&context=standalone','add cases,access all cases and activities','OR',100,1,NULL,2),(103,1,'Find Cases','Find Cases','civicrm/case/search?reset=1','access my cases and activities,access all cases and activities','OR',100,1,1,3),(104,1,'Case Reports','Case Reports','civicrm/report/list?compid=7&reset=1','access my cases and activities,access all cases and activities,administer CiviCase','OR',100,1,0,4),(105,1,'Grants','Grants',NULL,'access CiviGrant','',NULL,1,NULL,90),(106,1,'Dashboard','Dashboard','civicrm/grant?reset=1','access CiviGrant','',105,1,NULL,1),(107,1,'New Grant','New Grant','civicrm/grant/add?reset=1&action=add&context=standalone','access CiviGrant,edit grants','AND',105,1,NULL,2),(108,1,'Find Grants','Find Grants','civicrm/grant/search?reset=1','access CiviGrant','',105,1,1,3),(109,1,'Grant Reports','Grant Reports','civicrm/report/list?compid=5&reset=1','access CiviGrant','',105,1,0,4),(110,1,'Administer','Administer',NULL,'administer CiviCRM','',NULL,1,NULL,100),(111,1,'Administration Console','Administration Console','civicrm/admin?reset=1','administer CiviCRM','',110,1,NULL,1),(112,1,'Configuration Checklist','Configuration Checklist','civicrm/admin/configtask?reset=1','administer CiviCRM','',111,1,NULL,1),(113,1,'Customize Data and Screens','Customize Data and Screens',NULL,'administer CiviCRM','',110,1,NULL,3),(114,1,'Custom Fields','Custom Fields','civicrm/admin/custom/group?reset=1','administer CiviCRM','',113,1,NULL,1),(115,1,'Profiles','Profiles','civicrm/admin/uf/group?reset=1','administer CiviCRM','',113,1,NULL,2),(116,1,'Tags (Categories)','Tags (Categories)','civicrm/admin/tag?reset=1','administer CiviCRM','',113,1,NULL,3),(117,1,'Activity Types','Activity Types','civicrm/admin/options/activity_type?reset=1','administer CiviCRM','',113,1,NULL,4),(118,1,'Relationship Types','Relationship Types','civicrm/admin/reltype?reset=1','administer CiviCRM','',113,1,NULL,5),(119,1,'Contact Types','Contact Types','civicrm/admin/options/subtype?reset=1','administer CiviCRM','',113,1,NULL,6),(120,1,'Display Preferences','Display Preferences','civicrm/admin/setting/preferences/display?reset=1','administer CiviCRM','',113,1,NULL,9),(121,1,'Search Preferences','Search Preferences','civicrm/admin/setting/search?reset=1','administer CiviCRM','',113,1,NULL,10),(122,1,'Navigation Menu','Navigation Menu','civicrm/admin/menu?reset=1','administer CiviCRM','',113,1,NULL,11),(123,1,'Word Replacements','Word Replacements','civicrm/admin/options/wordreplacements?reset=1','administer CiviCRM','',113,1,NULL,12),(124,1,'Manage Custom Searches','Manage Custom Searches','civicrm/admin/options/custom_search?reset=1','administer CiviCRM','',113,1,NULL,13),(125,1,'Dropdown Options','Dropdown Options',NULL,'administer CiviCRM','',113,1,NULL,8),(126,1,'Gender Options','Gender Options','civicrm/admin/options/gender?reset=1','administer CiviCRM','',125,1,NULL,1),(127,1,'Individual Prefixes (Ms, Mr...)','Individual Prefixes (Ms, Mr...)','civicrm/admin/options/individual_prefix?reset=1','administer CiviCRM','',125,1,NULL,2),(128,1,'Individual Suffixes (Jr, Sr...)','Individual Suffixes (Jr, Sr...)','civicrm/admin/options/individual_suffix?reset=1','administer CiviCRM','',125,1,NULL,3),(129,1,'Instant Messenger Services','Instant Messenger Services','civicrm/admin/options/instant_messenger_service?reset=1','administer CiviCRM','',125,1,NULL,4),(130,1,'Location Types (Home, Work...)','Location Types (Home, Work...)','civicrm/admin/locationType?reset=1','administer CiviCRM','',125,1,NULL,5),(131,1,'Mobile Phone Providers','Mobile Phone Providers','civicrm/admin/options/mobile_provider?reset=1','administer CiviCRM','',125,1,NULL,6),(132,1,'Phone Types','Phone Types','civicrm/admin/options/phone_type?reset=1','administer CiviCRM','',125,1,NULL,7),(133,1,'Website Types','Website Types','civicrm/admin/options/website_type?reset=1','administer CiviCRM','',125,1,NULL,8),(134,1,'Communications','Communications',NULL,'administer CiviCRM','',110,1,NULL,4),(135,1,'Organization Address and Contact Info','Organization Address and Contact Info','civicrm/admin/domain?action=update&reset=1','administer CiviCRM','',134,1,NULL,1),(136,1,'FROM Email Addresses','FROM Email Addresses','civicrm/admin/options/from_email_address?reset=1','administer CiviCRM','',134,1,NULL,2),(137,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1','administer CiviCRM','',134,1,NULL,3),(138,1,'Schedule Reminders','Schedule Reminders','civicrm/admin/scheduleReminders?reset=1','administer CiviCRM','',134,1,NULL,4),(139,1,'Preferred Communication Methods','Preferred Communication Methods','civicrm/admin/options/preferred_communication_method?reset=1','administer CiviCRM','',134,1,NULL,5),(140,1,'Label Formats','Label Formats','civicrm/admin/labelFormats?reset=1','administer CiviCRM','',134,1,NULL,6),(141,1,'Print Page (PDF) Formats','Print Page (PDF) Formats','civicrm/admin/pdfFormats?reset=1','administer CiviCRM','',134,1,NULL,7),(142,1,'Communication Style Options','Communication Style Options','civicrm/admin/options/communication_style?reset=1','administer CiviCRM','',134,1,NULL,8),(143,1,'Email Greeting Formats','Email Greeting Formats','civicrm/admin/options/email_greeting?reset=1','administer CiviCRM','',134,1,NULL,9),(144,1,'Postal Greeting Formats','Postal Greeting Formats','civicrm/admin/options/postal_greeting?reset=1','administer CiviCRM','',134,1,NULL,10),(145,1,'Addressee Formats','Addressee Formats','civicrm/admin/options/addressee?reset=1','administer CiviCRM','',134,1,NULL,11),(146,1,'Localization','Localization',NULL,'administer CiviCRM','',110,1,NULL,6),(147,1,'Languages, Currency, Locations','Languages, Currency, Locations','civicrm/admin/setting/localization?reset=1','administer CiviCRM','',146,1,NULL,1),(148,1,'Address Settings','Address Settings','civicrm/admin/setting/preferences/address?reset=1','administer CiviCRM','',146,1,NULL,2),(149,1,'Date Formats','Date Formats','civicrm/admin/setting/date?reset=1','administer CiviCRM','',146,1,NULL,3),(150,1,'Preferred Language Options','Preferred Language Options','civicrm/admin/options/languages?reset=1','administer CiviCRM','',146,1,NULL,4),(151,1,'Users and Permissions','Users and Permissions',NULL,'administer CiviCRM','',110,1,NULL,7),(152,1,'Permissions (Access Control)','Permissions (Access Control)','civicrm/admin/access?reset=1','administer CiviCRM','',151,1,NULL,1),(153,1,'Synchronize Users to Contacts','Synchronize Users to Contacts','civicrm/admin/synchUser?reset=1','administer CiviCRM','',151,1,NULL,2),(154,1,'System Settings','System Settings',NULL,'administer CiviCRM','',110,1,NULL,8),(155,1,'Enable CiviCRM Components','Enable Components','civicrm/admin/setting/component?reset=1','administer CiviCRM','',154,1,NULL,1),(156,1,'Manage Extensions','Manage Extensions','civicrm/admin/extensions?reset=1','administer CiviCRM','',154,1,NULL,2),(157,1,'Outbound Email (SMTP/Sendmail)','Outbound Email','civicrm/admin/setting/smtp?reset=1','administer CiviCRM','',154,1,NULL,3),(158,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1','administer CiviCRM','',154,1,NULL,4),(159,1,'Mapping and Geocoding','Mapping and Geocoding','civicrm/admin/setting/mapping?reset=1','administer CiviCRM','',154,1,NULL,5),(160,1,'Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)','Misc (Undelete, PDFs, Limits, Logging, Captcha, etc.)','civicrm/admin/setting/misc?reset=1','administer CiviCRM','',154,1,NULL,6),(161,1,'Directories','Directories','civicrm/admin/setting/path?reset=1','administer CiviCRM','',154,1,NULL,7),(162,1,'Resource URLs','Resource URLs','civicrm/admin/setting/url?reset=1','administer CiviCRM','',154,1,NULL,8),(163,1,'Cleanup Caches and Update Paths','Cleanup Caches and Update Paths','civicrm/admin/setting/updateConfigBackend?reset=1','administer CiviCRM','',154,1,NULL,9),(164,1,'CMS Database Integration','CMS Integration','civicrm/admin/setting/uf?reset=1','administer CiviCRM','',154,1,NULL,10),(165,1,'Safe File Extensions','Safe File Extensions','civicrm/admin/options/safe_file_extension?reset=1','administer CiviCRM','',154,1,NULL,11),(166,1,'Option Groups','Option Groups','civicrm/admin/options?reset=1','administer CiviCRM','',154,1,NULL,12),(167,1,'Import/Export Mappings','Import/Export Mappings','civicrm/admin/mapping?reset=1','administer CiviCRM','',154,1,NULL,13),(168,1,'Debugging and Error Handling','Debugging and Error Handling','civicrm/admin/setting/debug?reset=1','administer CiviCRM','',154,1,NULL,14),(169,1,'Multi Site Settings','Multi Site Settings','civicrm/admin/setting/preferences/multisite?reset=1','administer CiviCRM','',154,1,NULL,15),(170,1,'Scheduled Jobs','Scheduled Jobs','civicrm/admin/job?reset=1','administer CiviCRM','',154,1,NULL,16),(171,1,'SMS Providers','SMS Providers','civicrm/admin/sms/provider?reset=1','administer CiviCRM','',154,1,NULL,17),(172,1,'CiviCampaign','CiviCampaign',NULL,'administer CiviCampaign,administer CiviCRM','AND',110,1,NULL,9),(173,1,'Survey Types','Survey Types','civicrm/admin/campaign/surveyType?reset=1','administer CiviCampaign','',172,1,NULL,1),(174,1,'Campaign Types','Campaign Types','civicrm/admin/options/campaign_type?reset=1','administer CiviCampaign','',172,1,NULL,2),(175,1,'Campaign Status','Campaign Status','civicrm/admin/options/campaign_status?reset=1','administer CiviCampaign','',172,1,NULL,3),(176,1,'Engagement Index','Engagement Index','civicrm/admin/options/engagement_index?reset=1','administer CiviCampaign','',172,1,NULL,4),(177,1,'CiviCampaign Component Settings','CiviCampaign Component Settings','civicrm/admin/setting/preferences/campaign?reset=1','administer CiviCampaign','',172,1,NULL,5),(178,1,'CiviCase','CiviCase',NULL,'administer CiviCase',NULL,110,1,NULL,10),(179,1,'Case Types','Case Types','civicrm/a/#/caseType','administer CiviCase',NULL,178,1,NULL,1),(180,1,'Redaction Rules','Redaction Rules','civicrm/admin/options/redaction_rule?reset=1','administer CiviCase',NULL,178,1,NULL,2),(181,1,'Case Statuses','Case Statuses','civicrm/admin/options/case_status?reset=1','administer CiviCase',NULL,178,1,NULL,3),(182,1,'Encounter Medium','Encounter Medium','civicrm/admin/options/encounter_medium?reset=1','administer CiviCase',NULL,178,1,NULL,4),(183,1,'CiviContribute','CiviContribute',NULL,'access CiviContribute,administer CiviCRM','AND',110,1,NULL,11),(184,1,'New Contribution Page','New Contribution Page','civicrm/admin/contribute?reset=1&action=add','access CiviContribute,administer CiviCRM','AND',183,1,NULL,6),(185,1,'Manage Contribution Pages','Manage Contribution Pages','civicrm/admin/contribute?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,1,7),(186,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=contribute','access CiviContribute,administer CiviCRM','AND',183,1,NULL,8),(187,1,'Premiums (Thank-you Gifts)','Premiums','civicrm/admin/contribute/managePremiums?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,1,9),(188,1,'Financial Types','Financial Types','civicrm/admin/financial/financialType?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,NULL,10),(189,1,'Financial Accounts','Financial Accounts','civicrm/admin/financial/financialAccount?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,NULL,11),(190,1,'Payment Instruments','Payment Instruments','civicrm/admin/options/payment_instrument?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,NULL,12),(191,1,'Accepted Credit Cards','Accepted Credit Cards','civicrm/admin/options/accept_creditcard?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,NULL,13),(192,1,'Soft Credit Types','Soft Credit Types','civicrm/admin/options/soft_credit_type?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,1,14),(193,1,'New Price Set','New Price Set','civicrm/admin/price?reset=1&action=add','access CiviContribute,administer CiviCRM','AND',183,1,NULL,15),(194,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1','access CiviContribute,administer CiviCRM','AND',183,1,NULL,16),(195,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1','administer CiviCRM','',183,1,NULL,17),(196,1,'CiviContribute Component Settings','CiviContribute Component Settings','civicrm/admin/setting/preferences/contribute?reset=1','administer CiviCRM','',183,1,NULL,18),(197,1,'CiviEvent','CiviEvent',NULL,'access CiviEvent,administer CiviCRM','AND',110,1,NULL,12),(198,1,'New Event','New Event','civicrm/event/add?reset=1&action=add','access CiviEvent,administer CiviCRM','AND',197,1,NULL,1),(199,1,'Manage Events','Manage Events','civicrm/event/manage?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,1,2),(200,1,'Personal Campaign Pages','Personal Campaign Pages','civicrm/admin/pcp?reset=1&page_type=event','access CiviEvent,administer CiviCRM','AND',197,1,1,3),(201,1,'Event Templates','Event Templates','civicrm/admin/eventTemplate?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,1,4),(202,1,'New Price Set','New Price Set','civicrm/admin/price?reset=1&action=add','access CiviEvent,administer CiviCRM','AND',197,1,NULL,5),(203,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,1,6),(204,1,'Event Types','Event Types','civicrm/admin/options/event_type?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,NULL,7),(205,1,'Participant Statuses','Participant Statuses','civicrm/admin/participant_status?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,NULL,8),(206,1,'Participant Roles','Participant Roles','civicrm/admin/options/participant_role?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,NULL,9),(207,1,'Participant Listing Options','Participant Listing Options','civicrm/admin/options/participant_listing?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,NULL,10),(208,1,'Event Name Badge Layouts','Event Name Badge Layouts','civicrm/admin/badgelayout?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,NULL,11),(209,1,'Payment Processors','Payment Processors','civicrm/admin/paymentProcessor?reset=1','administer CiviCRM','',197,1,NULL,12),(210,1,'CiviEvent Component Settings','CiviEvent Component Settings','civicrm/admin/setting/preferences/event?reset=1','access CiviEvent,administer CiviCRM','AND',197,1,NULL,13),(211,1,'CiviGrant','CiviGrant',NULL,'access CiviGrant,administer CiviCRM','AND',110,1,NULL,13),(212,1,'Grant Types','Grant Types','civicrm/admin/options/grant_type?reset=1','access CiviGrant,administer CiviCRM','AND',211,1,NULL,1),(213,1,'Grant Status','Grant Status','civicrm/admin/options/grant_status?reset=1','access CiviGrant,administer CiviCRM','AND',211,1,NULL,2),(214,1,'CiviMail','CiviMail',NULL,'access CiviMail,administer CiviCRM','AND',110,1,NULL,14),(215,1,'Headers, Footers, and Automated Messages','Headers, Footers, and Automated Messages','civicrm/admin/component?reset=1','access CiviMail,administer CiviCRM','AND',214,1,NULL,1),(216,1,'Message Templates','Message Templates','civicrm/admin/messageTemplates?reset=1','administer CiviCRM','',214,1,NULL,2),(217,1,'From Email Addresses','From Email Addresses','civicrm/admin/options/from_email_address?reset=1','administer CiviCRM','',214,1,NULL,3),(218,1,'Mail Accounts','Mail Accounts','civicrm/admin/mailSettings?reset=1','access CiviMail,administer CiviCRM','AND',214,1,NULL,4),(219,1,'Mailer Settings','Mailer Settings','civicrm/admin/mail?reset=1','access CiviMail,administer CiviCRM','AND',214,1,NULL,5),(220,1,'CiviMail Component Settings','CiviMail Component Settings','civicrm/admin/setting/preferences/mailing?reset=1','access CiviMail,administer CiviCRM','AND',214,1,NULL,6),(221,1,'CiviMember','CiviMember',NULL,'access CiviMember,administer CiviCRM','AND',110,1,NULL,15),(222,1,'Membership Types','Membership Types','civicrm/admin/member/membershipType?reset=1','access CiviMember,administer CiviCRM','AND',221,1,NULL,1),(223,1,'Membership Status Rules','Membership Status Rules','civicrm/admin/member/membershipStatus?reset=1','access CiviMember,administer CiviCRM','AND',221,1,1,2),(224,1,'New Price Set','New Price Set','civicrm/admin/price?reset=1&action=add','access CiviMember,administer CiviCRM','AND',221,1,NULL,3),(225,1,'Manage Price Sets','Manage Price Sets','civicrm/admin/price?reset=1','access CiviMember,administer CiviCRM','AND',221,1,NULL,4),(226,1,'CiviMember Component Settings','CiviMember Component Settings','civicrm/admin/setting/preferences/member?reset=1','access CiviMember,administer CiviCRM','AND',221,1,NULL,5),(227,1,'CiviReport','CiviReport',NULL,'access CiviReport,administer CiviCRM','AND',110,1,NULL,16),(228,1,'All Reports','All Reports','civicrm/report/list?reset=1','access CiviReport','',227,1,NULL,1),(229,1,'Create New Report from Template','Create New Report from Template','civicrm/admin/report/template/list?reset=1','administer Reports','',227,1,NULL,2),(230,1,'Manage Templates','Manage Templates','civicrm/admin/report/options/report_template?reset=1','administer Reports','',227,1,NULL,3),(231,1,'Register Report','Register Report','civicrm/admin/report/register?reset=1','administer Reports','',227,1,NULL,4),(232,1,'Help','Help',NULL,NULL,'',NULL,1,NULL,110),(233,1,'Documentation','Documentation','http://documentation.civicrm.org',NULL,'AND',232,1,NULL,1),(234,1,'Community Forums','Community Forums','http://forum.civicrm.org',NULL,'AND',232,1,NULL,2),(235,1,'Participate','Participate','http://civicrm.org/participate',NULL,'AND',232,1,NULL,3),(236,1,'About','About','http://civicrm.org/what/whatiscivicrm',NULL,'AND',232,1,NULL,4),(237,1,'Developer','Developer',NULL,'administer CiviCRM','',232,1,NULL,5),(238,1,'API Explorer','API Explorer','civicrm/api/explorer','administer CiviCRM','',237,1,NULL,1),(239,1,'Developer Docs','Developer Docs','http://wiki.civicrm.org/confluence/display/CRMDOC/Develop','administer CiviCRM','',237,1,NULL,3),(240,1,'Reports','Reports',NULL,'access CiviReport','',NULL,1,NULL,95),(241,1,'Contact Reports','Contact Reports','civicrm/report/list?compid=99&reset=1','administer CiviCRM','',240,1,0,1),(242,1,'Contribution Reports','Contribution Reports','civicrm/report/list?compid=2&reset=1','access CiviContribute','',240,1,0,2),(243,1,'Pledge Reports','Pledge Reports','civicrm/report/list?compid=6&reset=1','access CiviPledge','',240,1,0,3),(244,1,'Event Reports','Event Reports','civicrm/report/list?compid=1&reset=1','access CiviEvent','',240,1,0,4),(245,1,'Mailing Reports','Mailing Reports','civicrm/report/list?compid=4&reset=1','access CiviMail','',240,1,0,5),(246,1,'Membership Reports','Membership Reports','civicrm/report/list?compid=3&reset=1','access CiviMember','',240,1,0,6),(247,1,'Campaign Reports','Campaign Reports','civicrm/report/list?compid=9&reset=1','interview campaign contacts,release campaign contacts,reserve campaign contacts,manage campaign,administer CiviCampaign,gotv campaign contacts','OR',240,1,0,7),(248,1,'Case Reports','Case Reports','civicrm/report/list?compid=7&reset=1','access my cases and activities,access all cases and activities,administer CiviCase','OR',240,1,0,8),(249,1,'Grant Reports','Grant Reports','civicrm/report/list?compid=5&reset=1','access CiviGrant','',240,1,0,9),(250,1,'All Reports','All Reports','civicrm/report/list?reset=1','access CiviReport','',240,1,1,10),(251,1,'New Student','New Student','civicrm/contact/add?ct=Individual&cst=Student&reset=1','add contacts','',16,1,NULL,1),(252,1,'New Parent','New Parent','civicrm/contact/add?ct=Individual&cst=Parent&reset=1','add contacts','',16,1,NULL,2),(253,1,'New Staff','New Staff','civicrm/contact/add?ct=Individual&cst=Staff&reset=1','add contacts','',16,1,NULL,3),(254,1,'New Team','New Team','civicrm/contact/add?ct=Organization&cst=Team&reset=1','add contacts','',18,1,NULL,1),(255,1,'New Sponsor','New Sponsor','civicrm/contact/add?ct=Organization&cst=Sponsor&reset=1','add contacts','',18,1,NULL,2); /*!40000 ALTER TABLE `civicrm_navigation` ENABLE KEYS */; UNLOCK TABLES; @@ -978,7 +977,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',128,'Reminder screening of \"Black\" on next Friday',1,'2014-01-28',NULL,'0'),(2,'civicrm_contact',122,'Arrange collection of funds from members',1,'2014-08-13',NULL,'0'),(3,'civicrm_contact',30,'Get the registration done for NGO status',1,'2014-04-24',NULL,'0'),(4,'civicrm_contact',55,'Arrange for cricket match with Sunil Gavaskar',1,'2014-11-11',NULL,'0'),(5,'civicrm_contact',23,'Reminder screening of \"Black\" on next Friday',1,'2014-04-15',NULL,'0'),(6,'civicrm_contact',177,'Invite members for the Steve Prefontaine 10k dream run',1,'2014-07-20',NULL,'0'),(7,'civicrm_contact',39,'Arrange for cricket match with Sunil Gavaskar',1,'2014-11-18',NULL,'0'),(8,'civicrm_contact',75,'Invite members for the Steve Prefontaine 10k dream run',1,'2014-03-12',NULL,'0'),(9,'civicrm_contact',195,'Organize the Terry Fox run',1,'2014-10-16',NULL,'0'),(10,'civicrm_contact',33,'Invite members for the Steve Prefontaine 10k dream run',1,'2014-11-26',NULL,'0'),(11,'civicrm_contact',41,'Get the registration done for NGO status',1,'2014-02-02',NULL,'0'),(12,'civicrm_contact',159,'Reminder screening of \"Black\" on next Friday',1,'2014-11-16',NULL,'0'),(13,'civicrm_contact',117,'Connect for presentation',1,'2014-11-26',NULL,'0'),(14,'civicrm_contact',25,'Reminder screening of \"Black\" on next Friday',1,'2014-03-02',NULL,'0'),(15,'civicrm_contact',73,'Get the registration done for NGO status',1,'2014-09-08',NULL,'0'),(16,'civicrm_contact',152,'Reminder screening of \"Black\" on next Friday',1,'2014-11-06',NULL,'0'),(17,'civicrm_contact',21,'Connect for presentation',1,'2014-03-05',NULL,'0'),(18,'civicrm_contact',45,'Invite members for the Steve Prefontaine 10k dream run',1,'2014-04-06',NULL,'0'),(19,'civicrm_contact',151,'Send newsletter for April 2005',1,'2014-09-10',NULL,'0'),(20,'civicrm_contact',57,'Arrange collection of funds from members',1,'2014-06-12',NULL,'0'); +INSERT INTO `civicrm_note` (`id`, `entity_table`, `entity_id`, `note`, `contact_id`, `modified_date`, `subject`, `privacy`) VALUES (1,'civicrm_contact',12,'Organize the Terry Fox run',1,'2014-11-30',NULL,'0'),(2,'civicrm_contact',45,'Send reminder for annual dinner',1,'2014-01-24',NULL,'0'),(3,'civicrm_contact',92,'Connect for presentation',1,'2014-09-11',NULL,'0'),(4,'civicrm_contact',152,'Organize the Terry Fox run',1,'2014-06-09',NULL,'0'),(5,'civicrm_contact',182,'Invite members for the Steve Prefontaine 10k dream run',1,'2014-07-03',NULL,'0'),(6,'civicrm_contact',82,'Contact the Commisioner of Charities',1,'2014-12-27',NULL,'0'),(7,'civicrm_contact',80,'Send reminder for annual dinner',1,'2014-07-25',NULL,'0'),(8,'civicrm_contact',51,'Send newsletter for April 2005',1,'2015-01-11',NULL,'0'),(9,'civicrm_contact',138,'Organize the Terry Fox run',1,'2014-03-06',NULL,'0'),(10,'civicrm_contact',42,'Reminder screening of \"Black\" on next Friday',1,'2014-06-21',NULL,'0'),(11,'civicrm_contact',176,'Chart out route map for next 10k run',1,'2014-02-13',NULL,'0'),(12,'civicrm_contact',80,'Organize the Terry Fox run',1,'2014-03-06',NULL,'0'),(13,'civicrm_contact',49,'Send newsletter for April 2005',1,'2014-05-30',NULL,'0'),(14,'civicrm_contact',147,'Invite members for the Steve Prefontaine 10k dream run',1,'2014-10-07',NULL,'0'),(15,'civicrm_contact',125,'Contact the Commisioner of Charities',1,'2014-08-06',NULL,'0'),(16,'civicrm_contact',15,'Contact the Commisioner of Charities',1,'2014-10-03',NULL,'0'),(17,'civicrm_contact',187,'Arrange collection of funds from members',1,'2014-04-07',NULL,'0'),(18,'civicrm_contact',23,'Send newsletter for April 2005',1,'2014-12-02',NULL,'0'),(19,'civicrm_contact',60,'Send reminder for annual dinner',1,'2014-10-14',NULL,'0'),(20,'civicrm_contact',94,'Connect for presentation',1,'2014-05-31',NULL,'0'); /*!40000 ALTER TABLE `civicrm_note` ENABLE KEYS */; UNLOCK TABLES; @@ -997,7 +996,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_option_group` WRITE; /*!40000 ALTER TABLE `civicrm_option_group` DISABLE KEYS */; -INSERT INTO `civicrm_option_group` (`id`, `name`, `title`, `description`, `is_reserved`, `is_active`, `is_locked`) VALUES (1,'preferred_communication_method','Preferred Communication Method',NULL,1,1,0),(2,'activity_type','Activity Type',NULL,1,1,0),(3,'gender','Gender',NULL,1,1,0),(4,'instant_messenger_service','Instant Messenger (IM) screen-names',NULL,1,1,0),(5,'mobile_provider','Mobile Phone Providers',NULL,1,1,0),(6,'individual_prefix','Individual contact prefixes',NULL,1,1,0),(7,'individual_suffix','Individual contact suffixes',NULL,1,1,0),(8,'acl_role','ACL Role',NULL,1,1,0),(9,'accept_creditcard','Accepted Credit Cards',NULL,1,1,0),(10,'payment_instrument','Payment Instruments',NULL,1,1,0),(11,'contribution_status','Contribution Status',NULL,1,1,1),(12,'pcp_status','PCP Status',NULL,1,1,1),(13,'participant_role','Participant Role',NULL,1,1,0),(14,'event_type','Event Type',NULL,1,1,0),(15,'contact_view_options','Contact View Options',NULL,1,1,1),(16,'contact_smart_group_display','Contact Smart Group View Options',NULL,1,1,1),(17,'contact_edit_options','Contact Edit Options',NULL,1,1,1),(18,'advanced_search_options','Advanced Search Options',NULL,1,1,1),(19,'user_dashboard_options','User Dashboard Options',NULL,1,1,1),(20,'address_options','Addressing Options',NULL,1,1,0),(21,'group_type','Group Type',NULL,1,1,0),(22,'grant_status','Grant status',NULL,1,1,0),(23,'grant_type','Grant Type',NULL,1,1,0),(24,'custom_search','Custom Search',NULL,1,1,0),(25,'activity_status','Activity Status',NULL,1,1,0),(26,'case_type','Case Type',NULL,1,1,0),(27,'case_status','Case Status',NULL,1,1,0),(28,'participant_listing','Participant Listing',NULL,1,1,0),(29,'safe_file_extension','Safe File Extension',NULL,1,1,0),(30,'from_email_address','From Email Address',NULL,1,1,0),(31,'mapping_type','Mapping Type',NULL,1,1,1),(32,'wysiwyg_editor','WYSIWYG Editor',NULL,1,1,0),(33,'recur_frequency_units','Recurring Frequency Units',NULL,1,1,0),(34,'phone_type','Phone Type',NULL,1,1,0),(35,'custom_data_type','Custom Data Type',NULL,1,1,0),(36,'visibility','Visibility',NULL,1,1,0),(37,'mail_protocol','Mail Protocol',NULL,1,1,0),(38,'priority','Priority',NULL,1,1,0),(39,'redaction_rule','Redaction Rule',NULL,1,1,0),(40,'report_template','Report Template',NULL,1,1,0),(41,'email_greeting','Email Greeting Type',NULL,1,1,0),(42,'postal_greeting','Postal Greeting Type',NULL,1,1,0),(43,'addressee','Addressee Type',NULL,1,1,0),(44,'contact_autocomplete_options','Autocomplete Contact Search',NULL,1,1,1),(45,'contact_reference_options','Contact Reference Autocomplete Options',NULL,1,1,1),(46,'website_type','Website Type',NULL,1,1,0),(47,'tag_used_for','Tag Used For',NULL,1,1,1),(48,'currencies_enabled','Currencies Enabled',NULL,1,1,0),(49,'event_badge','Event Name Badge',NULL,1,1,0),(50,'note_privacy','Privacy levels for notes',NULL,1,1,0),(51,'campaign_type','Campaign Type',NULL,1,1,0),(52,'campaign_status','Campaign Status',NULL,1,1,0),(53,'system_extensions','CiviCRM Extensions',NULL,1,1,0),(54,'mail_approval_status','CiviMail Approval Status',NULL,1,1,0),(55,'engagement_index','Engagement Index',NULL,1,1,0),(56,'cg_extend_objects','Objects a custom group extends to',NULL,1,1,0),(57,'paper_size','Paper Size',NULL,1,1,0),(58,'pdf_format','PDF Page Format',NULL,1,1,0),(59,'label_format','Mailing Label Format',NULL,1,1,0),(60,'activity_contacts','Activity Contacts',NULL,1,1,1),(61,'account_relationship','Account Relationship',NULL,1,1,0),(62,'event_contacts','Event Recipients',NULL,1,1,0),(63,'conference_slot','Conference Slot',NULL,1,1,0),(64,'batch_type','Batch Type',NULL,1,1,1),(65,'batch_mode','Batch Mode',NULL,1,1,1),(66,'batch_status','Batch Status',NULL,1,1,1),(67,'sms_api_type','Api Type',NULL,1,1,0),(68,'sms_provider_name','Sms Provider Internal Name',NULL,1,1,0),(69,'auto_renew_options','Auto Renew Options',NULL,1,1,1),(70,'financial_account_type','Financial Account Type',NULL,1,1,0),(71,'financial_item_status','Financial Item Status',NULL,1,1,1),(72,'label_type','Label Type',NULL,1,1,0),(73,'name_badge','Name Badge Format',NULL,1,1,0),(74,'communication_style','Communication Style',NULL,1,1,0),(75,'msg_mode','Message Mode',NULL,1,1,0),(76,'contact_date_reminder_options','Contact Date Reminder Options',NULL,1,1,1),(77,'mailing_ab_status','Mailing A/B Status',NULL,1,1,1),(78,'mailing_ab_testing_criteria','Mailing A/B Testing Criteria',NULL,1,1,1),(79,'mailing_ab_winner_criteria','Mailing A/B Testing Winner Criteria',NULL,1,1,1),(80,'languages','Languages','List of Languages',1,1,NULL),(81,'encounter_medium','Encounter Medium','Encounter medium for case activities (e.g. In Person, By Phone, etc.)',1,1,NULL),(82,'msg_tpl_workflow_case','Message Template Workflow for Cases','Message Template Workflow for Cases',1,1,NULL),(83,'msg_tpl_workflow_contribution','Message Template Workflow for Contributions','Message Template Workflow for Contributions',1,1,NULL),(84,'msg_tpl_workflow_event','Message Template Workflow for Events','Message Template Workflow for Events',1,1,NULL),(85,'msg_tpl_workflow_friend','Message Template Workflow for Tell-a-Friend','Message Template Workflow for Tell-a-Friend',1,1,NULL),(86,'msg_tpl_workflow_membership','Message Template Workflow for Memberships','Message Template Workflow for Memberships',1,1,NULL),(87,'msg_tpl_workflow_meta','Message Template Workflow for Meta Templates','Message Template Workflow for Meta Templates',1,1,NULL),(88,'msg_tpl_workflow_pledge','Message Template Workflow for Pledges','Message Template Workflow for Pledges',1,1,NULL),(89,'msg_tpl_workflow_uf','Message Template Workflow for Profiles','Message Template Workflow for Profiles',1,1,NULL),(90,'msg_tpl_workflow_petition','Message Template Workflow for Petition','Message Template Workflow for Petition',1,1,NULL),(91,'soft_credit_type','Soft Credit Types',NULL,1,1,NULL); +INSERT INTO `civicrm_option_group` (`id`, `name`, `title`, `description`, `is_reserved`, `is_active`, `is_locked`) VALUES (1,'preferred_communication_method','Preferred Communication Method',NULL,1,1,0),(2,'activity_type','Activity Type',NULL,1,1,0),(3,'gender','Gender',NULL,1,1,0),(4,'instant_messenger_service','Instant Messenger (IM) screen-names',NULL,1,1,0),(5,'mobile_provider','Mobile Phone Providers',NULL,1,1,0),(6,'individual_prefix','Individual contact prefixes',NULL,1,1,0),(7,'individual_suffix','Individual contact suffixes',NULL,1,1,0),(8,'acl_role','ACL Role',NULL,1,1,0),(9,'accept_creditcard','Accepted Credit Cards',NULL,1,1,0),(10,'payment_instrument','Payment Instruments',NULL,1,1,0),(11,'contribution_status','Contribution Status',NULL,1,1,1),(12,'pcp_status','PCP Status',NULL,1,1,1),(13,'pcp_owner_notify','PCP owner notifications',NULL,1,1,1),(14,'participant_role','Participant Role',NULL,1,1,0),(15,'event_type','Event Type',NULL,1,1,0),(16,'contact_view_options','Contact View Options',NULL,1,1,1),(17,'contact_smart_group_display','Contact Smart Group View Options',NULL,1,1,1),(18,'contact_edit_options','Contact Edit Options',NULL,1,1,1),(19,'advanced_search_options','Advanced Search Options',NULL,1,1,1),(20,'user_dashboard_options','User Dashboard Options',NULL,1,1,1),(21,'address_options','Addressing Options',NULL,1,1,0),(22,'group_type','Group Type',NULL,1,1,0),(23,'grant_status','Grant status',NULL,1,1,0),(24,'grant_type','Grant Type',NULL,1,1,0),(25,'custom_search','Custom Search',NULL,1,1,0),(26,'activity_status','Activity Status',NULL,1,1,0),(27,'case_type','Case Type',NULL,1,1,0),(28,'case_status','Case Status',NULL,1,1,0),(29,'participant_listing','Participant Listing',NULL,1,1,0),(30,'safe_file_extension','Safe File Extension',NULL,1,1,0),(31,'from_email_address','From Email Address',NULL,1,1,0),(32,'mapping_type','Mapping Type',NULL,1,1,1),(33,'wysiwyg_editor','WYSIWYG Editor',NULL,1,1,0),(34,'recur_frequency_units','Recurring Frequency Units',NULL,1,1,0),(35,'phone_type','Phone Type',NULL,1,1,0),(36,'custom_data_type','Custom Data Type',NULL,1,1,0),(37,'visibility','Visibility',NULL,1,1,0),(38,'mail_protocol','Mail Protocol',NULL,1,1,0),(39,'priority','Priority',NULL,1,1,0),(40,'redaction_rule','Redaction Rule',NULL,1,1,0),(41,'report_template','Report Template',NULL,1,1,0),(42,'email_greeting','Email Greeting Type',NULL,1,1,0),(43,'postal_greeting','Postal Greeting Type',NULL,1,1,0),(44,'addressee','Addressee Type',NULL,1,1,0),(45,'contact_autocomplete_options','Autocomplete Contact Search',NULL,1,1,1),(46,'contact_reference_options','Contact Reference Autocomplete Options',NULL,1,1,1),(47,'website_type','Website Type',NULL,1,1,0),(48,'tag_used_for','Tag Used For',NULL,1,1,1),(49,'currencies_enabled','Currencies Enabled',NULL,1,1,0),(50,'event_badge','Event Name Badge',NULL,1,1,0),(51,'note_privacy','Privacy levels for notes',NULL,1,1,0),(52,'campaign_type','Campaign Type',NULL,1,1,0),(53,'campaign_status','Campaign Status',NULL,1,1,0),(54,'system_extensions','CiviCRM Extensions',NULL,1,1,0),(55,'mail_approval_status','CiviMail Approval Status',NULL,1,1,0),(56,'engagement_index','Engagement Index',NULL,1,1,0),(57,'cg_extend_objects','Objects a custom group extends to',NULL,1,1,0),(58,'paper_size','Paper Size',NULL,1,1,0),(59,'pdf_format','PDF Page Format',NULL,1,1,0),(60,'label_format','Mailing Label Format',NULL,1,1,0),(61,'activity_contacts','Activity Contacts',NULL,1,1,1),(62,'account_relationship','Account Relationship',NULL,1,1,0),(63,'event_contacts','Event Recipients',NULL,1,1,0),(64,'conference_slot','Conference Slot',NULL,1,1,0),(65,'batch_type','Batch Type',NULL,1,1,1),(66,'batch_mode','Batch Mode',NULL,1,1,1),(67,'batch_status','Batch Status',NULL,1,1,1),(68,'sms_api_type','Api Type',NULL,1,1,0),(69,'sms_provider_name','Sms Provider Internal Name',NULL,1,1,0),(70,'auto_renew_options','Auto Renew Options',NULL,1,1,1),(71,'financial_account_type','Financial Account Type',NULL,1,1,0),(72,'financial_item_status','Financial Item Status',NULL,1,1,1),(73,'label_type','Label Type',NULL,1,1,0),(74,'name_badge','Name Badge Format',NULL,1,1,0),(75,'communication_style','Communication Style',NULL,1,1,0),(76,'msg_mode','Message Mode',NULL,1,1,0),(77,'contact_date_reminder_options','Contact Date Reminder Options',NULL,1,1,1),(78,'mailing_ab_status','Mailing A/B Status',NULL,1,1,1),(79,'mailing_ab_testing_criteria','Mailing A/B Testing Criteria',NULL,1,1,1),(80,'mailing_ab_winner_criteria','Mailing A/B Testing Winner Criteria',NULL,1,1,1),(81,'languages','Languages','List of Languages',1,1,NULL),(82,'encounter_medium','Encounter Medium','Encounter medium for case activities (e.g. In Person, By Phone, etc.)',1,1,NULL),(83,'msg_tpl_workflow_case','Message Template Workflow for Cases','Message Template Workflow for Cases',1,1,NULL),(84,'msg_tpl_workflow_contribution','Message Template Workflow for Contributions','Message Template Workflow for Contributions',1,1,NULL),(85,'msg_tpl_workflow_event','Message Template Workflow for Events','Message Template Workflow for Events',1,1,NULL),(86,'msg_tpl_workflow_friend','Message Template Workflow for Tell-a-Friend','Message Template Workflow for Tell-a-Friend',1,1,NULL),(87,'msg_tpl_workflow_membership','Message Template Workflow for Memberships','Message Template Workflow for Memberships',1,1,NULL),(88,'msg_tpl_workflow_meta','Message Template Workflow for Meta Templates','Message Template Workflow for Meta Templates',1,1,NULL),(89,'msg_tpl_workflow_pledge','Message Template Workflow for Pledges','Message Template Workflow for Pledges',1,1,NULL),(90,'msg_tpl_workflow_uf','Message Template Workflow for Profiles','Message Template Workflow for Profiles',1,1,NULL),(91,'msg_tpl_workflow_petition','Message Template Workflow for Petition','Message Template Workflow for Petition',1,1,NULL),(92,'soft_credit_type','Soft Credit Types',NULL,1,1,NULL); /*!40000 ALTER TABLE `civicrm_option_group` ENABLE KEYS */; UNLOCK TABLES; @@ -1007,7 +1006,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_option_value` WRITE; /*!40000 ALTER TABLE `civicrm_option_value` DISABLE KEYS */; -INSERT INTO `civicrm_option_value` (`id`, `option_group_id`, `label`, `value`, `name`, `grouping`, `filter`, `is_default`, `weight`, `description`, `is_optgroup`, `is_reserved`, `is_active`, `component_id`, `domain_id`, `visibility_id`) VALUES (1,1,'Phone','1',NULL,NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(2,1,'Email','2',NULL,NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(3,1,'Postal Mail','3',NULL,NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(4,1,'SMS','4',NULL,NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(5,1,'Fax','5',NULL,NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(6,2,'Meeting','1','Meeting',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(7,2,'Phone Call','2','Phone Call',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(8,2,'Email','3','Email',NULL,1,NULL,3,'Email sent.',0,1,1,NULL,NULL,NULL),(9,2,'Outbound SMS','4','SMS',NULL,1,NULL,4,'Text message (SMS) sent.',0,1,1,NULL,NULL,NULL),(10,2,'Event Registration','5','Event Registration',NULL,1,NULL,5,'Online or offline event registration.',0,1,1,1,NULL,NULL),(11,2,'Contribution','6','Contribution',NULL,1,NULL,6,'Online or offline contribution.',0,1,1,2,NULL,NULL),(12,2,'Membership Signup','7','Membership Signup',NULL,1,NULL,7,'Online or offline membership signup.',0,1,1,3,NULL,NULL),(13,2,'Membership Renewal','8','Membership Renewal',NULL,1,NULL,8,'Online or offline membership renewal.',0,1,1,3,NULL,NULL),(14,2,'Tell a Friend','9','Tell a Friend',NULL,1,NULL,9,'Send information about a contribution campaign or event to a friend.',0,1,1,NULL,NULL,NULL),(15,2,'Pledge Acknowledgment','10','Pledge Acknowledgment',NULL,1,NULL,10,'Send Pledge Acknowledgment.',0,1,1,6,NULL,NULL),(16,2,'Pledge Reminder','11','Pledge Reminder',NULL,1,NULL,11,'Send Pledge Reminder.',0,1,1,6,NULL,NULL),(17,2,'Inbound Email','12','Inbound Email',NULL,1,NULL,12,'Inbound Email.',0,1,1,NULL,NULL,NULL),(18,2,'Open Case','13','Open Case',NULL,0,0,13,'',0,1,1,7,NULL,NULL),(19,2,'Follow up','14','Follow up',NULL,0,0,14,'',0,1,1,7,NULL,NULL),(20,2,'Change Case Type','15','Change Case Type',NULL,0,0,15,'',0,1,1,7,NULL,NULL),(21,2,'Change Case Status','16','Change Case Status',NULL,0,0,16,'',0,1,1,7,NULL,NULL),(22,2,'Membership Renewal Reminder','17','Membership Renewal Reminder',NULL,1,NULL,17,'offline membership renewal reminder.',0,1,1,3,NULL,NULL),(23,2,'Change Case Start Date','18','Change Case Start Date',NULL,0,0,18,'',0,1,1,7,NULL,NULL),(24,2,'Bulk Email','19','Bulk Email',NULL,1,NULL,19,'Bulk Email Sent.',0,1,1,NULL,NULL,NULL),(25,2,'Assign Case Role','20','Assign Case Role',NULL,0,0,20,'',0,1,1,7,NULL,NULL),(26,2,'Remove Case Role','21','Remove Case Role',NULL,0,0,21,'',0,1,1,7,NULL,NULL),(27,2,'Print PDF Letter','22','Print PDF Letter',NULL,0,NULL,22,'Print PDF Letter.',0,1,1,NULL,NULL,NULL),(28,2,'Merge Case','23','Merge Case',NULL,0,NULL,23,'',0,1,1,7,NULL,NULL),(29,2,'Reassigned Case','24','Reassigned Case',NULL,0,NULL,24,'',0,1,1,7,NULL,NULL),(30,2,'Link Cases','25','Link Cases',NULL,0,NULL,25,'',0,1,1,7,NULL,NULL),(31,2,'Change Case Tags','26','Change Case Tags',NULL,0,0,26,'',0,1,1,7,NULL,NULL),(32,2,'Add Client To Case','27','Add Client To Case',NULL,0,0,26,'',0,1,1,7,NULL,NULL),(33,2,'Survey','28','Survey',NULL,0,0,27,'',0,1,1,9,NULL,NULL),(34,2,'Canvass','29','Canvass',NULL,0,0,28,'',0,1,1,9,NULL,NULL),(35,2,'PhoneBank','30','PhoneBank',NULL,0,0,29,'',0,1,1,9,NULL,NULL),(36,2,'WalkList','31','WalkList',NULL,0,0,30,'',0,1,1,9,NULL,NULL),(37,2,'Petition Signature','32','Petition',NULL,0,0,31,'',0,1,1,9,NULL,NULL),(38,2,'Mass SMS','34','Mass SMS',NULL,1,NULL,34,'Mass SMS',0,1,1,NULL,NULL,NULL),(39,2,'Change Custom Data','33','Change Custom Data',NULL,0,0,33,'',0,1,1,7,NULL,NULL),(40,2,'Change Membership Status','35','Change Membership Status',NULL,1,NULL,35,'Change Membership Status.',0,1,1,3,NULL,NULL),(41,2,'Change Membership Type','36','Change Membership Type',NULL,1,NULL,36,'Change Membership Type.',0,1,1,3,NULL,NULL),(42,2,'Cancel Recurring Contribution','37','Cancel Recurring Contribution',NULL,1,0,37,'',0,1,1,NULL,NULL,NULL),(43,2,'Update Recurring Contribution Billing Details','38','Update Recurring Contribution Billing Details',NULL,1,0,38,'',0,1,1,NULL,NULL,NULL),(44,2,'Update Recurring Contribution','39','Update Recurring Contribution',NULL,1,0,39,'',0,1,1,NULL,NULL,NULL),(45,2,'Reminder Sent','40','Reminder Sent',NULL,1,0,40,'',0,1,1,NULL,NULL,NULL),(46,2,'Export Accounting Batch','41','Export Accounting Batch',NULL,1,0,41,'Export Accounting Batch',0,1,1,2,NULL,NULL),(47,2,'Create Batch','42','Create Batch',NULL,1,0,42,'Create Batch',0,1,1,2,NULL,NULL),(48,2,'Edit Batch','43','Edit Batch',NULL,1,0,43,'Edit Batch',0,1,1,2,NULL,NULL),(49,2,'SMS delivery','44','SMS delivery',NULL,1,NULL,44,'SMS delivery',0,1,1,NULL,NULL,NULL),(50,2,'Inbound SMS','45','Inbound SMS',NULL,1,NULL,45,'Inbound SMS',0,1,1,NULL,NULL,NULL),(51,2,'Payment','46','Payment',NULL,1,NULL,46,'Additional payment recorded for event or membership fee.',0,1,1,2,NULL,NULL),(52,2,'Refund','47','Refund',NULL,1,NULL,47,'Refund recorded for event or membership fee.',0,1,1,2,NULL,NULL),(53,2,'Change Registration','48','Change Registration',NULL,1,NULL,48,'Changes to an existing event registration.',0,1,1,1,NULL,NULL),(54,2,'Downloaded Invoice','49','Downloaded Invoice',NULL,1,NULL,49,'Downloaded Invoice.',0,1,1,NULL,NULL,NULL),(55,2,'Emailed Invoice','50','Emailed Invoice',NULL,1,NULL,50,'Emailed Invoice.',0,1,1,NULL,NULL,NULL),(56,3,'Female','1','Female',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(57,3,'Male','2','Male',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(58,3,'Transgender','3','Transgender',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(59,4,'Yahoo','1','Yahoo',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(60,4,'MSN','2','Msn',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(61,4,'AIM','3','Aim',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(62,4,'GTalk','4','Gtalk',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(63,4,'Jabber','5','Jabber',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(64,4,'Skype','6','Skype',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(65,5,'Sprint','1','Sprint',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(66,5,'Verizon','2','Verizon',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(67,5,'Cingular','3','Cingular',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(68,6,'Mrs.','1','Mrs.',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(69,6,'Ms.','2','Ms.',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(70,6,'Mr.','3','Mr.',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(71,6,'Dr.','4','Dr.',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(72,7,'Jr.','1','Jr.',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(73,7,'Sr.','2','Sr.',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(74,7,'II','3','II',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(75,7,'III','4','III',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(76,7,'IV','5','IV',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(77,7,'V','6','V',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(78,7,'VI','7','VI',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(79,7,'VII','8','VII',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(80,8,'Administrator','1','Admin',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(81,8,'Authenticated','2','Auth',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(82,9,'Visa','1','Visa',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(83,9,'MasterCard','2','MasterCard',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(84,9,'Amex','3','Amex',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(85,9,'Discover','4','Discover',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(86,10,'Credit Card','1','Credit Card',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(87,10,'Debit Card','2','Debit Card',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(88,10,'Cash','3','Cash',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL),(89,10,'Check','4','Check',NULL,0,1,4,NULL,0,1,1,NULL,NULL,NULL),(90,10,'EFT','5','EFT',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL),(91,11,'Completed','1','Completed',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(92,11,'Pending','2','Pending',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(93,11,'Cancelled','3','Cancelled',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(94,11,'Failed','4','Failed',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(95,11,'In Progress','5','In Progress',NULL,0,NULL,5,NULL,0,1,1,NULL,NULL,NULL),(96,11,'Overdue','6','Overdue',NULL,0,NULL,6,NULL,0,1,1,NULL,NULL,NULL),(97,11,'Refunded','7','Refunded',NULL,0,NULL,7,NULL,0,1,1,NULL,NULL,NULL),(98,11,'Partially paid','8','Partially paid',NULL,0,NULL,8,NULL,0,1,1,NULL,NULL,NULL),(99,11,'Pending refund','9','Pending refund',NULL,0,NULL,9,NULL,0,1,1,NULL,NULL,NULL),(100,12,'Waiting Review','1','Waiting Review',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(101,12,'Approved','2','Approved',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(102,12,'Not Approved','3','Not Approved',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(103,13,'Attendee','1','Attendee',NULL,1,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(104,13,'Volunteer','2','Volunteer',NULL,1,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(105,13,'Host','3','Host',NULL,1,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(106,13,'Speaker','4','Speaker',NULL,1,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(107,14,'Conference','1','Conference',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(108,14,'Exhibition','2','Exhibition',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(109,14,'Fundraiser','3','Fundraiser',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(110,14,'Meeting','4','Meeting',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(111,14,'Performance','5','Performance',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(112,14,'Workshop','6','Workshop',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(113,15,'Activities','1','activity',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(114,15,'Relationships','2','rel',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(115,15,'Groups','3','group',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(116,15,'Notes','4','note',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(117,15,'Tags','5','tag',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(118,15,'Change Log','6','log',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(119,15,'Contributions','7','CiviContribute',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(120,15,'Memberships','8','CiviMember',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(121,15,'Events','9','CiviEvent',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(122,15,'Cases','10','CiviCase',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(123,15,'Grants','11','CiviGrant',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(124,15,'Pledges','13','CiviPledge',NULL,0,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(125,15,'Mailings','14','CiviMail',NULL,0,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(126,16,'Show Smart Groups on Demand','1','showondemand',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(127,16,'Always Show Smart Groups','2','alwaysshow',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(128,16,'Hide Smart Groups','3','hide',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(129,17,'Custom Data','1','CustomData',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(130,17,'Address','2','Address',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(131,17,'Communication Preferences','3','CommunicationPreferences',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(132,17,'Notes','4','Notes',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(133,17,'Demographics','5','Demographics',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(134,17,'Tags and Groups','6','TagsAndGroups',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(135,17,'Email','7','Email',NULL,1,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(136,17,'Phone','8','Phone',NULL,1,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(137,17,'Instant Messenger','9','IM',NULL,1,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(138,17,'Open ID','10','OpenID',NULL,1,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(139,17,'Website','11','Website',NULL,1,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(140,17,'Prefix','12','Prefix',NULL,2,NULL,12,NULL,0,0,1,NULL,NULL,NULL),(141,17,'Formal Title','13','Formal Title',NULL,2,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(142,17,'First Name','14','First Name',NULL,2,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(143,17,'Middle Name','15','Middle Name',NULL,2,NULL,15,NULL,0,0,1,NULL,NULL,NULL),(144,17,'Last Name','16','Last Name',NULL,2,NULL,16,NULL,0,0,1,NULL,NULL,NULL),(145,17,'Suffix','17','Suffix',NULL,2,NULL,17,NULL,0,0,1,NULL,NULL,NULL),(146,18,'Address Fields','1','location',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(147,18,'Custom Fields','2','custom',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(148,18,'Activities','3','activity',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(149,18,'Relationships','4','relationship',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(150,18,'Notes','5','notes',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(151,18,'Change Log','6','changeLog',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(152,18,'Contributions','7','CiviContribute',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(153,18,'Memberships','8','CiviMember',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(154,18,'Events','9','CiviEvent',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(155,18,'Cases','10','CiviCase',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(156,18,'Grants','12','CiviGrant',NULL,0,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(157,18,'Demographics','13','demographics',NULL,0,NULL,15,NULL,0,0,1,NULL,NULL,NULL),(158,18,'Pledges','15','CiviPledge',NULL,0,NULL,17,NULL,0,0,1,NULL,NULL,NULL),(159,18,'Contact Type','16','contactType',NULL,0,NULL,18,NULL,0,0,1,NULL,NULL,NULL),(160,18,'Groups','17','groups',NULL,0,NULL,19,NULL,0,0,1,NULL,NULL,NULL),(161,18,'Tags','18','tags',NULL,0,NULL,20,NULL,0,0,1,NULL,NULL,NULL),(162,18,'Mailing','19','CiviMail',NULL,0,NULL,21,NULL,0,0,1,NULL,NULL,NULL),(163,19,'Groups','1','Groups',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(164,19,'Contributions','2','CiviContribute',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(165,19,'Memberships','3','CiviMember',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(166,19,'Events','4','CiviEvent',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(167,19,'My Contacts / Organizations','5','Permissioned Orgs',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(168,19,'Pledges','7','CiviPledge',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(169,19,'Personal Campaign Pages','8','PCP',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(170,19,'Assigned Activities','9','Assigned Activities',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(171,19,'Invoices / Credit Notes','10','Invoices / Credit Notes',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(172,44,'Email Address','2','email',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(173,44,'Phone','3','phone',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(174,44,'Street Address','4','street_address',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(175,44,'City','5','city',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(176,44,'State/Province','6','state_province',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(177,44,'Country','7','country',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(178,44,'Postal Code','8','postal_code',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(179,45,'Email Address','2','email',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(180,45,'Phone','3','phone',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(181,45,'Street Address','4','street_address',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(182,45,'City','5','city',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(183,45,'State/Province','6','state_province',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(184,45,'Country','7','country',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(185,45,'Postal Code','8','country',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(186,20,'Street Address','1','street_address',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(187,20,'Supplemental Address 1','2','supplemental_address_1',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(188,20,'Supplemental Address 2','3','supplemental_address_2',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(189,20,'City','4','city',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(190,20,'Zip / Postal Code','5','postal_code',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(191,20,'Postal Code Suffix','6','postal_code_suffix',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(192,20,'County','7','county',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(193,20,'State/Province','8','state_province',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(194,20,'Country','9','country',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(195,20,'Latitude','10','geo_code_1',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(196,20,'Longitude','11','geo_code_2',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(197,20,'Address Name','12','address_name',NULL,0,NULL,12,NULL,0,0,1,NULL,NULL,NULL),(198,20,'Street Address Parsing','13','street_address_parsing',NULL,0,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(199,21,'Access Control','1',NULL,NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(200,21,'Mailing List','2',NULL,NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(201,22,'Submitted','1','Submitted',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(202,22,'Eligible','2','Eligible',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(203,22,'Ineligible','3','Ineligible',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(204,22,'Paid','4','Paid',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(205,22,'Awaiting Information','5','Awaiting Information',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(206,22,'Withdrawn','6','Withdrawn',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(207,22,'Approved for Payment','7','Approved for Payment',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(208,24,'CRM_Contact_Form_Search_Custom_Sample','1','CRM_Contact_Form_Search_Custom_Sample',NULL,0,NULL,1,'Household Name and State',0,0,1,NULL,NULL,NULL),(209,24,'CRM_Contact_Form_Search_Custom_ContributionAggregate','2','CRM_Contact_Form_Search_Custom_ContributionAggregate',NULL,0,NULL,2,'Contribution Aggregate',0,0,1,NULL,NULL,NULL),(210,24,'CRM_Contact_Form_Search_Custom_Basic','3','CRM_Contact_Form_Search_Custom_Basic',NULL,0,NULL,3,'Basic Search',0,0,1,NULL,NULL,NULL),(211,24,'CRM_Contact_Form_Search_Custom_Group','4','CRM_Contact_Form_Search_Custom_Group',NULL,0,NULL,4,'Include / Exclude Search',0,0,1,NULL,NULL,NULL),(212,24,'CRM_Contact_Form_Search_Custom_PostalMailing','5','CRM_Contact_Form_Search_Custom_PostalMailing',NULL,0,NULL,5,'Postal Mailing',0,0,1,NULL,NULL,NULL),(213,24,'CRM_Contact_Form_Search_Custom_Proximity','6','CRM_Contact_Form_Search_Custom_Proximity',NULL,0,NULL,6,'Proximity Search',0,0,1,NULL,NULL,NULL),(214,24,'CRM_Contact_Form_Search_Custom_EventAggregate','7','CRM_Contact_Form_Search_Custom_EventAggregate',NULL,0,NULL,7,'Event Aggregate',0,0,1,NULL,NULL,NULL),(215,24,'CRM_Contact_Form_Search_Custom_ActivitySearch','8','CRM_Contact_Form_Search_Custom_ActivitySearch',NULL,0,NULL,8,'Activity Search',0,0,1,NULL,NULL,NULL),(216,24,'CRM_Contact_Form_Search_Custom_PriceSet','9','CRM_Contact_Form_Search_Custom_PriceSet',NULL,0,NULL,9,'Price Set Details for Event Participants',0,0,1,NULL,NULL,NULL),(217,24,'CRM_Contact_Form_Search_Custom_ZipCodeRange','10','CRM_Contact_Form_Search_Custom_ZipCodeRange',NULL,0,NULL,10,'Zip Code Range',0,0,1,NULL,NULL,NULL),(218,24,'CRM_Contact_Form_Search_Custom_DateAdded','11','CRM_Contact_Form_Search_Custom_DateAdded',NULL,0,NULL,11,'Date Added to CiviCRM',0,0,1,NULL,NULL,NULL),(219,24,'CRM_Contact_Form_Search_Custom_MultipleValues','12','CRM_Contact_Form_Search_Custom_MultipleValues',NULL,0,NULL,12,'Custom Group Multiple Values Listing',0,0,1,NULL,NULL,NULL),(220,24,'CRM_Contact_Form_Search_Custom_ContribSYBNT','13','CRM_Contact_Form_Search_Custom_ContribSYBNT',NULL,0,NULL,13,'Contributions made in Year X and not Year Y',0,0,1,NULL,NULL,NULL),(221,24,'CRM_Contact_Form_Search_Custom_TagContributions','14','CRM_Contact_Form_Search_Custom_TagContributions',NULL,0,NULL,14,'Find Contribution Amounts by Tag',0,0,1,NULL,NULL,NULL),(222,24,'CRM_Contact_Form_Search_Custom_FullText','15','CRM_Contact_Form_Search_Custom_FullText',NULL,0,NULL,15,'Full-text Search',0,0,1,NULL,NULL,NULL),(223,40,'Constituent Report (Summary)','contact/summary','CRM_Report_Form_Contact_Summary',NULL,0,NULL,1,'Provides a list of address and telephone information for constituent records in your system.',0,0,1,NULL,NULL,NULL),(224,40,'Constituent Report (Detail)','contact/detail','CRM_Report_Form_Contact_Detail',NULL,0,NULL,2,'Provides contact-related information on contributions, memberships, events and activities.',0,0,1,NULL,NULL,NULL),(225,40,'Activity Report','activity','CRM_Report_Form_Activity',NULL,0,NULL,3,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)',0,0,1,NULL,NULL,NULL),(226,40,'Walk / Phone List Report','walklist','CRM_Report_Form_Walklist_Walklist',NULL,0,NULL,4,'Provides a detailed report for your walk/phonelist for targetted contacts',0,0,0,NULL,NULL,NULL),(227,40,'Current Employer Report','contact/currentEmployer','CRM_Report_Form_Contact_CurrentEmployer',NULL,0,NULL,5,'Provides detail list of employer employee relationships along with employment details Ex Join Date',0,0,1,NULL,NULL,NULL),(228,40,'Contribution Summary Report','contribute/summary','CRM_Report_Form_Contribute_Summary',NULL,0,NULL,6,'Groups and totals contributions by criteria including contact, time period, financial type, contributor location, etc.',0,0,1,2,NULL,NULL),(229,40,'Contribution Detail Report','contribute/detail','CRM_Report_Form_Contribute_Detail',NULL,0,NULL,7,'Lists specific contributions by criteria including contact, time period, financial type, contributor location, etc. Contribution summary report points to this report for contribution details.',0,0,1,2,NULL,NULL),(230,40,'Repeat Contributions Report','contribute/repeat','CRM_Report_Form_Contribute_Repeat',NULL,0,NULL,8,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.',0,0,1,2,NULL,NULL),(231,40,'Contributions by Organization Report','contribute/organizationSummary','CRM_Report_Form_Contribute_OrganizationSummary',NULL,0,NULL,9,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.',0,0,1,2,NULL,NULL),(232,40,'Contributions by Household Report','contribute/householdSummary','CRM_Report_Form_Contribute_HouseholdSummary',NULL,0,NULL,10,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.',0,0,1,2,NULL,NULL),(233,40,'Top Donors Report','contribute/topDonor','CRM_Report_Form_Contribute_TopDonor',NULL,0,NULL,11,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).',0,0,1,2,NULL,NULL),(234,40,'SYBUNT Report','contribute/sybunt','CRM_Report_Form_Contribute_Sybunt',NULL,0,NULL,12,'SYBUNT means some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.',0,0,1,2,NULL,NULL),(235,40,'LYBUNT Report','contribute/lybunt','CRM_Report_Form_Contribute_Lybunt',NULL,0,NULL,13,'LYBUNT means last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.',0,0,1,2,NULL,NULL),(236,40,'Soft Credit Report','contribute/softcredit','CRM_Report_Form_Contribute_SoftCredit',NULL,0,NULL,14,'Shows contributions made by contacts that have been soft-credited to other contacts.',0,0,1,2,NULL,NULL),(237,40,'Membership Report (Summary)','member/summary','CRM_Report_Form_Member_Summary',NULL,0,NULL,15,'Provides a summary of memberships by type and join date.',0,0,1,3,NULL,NULL),(238,40,'Membership Report (Detail)','member/detail','CRM_Report_Form_Member_Detail',NULL,0,NULL,16,'Provides a list of members along with their membership status and membership details (Join Date, Start Date, End Date). Can also display contributions (payments) associated with each membership.',0,0,1,3,NULL,NULL),(239,40,'Membership Report (Lapsed)','member/lapse','CRM_Report_Form_Member_Lapse',NULL,0,NULL,17,'Provides a list of memberships that lapsed or will lapse before the date you specify.',0,0,1,3,NULL,NULL),(240,40,'Event Participant Report (List)','event/participantListing','CRM_Report_Form_Event_ParticipantListing',NULL,0,NULL,18,'Provides lists of participants for an event.',0,0,1,1,NULL,NULL),(241,40,'Event Income Report (Summary)','event/summary','CRM_Report_Form_Event_Summary',NULL,0,NULL,19,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.',0,0,1,1,NULL,NULL),(242,40,'Event Income Report (Detail)','event/income','CRM_Report_Form_Event_Income',NULL,0,NULL,20,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.',0,0,1,1,NULL,NULL),(243,40,'Pledge Report','pledge/detail','CRM_Report_Form_Pledge_Detail',NULL,0,NULL,21,'Pledge Report',0,0,1,6,NULL,NULL),(244,40,'Pledged but not Paid Report','pledge/pbnp','CRM_Report_Form_Pledge_Pbnp',NULL,0,NULL,22,'Pledged but not Paid Report',0,0,1,6,NULL,NULL),(245,40,'Relationship Report','contact/relationship','CRM_Report_Form_Contact_Relationship',NULL,0,NULL,23,'Relationship Report',0,0,1,NULL,NULL,NULL),(246,40,'Case Summary Report','case/summary','CRM_Report_Form_Case_Summary',NULL,0,NULL,24,'Provides a summary of cases and their duration by date range, status, staff member and / or case role.',0,0,1,7,NULL,NULL),(247,40,'Case Time Spent Report','case/timespent','CRM_Report_Form_Case_TimeSpent',NULL,0,NULL,25,'Aggregates time spent on case and / or non-case activities by activity type and contact.',0,0,1,7,NULL,NULL),(248,40,'Contact Demographics Report','case/demographics','CRM_Report_Form_Case_Demographics',NULL,0,NULL,26,'Demographic breakdown for case clients (and or non-case contacts) in your database. Includes custom contact fields.',0,0,1,7,NULL,NULL),(249,40,'Database Log Report','contact/log','CRM_Report_Form_Contact_Log',NULL,0,NULL,27,'Log of contact and activity records created or updated in a given date range.',0,0,1,NULL,NULL,NULL),(250,40,'Activity Report (Summary)','activitySummary','CRM_Report_Form_ActivitySummary',NULL,0,NULL,28,'Shows activity statistics by type / date',0,0,1,NULL,NULL,NULL),(251,40,'Bookkeeping Transactions Report','contribute/bookkeeping','CRM_Report_Form_Contribute_Bookkeeping',NULL,0,0,29,'Shows Bookkeeping Transactions Report',0,0,1,2,NULL,NULL),(252,40,'Grant Report (Detail)','grant/detail','CRM_Report_Form_Grant_Detail',NULL,0,0,30,'Grant Report Detail',0,0,1,5,NULL,NULL),(253,40,'Participant list Count Report','event/participantlist','CRM_Report_Form_Event_ParticipantListCount',NULL,0,0,31,'Shows the Participant list with Participant Count.',0,0,1,1,NULL,NULL),(254,40,'Income Count Summary Report','event/incomesummary','CRM_Report_Form_Event_IncomeCountSummary',NULL,0,0,32,'Shows the Income Summary of events with Count.',0,0,1,1,NULL,NULL),(255,40,'Case Detail Report','case/detail','CRM_Report_Form_Case_Detail',NULL,0,0,33,'Case Details',0,0,1,7,NULL,NULL),(256,40,'Mail Bounce Report','Mailing/bounce','CRM_Report_Form_Mailing_Bounce',NULL,0,NULL,34,'Bounce Report for mailings',0,0,1,4,NULL,NULL),(257,40,'Mail Summary Report','Mailing/summary','CRM_Report_Form_Mailing_Summary',NULL,0,NULL,35,'Summary statistics for mailings',0,0,1,4,NULL,NULL),(258,40,'Mail Opened Report','Mailing/opened','CRM_Report_Form_Mailing_Opened',NULL,0,NULL,36,'Display contacts who opened emails from a mailing',0,0,1,4,NULL,NULL),(259,40,'Mail Clickthrough Report','Mailing/clicks','CRM_Report_Form_Mailing_Clicks',NULL,0,NULL,37,'Display clicks from each mailing',0,0,1,4,NULL,NULL),(260,40,'Contact Logging Report (Summary)','logging/contact/summary','CRM_Report_Form_Contact_LoggingSummary',NULL,0,NULL,38,'Contact modification report for the logging infrastructure (summary).',0,0,0,NULL,NULL,NULL),(261,40,'Contact Logging Report (Detail)','logging/contact/detail','CRM_Report_Form_Contact_LoggingDetail',NULL,0,NULL,39,'Contact modification report for the logging infrastructure (detail).',0,0,0,NULL,NULL,NULL),(262,40,'Contribute Logging Report (Summary)','logging/contribute/summary','CRM_Report_Form_Contribute_LoggingSummary',NULL,0,NULL,40,'Contribute modification report for the logging infrastructure (summary).',0,0,0,2,NULL,NULL),(263,40,'Contribute Logging Report (Detail)','logging/contribute/detail','CRM_Report_Form_Contribute_LoggingDetail',NULL,0,NULL,41,'Contribute modification report for the logging infrastructure (detail).',0,0,0,2,NULL,NULL),(264,40,'Grant Report (Statistics)','grant/statistics','CRM_Report_Form_Grant_Statistics',NULL,0,NULL,42,'Shows statistics for Grants.',0,0,1,5,NULL,NULL),(265,40,'Survey Report (Detail)','survey/detail','CRM_Report_Form_Campaign_SurveyDetails',NULL,0,NULL,43,'Detailed report for canvassing, phone-banking, walk lists or other surveys.',0,0,1,9,NULL,NULL),(266,40,'Personal Campaign Page Report','contribute/pcp','CRM_Report_Form_Contribute_PCP',NULL,0,NULL,44,'Summarizes amount raised and number of contributors for each Personal Campaign Page.',0,0,1,2,NULL,NULL),(267,40,'Pledge Summary Report','pledge/summary','CRM_Report_Form_Pledge_Summary',NULL,0,NULL,45,'Summary of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.',0,0,1,6,NULL,NULL),(268,40,'Contribution Aggregate by Relationship','contribute/history','CRM_Report_Form_Contribute_History',NULL,0,NULL,46,'List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.',0,0,1,2,NULL,NULL),(269,40,'Mail Detail Report','mailing/detail','CRM_Report_Form_Mailing_Detail',NULL,0,NULL,47,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.',0,0,1,4,NULL,NULL),(270,40,'Contribution and Membership Details','member/contributionDetail','CRM_Report_Form_Member_ContributionDetail',NULL,0,NULL,48,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.',0,0,1,3,NULL,NULL),(271,40,'Recurring Contributions Report','contribute/recur','CRM_Report_Form_Contribute_Recur',NULL,0,NULL,49,'Provides information about the status of recurring contributions',0,0,1,2,NULL,NULL),(272,25,'Scheduled','1','Scheduled',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(273,25,'Completed','2','Completed',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(274,25,'Cancelled','3','Cancelled',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(275,25,'Left Message','4','Left Message',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(276,25,'Unreachable','5','Unreachable',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(277,25,'Not Required','6','Not Required',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(278,25,'Available','7','Available',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(279,25,'No-show','8','No_show',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(280,27,'Ongoing','1','Open','Opened',0,1,1,NULL,0,1,1,NULL,NULL,NULL),(281,27,'Resolved','2','Closed','Closed',0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(282,27,'Urgent','3','Urgent','Opened',0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(283,28,'Name Only','1','Name Only',NULL,0,0,1,'CRM_Event_Page_ParticipantListing_Name',0,1,1,NULL,NULL,NULL),(284,28,'Name and Email','2','Name and Email',NULL,0,0,2,'CRM_Event_Page_ParticipantListing_NameAndEmail',0,1,1,NULL,NULL,NULL),(285,28,'Name, Status and Register Date','3','Name, Status and Register Date',NULL,0,0,3,'CRM_Event_Page_ParticipantListing_NameStatusAndDate',0,1,1,NULL,NULL,NULL),(286,29,'jpg','1',NULL,NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL),(287,29,'jpeg','2',NULL,NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL),(288,29,'png','3',NULL,NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL),(289,29,'gif','4',NULL,NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL),(290,29,'txt','5',NULL,NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL),(291,29,'pdf','6',NULL,NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL),(292,29,'doc','7',NULL,NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL),(293,29,'xls','8',NULL,NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL),(294,29,'rtf','9',NULL,NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL),(295,29,'csv','10',NULL,NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL),(296,29,'ppt','11',NULL,NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL),(297,29,'docx','12',NULL,NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL),(298,29,'xlsx','13',NULL,NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL),(299,32,'TinyMCE','1',NULL,NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(300,32,'CKEditor','2',NULL,NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(301,32,'Joomla Default Editor','3',NULL,NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(302,32,'Drupal Default Editor','4',NULL,NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(303,31,'Search Builder','1','Search Builder',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(304,31,'Import Contact','2','Import Contact',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(305,31,'Import Activity','3','Import Activity',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(306,31,'Import Contribution','4','Import Contribution',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(307,31,'Import Membership','5','Import Membership',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL),(308,31,'Import Participant','6','Import Participant',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL),(309,31,'Export Contact','7','Export Contact',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL),(310,31,'Export Contribution','8','Export Contribution',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL),(311,31,'Export Membership','9','Export Membership',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL),(312,31,'Export Participant','10','Export Participant',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL),(313,31,'Export Pledge','11','Export Pledge',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL),(314,31,'Export Case','12','Export Case',NULL,0,0,12,NULL,0,1,1,NULL,NULL,NULL),(315,31,'Export Grant','13','Export Grant',NULL,0,0,13,NULL,0,1,1,NULL,NULL,NULL),(316,31,'Export Activity','14','Export Activity',NULL,0,0,14,NULL,0,1,1,NULL,NULL,NULL),(317,33,'day','day','day',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(318,33,'week','week','week',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(319,33,'month','month','month',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(320,33,'year','year','year',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(321,34,'Phone','1','Phone',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(322,34,'Mobile','2','Mobile',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(323,34,'Fax','3','Fax',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(324,34,'Pager','4','Pager',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(325,34,'Voicemail','5','Voicemail',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(326,35,'Participant Role','1','ParticipantRole',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(327,35,'Participant Event Name','2','ParticipantEventName',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(328,35,'Participant Event Type','3','ParticipantEventType',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(329,36,'Public','1','public',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(330,36,'Admin','2','admin',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(331,37,'IMAP','1','IMAP',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(332,37,'Maildir','2','Maildir',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(333,37,'POP3','3','POP3',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(334,37,'Localdir','4','Localdir',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(335,38,'Urgent','1','Urgent',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(336,38,'Normal','2','Normal',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(337,38,'Low','3','Low',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(338,39,'Vancouver','city_',NULL,NULL,0,NULL,1,NULL,0,0,0,NULL,NULL,NULL),(339,39,'/(19|20)(\\d{2})-(\\d{1,2})-(\\d{1,2})/','date_',NULL,NULL,1,NULL,2,NULL,0,0,0,NULL,NULL,NULL),(340,41,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(341,41,'Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}','2','Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL),(342,41,'Dear {contact.individual_prefix} {contact.last_name}','3','Dear {contact.individual_prefix} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL),(343,41,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(344,41,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL),(345,42,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(346,42,'Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}','2','Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL),(347,42,'Dear {contact.individual_prefix} {contact.last_name}','3','Dear {contact.individual_prefix} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL),(348,42,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(349,42,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL),(350,43,'{contact.individual_prefix}{ } {contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.individual_suffix}','1','}{contact.individual_prefix}{ } {contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.individual_suffix}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(351,43,'{contact.household_name}','2','{contact.household_name}',NULL,2,1,2,NULL,0,0,1,NULL,NULL,NULL),(352,43,'{contact.organization_name}','3','{contact.organization_name}',NULL,3,1,3,NULL,0,0,1,NULL,NULL,NULL),(353,43,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(354,46,'Work','1','Work',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(355,46,'Main','2','Main',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(356,46,'Facebook','3','Facebook',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(357,46,'Google+','4','Google_',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(358,46,'Instagram','5','Instagram',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(359,46,'LinkedIn','6','LinkedIn',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(360,46,'MySpace','7','MySpace',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(361,46,'Pinterest','8','Pinterest',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(362,46,'SnapChat','9','SnapChat',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(363,46,'Tumblr','10','Tumblr',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(364,46,'Twitter','11','Twitter',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(365,46,'Vine','12','Vine ',NULL,0,NULL,12,NULL,0,0,1,NULL,NULL,NULL),(366,47,'Contacts','civicrm_contact','Contacts',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(367,47,'Activities','civicrm_activity','Activities',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(368,47,'Cases','civicrm_case','Cases',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(369,47,'Attachments','civicrm_file','Attachements',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(370,48,'USD ($)','USD','USD',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(371,49,'Name Only','1','CRM_Event_Badge_Simple',NULL,0,0,1,'Simple Event Name Badge',0,1,1,NULL,NULL,NULL),(372,49,'Name Tent','2','CRM_Event_Badge_NameTent',NULL,0,0,2,'Name Tent',0,1,1,NULL,NULL,NULL),(373,49,'With Logo','3','CRM_Event_Badge_Logo',NULL,0,0,3,'You can set your own background image',0,1,1,NULL,NULL,NULL),(374,49,'5395 with Logo','4','CRM_Event_Badge_Logo5395',NULL,0,0,4,'Avery 5395 compatible labels with logo (4 up by 2, 59.2mm x 85.7mm)',0,1,1,NULL,NULL,NULL),(375,50,'None','0','',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(376,50,'Author Only','1','',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(377,51,'Direct Mail','1','Direct Mail',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(378,51,'Referral Program','2','Referral Program',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(379,51,'Constituent Engagement','3','Constituent Engagement',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(380,52,'Planned','1','Planned',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(381,52,'In Progress','2','In Progress',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(382,52,'Completed','3','Completed',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(383,52,'Cancelled','4','Cancelled',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(384,55,'1','1','1',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(385,55,'2','2','2',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(386,55,'3','3','3',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(387,55,'4','4','4',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(388,55,'5','5','5',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(389,57,'Letter','{\"metric\":\"in\",\"width\":8.5,\"height\":11}','letter',NULL,NULL,1,1,NULL,0,0,1,NULL,NULL,NULL),(390,57,'Legal','{\"metric\":\"in\",\"width\":8.5,\"height\":14}','legal',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(391,57,'Ledger','{\"metric\":\"in\",\"width\":17,\"height\":11}','ledger',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(392,57,'Tabloid','{\"metric\":\"in\",\"width\":11,\"height\":17}','tabloid',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(393,57,'Executive','{\"metric\":\"in\",\"width\":7.25,\"height\":10.5}','executive',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(394,57,'Folio','{\"metric\":\"in\",\"width\":8.5,\"height\":13}','folio',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(395,57,'Envelope #9','{\"metric\":\"pt\",\"width\":638.93,\"height\":278.93}','envelope-9',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(396,57,'Envelope #10','{\"metric\":\"pt\",\"width\":684,\"height\":297}','envelope-10',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(397,57,'Envelope #11','{\"metric\":\"pt\",\"width\":747,\"height\":324}','envelope-11',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(398,57,'Envelope #12','{\"metric\":\"pt\",\"width\":792,\"height\":342}','envelope-12',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL),(399,57,'Envelope #14','{\"metric\":\"pt\",\"width\":828,\"height\":360}','envelope-14',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL),(400,57,'Envelope ISO B4','{\"metric\":\"pt\",\"width\":1000.63,\"height\":708.66}','envelope-b4',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL),(401,57,'Envelope ISO B5','{\"metric\":\"pt\",\"width\":708.66,\"height\":498.9}','envelope-b5',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL),(402,57,'Envelope ISO B6','{\"metric\":\"pt\",\"width\":498.9,\"height\":354.33}','envelope-b6',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL),(403,57,'Envelope ISO C3','{\"metric\":\"pt\",\"width\":1298.27,\"height\":918.42}','envelope-c3',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL),(404,57,'Envelope ISO C4','{\"metric\":\"pt\",\"width\":918.42,\"height\":649.13}','envelope-c4',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL),(405,57,'Envelope ISO C5','{\"metric\":\"pt\",\"width\":649.13,\"height\":459.21}','envelope-c5',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL),(406,57,'Envelope ISO C6','{\"metric\":\"pt\",\"width\":459.21,\"height\":323.15}','envelope-c6',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL),(407,57,'Envelope ISO DL','{\"metric\":\"pt\",\"width\":623.622,\"height\":311.811}','envelope-dl',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL),(408,57,'ISO A0','{\"metric\":\"pt\",\"width\":2383.94,\"height\":3370.39}','a0',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL),(409,57,'ISO A1','{\"metric\":\"pt\",\"width\":1683.78,\"height\":2383.94}','a1',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL),(410,57,'ISO A2','{\"metric\":\"pt\",\"width\":1190.55,\"height\":1683.78}','a2',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL),(411,57,'ISO A3','{\"metric\":\"pt\",\"width\":841.89,\"height\":1190.55}','a3',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL),(412,57,'ISO A4','{\"metric\":\"pt\",\"width\":595.28,\"height\":841.89}','a4',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL),(413,57,'ISO A5','{\"metric\":\"pt\",\"width\":419.53,\"height\":595.28}','a5',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL),(414,57,'ISO A6','{\"metric\":\"pt\",\"width\":297.64,\"height\":419.53}','a6',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL),(415,57,'ISO A7','{\"metric\":\"pt\",\"width\":209.76,\"height\":297.64}','a7',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL),(416,57,'ISO A8','{\"metric\":\"pt\",\"width\":147.4,\"height\":209.76}','a8',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL),(417,57,'ISO A9','{\"metric\":\"pt\",\"width\":104.88,\"height\":147.4}','a9',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL),(418,57,'ISO A10','{\"metric\":\"pt\",\"width\":73.7,\"height\":104.88}','a10',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL),(419,57,'ISO B0','{\"metric\":\"pt\",\"width\":2834.65,\"height\":4008.19}','b0',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL),(420,57,'ISO B1','{\"metric\":\"pt\",\"width\":2004.09,\"height\":2834.65}','b1',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL),(421,57,'ISO B2','{\"metric\":\"pt\",\"width\":1417.32,\"height\":2004.09}','b2',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL),(422,57,'ISO B3','{\"metric\":\"pt\",\"width\":1000.63,\"height\":1417.32}','b3',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL),(423,57,'ISO B4','{\"metric\":\"pt\",\"width\":708.66,\"height\":1000.63}','b4',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL),(424,57,'ISO B5','{\"metric\":\"pt\",\"width\":498.9,\"height\":708.66}','b5',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL),(425,57,'ISO B6','{\"metric\":\"pt\",\"width\":354.33,\"height\":498.9}','b6',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL),(426,57,'ISO B7','{\"metric\":\"pt\",\"width\":249.45,\"height\":354.33}','b7',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL),(427,57,'ISO B8','{\"metric\":\"pt\",\"width\":175.75,\"height\":249.45}','b8',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL),(428,57,'ISO B9','{\"metric\":\"pt\",\"width\":124.72,\"height\":175.75}','b9',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL),(429,57,'ISO B10','{\"metric\":\"pt\",\"width\":87.87,\"height\":124.72}','b10',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL),(430,57,'ISO C0','{\"metric\":\"pt\",\"width\":2599.37,\"height\":3676.54}','c0',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL),(431,57,'ISO C1','{\"metric\":\"pt\",\"width\":1836.85,\"height\":2599.37}','c1',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL),(432,57,'ISO C2','{\"metric\":\"pt\",\"width\":1298.27,\"height\":1836.85}','c2',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL),(433,57,'ISO C3','{\"metric\":\"pt\",\"width\":918.43,\"height\":1298.27}','c3',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL),(434,57,'ISO C4','{\"metric\":\"pt\",\"width\":649.13,\"height\":918.43}','c4',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL),(435,57,'ISO C5','{\"metric\":\"pt\",\"width\":459.21,\"height\":649.13}','c5',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL),(436,57,'ISO C6','{\"metric\":\"pt\",\"width\":323.15,\"height\":459.21}','c6',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL),(437,57,'ISO C7','{\"metric\":\"pt\",\"width\":229.61,\"height\":323.15}','c7',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL),(438,57,'ISO C8','{\"metric\":\"pt\",\"width\":161.57,\"height\":229.61}','c8',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL),(439,57,'ISO C9','{\"metric\":\"pt\",\"width\":113.39,\"height\":161.57}','c9',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL),(440,57,'ISO C10','{\"metric\":\"pt\",\"width\":79.37,\"height\":113.39}','c10',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL),(441,57,'ISO RA0','{\"metric\":\"pt\",\"width\":2437.8,\"height\":3458.27}','ra0',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL),(442,57,'ISO RA1','{\"metric\":\"pt\",\"width\":1729.13,\"height\":2437.8}','ra1',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL),(443,57,'ISO RA2','{\"metric\":\"pt\",\"width\":1218.9,\"height\":1729.13}','ra2',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL),(444,57,'ISO RA3','{\"metric\":\"pt\",\"width\":864.57,\"height\":1218.9}','ra3',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL),(445,57,'ISO RA4','{\"metric\":\"pt\",\"width\":609.45,\"height\":864.57}','ra4',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL),(446,57,'ISO SRA0','{\"metric\":\"pt\",\"width\":2551.18,\"height\":3628.35}','sra0',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL),(447,57,'ISO SRA1','{\"metric\":\"pt\",\"width\":1814.17,\"height\":2551.18}','sra1',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL),(448,57,'ISO SRA2','{\"metric\":\"pt\",\"width\":1275.59,\"height\":1814.17}','sra2',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL),(449,57,'ISO SRA3','{\"metric\":\"pt\",\"width\":907.09,\"height\":1275.59}','sra3',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL),(450,57,'ISO SRA4','{\"metric\":\"pt\",\"width\":637.8,\"height\":907.09}','sra4',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL),(451,60,'Activity Assignees','1','Activity Assignees',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(452,60,'Activity Source','2','Activity Source',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(453,60,'Activity Targets','3','Activity Targets',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(454,70,'Asset','1','Asset',NULL,0,0,1,'Things you own',0,1,1,2,NULL,NULL),(455,70,'Liability','2','Liability',NULL,0,0,2,'Things you own, like a grant still to be disbursed',0,1,1,2,NULL,NULL),(456,70,'Revenue','3','Revenue',NULL,0,1,3,'Income from contributions and sales of tickets and memberships',0,1,1,2,NULL,NULL),(457,70,'Cost of Sales','4','Cost of Sales',NULL,0,0,4,'Costs incurred to get revenue, e.g. premiums for donations, dinner for a fundraising dinner ticket',0,1,1,2,NULL,NULL),(458,70,'Expenses','5','Expenses',NULL,0,0,5,'Things that are paid for that are consumable, e.g. grants disbursed',0,1,1,2,NULL,NULL),(459,61,'Income Account is','1','Income Account is',NULL,0,1,1,'Income Account is',0,1,1,2,NULL,NULL),(460,61,'Credit/Contra Account is','2','Credit/Contra Account is',NULL,0,0,2,'Credit/Contra Account is',0,1,0,2,NULL,NULL),(461,61,'Accounts Receivable Account is','3','Accounts Receivable Account is',NULL,0,0,3,'Accounts Receivable Account is',0,1,1,2,NULL,NULL),(462,61,'Credit Liability Account is','4','Credit Liability Account is',NULL,0,0,4,'Credit Liability Account is',0,1,0,2,NULL,NULL),(463,61,'Expense Account is','5','Expense Account is',NULL,0,0,5,'Expense Account is',0,1,1,2,NULL,NULL),(464,61,'Asset Account is','6','Asset Account is',NULL,0,0,6,'Asset Account is',0,1,1,2,NULL,NULL),(465,61,'Cost of Sales Account is','7','Cost of Sales Account is',NULL,0,0,7,'Cost of Sales Account is',0,1,1,2,NULL,NULL),(466,61,'Premiums Inventory Account is','8','Premiums Inventory Account is',NULL,0,0,8,'Premiums Inventory Account is',0,1,1,2,NULL,NULL),(467,61,'Discounts Account is','9','Discounts Account is',NULL,0,0,9,'Discounts Account is',0,1,1,2,NULL,NULL),(468,61,'Sales Tax Account is','10','Sales Tax Account is',NULL,0,0,10,'Sales Tax Account is',0,1,1,2,NULL,NULL),(469,62,'Participant Role','1','participant_role',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(470,63,'Morning Sessions','1','Morning Sessions',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(471,63,'Evening Sessions','2','Evening Sessions',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(472,64,'Contribution','1','Contribution',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(473,64,'Membership','2','Membership',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(474,64,'Pledge Payment','3','Pledge Payment',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(475,66,'Open','1','Open',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(476,66,'Closed','2','Closed',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(477,66,'Data Entry','3','Data Entry',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(478,66,'Reopened','4','Reopened',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(479,66,'Exported','5','Exported',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(480,65,'Manual Batch','1','Manual Batch',NULL,0,0,1,'Manual Batch',0,1,1,2,NULL,NULL),(481,65,'Automatic Batch','2','Automatic Batch',NULL,0,0,2,'Automatic Batch',0,1,1,2,NULL,NULL),(482,71,'Paid','1','Paid',NULL,0,0,1,'Paid',0,1,1,2,NULL,NULL),(483,71,'Partially paid','2','Partially paid',NULL,0,0,2,'Partially paid',0,1,1,2,NULL,NULL),(484,71,'Unpaid','3','Unpaid',NULL,0,0,1,'Unpaid',0,1,1,2,NULL,NULL),(485,67,'http','1','http',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(486,67,'xml','2','xml',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(487,67,'smtp','3','smtp',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(488,69,'Renewal Reminder (non-auto-renew memberships only)','1','Renewal Reminder (non-auto-renew memberships only)',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(489,69,'Auto-renew Memberships Only','2','Auto-renew Memberships Only',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(490,69,'Reminder for Both','3','Reminder for Both',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(491,72,'Event Badge','1','Event Badge',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(492,73,'Avery 5395','{\"name\":\"Avery 5395\",\"paper-size\":\"a4\",\"metric\":\"mm\",\"lMargin\":15,\"tMargin\":26,\"NX\":2,\"NY\":4,\"SpaceX\":10,\"SpaceY\":5,\"width\":83,\"height\":57,\"font-size\":12,\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-style\":\"\",\"lPadding\":3,\"tPadding\":3}','Avery 5395',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(493,73,'A6 Badge Portrait 150x106','{\"paper-size\":\"a4\",\"orientation\":\"landscape\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":1,\"metric\":\"mm\",\"lMargin\":25,\"tMargin\":27,\"SpaceX\":0,\"SpaceY\":35,\"width\":106,\"height\":150,\"lPadding\":5,\"tPadding\":5}','A6 Badge Portrait 150x106',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(494,73,'Fattorini Name Badge 100x65','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":4,\"metric\":\"mm\",\"lMargin\":6,\"tMargin\":19,\"SpaceX\":0,\"SpaceY\":0,\"width\":100,\"height\":65,\"lPadding\":0,\"tPadding\":0}','Fattorini Name Badge 100x65',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(495,73,'Hanging Badge 3-3/4\" x 4-3\"/4','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":2,\"metric\":\"mm\",\"lMargin\":10,\"tMargin\":28,\"SpaceX\":0,\"SpaceY\":0,\"width\":96,\"height\":121,\"lPadding\":5,\"tPadding\":5}','Hanging Badge 3-3/4\" x 4-3\"/4',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(496,59,'Avery 3475','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":10,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":0,\"tMargin\":5,\"NX\":3,\"NY\":8,\"SpaceX\":0,\"SpaceY\":0,\"width\":70,\"height\":36,\"lPadding\":5.08,\"tPadding\":5.08}','3475','Avery',NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(497,59,'Avery 5160','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.21975,\"tMargin\":0.5,\"NX\":3,\"NY\":10,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":2.5935,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5160','Avery',NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(498,59,'Avery 5161','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.175,\"tMargin\":0.5,\"NX\":2,\"NY\":10,\"SpaceX\":0.15625,\"SpaceY\":0,\"width\":4,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5161','Avery',NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(499,59,'Avery 5162','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.1525,\"tMargin\":0.88,\"NX\":2,\"NY\":7,\"SpaceX\":0.195,\"SpaceY\":0,\"width\":4,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','5162','Avery',NULL,0,4,NULL,0,1,1,NULL,NULL,NULL),(500,59,'Avery 5163','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.5,\"NX\":2,\"NY\":5,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":4,\"height\":2,\"lPadding\":0.20,\"tPadding\":0.20}','5163','Avery',NULL,0,5,NULL,0,1,1,NULL,NULL,NULL),(501,59,'Avery 5164','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":12,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.156,\"tMargin\":0.5,\"NX\":2,\"NY\":3,\"SpaceX\":0.1875,\"SpaceY\":0,\"width\":4,\"height\":3.33,\"lPadding\":0.20,\"tPadding\":0.20}','5164','Avery',NULL,0,6,NULL,0,1,1,NULL,NULL,NULL),(502,59,'Avery 8600','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":7.1,\"tMargin\":19,\"NX\":3,\"NY\":10,\"SpaceX\":9.5,\"SpaceY\":3.1,\"width\":66.6,\"height\":25.4,\"lPadding\":5.08,\"tPadding\":5.08}','8600','Avery',NULL,0,7,NULL,0,1,1,NULL,NULL,NULL),(503,59,'Avery L7160','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.6,\"NX\":3,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7160','Avery',NULL,0,8,NULL,0,1,1,NULL,NULL,NULL),(504,59,'Avery L7161','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.35,\"NX\":3,\"NY\":6,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.83,\"lPadding\":0.20,\"tPadding\":0.20}','L7161','Avery',NULL,0,9,NULL,0,1,1,NULL,NULL,NULL),(505,59,'Avery L7162','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.51,\"NX\":2,\"NY\":8,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','L7162','Avery',NULL,0,10,NULL,0,1,1,NULL,NULL,NULL),(506,59,'Avery L7163','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.6,\"NX\":2,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7163','Avery',NULL,0,11,NULL,0,1,1,NULL,NULL,NULL),(507,74,'Formal','1','formal',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(508,74,'Familiar','2','familiar',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL),(509,75,'Email','Email','Email',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(510,75,'SMS','SMS','SMS',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(511,75,'User Preference','User_Preference','User Preference',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(512,76,'Actual date only','1','Actual date only',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(513,76,'Each anniversary','2','Each anniversary',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(514,77,'Draft','1','Draft',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(515,77,'Testing','2','Testing',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(516,77,'Final','3','Final',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(517,79,'Open','1','Open',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(518,79,'Total Unique Clicks','2','Total Unique Clicks',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(519,79,'Total Clicks on a particular link','3','Total Clicks on a particular link',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(520,78,'Subject Lines ','1','Subject Lines',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(521,78,'From Names ','2','From Names',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(522,78,'Two different Emails ','3','Two different Emails ',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(523,30,'\"FIXME\" ','1','\"FIXME\" ',NULL,0,1,1,'Default domain email address and from name.',0,0,1,NULL,1,NULL),(524,23,'Emergency','1','Emergency',NULL,0,1,1,NULL,0,0,1,NULL,1,NULL),(525,23,'Family Support','2','Family Support',NULL,0,NULL,2,NULL,0,0,1,NULL,1,NULL),(526,23,'General Protection','3','General Protection',NULL,0,NULL,3,NULL,0,0,1,NULL,1,NULL),(527,23,'Impunity','4','Impunity',NULL,0,NULL,4,NULL,0,0,1,NULL,1,NULL),(528,54,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL),(529,54,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL),(530,54,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL),(531,56,'Survey','Survey','civicrm_survey',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(532,56,'Cases','Case','civicrm_case',NULL,0,NULL,2,'CRM_Case_PseudoConstant::caseType;',0,0,1,NULL,NULL,NULL),(533,80,'Abkhaz','ab','ab_GE',NULL,NULL,0,1,NULL,0,0,0,NULL,NULL,NULL),(534,80,'Afar','aa','aa_ET',NULL,NULL,0,2,NULL,0,0,0,NULL,NULL,NULL),(535,80,'Afrikaans','af','af_ZA',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(536,80,'Akan','ak','ak_GH',NULL,NULL,0,4,NULL,0,0,0,NULL,NULL,NULL),(537,80,'Albanian','sq','sq_AL',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(538,80,'Amharic','am','am_ET',NULL,NULL,0,6,NULL,0,0,0,NULL,NULL,NULL),(539,80,'Arabic','ar','ar_EG',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(540,80,'Aragonese','an','an_ES',NULL,NULL,0,8,NULL,0,0,0,NULL,NULL,NULL),(541,80,'Armenian','hy','hy_AM',NULL,NULL,0,9,NULL,0,0,0,NULL,NULL,NULL),(542,80,'Assamese','as','as_IN',NULL,NULL,0,10,NULL,0,0,0,NULL,NULL,NULL),(543,80,'Avaric','av','av_RU',NULL,NULL,0,11,NULL,0,0,0,NULL,NULL,NULL),(544,80,'Avestan','ae','ae_XX',NULL,NULL,0,12,NULL,0,0,0,NULL,NULL,NULL),(545,80,'Aymara','ay','ay_BO',NULL,NULL,0,13,NULL,0,0,0,NULL,NULL,NULL),(546,80,'Azerbaijani','az','az_AZ',NULL,NULL,0,14,NULL,0,0,0,NULL,NULL,NULL),(547,80,'Bambara','bm','bm_ML',NULL,NULL,0,15,NULL,0,0,0,NULL,NULL,NULL),(548,80,'Bashkir','ba','ba_RU',NULL,NULL,0,16,NULL,0,0,0,NULL,NULL,NULL),(549,80,'Basque','eu','eu_ES',NULL,NULL,0,17,NULL,0,0,0,NULL,NULL,NULL),(550,80,'Belarusian','be','be_BY',NULL,NULL,0,18,NULL,0,0,0,NULL,NULL,NULL),(551,80,'Bengali','bn','bn_BD',NULL,NULL,0,19,NULL,0,0,0,NULL,NULL,NULL),(552,80,'Bihari','bh','bh_IN',NULL,NULL,0,20,NULL,0,0,0,NULL,NULL,NULL),(553,80,'Bislama','bi','bi_VU',NULL,NULL,0,21,NULL,0,0,0,NULL,NULL,NULL),(554,80,'Bosnian','bs','bs_BA',NULL,NULL,0,22,NULL,0,0,0,NULL,NULL,NULL),(555,80,'Breton','br','br_FR',NULL,NULL,0,23,NULL,0,0,0,NULL,NULL,NULL),(556,80,'Bulgarian','bg','bg_BG',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL),(557,80,'Burmese','my','my_MM',NULL,NULL,0,25,NULL,0,0,0,NULL,NULL,NULL),(558,80,'Catalan; Valencian','ca','ca_ES',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL),(559,80,'Chamorro','ch','ch_GU',NULL,NULL,0,27,NULL,0,0,0,NULL,NULL,NULL),(560,80,'Chechen','ce','ce_RU',NULL,NULL,0,28,NULL,0,0,0,NULL,NULL,NULL),(561,80,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,NULL,0,29,NULL,0,0,0,NULL,NULL,NULL),(562,80,'Chinese (China)','zh','zh_CN',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL),(563,80,'Chinese (Taiwan)','zh','zh_TW',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL),(564,80,'Chuvash','cv','cv_RU',NULL,NULL,0,32,NULL,0,0,0,NULL,NULL,NULL),(565,80,'Cornish','kw','kw_GB',NULL,NULL,0,33,NULL,0,0,0,NULL,NULL,NULL),(566,80,'Corsican','co','co_FR',NULL,NULL,0,34,NULL,0,0,0,NULL,NULL,NULL),(567,80,'Cree','cr','cr_CA',NULL,NULL,0,35,NULL,0,0,0,NULL,NULL,NULL),(568,80,'Croatian','hr','hr_HR',NULL,NULL,0,36,NULL,0,0,0,NULL,NULL,NULL),(569,80,'Czech','cs','cs_CZ',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL),(570,80,'Danish','da','da_DK',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL),(571,80,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,NULL,0,39,NULL,0,0,0,NULL,NULL,NULL),(572,80,'Dutch','nl','nl_NL',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL),(573,80,'Dzongkha','dz','dz_BT',NULL,NULL,0,41,NULL,0,0,0,NULL,NULL,NULL),(574,80,'English (Australia)','en','en_AU',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL),(575,80,'English (Canada)','en','en_CA',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL),(576,80,'English (United Kingdom)','en','en_GB',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL),(577,80,'English (United States)','en','en_US',NULL,NULL,1,45,NULL,0,0,1,NULL,NULL,NULL),(578,80,'Esperanto','eo','eo_XX',NULL,NULL,0,46,NULL,0,0,0,NULL,NULL,NULL),(579,80,'Estonian','et','et_EE',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL),(580,80,'Ewe','ee','ee_GH',NULL,NULL,0,48,NULL,0,0,0,NULL,NULL,NULL),(581,80,'Faroese','fo','fo_FO',NULL,NULL,0,49,NULL,0,0,0,NULL,NULL,NULL),(582,80,'Fijian','fj','fj_FJ',NULL,NULL,0,50,NULL,0,0,0,NULL,NULL,NULL),(583,80,'Finnish','fi','fi_FI',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL),(584,80,'French (Canada)','fr','fr_CA',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL),(585,80,'French (France)','fr','fr_FR',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL),(586,80,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,NULL,0,54,NULL,0,0,0,NULL,NULL,NULL),(587,80,'Galician','gl','gl_ES',NULL,NULL,0,55,NULL,0,0,0,NULL,NULL,NULL),(588,80,'Georgian','ka','ka_GE',NULL,NULL,0,56,NULL,0,0,0,NULL,NULL,NULL),(589,80,'German','de','de_DE',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL),(590,80,'German (Swiss)','de','de_CH',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL),(591,80,'Greek, Modern','el','el_GR',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL),(592,80,'Guarani­','gn','gn_PY',NULL,NULL,0,60,NULL,0,0,0,NULL,NULL,NULL),(593,80,'Gujarati','gu','gu_IN',NULL,NULL,0,61,NULL,0,0,0,NULL,NULL,NULL),(594,80,'Haitian; Haitian Creole','ht','ht_HT',NULL,NULL,0,62,NULL,0,0,0,NULL,NULL,NULL),(595,80,'Hausa','ha','ha_NG',NULL,NULL,0,63,NULL,0,0,0,NULL,NULL,NULL),(596,80,'Hebrew (modern)','he','he_IL',NULL,NULL,0,64,NULL,0,0,1,NULL,NULL,NULL),(597,80,'Herero','hz','hz_NA',NULL,NULL,0,65,NULL,0,0,0,NULL,NULL,NULL),(598,80,'Hindi','hi','hi_IN',NULL,NULL,0,66,NULL,0,0,1,NULL,NULL,NULL),(599,80,'Hiri Motu','ho','ho_PG',NULL,NULL,0,67,NULL,0,0,0,NULL,NULL,NULL),(600,80,'Hungarian','hu','hu_HU',NULL,NULL,0,68,NULL,0,0,1,NULL,NULL,NULL),(601,80,'Interlingua','ia','ia_XX',NULL,NULL,0,69,NULL,0,0,0,NULL,NULL,NULL),(602,80,'Indonesian','id','id_ID',NULL,NULL,0,70,NULL,0,0,1,NULL,NULL,NULL),(603,80,'Interlingue','ie','ie_XX',NULL,NULL,0,71,NULL,0,0,0,NULL,NULL,NULL),(604,80,'Irish','ga','ga_IE',NULL,NULL,0,72,NULL,0,0,0,NULL,NULL,NULL),(605,80,'Igbo','ig','ig_NG',NULL,NULL,0,73,NULL,0,0,0,NULL,NULL,NULL),(606,80,'Inupiaq','ik','ik_US',NULL,NULL,0,74,NULL,0,0,0,NULL,NULL,NULL),(607,80,'Ido','io','io_XX',NULL,NULL,0,75,NULL,0,0,0,NULL,NULL,NULL),(608,80,'Icelandic','is','is_IS',NULL,NULL,0,76,NULL,0,0,0,NULL,NULL,NULL),(609,80,'Italian','it','it_IT',NULL,NULL,0,77,NULL,0,0,1,NULL,NULL,NULL),(610,80,'Inuktitut','iu','iu_CA',NULL,NULL,0,78,NULL,0,0,0,NULL,NULL,NULL),(611,80,'Japanese','ja','ja_JP',NULL,NULL,0,79,NULL,0,0,1,NULL,NULL,NULL),(612,80,'Javanese','jv','jv_ID',NULL,NULL,0,80,NULL,0,0,0,NULL,NULL,NULL),(613,80,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,NULL,0,81,NULL,0,0,0,NULL,NULL,NULL),(614,80,'Kannada','kn','kn_IN',NULL,NULL,0,82,NULL,0,0,0,NULL,NULL,NULL),(615,80,'Kanuri','kr','kr_NE',NULL,NULL,0,83,NULL,0,0,0,NULL,NULL,NULL),(616,80,'Kashmiri','ks','ks_IN',NULL,NULL,0,84,NULL,0,0,0,NULL,NULL,NULL),(617,80,'Kazakh','kk','kk_KZ',NULL,NULL,0,85,NULL,0,0,0,NULL,NULL,NULL),(618,80,'Khmer','km','km_KH',NULL,NULL,0,86,NULL,0,0,1,NULL,NULL,NULL),(619,80,'Kikuyu, Gikuyu','ki','ki_KE',NULL,NULL,0,87,NULL,0,0,0,NULL,NULL,NULL),(620,80,'Kinyarwanda','rw','rw_RW',NULL,NULL,0,88,NULL,0,0,0,NULL,NULL,NULL),(621,80,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,NULL,0,89,NULL,0,0,0,NULL,NULL,NULL),(622,80,'Komi','kv','kv_RU',NULL,NULL,0,90,NULL,0,0,0,NULL,NULL,NULL),(623,80,'Kongo','kg','kg_CD',NULL,NULL,0,91,NULL,0,0,0,NULL,NULL,NULL),(624,80,'Korean','ko','ko_KR',NULL,NULL,0,92,NULL,0,0,0,NULL,NULL,NULL),(625,80,'Kurdish','ku','ku_IQ',NULL,NULL,0,93,NULL,0,0,0,NULL,NULL,NULL),(626,80,'Kwanyama, Kuanyama','kj','kj_NA',NULL,NULL,0,94,NULL,0,0,0,NULL,NULL,NULL),(627,80,'Latin','la','la_VA',NULL,NULL,0,95,NULL,0,0,0,NULL,NULL,NULL),(628,80,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,NULL,0,96,NULL,0,0,0,NULL,NULL,NULL),(629,80,'Luganda','lg','lg_UG',NULL,NULL,0,97,NULL,0,0,0,NULL,NULL,NULL),(630,80,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,NULL,0,98,NULL,0,0,0,NULL,NULL,NULL),(631,80,'Lingala','ln','ln_CD',NULL,NULL,0,99,NULL,0,0,0,NULL,NULL,NULL),(632,80,'Lao','lo','lo_LA',NULL,NULL,0,100,NULL,0,0,0,NULL,NULL,NULL),(633,80,'Lithuanian','lt','lt_LT',NULL,NULL,0,101,NULL,0,0,1,NULL,NULL,NULL),(634,80,'Luba-Katanga','lu','lu_CD',NULL,NULL,0,102,NULL,0,0,0,NULL,NULL,NULL),(635,80,'Latvian','lv','lv_LV',NULL,NULL,0,103,NULL,0,0,0,NULL,NULL,NULL),(636,80,'Manx','gv','gv_IM',NULL,NULL,0,104,NULL,0,0,0,NULL,NULL,NULL),(637,80,'Macedonian','mk','mk_MK',NULL,NULL,0,105,NULL,0,0,0,NULL,NULL,NULL),(638,80,'Malagasy','mg','mg_MG',NULL,NULL,0,106,NULL,0,0,0,NULL,NULL,NULL),(639,80,'Malay','ms','ms_MY',NULL,NULL,0,107,NULL,0,0,0,NULL,NULL,NULL),(640,80,'Malayalam','ml','ml_IN',NULL,NULL,0,108,NULL,0,0,0,NULL,NULL,NULL),(641,80,'Maltese','mt','mt_MT',NULL,NULL,0,109,NULL,0,0,0,NULL,NULL,NULL),(642,80,'Māori','mi','mi_NZ',NULL,NULL,0,110,NULL,0,0,0,NULL,NULL,NULL),(643,80,'Marathi','mr','mr_IN',NULL,NULL,0,111,NULL,0,0,0,NULL,NULL,NULL),(644,80,'Marshallese','mh','mh_MH',NULL,NULL,0,112,NULL,0,0,0,NULL,NULL,NULL),(645,80,'Mongolian','mn','mn_MN',NULL,NULL,0,113,NULL,0,0,0,NULL,NULL,NULL),(646,80,'Nauru','na','na_NR',NULL,NULL,0,114,NULL,0,0,0,NULL,NULL,NULL),(647,80,'Navajo, Navaho','nv','nv_US',NULL,NULL,0,115,NULL,0,0,0,NULL,NULL,NULL),(648,80,'Norwegian BokmÃ¥l','nb','nb_NO',NULL,NULL,0,116,NULL,0,0,1,NULL,NULL,NULL),(649,80,'North Ndebele','nd','nd_ZW',NULL,NULL,0,117,NULL,0,0,0,NULL,NULL,NULL),(650,80,'Nepali','ne','ne_NP',NULL,NULL,0,118,NULL,0,0,0,NULL,NULL,NULL),(651,80,'Ndonga','ng','ng_NA',NULL,NULL,0,119,NULL,0,0,0,NULL,NULL,NULL),(652,80,'Norwegian Nynorsk','nn','nn_NO',NULL,NULL,0,120,NULL,0,0,0,NULL,NULL,NULL),(653,80,'Norwegian','no','no_NO',NULL,NULL,0,121,NULL,0,0,0,NULL,NULL,NULL),(654,80,'Nuosu','ii','ii_CN',NULL,NULL,0,122,NULL,0,0,0,NULL,NULL,NULL),(655,80,'South Ndebele','nr','nr_ZA',NULL,NULL,0,123,NULL,0,0,0,NULL,NULL,NULL),(656,80,'Occitan (after 1500)','oc','oc_FR',NULL,NULL,0,124,NULL,0,0,0,NULL,NULL,NULL),(657,80,'Ojibwa','oj','oj_CA',NULL,NULL,0,125,NULL,0,0,0,NULL,NULL,NULL),(658,80,'Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic','cu','cu_BG',NULL,NULL,0,126,NULL,0,0,0,NULL,NULL,NULL),(659,80,'Oromo','om','om_ET',NULL,NULL,0,127,NULL,0,0,0,NULL,NULL,NULL),(660,80,'Oriya','or','or_IN',NULL,NULL,0,128,NULL,0,0,0,NULL,NULL,NULL),(661,80,'Ossetian, Ossetic','os','os_GE',NULL,NULL,0,129,NULL,0,0,0,NULL,NULL,NULL),(662,80,'Panjabi, Punjabi','pa','pa_IN',NULL,NULL,0,130,NULL,0,0,0,NULL,NULL,NULL),(663,80,'Pali','pi','pi_KH',NULL,NULL,0,131,NULL,0,0,0,NULL,NULL,NULL),(664,80,'Persian (Iran)','fa','fa_IR',NULL,NULL,0,132,NULL,0,0,0,NULL,NULL,NULL),(665,80,'Polish','pl','pl_PL',NULL,NULL,0,133,NULL,0,0,1,NULL,NULL,NULL),(666,80,'Pashto, Pushto','ps','ps_AF',NULL,NULL,0,134,NULL,0,0,0,NULL,NULL,NULL),(667,80,'Portuguese (Brazil)','pt','pt_BR',NULL,NULL,0,135,NULL,0,0,1,NULL,NULL,NULL),(668,80,'Portuguese (Portugal)','pt','pt_PT',NULL,NULL,0,136,NULL,0,0,1,NULL,NULL,NULL),(669,80,'Quechua','qu','qu_PE',NULL,NULL,0,137,NULL,0,0,0,NULL,NULL,NULL),(670,80,'Romansh','rm','rm_CH',NULL,NULL,0,138,NULL,0,0,0,NULL,NULL,NULL),(671,80,'Kirundi','rn','rn_BI',NULL,NULL,0,139,NULL,0,0,0,NULL,NULL,NULL),(672,80,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,NULL,0,140,NULL,0,0,1,NULL,NULL,NULL),(673,80,'Russian','ru','ru_RU',NULL,NULL,0,141,NULL,0,0,1,NULL,NULL,NULL),(674,80,'Sanskrit','sa','sa_IN',NULL,NULL,0,142,NULL,0,0,0,NULL,NULL,NULL),(675,80,'Sardinian','sc','sc_IT',NULL,NULL,0,143,NULL,0,0,0,NULL,NULL,NULL),(676,80,'Sindhi','sd','sd_IN',NULL,NULL,0,144,NULL,0,0,0,NULL,NULL,NULL),(677,80,'Northern Sami','se','se_NO',NULL,NULL,0,145,NULL,0,0,0,NULL,NULL,NULL),(678,80,'Samoan','sm','sm_WS',NULL,NULL,0,146,NULL,0,0,0,NULL,NULL,NULL),(679,80,'Sango','sg','sg_CF',NULL,NULL,0,147,NULL,0,0,0,NULL,NULL,NULL),(680,80,'Serbian','sr','sr_RS',NULL,NULL,0,148,NULL,0,0,0,NULL,NULL,NULL),(681,80,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,NULL,0,149,NULL,0,0,0,NULL,NULL,NULL),(682,80,'Shona','sn','sn_ZW',NULL,NULL,0,150,NULL,0,0,0,NULL,NULL,NULL),(683,80,'Sinhala, Sinhalese','si','si_LK',NULL,NULL,0,151,NULL,0,0,0,NULL,NULL,NULL),(684,80,'Slovak','sk','sk_SK',NULL,NULL,0,152,NULL,0,0,1,NULL,NULL,NULL),(685,80,'Slovene','sl','sl_SI',NULL,NULL,0,153,NULL,0,0,1,NULL,NULL,NULL),(686,80,'Somali','so','so_SO',NULL,NULL,0,154,NULL,0,0,0,NULL,NULL,NULL),(687,80,'Southern Sotho','st','st_ZA',NULL,NULL,0,155,NULL,0,0,0,NULL,NULL,NULL),(688,80,'Spanish; Castilian (Spain)','es','es_ES',NULL,NULL,0,156,NULL,0,0,1,NULL,NULL,NULL),(689,80,'Spanish; Castilian (Mexico)','es','es_MX',NULL,NULL,0,157,NULL,0,0,1,NULL,NULL,NULL),(690,80,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,NULL,0,158,NULL,0,0,1,NULL,NULL,NULL),(691,80,'Sundanese','su','su_ID',NULL,NULL,0,159,NULL,0,0,0,NULL,NULL,NULL),(692,80,'Swahili','sw','sw_TZ',NULL,NULL,0,160,NULL,0,0,0,NULL,NULL,NULL),(693,80,'Swati','ss','ss_ZA',NULL,NULL,0,161,NULL,0,0,0,NULL,NULL,NULL),(694,80,'Swedish','sv','sv_SE',NULL,NULL,0,162,NULL,0,0,1,NULL,NULL,NULL),(695,80,'Tamil','ta','ta_IN',NULL,NULL,0,163,NULL,0,0,0,NULL,NULL,NULL),(696,80,'Telugu','te','te_IN',NULL,NULL,0,164,NULL,0,0,1,NULL,NULL,NULL),(697,80,'Tajik','tg','tg_TJ',NULL,NULL,0,165,NULL,0,0,0,NULL,NULL,NULL),(698,80,'Thai','th','th_TH',NULL,NULL,0,166,NULL,0,0,1,NULL,NULL,NULL),(699,80,'Tigrinya','ti','ti_ET',NULL,NULL,0,167,NULL,0,0,0,NULL,NULL,NULL),(700,80,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,NULL,0,168,NULL,0,0,0,NULL,NULL,NULL),(701,80,'Turkmen','tk','tk_TM',NULL,NULL,0,169,NULL,0,0,0,NULL,NULL,NULL),(702,80,'Tagalog','tl','tl_PH',NULL,NULL,0,170,NULL,0,0,0,NULL,NULL,NULL),(703,80,'Tswana','tn','tn_ZA',NULL,NULL,0,171,NULL,0,0,0,NULL,NULL,NULL),(704,80,'Tonga (Tonga Islands)','to','to_TO',NULL,NULL,0,172,NULL,0,0,0,NULL,NULL,NULL),(705,80,'Turkish','tr','tr_TR',NULL,NULL,0,173,NULL,0,0,1,NULL,NULL,NULL),(706,80,'Tsonga','ts','ts_ZA',NULL,NULL,0,174,NULL,0,0,0,NULL,NULL,NULL),(707,80,'Tatar','tt','tt_RU',NULL,NULL,0,175,NULL,0,0,0,NULL,NULL,NULL),(708,80,'Twi','tw','tw_GH',NULL,NULL,0,176,NULL,0,0,0,NULL,NULL,NULL),(709,80,'Tahitian','ty','ty_PF',NULL,NULL,0,177,NULL,0,0,0,NULL,NULL,NULL),(710,80,'Uighur, Uyghur','ug','ug_CN',NULL,NULL,0,178,NULL,0,0,0,NULL,NULL,NULL),(711,80,'Ukrainian','uk','uk_UA',NULL,NULL,0,179,NULL,0,0,0,NULL,NULL,NULL),(712,80,'Urdu','ur','ur_PK',NULL,NULL,0,180,NULL,0,0,0,NULL,NULL,NULL),(713,80,'Uzbek','uz','uz_UZ',NULL,NULL,0,181,NULL,0,0,0,NULL,NULL,NULL),(714,80,'Venda','ve','ve_ZA',NULL,NULL,0,182,NULL,0,0,0,NULL,NULL,NULL),(715,80,'Vietnamese','vi','vi_VN',NULL,NULL,0,183,NULL,0,0,1,NULL,NULL,NULL),(716,80,'Volapük','vo','vo_XX',NULL,NULL,0,184,NULL,0,0,0,NULL,NULL,NULL),(717,80,'Walloon','wa','wa_BE',NULL,NULL,0,185,NULL,0,0,0,NULL,NULL,NULL),(718,80,'Welsh','cy','cy_GB',NULL,NULL,0,186,NULL,0,0,0,NULL,NULL,NULL),(719,80,'Wolof','wo','wo_SN',NULL,NULL,0,187,NULL,0,0,0,NULL,NULL,NULL),(720,80,'Western Frisian','fy','fy_NL',NULL,NULL,0,188,NULL,0,0,0,NULL,NULL,NULL),(721,80,'Xhosa','xh','xh_ZA',NULL,NULL,0,189,NULL,0,0,0,NULL,NULL,NULL),(722,80,'Yiddish','yi','yi_US',NULL,NULL,0,190,NULL,0,0,0,NULL,NULL,NULL),(723,80,'Yoruba','yo','yo_NG',NULL,NULL,0,191,NULL,0,0,0,NULL,NULL,NULL),(724,80,'Zhuang, Chuang','za','za_CN',NULL,NULL,0,192,NULL,0,0,0,NULL,NULL,NULL),(725,80,'Zulu','zu','zu_ZA',NULL,NULL,0,193,NULL,0,0,0,NULL,NULL,NULL),(726,81,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(727,81,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL),(728,81,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(729,81,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(730,81,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL),(731,82,'Cases - Send Copy of an Activity','1','case_activity',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(732,83,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(733,83,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(734,83,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(735,83,'Contributions - Invoice','4','contribution_invoice_receipt',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(736,83,'Contributions - Recurring Start and End Notification','5','contribution_recurring_notify',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(737,83,'Contributions - Recurring Cancellation Notification','6','contribution_recurring_cancelled',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(738,83,'Contributions - Recurring Billing Updates','7','contribution_recurring_billing',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(739,83,'Contributions - Recurring Updates','8','contribution_recurring_edit',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(740,83,'Personal Campaign Pages - Admin Notification','9','pcp_notify',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(741,83,'Personal Campaign Pages - Supporter Status Change Notification','10','pcp_status_change',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL),(742,83,'Personal Campaign Pages - Supporter Welcome','11','pcp_supporter_notify',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL),(743,83,'Additional Payment Receipt or Refund Notification','12','payment_or_refund_notification',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL),(744,84,'Events - Registration Confirmation and Receipt (off-line)','1','event_offline_receipt',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(745,84,'Events - Registration Confirmation and Receipt (on-line)','2','event_online_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(746,84,'Events - Receipt only','3','event_registration_receipt',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(747,84,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(748,84,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(749,84,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(750,85,'Tell-a-Friend Email','1','friend',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(751,86,'Memberships - Signup and Renewal Receipts (off-line)','1','membership_offline_receipt',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(752,86,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(753,86,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(754,86,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(755,87,'Test-drive - Receipt Header','1','test_preview',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(756,88,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(757,88,'Pledges - Payment Reminder','2','pledge_reminder',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(758,89,'Profiles - Admin Notification','1','uf_notify',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(759,90,'Petition - signature added','1','petition_sign',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(760,90,'Petition - need verification','2','petition_confirmation_needed',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(761,91,'In Honor of','1','in_honor_of',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(762,91,'In Memory of','2','in_memory_of',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(763,91,'Solicited','3','solicited',NULL,NULL,1,3,NULL,0,1,1,NULL,NULL,NULL),(764,91,'Household','4','household',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(765,91,'Workplace Giving','5','workplace',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(766,91,'Foundation Affiliate','6','foundation_affiliate',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(767,91,'3rd-party Service','7','3rd-party_service',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(768,91,'Donor-advised Fund','8','donor-advised_fund',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(769,91,'Matched Gift','9','matched_gift',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(770,91,'Personal Campaign Page','10','pcp',NULL,NULL,0,10,NULL,0,1,1,NULL,NULL,NULL),(771,91,'Gift','11','gift',NULL,NULL,0,11,NULL,0,1,1,NULL,NULL,NULL),(772,2,'Interview','51','Interview',NULL,0,NULL,51,'Conduct a phone or in person interview.',0,0,1,NULL,NULL,NULL); +INSERT INTO `civicrm_option_value` (`id`, `option_group_id`, `label`, `value`, `name`, `grouping`, `filter`, `is_default`, `weight`, `description`, `is_optgroup`, `is_reserved`, `is_active`, `component_id`, `domain_id`, `visibility_id`) VALUES (1,1,'Phone','1',NULL,NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(2,1,'Email','2',NULL,NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(3,1,'Postal Mail','3',NULL,NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(4,1,'SMS','4',NULL,NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(5,1,'Fax','5',NULL,NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(6,2,'Meeting','1','Meeting',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(7,2,'Phone Call','2','Phone Call',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(8,2,'Email','3','Email',NULL,1,NULL,3,'Email sent.',0,1,1,NULL,NULL,NULL),(9,2,'Outbound SMS','4','SMS',NULL,1,NULL,4,'Text message (SMS) sent.',0,1,1,NULL,NULL,NULL),(10,2,'Event Registration','5','Event Registration',NULL,1,NULL,5,'Online or offline event registration.',0,1,1,1,NULL,NULL),(11,2,'Contribution','6','Contribution',NULL,1,NULL,6,'Online or offline contribution.',0,1,1,2,NULL,NULL),(12,2,'Membership Signup','7','Membership Signup',NULL,1,NULL,7,'Online or offline membership signup.',0,1,1,3,NULL,NULL),(13,2,'Membership Renewal','8','Membership Renewal',NULL,1,NULL,8,'Online or offline membership renewal.',0,1,1,3,NULL,NULL),(14,2,'Tell a Friend','9','Tell a Friend',NULL,1,NULL,9,'Send information about a contribution campaign or event to a friend.',0,1,1,NULL,NULL,NULL),(15,2,'Pledge Acknowledgment','10','Pledge Acknowledgment',NULL,1,NULL,10,'Send Pledge Acknowledgment.',0,1,1,6,NULL,NULL),(16,2,'Pledge Reminder','11','Pledge Reminder',NULL,1,NULL,11,'Send Pledge Reminder.',0,1,1,6,NULL,NULL),(17,2,'Inbound Email','12','Inbound Email',NULL,1,NULL,12,'Inbound Email.',0,1,1,NULL,NULL,NULL),(18,2,'Open Case','13','Open Case',NULL,0,0,13,'',0,1,1,7,NULL,NULL),(19,2,'Follow up','14','Follow up',NULL,0,0,14,'',0,1,1,7,NULL,NULL),(20,2,'Change Case Type','15','Change Case Type',NULL,0,0,15,'',0,1,1,7,NULL,NULL),(21,2,'Change Case Status','16','Change Case Status',NULL,0,0,16,'',0,1,1,7,NULL,NULL),(22,2,'Membership Renewal Reminder','17','Membership Renewal Reminder',NULL,1,NULL,17,'offline membership renewal reminder.',0,1,1,3,NULL,NULL),(23,2,'Change Case Start Date','18','Change Case Start Date',NULL,0,0,18,'',0,1,1,7,NULL,NULL),(24,2,'Bulk Email','19','Bulk Email',NULL,1,NULL,19,'Bulk Email Sent.',0,1,1,NULL,NULL,NULL),(25,2,'Assign Case Role','20','Assign Case Role',NULL,0,0,20,'',0,1,1,7,NULL,NULL),(26,2,'Remove Case Role','21','Remove Case Role',NULL,0,0,21,'',0,1,1,7,NULL,NULL),(27,2,'Print PDF Letter','22','Print PDF Letter',NULL,0,NULL,22,'Print PDF Letter.',0,1,1,NULL,NULL,NULL),(28,2,'Merge Case','23','Merge Case',NULL,0,NULL,23,'',0,1,1,7,NULL,NULL),(29,2,'Reassigned Case','24','Reassigned Case',NULL,0,NULL,24,'',0,1,1,7,NULL,NULL),(30,2,'Link Cases','25','Link Cases',NULL,0,NULL,25,'',0,1,1,7,NULL,NULL),(31,2,'Change Case Tags','26','Change Case Tags',NULL,0,0,26,'',0,1,1,7,NULL,NULL),(32,2,'Add Client To Case','27','Add Client To Case',NULL,0,0,26,'',0,1,1,7,NULL,NULL),(33,2,'Survey','28','Survey',NULL,0,0,27,'',0,1,1,9,NULL,NULL),(34,2,'Canvass','29','Canvass',NULL,0,0,28,'',0,1,1,9,NULL,NULL),(35,2,'PhoneBank','30','PhoneBank',NULL,0,0,29,'',0,1,1,9,NULL,NULL),(36,2,'WalkList','31','WalkList',NULL,0,0,30,'',0,1,1,9,NULL,NULL),(37,2,'Petition Signature','32','Petition',NULL,0,0,31,'',0,1,1,9,NULL,NULL),(38,2,'Mass SMS','34','Mass SMS',NULL,1,NULL,34,'Mass SMS',0,1,1,NULL,NULL,NULL),(39,2,'Change Custom Data','33','Change Custom Data',NULL,0,0,33,'',0,1,1,7,NULL,NULL),(40,2,'Change Membership Status','35','Change Membership Status',NULL,1,NULL,35,'Change Membership Status.',0,1,1,3,NULL,NULL),(41,2,'Change Membership Type','36','Change Membership Type',NULL,1,NULL,36,'Change Membership Type.',0,1,1,3,NULL,NULL),(42,2,'Cancel Recurring Contribution','37','Cancel Recurring Contribution',NULL,1,0,37,'',0,1,1,NULL,NULL,NULL),(43,2,'Update Recurring Contribution Billing Details','38','Update Recurring Contribution Billing Details',NULL,1,0,38,'',0,1,1,NULL,NULL,NULL),(44,2,'Update Recurring Contribution','39','Update Recurring Contribution',NULL,1,0,39,'',0,1,1,NULL,NULL,NULL),(45,2,'Reminder Sent','40','Reminder Sent',NULL,1,0,40,'',0,1,1,NULL,NULL,NULL),(46,2,'Export Accounting Batch','41','Export Accounting Batch',NULL,1,0,41,'Export Accounting Batch',0,1,1,2,NULL,NULL),(47,2,'Create Batch','42','Create Batch',NULL,1,0,42,'Create Batch',0,1,1,2,NULL,NULL),(48,2,'Edit Batch','43','Edit Batch',NULL,1,0,43,'Edit Batch',0,1,1,2,NULL,NULL),(49,2,'SMS delivery','44','SMS delivery',NULL,1,NULL,44,'SMS delivery',0,1,1,NULL,NULL,NULL),(50,2,'Inbound SMS','45','Inbound SMS',NULL,1,NULL,45,'Inbound SMS',0,1,1,NULL,NULL,NULL),(51,2,'Payment','46','Payment',NULL,1,NULL,46,'Additional payment recorded for event or membership fee.',0,1,1,2,NULL,NULL),(52,2,'Refund','47','Refund',NULL,1,NULL,47,'Refund recorded for event or membership fee.',0,1,1,2,NULL,NULL),(53,2,'Change Registration','48','Change Registration',NULL,1,NULL,48,'Changes to an existing event registration.',0,1,1,1,NULL,NULL),(54,2,'Downloaded Invoice','49','Downloaded Invoice',NULL,1,NULL,49,'Downloaded Invoice.',0,1,1,NULL,NULL,NULL),(55,2,'Emailed Invoice','50','Emailed Invoice',NULL,1,NULL,50,'Emailed Invoice.',0,1,1,NULL,NULL,NULL),(56,3,'Female','1','Female',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(57,3,'Male','2','Male',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(58,3,'Transgender','3','Transgender',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(59,4,'Yahoo','1','Yahoo',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(60,4,'MSN','2','Msn',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(61,4,'AIM','3','Aim',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(62,4,'GTalk','4','Gtalk',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(63,4,'Jabber','5','Jabber',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(64,4,'Skype','6','Skype',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(65,5,'Sprint','1','Sprint',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(66,5,'Verizon','2','Verizon',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(67,5,'Cingular','3','Cingular',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(68,6,'Mrs.','1','Mrs.',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(69,6,'Ms.','2','Ms.',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(70,6,'Mr.','3','Mr.',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(71,6,'Dr.','4','Dr.',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(72,7,'Jr.','1','Jr.',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(73,7,'Sr.','2','Sr.',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(74,7,'II','3','II',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(75,7,'III','4','III',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(76,7,'IV','5','IV',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(77,7,'V','6','V',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(78,7,'VI','7','VI',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(79,7,'VII','8','VII',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(80,8,'Administrator','1','Admin',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(81,8,'Authenticated','2','Auth',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(82,9,'Visa','1','Visa',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(83,9,'MasterCard','2','MasterCard',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(84,9,'Amex','3','Amex',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(85,9,'Discover','4','Discover',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(86,10,'Credit Card','1','Credit Card',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(87,10,'Debit Card','2','Debit Card',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(88,10,'Cash','3','Cash',NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL),(89,10,'Check','4','Check',NULL,0,1,4,NULL,0,1,1,NULL,NULL,NULL),(90,10,'EFT','5','EFT',NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL),(91,11,'Completed','1','Completed',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(92,11,'Pending','2','Pending',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(93,11,'Cancelled','3','Cancelled',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(94,11,'Failed','4','Failed',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(95,11,'In Progress','5','In Progress',NULL,0,NULL,5,NULL,0,1,1,NULL,NULL,NULL),(96,11,'Overdue','6','Overdue',NULL,0,NULL,6,NULL,0,1,1,NULL,NULL,NULL),(97,11,'Refunded','7','Refunded',NULL,0,NULL,7,NULL,0,1,1,NULL,NULL,NULL),(98,11,'Partially paid','8','Partially paid',NULL,0,NULL,8,NULL,0,1,1,NULL,NULL,NULL),(99,11,'Pending refund','9','Pending refund',NULL,0,NULL,9,NULL,0,1,1,NULL,NULL,NULL),(100,12,'Waiting Review','1','Waiting Review',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(101,12,'Approved','2','Approved',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(102,12,'Not Approved','3','Not Approved',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(103,13,'Owner chooses whether to receive notifications','1','owner_chooses',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(104,13,'Notifications are sent to ALL owners','2','all_owners',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(105,13,'Notifications are NOT available','3','no_notifications',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(106,14,'Attendee','1','Attendee',NULL,1,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(107,14,'Volunteer','2','Volunteer',NULL,1,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(108,14,'Host','3','Host',NULL,1,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(109,14,'Speaker','4','Speaker',NULL,1,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(110,15,'Conference','1','Conference',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(111,15,'Exhibition','2','Exhibition',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(112,15,'Fundraiser','3','Fundraiser',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(113,15,'Meeting','4','Meeting',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(114,15,'Performance','5','Performance',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(115,15,'Workshop','6','Workshop',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(116,16,'Activities','1','activity',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(117,16,'Relationships','2','rel',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(118,16,'Groups','3','group',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(119,16,'Notes','4','note',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(120,16,'Tags','5','tag',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(121,16,'Change Log','6','log',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(122,16,'Contributions','7','CiviContribute',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(123,16,'Memberships','8','CiviMember',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(124,16,'Events','9','CiviEvent',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(125,16,'Cases','10','CiviCase',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(126,16,'Grants','11','CiviGrant',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(127,16,'Pledges','13','CiviPledge',NULL,0,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(128,16,'Mailings','14','CiviMail',NULL,0,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(129,17,'Show Smart Groups on Demand','1','showondemand',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(130,17,'Always Show Smart Groups','2','alwaysshow',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(131,17,'Hide Smart Groups','3','hide',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(132,18,'Custom Data','1','CustomData',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(133,18,'Address','2','Address',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(134,18,'Communication Preferences','3','CommunicationPreferences',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(135,18,'Notes','4','Notes',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(136,18,'Demographics','5','Demographics',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(137,18,'Tags and Groups','6','TagsAndGroups',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(138,18,'Email','7','Email',NULL,1,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(139,18,'Phone','8','Phone',NULL,1,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(140,18,'Instant Messenger','9','IM',NULL,1,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(141,18,'Open ID','10','OpenID',NULL,1,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(142,18,'Website','11','Website',NULL,1,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(143,18,'Prefix','12','Prefix',NULL,2,NULL,12,NULL,0,0,1,NULL,NULL,NULL),(144,18,'Formal Title','13','Formal Title',NULL,2,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(145,18,'First Name','14','First Name',NULL,2,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(146,18,'Middle Name','15','Middle Name',NULL,2,NULL,15,NULL,0,0,1,NULL,NULL,NULL),(147,18,'Last Name','16','Last Name',NULL,2,NULL,16,NULL,0,0,1,NULL,NULL,NULL),(148,18,'Suffix','17','Suffix',NULL,2,NULL,17,NULL,0,0,1,NULL,NULL,NULL),(149,19,'Address Fields','1','location',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(150,19,'Custom Fields','2','custom',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(151,19,'Activities','3','activity',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(152,19,'Relationships','4','relationship',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(153,19,'Notes','5','notes',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(154,19,'Change Log','6','changeLog',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(155,19,'Contributions','7','CiviContribute',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(156,19,'Memberships','8','CiviMember',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(157,19,'Events','9','CiviEvent',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(158,19,'Cases','10','CiviCase',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(159,19,'Grants','12','CiviGrant',NULL,0,NULL,14,NULL,0,0,1,NULL,NULL,NULL),(160,19,'Demographics','13','demographics',NULL,0,NULL,15,NULL,0,0,1,NULL,NULL,NULL),(161,19,'Pledges','15','CiviPledge',NULL,0,NULL,17,NULL,0,0,1,NULL,NULL,NULL),(162,19,'Contact Type','16','contactType',NULL,0,NULL,18,NULL,0,0,1,NULL,NULL,NULL),(163,19,'Groups','17','groups',NULL,0,NULL,19,NULL,0,0,1,NULL,NULL,NULL),(164,19,'Tags','18','tags',NULL,0,NULL,20,NULL,0,0,1,NULL,NULL,NULL),(165,19,'Mailing','19','CiviMail',NULL,0,NULL,21,NULL,0,0,1,NULL,NULL,NULL),(166,20,'Groups','1','Groups',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(167,20,'Contributions','2','CiviContribute',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(168,20,'Memberships','3','CiviMember',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(169,20,'Events','4','CiviEvent',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(170,20,'My Contacts / Organizations','5','Permissioned Orgs',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(171,20,'Pledges','7','CiviPledge',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(172,20,'Personal Campaign Pages','8','PCP',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(173,20,'Assigned Activities','9','Assigned Activities',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(174,20,'Invoices / Credit Notes','10','Invoices / Credit Notes',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(175,45,'Email Address','2','email',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(176,45,'Phone','3','phone',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(177,45,'Street Address','4','street_address',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(178,45,'City','5','city',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(179,45,'State/Province','6','state_province',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(180,45,'Country','7','country',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(181,45,'Postal Code','8','postal_code',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(182,46,'Email Address','2','email',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(183,46,'Phone','3','phone',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(184,46,'Street Address','4','street_address',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(185,46,'City','5','city',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(186,46,'State/Province','6','state_province',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(187,46,'Country','7','country',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(188,46,'Postal Code','8','country',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(189,21,'Street Address','1','street_address',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(190,21,'Supplemental Address 1','2','supplemental_address_1',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(191,21,'Supplemental Address 2','3','supplemental_address_2',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(192,21,'City','4','city',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(193,21,'Zip / Postal Code','5','postal_code',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(194,21,'Postal Code Suffix','6','postal_code_suffix',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(195,21,'County','7','county',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(196,21,'State/Province','8','state_province',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(197,21,'Country','9','country',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(198,21,'Latitude','10','geo_code_1',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(199,21,'Longitude','11','geo_code_2',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(200,21,'Address Name','12','address_name',NULL,0,NULL,12,NULL,0,0,1,NULL,NULL,NULL),(201,21,'Street Address Parsing','13','street_address_parsing',NULL,0,NULL,13,NULL,0,0,1,NULL,NULL,NULL),(202,22,'Access Control','1',NULL,NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(203,22,'Mailing List','2',NULL,NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(204,23,'Submitted','1','Submitted',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(205,23,'Eligible','2','Eligible',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(206,23,'Ineligible','3','Ineligible',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(207,23,'Paid','4','Paid',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(208,23,'Awaiting Information','5','Awaiting Information',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(209,23,'Withdrawn','6','Withdrawn',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(210,23,'Approved for Payment','7','Approved for Payment',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(211,25,'CRM_Contact_Form_Search_Custom_Sample','1','CRM_Contact_Form_Search_Custom_Sample',NULL,0,NULL,1,'Household Name and State',0,0,1,NULL,NULL,NULL),(212,25,'CRM_Contact_Form_Search_Custom_ContributionAggregate','2','CRM_Contact_Form_Search_Custom_ContributionAggregate',NULL,0,NULL,2,'Contribution Aggregate',0,0,1,NULL,NULL,NULL),(213,25,'CRM_Contact_Form_Search_Custom_Basic','3','CRM_Contact_Form_Search_Custom_Basic',NULL,0,NULL,3,'Basic Search',0,0,1,NULL,NULL,NULL),(214,25,'CRM_Contact_Form_Search_Custom_Group','4','CRM_Contact_Form_Search_Custom_Group',NULL,0,NULL,4,'Include / Exclude Search',0,0,1,NULL,NULL,NULL),(215,25,'CRM_Contact_Form_Search_Custom_PostalMailing','5','CRM_Contact_Form_Search_Custom_PostalMailing',NULL,0,NULL,5,'Postal Mailing',0,0,1,NULL,NULL,NULL),(216,25,'CRM_Contact_Form_Search_Custom_Proximity','6','CRM_Contact_Form_Search_Custom_Proximity',NULL,0,NULL,6,'Proximity Search',0,0,1,NULL,NULL,NULL),(217,25,'CRM_Contact_Form_Search_Custom_EventAggregate','7','CRM_Contact_Form_Search_Custom_EventAggregate',NULL,0,NULL,7,'Event Aggregate',0,0,1,NULL,NULL,NULL),(218,25,'CRM_Contact_Form_Search_Custom_ActivitySearch','8','CRM_Contact_Form_Search_Custom_ActivitySearch',NULL,0,NULL,8,'Activity Search',0,0,1,NULL,NULL,NULL),(219,25,'CRM_Contact_Form_Search_Custom_PriceSet','9','CRM_Contact_Form_Search_Custom_PriceSet',NULL,0,NULL,9,'Price Set Details for Event Participants',0,0,1,NULL,NULL,NULL),(220,25,'CRM_Contact_Form_Search_Custom_ZipCodeRange','10','CRM_Contact_Form_Search_Custom_ZipCodeRange',NULL,0,NULL,10,'Zip Code Range',0,0,1,NULL,NULL,NULL),(221,25,'CRM_Contact_Form_Search_Custom_DateAdded','11','CRM_Contact_Form_Search_Custom_DateAdded',NULL,0,NULL,11,'Date Added to CiviCRM',0,0,1,NULL,NULL,NULL),(222,25,'CRM_Contact_Form_Search_Custom_MultipleValues','12','CRM_Contact_Form_Search_Custom_MultipleValues',NULL,0,NULL,12,'Custom Group Multiple Values Listing',0,0,1,NULL,NULL,NULL),(223,25,'CRM_Contact_Form_Search_Custom_ContribSYBNT','13','CRM_Contact_Form_Search_Custom_ContribSYBNT',NULL,0,NULL,13,'Contributions made in Year X and not Year Y',0,0,1,NULL,NULL,NULL),(224,25,'CRM_Contact_Form_Search_Custom_TagContributions','14','CRM_Contact_Form_Search_Custom_TagContributions',NULL,0,NULL,14,'Find Contribution Amounts by Tag',0,0,1,NULL,NULL,NULL),(225,25,'CRM_Contact_Form_Search_Custom_FullText','15','CRM_Contact_Form_Search_Custom_FullText',NULL,0,NULL,15,'Full-text Search',0,0,1,NULL,NULL,NULL),(226,41,'Constituent Report (Summary)','contact/summary','CRM_Report_Form_Contact_Summary',NULL,0,NULL,1,'Provides a list of address and telephone information for constituent records in your system.',0,0,1,NULL,NULL,NULL),(227,41,'Constituent Report (Detail)','contact/detail','CRM_Report_Form_Contact_Detail',NULL,0,NULL,2,'Provides contact-related information on contributions, memberships, events and activities.',0,0,1,NULL,NULL,NULL),(228,41,'Activity Report','activity','CRM_Report_Form_Activity',NULL,0,NULL,3,'Provides a list of constituent activity including activity statistics for one/all contacts during a given date range(required)',0,0,1,NULL,NULL,NULL),(229,41,'Walk / Phone List Report','walklist','CRM_Report_Form_Walklist_Walklist',NULL,0,NULL,4,'Provides a detailed report for your walk/phonelist for targetted contacts',0,0,0,NULL,NULL,NULL),(230,41,'Current Employer Report','contact/currentEmployer','CRM_Report_Form_Contact_CurrentEmployer',NULL,0,NULL,5,'Provides detail list of employer employee relationships along with employment details Ex Join Date',0,0,1,NULL,NULL,NULL),(231,41,'Contribution Summary Report','contribute/summary','CRM_Report_Form_Contribute_Summary',NULL,0,NULL,6,'Groups and totals contributions by criteria including contact, time period, financial type, contributor location, etc.',0,0,1,2,NULL,NULL),(232,41,'Contribution Detail Report','contribute/detail','CRM_Report_Form_Contribute_Detail',NULL,0,NULL,7,'Lists specific contributions by criteria including contact, time period, financial type, contributor location, etc. Contribution summary report points to this report for contribution details.',0,0,1,2,NULL,NULL),(233,41,'Repeat Contributions Report','contribute/repeat','CRM_Report_Form_Contribute_Repeat',NULL,0,NULL,8,'Given two date ranges, shows contacts who contributed in both the date ranges with the amount contributed in each and the percentage increase / decrease.',0,0,1,2,NULL,NULL),(234,41,'Contributions by Organization Report','contribute/organizationSummary','CRM_Report_Form_Contribute_OrganizationSummary',NULL,0,NULL,9,'Displays a detailed list of contributions grouped by organization, which includes contributions made by employees for the organisation.',0,0,1,2,NULL,NULL),(235,41,'Contributions by Household Report','contribute/householdSummary','CRM_Report_Form_Contribute_HouseholdSummary',NULL,0,NULL,10,'Displays a detailed list of contributions grouped by household which includes contributions made by members of the household.',0,0,1,2,NULL,NULL),(236,41,'Top Donors Report','contribute/topDonor','CRM_Report_Form_Contribute_TopDonor',NULL,0,NULL,11,'Provides a list of the top donors during a time period you define. You can include as many donors as you want (for example, top 100 of your donors).',0,0,1,2,NULL,NULL),(237,41,'SYBUNT Report','contribute/sybunt','CRM_Report_Form_Contribute_Sybunt',NULL,0,NULL,12,'SYBUNT means some year(s) but not this year. Provides a list of constituents who donated at some time in the history of your organization but did not donate during the time period you specify.',0,0,1,2,NULL,NULL),(238,41,'LYBUNT Report','contribute/lybunt','CRM_Report_Form_Contribute_Lybunt',NULL,0,NULL,13,'LYBUNT means last year but not this year. Provides a list of constituents who donated last year but did not donate during the time period you specify as the current year.',0,0,1,2,NULL,NULL),(239,41,'Soft Credit Report','contribute/softcredit','CRM_Report_Form_Contribute_SoftCredit',NULL,0,NULL,14,'Shows contributions made by contacts that have been soft-credited to other contacts.',0,0,1,2,NULL,NULL),(240,41,'Membership Report (Summary)','member/summary','CRM_Report_Form_Member_Summary',NULL,0,NULL,15,'Provides a summary of memberships by type and join date.',0,0,1,3,NULL,NULL),(241,41,'Membership Report (Detail)','member/detail','CRM_Report_Form_Member_Detail',NULL,0,NULL,16,'Provides a list of members along with their membership status and membership details (Join Date, Start Date, End Date). Can also display contributions (payments) associated with each membership.',0,0,1,3,NULL,NULL),(242,41,'Membership Report (Lapsed)','member/lapse','CRM_Report_Form_Member_Lapse',NULL,0,NULL,17,'Provides a list of memberships that lapsed or will lapse before the date you specify.',0,0,1,3,NULL,NULL),(243,41,'Event Participant Report (List)','event/participantListing','CRM_Report_Form_Event_ParticipantListing',NULL,0,NULL,18,'Provides lists of participants for an event.',0,0,1,1,NULL,NULL),(244,41,'Event Income Report (Summary)','event/summary','CRM_Report_Form_Event_Summary',NULL,0,NULL,19,'Provides an overview of event income. You can include key information such as event ID, registration, attendance, and income generated to help you determine the success of an event.',0,0,1,1,NULL,NULL),(245,41,'Event Income Report (Detail)','event/income','CRM_Report_Form_Event_Income',NULL,0,NULL,20,'Helps you to analyze the income generated by an event. The report can include details by participant type, status and payment method.',0,0,1,1,NULL,NULL),(246,41,'Pledge Report','pledge/detail','CRM_Report_Form_Pledge_Detail',NULL,0,NULL,21,'Pledge Report',0,0,1,6,NULL,NULL),(247,41,'Pledged but not Paid Report','pledge/pbnp','CRM_Report_Form_Pledge_Pbnp',NULL,0,NULL,22,'Pledged but not Paid Report',0,0,1,6,NULL,NULL),(248,41,'Relationship Report','contact/relationship','CRM_Report_Form_Contact_Relationship',NULL,0,NULL,23,'Relationship Report',0,0,1,NULL,NULL,NULL),(249,41,'Case Summary Report','case/summary','CRM_Report_Form_Case_Summary',NULL,0,NULL,24,'Provides a summary of cases and their duration by date range, status, staff member and / or case role.',0,0,1,7,NULL,NULL),(250,41,'Case Time Spent Report','case/timespent','CRM_Report_Form_Case_TimeSpent',NULL,0,NULL,25,'Aggregates time spent on case and / or non-case activities by activity type and contact.',0,0,1,7,NULL,NULL),(251,41,'Contact Demographics Report','case/demographics','CRM_Report_Form_Case_Demographics',NULL,0,NULL,26,'Demographic breakdown for case clients (and or non-case contacts) in your database. Includes custom contact fields.',0,0,1,7,NULL,NULL),(252,41,'Database Log Report','contact/log','CRM_Report_Form_Contact_Log',NULL,0,NULL,27,'Log of contact and activity records created or updated in a given date range.',0,0,1,NULL,NULL,NULL),(253,41,'Activity Report (Summary)','activitySummary','CRM_Report_Form_ActivitySummary',NULL,0,NULL,28,'Shows activity statistics by type / date',0,0,1,NULL,NULL,NULL),(254,41,'Bookkeeping Transactions Report','contribute/bookkeeping','CRM_Report_Form_Contribute_Bookkeeping',NULL,0,0,29,'Shows Bookkeeping Transactions Report',0,0,1,2,NULL,NULL),(255,41,'Grant Report (Detail)','grant/detail','CRM_Report_Form_Grant_Detail',NULL,0,0,30,'Grant Report Detail',0,0,1,5,NULL,NULL),(256,41,'Participant list Count Report','event/participantlist','CRM_Report_Form_Event_ParticipantListCount',NULL,0,0,31,'Shows the Participant list with Participant Count.',0,0,1,1,NULL,NULL),(257,41,'Income Count Summary Report','event/incomesummary','CRM_Report_Form_Event_IncomeCountSummary',NULL,0,0,32,'Shows the Income Summary of events with Count.',0,0,1,1,NULL,NULL),(258,41,'Case Detail Report','case/detail','CRM_Report_Form_Case_Detail',NULL,0,0,33,'Case Details',0,0,1,7,NULL,NULL),(259,41,'Mail Bounce Report','Mailing/bounce','CRM_Report_Form_Mailing_Bounce',NULL,0,NULL,34,'Bounce Report for mailings',0,0,1,4,NULL,NULL),(260,41,'Mail Summary Report','Mailing/summary','CRM_Report_Form_Mailing_Summary',NULL,0,NULL,35,'Summary statistics for mailings',0,0,1,4,NULL,NULL),(261,41,'Mail Opened Report','Mailing/opened','CRM_Report_Form_Mailing_Opened',NULL,0,NULL,36,'Display contacts who opened emails from a mailing',0,0,1,4,NULL,NULL),(262,41,'Mail Clickthrough Report','Mailing/clicks','CRM_Report_Form_Mailing_Clicks',NULL,0,NULL,37,'Display clicks from each mailing',0,0,1,4,NULL,NULL),(263,41,'Contact Logging Report (Summary)','logging/contact/summary','CRM_Report_Form_Contact_LoggingSummary',NULL,0,NULL,38,'Contact modification report for the logging infrastructure (summary).',0,0,0,NULL,NULL,NULL),(264,41,'Contact Logging Report (Detail)','logging/contact/detail','CRM_Report_Form_Contact_LoggingDetail',NULL,0,NULL,39,'Contact modification report for the logging infrastructure (detail).',0,0,0,NULL,NULL,NULL),(265,41,'Contribute Logging Report (Summary)','logging/contribute/summary','CRM_Report_Form_Contribute_LoggingSummary',NULL,0,NULL,40,'Contribute modification report for the logging infrastructure (summary).',0,0,0,2,NULL,NULL),(266,41,'Contribute Logging Report (Detail)','logging/contribute/detail','CRM_Report_Form_Contribute_LoggingDetail',NULL,0,NULL,41,'Contribute modification report for the logging infrastructure (detail).',0,0,0,2,NULL,NULL),(267,41,'Grant Report (Statistics)','grant/statistics','CRM_Report_Form_Grant_Statistics',NULL,0,NULL,42,'Shows statistics for Grants.',0,0,1,5,NULL,NULL),(268,41,'Survey Report (Detail)','survey/detail','CRM_Report_Form_Campaign_SurveyDetails',NULL,0,NULL,43,'Detailed report for canvassing, phone-banking, walk lists or other surveys.',0,0,1,9,NULL,NULL),(269,41,'Personal Campaign Page Report','contribute/pcp','CRM_Report_Form_Contribute_PCP',NULL,0,NULL,44,'Summarizes amount raised and number of contributors for each Personal Campaign Page.',0,0,1,2,NULL,NULL),(270,41,'Pledge Summary Report','pledge/summary','CRM_Report_Form_Pledge_Summary',NULL,0,NULL,45,'Summary of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.',0,0,1,6,NULL,NULL),(271,41,'Contribution Aggregate by Relationship','contribute/history','CRM_Report_Form_Contribute_History',NULL,0,NULL,46,'List contact\'s donation history, grouped by year, along with contributions attributed to any of the contact\'s related contacts.',0,0,1,2,NULL,NULL),(272,41,'Mail Detail Report','mailing/detail','CRM_Report_Form_Mailing_Detail',NULL,0,NULL,47,'Provides reporting on Intended and Successful Deliveries, Unsubscribes and Opt-outs, Replies and Forwards.',0,0,1,4,NULL,NULL),(273,41,'Contribution and Membership Details','member/contributionDetail','CRM_Report_Form_Member_ContributionDetail',NULL,0,NULL,48,'Contribution details for any type of contribution, plus associated membership information for contributions which are in payment for memberships.',0,0,1,3,NULL,NULL),(274,41,'Recurring Contributions Report','contribute/recur','CRM_Report_Form_Contribute_Recur',NULL,0,NULL,49,'Provides information about the status of recurring contributions',0,0,1,2,NULL,NULL),(275,26,'Scheduled','1','Scheduled',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(276,26,'Completed','2','Completed',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(277,26,'Cancelled','3','Cancelled',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(278,26,'Left Message','4','Left Message',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(279,26,'Unreachable','5','Unreachable',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(280,26,'Not Required','6','Not Required',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(281,26,'Available','7','Available',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(282,26,'No-show','8','No_show',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(283,28,'Ongoing','1','Open','Opened',0,1,1,NULL,0,1,1,NULL,NULL,NULL),(284,28,'Resolved','2','Closed','Closed',0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(285,28,'Urgent','3','Urgent','Opened',0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(286,29,'Name Only','1','Name Only',NULL,0,0,1,'CRM_Event_Page_ParticipantListing_Name',0,1,1,NULL,NULL,NULL),(287,29,'Name and Email','2','Name and Email',NULL,0,0,2,'CRM_Event_Page_ParticipantListing_NameAndEmail',0,1,1,NULL,NULL,NULL),(288,29,'Name, Status and Register Date','3','Name, Status and Register Date',NULL,0,0,3,'CRM_Event_Page_ParticipantListing_NameStatusAndDate',0,1,1,NULL,NULL,NULL),(289,30,'jpg','1',NULL,NULL,0,0,1,NULL,0,0,1,NULL,NULL,NULL),(290,30,'jpeg','2',NULL,NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL),(291,30,'png','3',NULL,NULL,0,0,3,NULL,0,0,1,NULL,NULL,NULL),(292,30,'gif','4',NULL,NULL,0,0,4,NULL,0,0,1,NULL,NULL,NULL),(293,30,'txt','5',NULL,NULL,0,0,5,NULL,0,0,1,NULL,NULL,NULL),(294,30,'pdf','6',NULL,NULL,0,0,6,NULL,0,0,1,NULL,NULL,NULL),(295,30,'doc','7',NULL,NULL,0,0,7,NULL,0,0,1,NULL,NULL,NULL),(296,30,'xls','8',NULL,NULL,0,0,8,NULL,0,0,1,NULL,NULL,NULL),(297,30,'rtf','9',NULL,NULL,0,0,9,NULL,0,0,1,NULL,NULL,NULL),(298,30,'csv','10',NULL,NULL,0,0,10,NULL,0,0,1,NULL,NULL,NULL),(299,30,'ppt','11',NULL,NULL,0,0,11,NULL,0,0,1,NULL,NULL,NULL),(300,30,'docx','12',NULL,NULL,0,0,12,NULL,0,0,1,NULL,NULL,NULL),(301,30,'xlsx','13',NULL,NULL,0,0,13,NULL,0,0,1,NULL,NULL,NULL),(302,33,'TinyMCE','1',NULL,NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(303,33,'CKEditor','2',NULL,NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(304,33,'Joomla Default Editor','3',NULL,NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(305,33,'Drupal Default Editor','4',NULL,NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(306,32,'Search Builder','1','Search Builder',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(307,32,'Import Contact','2','Import Contact',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(308,32,'Import Activity','3','Import Activity',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(309,32,'Import Contribution','4','Import Contribution',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(310,32,'Import Membership','5','Import Membership',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL),(311,32,'Import Participant','6','Import Participant',NULL,0,0,6,NULL,0,1,1,NULL,NULL,NULL),(312,32,'Export Contact','7','Export Contact',NULL,0,0,7,NULL,0,1,1,NULL,NULL,NULL),(313,32,'Export Contribution','8','Export Contribution',NULL,0,0,8,NULL,0,1,1,NULL,NULL,NULL),(314,32,'Export Membership','9','Export Membership',NULL,0,0,9,NULL,0,1,1,NULL,NULL,NULL),(315,32,'Export Participant','10','Export Participant',NULL,0,0,10,NULL,0,1,1,NULL,NULL,NULL),(316,32,'Export Pledge','11','Export Pledge',NULL,0,0,11,NULL,0,1,1,NULL,NULL,NULL),(317,32,'Export Case','12','Export Case',NULL,0,0,12,NULL,0,1,1,NULL,NULL,NULL),(318,32,'Export Grant','13','Export Grant',NULL,0,0,13,NULL,0,1,1,NULL,NULL,NULL),(319,32,'Export Activity','14','Export Activity',NULL,0,0,14,NULL,0,1,1,NULL,NULL,NULL),(320,34,'day','day','day',NULL,0,NULL,1,NULL,0,1,1,NULL,NULL,NULL),(321,34,'week','week','week',NULL,0,NULL,2,NULL,0,1,1,NULL,NULL,NULL),(322,34,'month','month','month',NULL,0,NULL,3,NULL,0,1,1,NULL,NULL,NULL),(323,34,'year','year','year',NULL,0,NULL,4,NULL,0,1,1,NULL,NULL,NULL),(324,35,'Phone','1','Phone',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(325,35,'Mobile','2','Mobile',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(326,35,'Fax','3','Fax',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(327,35,'Pager','4','Pager',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(328,35,'Voicemail','5','Voicemail',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(329,36,'Participant Role','1','ParticipantRole',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(330,36,'Participant Event Name','2','ParticipantEventName',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(331,36,'Participant Event Type','3','ParticipantEventType',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(332,37,'Public','1','public',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(333,37,'Admin','2','admin',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(334,38,'IMAP','1','IMAP',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(335,38,'Maildir','2','Maildir',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(336,38,'POP3','3','POP3',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(337,38,'Localdir','4','Localdir',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(338,39,'Urgent','1','Urgent',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(339,39,'Normal','2','Normal',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(340,39,'Low','3','Low',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(341,40,'Vancouver','city_',NULL,NULL,0,NULL,1,NULL,0,0,0,NULL,NULL,NULL),(342,40,'/(19|20)(\\d{2})-(\\d{1,2})-(\\d{1,2})/','date_',NULL,NULL,1,NULL,2,NULL,0,0,0,NULL,NULL,NULL),(343,42,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(344,42,'Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}','2','Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL),(345,42,'Dear {contact.individual_prefix} {contact.last_name}','3','Dear {contact.individual_prefix} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL),(346,42,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(347,42,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL),(348,43,'Dear {contact.first_name}','1','Dear {contact.first_name}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(349,43,'Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}','2','Dear {contact.individual_prefix} {contact.first_name} {contact.last_name}',NULL,1,0,2,NULL,0,0,1,NULL,NULL,NULL),(350,43,'Dear {contact.individual_prefix} {contact.last_name}','3','Dear {contact.individual_prefix} {contact.last_name}',NULL,1,0,3,NULL,0,0,1,NULL,NULL,NULL),(351,43,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(352,43,'Dear {contact.household_name}','5','Dear {contact.household_name}',NULL,2,1,5,NULL,0,0,1,NULL,NULL,NULL),(353,44,'{contact.individual_prefix}{ } {contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.individual_suffix}','1','}{contact.individual_prefix}{ } {contact.first_name}{ }{contact.middle_name}{ }{contact.last_name}{ }{contact.individual_suffix}',NULL,1,1,1,NULL,0,0,1,NULL,NULL,NULL),(354,44,'{contact.household_name}','2','{contact.household_name}',NULL,2,1,2,NULL,0,0,1,NULL,NULL,NULL),(355,44,'{contact.organization_name}','3','{contact.organization_name}',NULL,3,1,3,NULL,0,0,1,NULL,NULL,NULL),(356,44,'Customized','4','Customized',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(357,47,'Work','1','Work',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(358,47,'Main','2','Main',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(359,47,'Facebook','3','Facebook',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(360,47,'Google+','4','Google_',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(361,47,'Instagram','5','Instagram',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(362,47,'LinkedIn','6','LinkedIn',NULL,0,NULL,6,NULL,0,0,1,NULL,NULL,NULL),(363,47,'MySpace','7','MySpace',NULL,0,NULL,7,NULL,0,0,1,NULL,NULL,NULL),(364,47,'Pinterest','8','Pinterest',NULL,0,NULL,8,NULL,0,0,1,NULL,NULL,NULL),(365,47,'SnapChat','9','SnapChat',NULL,0,NULL,9,NULL,0,0,1,NULL,NULL,NULL),(366,47,'Tumblr','10','Tumblr',NULL,0,NULL,10,NULL,0,0,1,NULL,NULL,NULL),(367,47,'Twitter','11','Twitter',NULL,0,NULL,11,NULL,0,0,1,NULL,NULL,NULL),(368,47,'Vine','12','Vine ',NULL,0,NULL,12,NULL,0,0,1,NULL,NULL,NULL),(369,48,'Contacts','civicrm_contact','Contacts',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(370,48,'Activities','civicrm_activity','Activities',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(371,48,'Cases','civicrm_case','Cases',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(372,48,'Attachments','civicrm_file','Attachements',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(373,49,'USD ($)','USD','USD',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(374,50,'Name Only','1','CRM_Event_Badge_Simple',NULL,0,0,1,'Simple Event Name Badge',0,1,1,NULL,NULL,NULL),(375,50,'Name Tent','2','CRM_Event_Badge_NameTent',NULL,0,0,2,'Name Tent',0,1,1,NULL,NULL,NULL),(376,50,'With Logo','3','CRM_Event_Badge_Logo',NULL,0,0,3,'You can set your own background image',0,1,1,NULL,NULL,NULL),(377,50,'5395 with Logo','4','CRM_Event_Badge_Logo5395',NULL,0,0,4,'Avery 5395 compatible labels with logo (4 up by 2, 59.2mm x 85.7mm)',0,1,1,NULL,NULL,NULL),(378,51,'None','0','',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(379,51,'Author Only','1','',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(380,52,'Direct Mail','1','Direct Mail',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(381,52,'Referral Program','2','Referral Program',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(382,52,'Constituent Engagement','3','Constituent Engagement',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(383,53,'Planned','1','Planned',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(384,53,'In Progress','2','In Progress',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(385,53,'Completed','3','Completed',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(386,53,'Cancelled','4','Cancelled',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(387,56,'1','1','1',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(388,56,'2','2','2',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(389,56,'3','3','3',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(390,56,'4','4','4',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(391,56,'5','5','5',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(392,58,'Letter','{\"metric\":\"in\",\"width\":8.5,\"height\":11}','letter',NULL,NULL,1,1,NULL,0,0,1,NULL,NULL,NULL),(393,58,'Legal','{\"metric\":\"in\",\"width\":8.5,\"height\":14}','legal',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(394,58,'Ledger','{\"metric\":\"in\",\"width\":17,\"height\":11}','ledger',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(395,58,'Tabloid','{\"metric\":\"in\",\"width\":11,\"height\":17}','tabloid',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(396,58,'Executive','{\"metric\":\"in\",\"width\":7.25,\"height\":10.5}','executive',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(397,58,'Folio','{\"metric\":\"in\",\"width\":8.5,\"height\":13}','folio',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(398,58,'Envelope #9','{\"metric\":\"pt\",\"width\":638.93,\"height\":278.93}','envelope-9',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(399,58,'Envelope #10','{\"metric\":\"pt\",\"width\":684,\"height\":297}','envelope-10',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(400,58,'Envelope #11','{\"metric\":\"pt\",\"width\":747,\"height\":324}','envelope-11',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(401,58,'Envelope #12','{\"metric\":\"pt\",\"width\":792,\"height\":342}','envelope-12',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL),(402,58,'Envelope #14','{\"metric\":\"pt\",\"width\":828,\"height\":360}','envelope-14',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL),(403,58,'Envelope ISO B4','{\"metric\":\"pt\",\"width\":1000.63,\"height\":708.66}','envelope-b4',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL),(404,58,'Envelope ISO B5','{\"metric\":\"pt\",\"width\":708.66,\"height\":498.9}','envelope-b5',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL),(405,58,'Envelope ISO B6','{\"metric\":\"pt\",\"width\":498.9,\"height\":354.33}','envelope-b6',NULL,NULL,0,14,NULL,0,0,1,NULL,NULL,NULL),(406,58,'Envelope ISO C3','{\"metric\":\"pt\",\"width\":1298.27,\"height\":918.42}','envelope-c3',NULL,NULL,0,15,NULL,0,0,1,NULL,NULL,NULL),(407,58,'Envelope ISO C4','{\"metric\":\"pt\",\"width\":918.42,\"height\":649.13}','envelope-c4',NULL,NULL,0,16,NULL,0,0,1,NULL,NULL,NULL),(408,58,'Envelope ISO C5','{\"metric\":\"pt\",\"width\":649.13,\"height\":459.21}','envelope-c5',NULL,NULL,0,17,NULL,0,0,1,NULL,NULL,NULL),(409,58,'Envelope ISO C6','{\"metric\":\"pt\",\"width\":459.21,\"height\":323.15}','envelope-c6',NULL,NULL,0,18,NULL,0,0,1,NULL,NULL,NULL),(410,58,'Envelope ISO DL','{\"metric\":\"pt\",\"width\":623.622,\"height\":311.811}','envelope-dl',NULL,NULL,0,19,NULL,0,0,1,NULL,NULL,NULL),(411,58,'ISO A0','{\"metric\":\"pt\",\"width\":2383.94,\"height\":3370.39}','a0',NULL,NULL,0,20,NULL,0,0,1,NULL,NULL,NULL),(412,58,'ISO A1','{\"metric\":\"pt\",\"width\":1683.78,\"height\":2383.94}','a1',NULL,NULL,0,21,NULL,0,0,1,NULL,NULL,NULL),(413,58,'ISO A2','{\"metric\":\"pt\",\"width\":1190.55,\"height\":1683.78}','a2',NULL,NULL,0,22,NULL,0,0,1,NULL,NULL,NULL),(414,58,'ISO A3','{\"metric\":\"pt\",\"width\":841.89,\"height\":1190.55}','a3',NULL,NULL,0,23,NULL,0,0,1,NULL,NULL,NULL),(415,58,'ISO A4','{\"metric\":\"pt\",\"width\":595.28,\"height\":841.89}','a4',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL),(416,58,'ISO A5','{\"metric\":\"pt\",\"width\":419.53,\"height\":595.28}','a5',NULL,NULL,0,25,NULL,0,0,1,NULL,NULL,NULL),(417,58,'ISO A6','{\"metric\":\"pt\",\"width\":297.64,\"height\":419.53}','a6',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL),(418,58,'ISO A7','{\"metric\":\"pt\",\"width\":209.76,\"height\":297.64}','a7',NULL,NULL,0,27,NULL,0,0,1,NULL,NULL,NULL),(419,58,'ISO A8','{\"metric\":\"pt\",\"width\":147.4,\"height\":209.76}','a8',NULL,NULL,0,28,NULL,0,0,1,NULL,NULL,NULL),(420,58,'ISO A9','{\"metric\":\"pt\",\"width\":104.88,\"height\":147.4}','a9',NULL,NULL,0,29,NULL,0,0,1,NULL,NULL,NULL),(421,58,'ISO A10','{\"metric\":\"pt\",\"width\":73.7,\"height\":104.88}','a10',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL),(422,58,'ISO B0','{\"metric\":\"pt\",\"width\":2834.65,\"height\":4008.19}','b0',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL),(423,58,'ISO B1','{\"metric\":\"pt\",\"width\":2004.09,\"height\":2834.65}','b1',NULL,NULL,0,32,NULL,0,0,1,NULL,NULL,NULL),(424,58,'ISO B2','{\"metric\":\"pt\",\"width\":1417.32,\"height\":2004.09}','b2',NULL,NULL,0,33,NULL,0,0,1,NULL,NULL,NULL),(425,58,'ISO B3','{\"metric\":\"pt\",\"width\":1000.63,\"height\":1417.32}','b3',NULL,NULL,0,34,NULL,0,0,1,NULL,NULL,NULL),(426,58,'ISO B4','{\"metric\":\"pt\",\"width\":708.66,\"height\":1000.63}','b4',NULL,NULL,0,35,NULL,0,0,1,NULL,NULL,NULL),(427,58,'ISO B5','{\"metric\":\"pt\",\"width\":498.9,\"height\":708.66}','b5',NULL,NULL,0,36,NULL,0,0,1,NULL,NULL,NULL),(428,58,'ISO B6','{\"metric\":\"pt\",\"width\":354.33,\"height\":498.9}','b6',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL),(429,58,'ISO B7','{\"metric\":\"pt\",\"width\":249.45,\"height\":354.33}','b7',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL),(430,58,'ISO B8','{\"metric\":\"pt\",\"width\":175.75,\"height\":249.45}','b8',NULL,NULL,0,39,NULL,0,0,1,NULL,NULL,NULL),(431,58,'ISO B9','{\"metric\":\"pt\",\"width\":124.72,\"height\":175.75}','b9',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL),(432,58,'ISO B10','{\"metric\":\"pt\",\"width\":87.87,\"height\":124.72}','b10',NULL,NULL,0,41,NULL,0,0,1,NULL,NULL,NULL),(433,58,'ISO C0','{\"metric\":\"pt\",\"width\":2599.37,\"height\":3676.54}','c0',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL),(434,58,'ISO C1','{\"metric\":\"pt\",\"width\":1836.85,\"height\":2599.37}','c1',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL),(435,58,'ISO C2','{\"metric\":\"pt\",\"width\":1298.27,\"height\":1836.85}','c2',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL),(436,58,'ISO C3','{\"metric\":\"pt\",\"width\":918.43,\"height\":1298.27}','c3',NULL,NULL,0,45,NULL,0,0,1,NULL,NULL,NULL),(437,58,'ISO C4','{\"metric\":\"pt\",\"width\":649.13,\"height\":918.43}','c4',NULL,NULL,0,46,NULL,0,0,1,NULL,NULL,NULL),(438,58,'ISO C5','{\"metric\":\"pt\",\"width\":459.21,\"height\":649.13}','c5',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL),(439,58,'ISO C6','{\"metric\":\"pt\",\"width\":323.15,\"height\":459.21}','c6',NULL,NULL,0,48,NULL,0,0,1,NULL,NULL,NULL),(440,58,'ISO C7','{\"metric\":\"pt\",\"width\":229.61,\"height\":323.15}','c7',NULL,NULL,0,49,NULL,0,0,1,NULL,NULL,NULL),(441,58,'ISO C8','{\"metric\":\"pt\",\"width\":161.57,\"height\":229.61}','c8',NULL,NULL,0,50,NULL,0,0,1,NULL,NULL,NULL),(442,58,'ISO C9','{\"metric\":\"pt\",\"width\":113.39,\"height\":161.57}','c9',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL),(443,58,'ISO C10','{\"metric\":\"pt\",\"width\":79.37,\"height\":113.39}','c10',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL),(444,58,'ISO RA0','{\"metric\":\"pt\",\"width\":2437.8,\"height\":3458.27}','ra0',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL),(445,58,'ISO RA1','{\"metric\":\"pt\",\"width\":1729.13,\"height\":2437.8}','ra1',NULL,NULL,0,54,NULL,0,0,1,NULL,NULL,NULL),(446,58,'ISO RA2','{\"metric\":\"pt\",\"width\":1218.9,\"height\":1729.13}','ra2',NULL,NULL,0,55,NULL,0,0,1,NULL,NULL,NULL),(447,58,'ISO RA3','{\"metric\":\"pt\",\"width\":864.57,\"height\":1218.9}','ra3',NULL,NULL,0,56,NULL,0,0,1,NULL,NULL,NULL),(448,58,'ISO RA4','{\"metric\":\"pt\",\"width\":609.45,\"height\":864.57}','ra4',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL),(449,58,'ISO SRA0','{\"metric\":\"pt\",\"width\":2551.18,\"height\":3628.35}','sra0',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL),(450,58,'ISO SRA1','{\"metric\":\"pt\",\"width\":1814.17,\"height\":2551.18}','sra1',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL),(451,58,'ISO SRA2','{\"metric\":\"pt\",\"width\":1275.59,\"height\":1814.17}','sra2',NULL,NULL,0,60,NULL,0,0,1,NULL,NULL,NULL),(452,58,'ISO SRA3','{\"metric\":\"pt\",\"width\":907.09,\"height\":1275.59}','sra3',NULL,NULL,0,61,NULL,0,0,1,NULL,NULL,NULL),(453,58,'ISO SRA4','{\"metric\":\"pt\",\"width\":637.8,\"height\":907.09}','sra4',NULL,NULL,0,62,NULL,0,0,1,NULL,NULL,NULL),(454,61,'Activity Assignees','1','Activity Assignees',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(455,61,'Activity Source','2','Activity Source',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(456,61,'Activity Targets','3','Activity Targets',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(457,71,'Asset','1','Asset',NULL,0,0,1,'Things you own',0,1,1,2,NULL,NULL),(458,71,'Liability','2','Liability',NULL,0,0,2,'Things you own, like a grant still to be disbursed',0,1,1,2,NULL,NULL),(459,71,'Revenue','3','Revenue',NULL,0,1,3,'Income from contributions and sales of tickets and memberships',0,1,1,2,NULL,NULL),(460,71,'Cost of Sales','4','Cost of Sales',NULL,0,0,4,'Costs incurred to get revenue, e.g. premiums for donations, dinner for a fundraising dinner ticket',0,1,1,2,NULL,NULL),(461,71,'Expenses','5','Expenses',NULL,0,0,5,'Things that are paid for that are consumable, e.g. grants disbursed',0,1,1,2,NULL,NULL),(462,62,'Income Account is','1','Income Account is',NULL,0,1,1,'Income Account is',0,1,1,2,NULL,NULL),(463,62,'Credit/Contra Account is','2','Credit/Contra Account is',NULL,0,0,2,'Credit/Contra Account is',0,1,0,2,NULL,NULL),(464,62,'Accounts Receivable Account is','3','Accounts Receivable Account is',NULL,0,0,3,'Accounts Receivable Account is',0,1,1,2,NULL,NULL),(465,62,'Credit Liability Account is','4','Credit Liability Account is',NULL,0,0,4,'Credit Liability Account is',0,1,0,2,NULL,NULL),(466,62,'Expense Account is','5','Expense Account is',NULL,0,0,5,'Expense Account is',0,1,1,2,NULL,NULL),(467,62,'Asset Account is','6','Asset Account is',NULL,0,0,6,'Asset Account is',0,1,1,2,NULL,NULL),(468,62,'Cost of Sales Account is','7','Cost of Sales Account is',NULL,0,0,7,'Cost of Sales Account is',0,1,1,2,NULL,NULL),(469,62,'Premiums Inventory Account is','8','Premiums Inventory Account is',NULL,0,0,8,'Premiums Inventory Account is',0,1,1,2,NULL,NULL),(470,62,'Discounts Account is','9','Discounts Account is',NULL,0,0,9,'Discounts Account is',0,1,1,2,NULL,NULL),(471,62,'Sales Tax Account is','10','Sales Tax Account is',NULL,0,0,10,'Sales Tax Account is',0,1,1,2,NULL,NULL),(472,63,'Participant Role','1','participant_role',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(473,64,'Morning Sessions','1','Morning Sessions',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(474,64,'Evening Sessions','2','Evening Sessions',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(475,65,'Contribution','1','Contribution',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(476,65,'Membership','2','Membership',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(477,65,'Pledge Payment','3','Pledge Payment',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(478,67,'Open','1','Open',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(479,67,'Closed','2','Closed',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(480,67,'Data Entry','3','Data Entry',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(481,67,'Reopened','4','Reopened',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(482,67,'Exported','5','Exported',NULL,0,NULL,5,NULL,0,0,1,NULL,NULL,NULL),(483,66,'Manual Batch','1','Manual Batch',NULL,0,0,1,'Manual Batch',0,1,1,2,NULL,NULL),(484,66,'Automatic Batch','2','Automatic Batch',NULL,0,0,2,'Automatic Batch',0,1,1,2,NULL,NULL),(485,72,'Paid','1','Paid',NULL,0,0,1,'Paid',0,1,1,2,NULL,NULL),(486,72,'Partially paid','2','Partially paid',NULL,0,0,2,'Partially paid',0,1,1,2,NULL,NULL),(487,72,'Unpaid','3','Unpaid',NULL,0,0,1,'Unpaid',0,1,1,2,NULL,NULL),(488,68,'http','1','http',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(489,68,'xml','2','xml',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(490,68,'smtp','3','smtp',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(491,70,'Renewal Reminder (non-auto-renew memberships only)','1','Renewal Reminder (non-auto-renew memberships only)',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(492,70,'Auto-renew Memberships Only','2','Auto-renew Memberships Only',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(493,70,'Reminder for Both','3','Reminder for Both',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(494,73,'Event Badge','1','Event Badge',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(495,74,'Avery 5395','{\"name\":\"Avery 5395\",\"paper-size\":\"a4\",\"metric\":\"mm\",\"lMargin\":15,\"tMargin\":26,\"NX\":2,\"NY\":4,\"SpaceX\":10,\"SpaceY\":5,\"width\":83,\"height\":57,\"font-size\":12,\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-style\":\"\",\"lPadding\":3,\"tPadding\":3}','Avery 5395',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(496,74,'A6 Badge Portrait 150x106','{\"paper-size\":\"a4\",\"orientation\":\"landscape\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":1,\"metric\":\"mm\",\"lMargin\":25,\"tMargin\":27,\"SpaceX\":0,\"SpaceY\":35,\"width\":106,\"height\":150,\"lPadding\":5,\"tPadding\":5}','A6 Badge Portrait 150x106',NULL,0,NULL,2,NULL,0,0,1,NULL,NULL,NULL),(497,74,'Fattorini Name Badge 100x65','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":4,\"metric\":\"mm\",\"lMargin\":6,\"tMargin\":19,\"SpaceX\":0,\"SpaceY\":0,\"width\":100,\"height\":65,\"lPadding\":0,\"tPadding\":0}','Fattorini Name Badge 100x65',NULL,0,NULL,3,NULL,0,0,1,NULL,NULL,NULL),(498,74,'Hanging Badge 3-3/4\" x 4-3\"/4','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"times\",\"font-size\":6,\"font-style\":\"\",\"NX\":2,\"NY\":2,\"metric\":\"mm\",\"lMargin\":10,\"tMargin\":28,\"SpaceX\":0,\"SpaceY\":0,\"width\":96,\"height\":121,\"lPadding\":5,\"tPadding\":5}','Hanging Badge 3-3/4\" x 4-3\"/4',NULL,0,NULL,4,NULL,0,0,1,NULL,NULL,NULL),(499,60,'Avery 3475','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":10,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":0,\"tMargin\":5,\"NX\":3,\"NY\":8,\"SpaceX\":0,\"SpaceY\":0,\"width\":70,\"height\":36,\"lPadding\":5.08,\"tPadding\":5.08}','3475','Avery',NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(500,60,'Avery 5160','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.21975,\"tMargin\":0.5,\"NX\":3,\"NY\":10,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":2.5935,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5160','Avery',NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(501,60,'Avery 5161','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.175,\"tMargin\":0.5,\"NX\":2,\"NY\":10,\"SpaceX\":0.15625,\"SpaceY\":0,\"width\":4,\"height\":1,\"lPadding\":0.20,\"tPadding\":0.20}','5161','Avery',NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(502,60,'Avery 5162','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.1525,\"tMargin\":0.88,\"NX\":2,\"NY\":7,\"SpaceX\":0.195,\"SpaceY\":0,\"width\":4,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','5162','Avery',NULL,0,4,NULL,0,1,1,NULL,NULL,NULL),(503,60,'Avery 5163','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.5,\"NX\":2,\"NY\":5,\"SpaceX\":0.14,\"SpaceY\":0,\"width\":4,\"height\":2,\"lPadding\":0.20,\"tPadding\":0.20}','5163','Avery',NULL,0,5,NULL,0,1,1,NULL,NULL,NULL),(504,60,'Avery 5164','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":12,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.156,\"tMargin\":0.5,\"NX\":2,\"NY\":3,\"SpaceX\":0.1875,\"SpaceY\":0,\"width\":4,\"height\":3.33,\"lPadding\":0.20,\"tPadding\":0.20}','5164','Avery',NULL,0,6,NULL,0,1,1,NULL,NULL,NULL),(505,60,'Avery 8600','{\"paper-size\":\"letter\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":8,\"font-style\":\"\",\"metric\":\"mm\",\"lMargin\":7.1,\"tMargin\":19,\"NX\":3,\"NY\":10,\"SpaceX\":9.5,\"SpaceY\":3.1,\"width\":66.6,\"height\":25.4,\"lPadding\":5.08,\"tPadding\":5.08}','8600','Avery',NULL,0,7,NULL,0,1,1,NULL,NULL,NULL),(506,60,'Avery L7160','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.6,\"NX\":3,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7160','Avery',NULL,0,8,NULL,0,1,1,NULL,NULL,NULL),(507,60,'Avery L7161','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.28,\"tMargin\":0.35,\"NX\":3,\"NY\":6,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":2.5,\"height\":1.83,\"lPadding\":0.20,\"tPadding\":0.20}','L7161','Avery',NULL,0,9,NULL,0,1,1,NULL,NULL,NULL),(508,60,'Avery L7162','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.51,\"NX\":2,\"NY\":8,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.33,\"lPadding\":0.20,\"tPadding\":0.20}','L7162','Avery',NULL,0,10,NULL,0,1,1,NULL,NULL,NULL),(509,60,'Avery L7163','{\"paper-size\":\"a4\",\"orientation\":\"portrait\",\"font-name\":\"helvetica\",\"font-size\":9,\"font-style\":\"\",\"metric\":\"in\",\"lMargin\":0.18,\"tMargin\":0.6,\"NX\":2,\"NY\":7,\"SpaceX\":0.1,\"SpaceY\":0,\"width\":3.9,\"height\":1.5,\"lPadding\":0.20,\"tPadding\":0.20}','L7163','Avery',NULL,0,11,NULL,0,1,1,NULL,NULL,NULL),(510,75,'Formal','1','formal',NULL,0,1,1,NULL,0,0,1,NULL,NULL,NULL),(511,75,'Familiar','2','familiar',NULL,0,0,2,NULL,0,0,1,NULL,NULL,NULL),(512,76,'Email','Email','Email',NULL,0,1,1,NULL,0,1,1,NULL,NULL,NULL),(513,76,'SMS','SMS','SMS',NULL,0,0,2,NULL,0,1,1,NULL,NULL,NULL),(514,76,'User Preference','User_Preference','User Preference',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(515,77,'Actual date only','1','Actual date only',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(516,77,'Each anniversary','2','Each anniversary',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(517,78,'Draft','1','Draft',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(518,78,'Testing','2','Testing',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(519,78,'Final','3','Final',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(520,80,'Open','1','Open',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(521,80,'Total Unique Clicks','2','Total Unique Clicks',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(522,80,'Total Clicks on a particular link','3','Total Clicks on a particular link',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(523,79,'Subject Lines ','1','Subject Lines',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(524,79,'From Names ','2','From Names',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(525,79,'Two different Emails ','3','Two different Emails ',NULL,NULL,0,3,NULL,0,1,1,NULL,NULL,NULL),(526,31,'\"FIXME\" ','1','\"FIXME\" ',NULL,0,1,1,'Default domain email address and from name.',0,0,1,NULL,1,NULL),(527,24,'Emergency','1','Emergency',NULL,0,1,1,NULL,0,0,1,NULL,1,NULL),(528,24,'Family Support','2','Family Support',NULL,0,NULL,2,NULL,0,0,1,NULL,1,NULL),(529,24,'General Protection','3','General Protection',NULL,0,NULL,3,NULL,0,0,1,NULL,1,NULL),(530,24,'Impunity','4','Impunity',NULL,0,NULL,4,NULL,0,0,1,NULL,1,NULL),(531,55,'Approved','1','Approved',NULL,0,1,1,NULL,0,1,1,4,1,NULL),(532,55,'Rejected','2','Rejected',NULL,0,0,2,NULL,0,1,1,4,1,NULL),(533,55,'None','3','None',NULL,0,0,3,NULL,0,1,1,4,1,NULL),(534,57,'Survey','Survey','civicrm_survey',NULL,0,NULL,1,NULL,0,0,1,NULL,NULL,NULL),(535,57,'Cases','Case','civicrm_case',NULL,0,NULL,2,'CRM_Case_PseudoConstant::caseType;',0,0,1,NULL,NULL,NULL),(536,81,'Abkhaz','ab','ab_GE',NULL,NULL,0,1,NULL,0,0,0,NULL,NULL,NULL),(537,81,'Afar','aa','aa_ET',NULL,NULL,0,2,NULL,0,0,0,NULL,NULL,NULL),(538,81,'Afrikaans','af','af_ZA',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(539,81,'Akan','ak','ak_GH',NULL,NULL,0,4,NULL,0,0,0,NULL,NULL,NULL),(540,81,'Albanian','sq','sq_AL',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(541,81,'Amharic','am','am_ET',NULL,NULL,0,6,NULL,0,0,0,NULL,NULL,NULL),(542,81,'Arabic','ar','ar_EG',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(543,81,'Aragonese','an','an_ES',NULL,NULL,0,8,NULL,0,0,0,NULL,NULL,NULL),(544,81,'Armenian','hy','hy_AM',NULL,NULL,0,9,NULL,0,0,0,NULL,NULL,NULL),(545,81,'Assamese','as','as_IN',NULL,NULL,0,10,NULL,0,0,0,NULL,NULL,NULL),(546,81,'Avaric','av','av_RU',NULL,NULL,0,11,NULL,0,0,0,NULL,NULL,NULL),(547,81,'Avestan','ae','ae_XX',NULL,NULL,0,12,NULL,0,0,0,NULL,NULL,NULL),(548,81,'Aymara','ay','ay_BO',NULL,NULL,0,13,NULL,0,0,0,NULL,NULL,NULL),(549,81,'Azerbaijani','az','az_AZ',NULL,NULL,0,14,NULL,0,0,0,NULL,NULL,NULL),(550,81,'Bambara','bm','bm_ML',NULL,NULL,0,15,NULL,0,0,0,NULL,NULL,NULL),(551,81,'Bashkir','ba','ba_RU',NULL,NULL,0,16,NULL,0,0,0,NULL,NULL,NULL),(552,81,'Basque','eu','eu_ES',NULL,NULL,0,17,NULL,0,0,0,NULL,NULL,NULL),(553,81,'Belarusian','be','be_BY',NULL,NULL,0,18,NULL,0,0,0,NULL,NULL,NULL),(554,81,'Bengali','bn','bn_BD',NULL,NULL,0,19,NULL,0,0,0,NULL,NULL,NULL),(555,81,'Bihari','bh','bh_IN',NULL,NULL,0,20,NULL,0,0,0,NULL,NULL,NULL),(556,81,'Bislama','bi','bi_VU',NULL,NULL,0,21,NULL,0,0,0,NULL,NULL,NULL),(557,81,'Bosnian','bs','bs_BA',NULL,NULL,0,22,NULL,0,0,0,NULL,NULL,NULL),(558,81,'Breton','br','br_FR',NULL,NULL,0,23,NULL,0,0,0,NULL,NULL,NULL),(559,81,'Bulgarian','bg','bg_BG',NULL,NULL,0,24,NULL,0,0,1,NULL,NULL,NULL),(560,81,'Burmese','my','my_MM',NULL,NULL,0,25,NULL,0,0,0,NULL,NULL,NULL),(561,81,'Catalan; Valencian','ca','ca_ES',NULL,NULL,0,26,NULL,0,0,1,NULL,NULL,NULL),(562,81,'Chamorro','ch','ch_GU',NULL,NULL,0,27,NULL,0,0,0,NULL,NULL,NULL),(563,81,'Chechen','ce','ce_RU',NULL,NULL,0,28,NULL,0,0,0,NULL,NULL,NULL),(564,81,'Chichewa; Chewa; Nyanja','ny','ny_MW',NULL,NULL,0,29,NULL,0,0,0,NULL,NULL,NULL),(565,81,'Chinese (China)','zh','zh_CN',NULL,NULL,0,30,NULL,0,0,1,NULL,NULL,NULL),(566,81,'Chinese (Taiwan)','zh','zh_TW',NULL,NULL,0,31,NULL,0,0,1,NULL,NULL,NULL),(567,81,'Chuvash','cv','cv_RU',NULL,NULL,0,32,NULL,0,0,0,NULL,NULL,NULL),(568,81,'Cornish','kw','kw_GB',NULL,NULL,0,33,NULL,0,0,0,NULL,NULL,NULL),(569,81,'Corsican','co','co_FR',NULL,NULL,0,34,NULL,0,0,0,NULL,NULL,NULL),(570,81,'Cree','cr','cr_CA',NULL,NULL,0,35,NULL,0,0,0,NULL,NULL,NULL),(571,81,'Croatian','hr','hr_HR',NULL,NULL,0,36,NULL,0,0,0,NULL,NULL,NULL),(572,81,'Czech','cs','cs_CZ',NULL,NULL,0,37,NULL,0,0,1,NULL,NULL,NULL),(573,81,'Danish','da','da_DK',NULL,NULL,0,38,NULL,0,0,1,NULL,NULL,NULL),(574,81,'Divehi; Dhivehi; Maldivian;','dv','dv_MV',NULL,NULL,0,39,NULL,0,0,0,NULL,NULL,NULL),(575,81,'Dutch','nl','nl_NL',NULL,NULL,0,40,NULL,0,0,1,NULL,NULL,NULL),(576,81,'Dzongkha','dz','dz_BT',NULL,NULL,0,41,NULL,0,0,0,NULL,NULL,NULL),(577,81,'English (Australia)','en','en_AU',NULL,NULL,0,42,NULL,0,0,1,NULL,NULL,NULL),(578,81,'English (Canada)','en','en_CA',NULL,NULL,0,43,NULL,0,0,1,NULL,NULL,NULL),(579,81,'English (United Kingdom)','en','en_GB',NULL,NULL,0,44,NULL,0,0,1,NULL,NULL,NULL),(580,81,'English (United States)','en','en_US',NULL,NULL,1,45,NULL,0,0,1,NULL,NULL,NULL),(581,81,'Esperanto','eo','eo_XX',NULL,NULL,0,46,NULL,0,0,0,NULL,NULL,NULL),(582,81,'Estonian','et','et_EE',NULL,NULL,0,47,NULL,0,0,1,NULL,NULL,NULL),(583,81,'Ewe','ee','ee_GH',NULL,NULL,0,48,NULL,0,0,0,NULL,NULL,NULL),(584,81,'Faroese','fo','fo_FO',NULL,NULL,0,49,NULL,0,0,0,NULL,NULL,NULL),(585,81,'Fijian','fj','fj_FJ',NULL,NULL,0,50,NULL,0,0,0,NULL,NULL,NULL),(586,81,'Finnish','fi','fi_FI',NULL,NULL,0,51,NULL,0,0,1,NULL,NULL,NULL),(587,81,'French (Canada)','fr','fr_CA',NULL,NULL,0,52,NULL,0,0,1,NULL,NULL,NULL),(588,81,'French (France)','fr','fr_FR',NULL,NULL,0,53,NULL,0,0,1,NULL,NULL,NULL),(589,81,'Fula; Fulah; Pulaar; Pular','ff','ff_SN',NULL,NULL,0,54,NULL,0,0,0,NULL,NULL,NULL),(590,81,'Galician','gl','gl_ES',NULL,NULL,0,55,NULL,0,0,0,NULL,NULL,NULL),(591,81,'Georgian','ka','ka_GE',NULL,NULL,0,56,NULL,0,0,0,NULL,NULL,NULL),(592,81,'German','de','de_DE',NULL,NULL,0,57,NULL,0,0,1,NULL,NULL,NULL),(593,81,'German (Swiss)','de','de_CH',NULL,NULL,0,58,NULL,0,0,1,NULL,NULL,NULL),(594,81,'Greek, Modern','el','el_GR',NULL,NULL,0,59,NULL,0,0,1,NULL,NULL,NULL),(595,81,'Guarani­','gn','gn_PY',NULL,NULL,0,60,NULL,0,0,0,NULL,NULL,NULL),(596,81,'Gujarati','gu','gu_IN',NULL,NULL,0,61,NULL,0,0,0,NULL,NULL,NULL),(597,81,'Haitian; Haitian Creole','ht','ht_HT',NULL,NULL,0,62,NULL,0,0,0,NULL,NULL,NULL),(598,81,'Hausa','ha','ha_NG',NULL,NULL,0,63,NULL,0,0,0,NULL,NULL,NULL),(599,81,'Hebrew (modern)','he','he_IL',NULL,NULL,0,64,NULL,0,0,1,NULL,NULL,NULL),(600,81,'Herero','hz','hz_NA',NULL,NULL,0,65,NULL,0,0,0,NULL,NULL,NULL),(601,81,'Hindi','hi','hi_IN',NULL,NULL,0,66,NULL,0,0,1,NULL,NULL,NULL),(602,81,'Hiri Motu','ho','ho_PG',NULL,NULL,0,67,NULL,0,0,0,NULL,NULL,NULL),(603,81,'Hungarian','hu','hu_HU',NULL,NULL,0,68,NULL,0,0,1,NULL,NULL,NULL),(604,81,'Interlingua','ia','ia_XX',NULL,NULL,0,69,NULL,0,0,0,NULL,NULL,NULL),(605,81,'Indonesian','id','id_ID',NULL,NULL,0,70,NULL,0,0,1,NULL,NULL,NULL),(606,81,'Interlingue','ie','ie_XX',NULL,NULL,0,71,NULL,0,0,0,NULL,NULL,NULL),(607,81,'Irish','ga','ga_IE',NULL,NULL,0,72,NULL,0,0,0,NULL,NULL,NULL),(608,81,'Igbo','ig','ig_NG',NULL,NULL,0,73,NULL,0,0,0,NULL,NULL,NULL),(609,81,'Inupiaq','ik','ik_US',NULL,NULL,0,74,NULL,0,0,0,NULL,NULL,NULL),(610,81,'Ido','io','io_XX',NULL,NULL,0,75,NULL,0,0,0,NULL,NULL,NULL),(611,81,'Icelandic','is','is_IS',NULL,NULL,0,76,NULL,0,0,0,NULL,NULL,NULL),(612,81,'Italian','it','it_IT',NULL,NULL,0,77,NULL,0,0,1,NULL,NULL,NULL),(613,81,'Inuktitut','iu','iu_CA',NULL,NULL,0,78,NULL,0,0,0,NULL,NULL,NULL),(614,81,'Japanese','ja','ja_JP',NULL,NULL,0,79,NULL,0,0,1,NULL,NULL,NULL),(615,81,'Javanese','jv','jv_ID',NULL,NULL,0,80,NULL,0,0,0,NULL,NULL,NULL),(616,81,'Kalaallisut, Greenlandic','kl','kl_GL',NULL,NULL,0,81,NULL,0,0,0,NULL,NULL,NULL),(617,81,'Kannada','kn','kn_IN',NULL,NULL,0,82,NULL,0,0,0,NULL,NULL,NULL),(618,81,'Kanuri','kr','kr_NE',NULL,NULL,0,83,NULL,0,0,0,NULL,NULL,NULL),(619,81,'Kashmiri','ks','ks_IN',NULL,NULL,0,84,NULL,0,0,0,NULL,NULL,NULL),(620,81,'Kazakh','kk','kk_KZ',NULL,NULL,0,85,NULL,0,0,0,NULL,NULL,NULL),(621,81,'Khmer','km','km_KH',NULL,NULL,0,86,NULL,0,0,1,NULL,NULL,NULL),(622,81,'Kikuyu, Gikuyu','ki','ki_KE',NULL,NULL,0,87,NULL,0,0,0,NULL,NULL,NULL),(623,81,'Kinyarwanda','rw','rw_RW',NULL,NULL,0,88,NULL,0,0,0,NULL,NULL,NULL),(624,81,'Kirghiz, Kyrgyz','ky','ky_KG',NULL,NULL,0,89,NULL,0,0,0,NULL,NULL,NULL),(625,81,'Komi','kv','kv_RU',NULL,NULL,0,90,NULL,0,0,0,NULL,NULL,NULL),(626,81,'Kongo','kg','kg_CD',NULL,NULL,0,91,NULL,0,0,0,NULL,NULL,NULL),(627,81,'Korean','ko','ko_KR',NULL,NULL,0,92,NULL,0,0,0,NULL,NULL,NULL),(628,81,'Kurdish','ku','ku_IQ',NULL,NULL,0,93,NULL,0,0,0,NULL,NULL,NULL),(629,81,'Kwanyama, Kuanyama','kj','kj_NA',NULL,NULL,0,94,NULL,0,0,0,NULL,NULL,NULL),(630,81,'Latin','la','la_VA',NULL,NULL,0,95,NULL,0,0,0,NULL,NULL,NULL),(631,81,'Luxembourgish, Letzeburgesch','lb','lb_LU',NULL,NULL,0,96,NULL,0,0,0,NULL,NULL,NULL),(632,81,'Luganda','lg','lg_UG',NULL,NULL,0,97,NULL,0,0,0,NULL,NULL,NULL),(633,81,'Limburgish, Limburgan, Limburger','li','li_NL',NULL,NULL,0,98,NULL,0,0,0,NULL,NULL,NULL),(634,81,'Lingala','ln','ln_CD',NULL,NULL,0,99,NULL,0,0,0,NULL,NULL,NULL),(635,81,'Lao','lo','lo_LA',NULL,NULL,0,100,NULL,0,0,0,NULL,NULL,NULL),(636,81,'Lithuanian','lt','lt_LT',NULL,NULL,0,101,NULL,0,0,1,NULL,NULL,NULL),(637,81,'Luba-Katanga','lu','lu_CD',NULL,NULL,0,102,NULL,0,0,0,NULL,NULL,NULL),(638,81,'Latvian','lv','lv_LV',NULL,NULL,0,103,NULL,0,0,0,NULL,NULL,NULL),(639,81,'Manx','gv','gv_IM',NULL,NULL,0,104,NULL,0,0,0,NULL,NULL,NULL),(640,81,'Macedonian','mk','mk_MK',NULL,NULL,0,105,NULL,0,0,0,NULL,NULL,NULL),(641,81,'Malagasy','mg','mg_MG',NULL,NULL,0,106,NULL,0,0,0,NULL,NULL,NULL),(642,81,'Malay','ms','ms_MY',NULL,NULL,0,107,NULL,0,0,0,NULL,NULL,NULL),(643,81,'Malayalam','ml','ml_IN',NULL,NULL,0,108,NULL,0,0,0,NULL,NULL,NULL),(644,81,'Maltese','mt','mt_MT',NULL,NULL,0,109,NULL,0,0,0,NULL,NULL,NULL),(645,81,'Māori','mi','mi_NZ',NULL,NULL,0,110,NULL,0,0,0,NULL,NULL,NULL),(646,81,'Marathi','mr','mr_IN',NULL,NULL,0,111,NULL,0,0,0,NULL,NULL,NULL),(647,81,'Marshallese','mh','mh_MH',NULL,NULL,0,112,NULL,0,0,0,NULL,NULL,NULL),(648,81,'Mongolian','mn','mn_MN',NULL,NULL,0,113,NULL,0,0,0,NULL,NULL,NULL),(649,81,'Nauru','na','na_NR',NULL,NULL,0,114,NULL,0,0,0,NULL,NULL,NULL),(650,81,'Navajo, Navaho','nv','nv_US',NULL,NULL,0,115,NULL,0,0,0,NULL,NULL,NULL),(651,81,'Norwegian BokmÃ¥l','nb','nb_NO',NULL,NULL,0,116,NULL,0,0,1,NULL,NULL,NULL),(652,81,'North Ndebele','nd','nd_ZW',NULL,NULL,0,117,NULL,0,0,0,NULL,NULL,NULL),(653,81,'Nepali','ne','ne_NP',NULL,NULL,0,118,NULL,0,0,0,NULL,NULL,NULL),(654,81,'Ndonga','ng','ng_NA',NULL,NULL,0,119,NULL,0,0,0,NULL,NULL,NULL),(655,81,'Norwegian Nynorsk','nn','nn_NO',NULL,NULL,0,120,NULL,0,0,0,NULL,NULL,NULL),(656,81,'Norwegian','no','no_NO',NULL,NULL,0,121,NULL,0,0,0,NULL,NULL,NULL),(657,81,'Nuosu','ii','ii_CN',NULL,NULL,0,122,NULL,0,0,0,NULL,NULL,NULL),(658,81,'South Ndebele','nr','nr_ZA',NULL,NULL,0,123,NULL,0,0,0,NULL,NULL,NULL),(659,81,'Occitan (after 1500)','oc','oc_FR',NULL,NULL,0,124,NULL,0,0,0,NULL,NULL,NULL),(660,81,'Ojibwa','oj','oj_CA',NULL,NULL,0,125,NULL,0,0,0,NULL,NULL,NULL),(661,81,'Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic','cu','cu_BG',NULL,NULL,0,126,NULL,0,0,0,NULL,NULL,NULL),(662,81,'Oromo','om','om_ET',NULL,NULL,0,127,NULL,0,0,0,NULL,NULL,NULL),(663,81,'Oriya','or','or_IN',NULL,NULL,0,128,NULL,0,0,0,NULL,NULL,NULL),(664,81,'Ossetian, Ossetic','os','os_GE',NULL,NULL,0,129,NULL,0,0,0,NULL,NULL,NULL),(665,81,'Panjabi, Punjabi','pa','pa_IN',NULL,NULL,0,130,NULL,0,0,0,NULL,NULL,NULL),(666,81,'Pali','pi','pi_KH',NULL,NULL,0,131,NULL,0,0,0,NULL,NULL,NULL),(667,81,'Persian (Iran)','fa','fa_IR',NULL,NULL,0,132,NULL,0,0,0,NULL,NULL,NULL),(668,81,'Polish','pl','pl_PL',NULL,NULL,0,133,NULL,0,0,1,NULL,NULL,NULL),(669,81,'Pashto, Pushto','ps','ps_AF',NULL,NULL,0,134,NULL,0,0,0,NULL,NULL,NULL),(670,81,'Portuguese (Brazil)','pt','pt_BR',NULL,NULL,0,135,NULL,0,0,1,NULL,NULL,NULL),(671,81,'Portuguese (Portugal)','pt','pt_PT',NULL,NULL,0,136,NULL,0,0,1,NULL,NULL,NULL),(672,81,'Quechua','qu','qu_PE',NULL,NULL,0,137,NULL,0,0,0,NULL,NULL,NULL),(673,81,'Romansh','rm','rm_CH',NULL,NULL,0,138,NULL,0,0,0,NULL,NULL,NULL),(674,81,'Kirundi','rn','rn_BI',NULL,NULL,0,139,NULL,0,0,0,NULL,NULL,NULL),(675,81,'Romanian, Moldavian, Moldovan','ro','ro_RO',NULL,NULL,0,140,NULL,0,0,1,NULL,NULL,NULL),(676,81,'Russian','ru','ru_RU',NULL,NULL,0,141,NULL,0,0,1,NULL,NULL,NULL),(677,81,'Sanskrit','sa','sa_IN',NULL,NULL,0,142,NULL,0,0,0,NULL,NULL,NULL),(678,81,'Sardinian','sc','sc_IT',NULL,NULL,0,143,NULL,0,0,0,NULL,NULL,NULL),(679,81,'Sindhi','sd','sd_IN',NULL,NULL,0,144,NULL,0,0,0,NULL,NULL,NULL),(680,81,'Northern Sami','se','se_NO',NULL,NULL,0,145,NULL,0,0,0,NULL,NULL,NULL),(681,81,'Samoan','sm','sm_WS',NULL,NULL,0,146,NULL,0,0,0,NULL,NULL,NULL),(682,81,'Sango','sg','sg_CF',NULL,NULL,0,147,NULL,0,0,0,NULL,NULL,NULL),(683,81,'Serbian','sr','sr_RS',NULL,NULL,0,148,NULL,0,0,0,NULL,NULL,NULL),(684,81,'Scottish Gaelic; Gaelic','gd','gd_GB',NULL,NULL,0,149,NULL,0,0,0,NULL,NULL,NULL),(685,81,'Shona','sn','sn_ZW',NULL,NULL,0,150,NULL,0,0,0,NULL,NULL,NULL),(686,81,'Sinhala, Sinhalese','si','si_LK',NULL,NULL,0,151,NULL,0,0,0,NULL,NULL,NULL),(687,81,'Slovak','sk','sk_SK',NULL,NULL,0,152,NULL,0,0,1,NULL,NULL,NULL),(688,81,'Slovene','sl','sl_SI',NULL,NULL,0,153,NULL,0,0,1,NULL,NULL,NULL),(689,81,'Somali','so','so_SO',NULL,NULL,0,154,NULL,0,0,0,NULL,NULL,NULL),(690,81,'Southern Sotho','st','st_ZA',NULL,NULL,0,155,NULL,0,0,0,NULL,NULL,NULL),(691,81,'Spanish; Castilian (Spain)','es','es_ES',NULL,NULL,0,156,NULL,0,0,1,NULL,NULL,NULL),(692,81,'Spanish; Castilian (Mexico)','es','es_MX',NULL,NULL,0,157,NULL,0,0,1,NULL,NULL,NULL),(693,81,'Spanish; Castilian (Puerto Rico)','es','es_PR',NULL,NULL,0,158,NULL,0,0,1,NULL,NULL,NULL),(694,81,'Sundanese','su','su_ID',NULL,NULL,0,159,NULL,0,0,0,NULL,NULL,NULL),(695,81,'Swahili','sw','sw_TZ',NULL,NULL,0,160,NULL,0,0,0,NULL,NULL,NULL),(696,81,'Swati','ss','ss_ZA',NULL,NULL,0,161,NULL,0,0,0,NULL,NULL,NULL),(697,81,'Swedish','sv','sv_SE',NULL,NULL,0,162,NULL,0,0,1,NULL,NULL,NULL),(698,81,'Tamil','ta','ta_IN',NULL,NULL,0,163,NULL,0,0,0,NULL,NULL,NULL),(699,81,'Telugu','te','te_IN',NULL,NULL,0,164,NULL,0,0,1,NULL,NULL,NULL),(700,81,'Tajik','tg','tg_TJ',NULL,NULL,0,165,NULL,0,0,0,NULL,NULL,NULL),(701,81,'Thai','th','th_TH',NULL,NULL,0,166,NULL,0,0,1,NULL,NULL,NULL),(702,81,'Tigrinya','ti','ti_ET',NULL,NULL,0,167,NULL,0,0,0,NULL,NULL,NULL),(703,81,'Tibetan Standard, Tibetan, Central','bo','bo_CN',NULL,NULL,0,168,NULL,0,0,0,NULL,NULL,NULL),(704,81,'Turkmen','tk','tk_TM',NULL,NULL,0,169,NULL,0,0,0,NULL,NULL,NULL),(705,81,'Tagalog','tl','tl_PH',NULL,NULL,0,170,NULL,0,0,0,NULL,NULL,NULL),(706,81,'Tswana','tn','tn_ZA',NULL,NULL,0,171,NULL,0,0,0,NULL,NULL,NULL),(707,81,'Tonga (Tonga Islands)','to','to_TO',NULL,NULL,0,172,NULL,0,0,0,NULL,NULL,NULL),(708,81,'Turkish','tr','tr_TR',NULL,NULL,0,173,NULL,0,0,1,NULL,NULL,NULL),(709,81,'Tsonga','ts','ts_ZA',NULL,NULL,0,174,NULL,0,0,0,NULL,NULL,NULL),(710,81,'Tatar','tt','tt_RU',NULL,NULL,0,175,NULL,0,0,0,NULL,NULL,NULL),(711,81,'Twi','tw','tw_GH',NULL,NULL,0,176,NULL,0,0,0,NULL,NULL,NULL),(712,81,'Tahitian','ty','ty_PF',NULL,NULL,0,177,NULL,0,0,0,NULL,NULL,NULL),(713,81,'Uighur, Uyghur','ug','ug_CN',NULL,NULL,0,178,NULL,0,0,0,NULL,NULL,NULL),(714,81,'Ukrainian','uk','uk_UA',NULL,NULL,0,179,NULL,0,0,0,NULL,NULL,NULL),(715,81,'Urdu','ur','ur_PK',NULL,NULL,0,180,NULL,0,0,0,NULL,NULL,NULL),(716,81,'Uzbek','uz','uz_UZ',NULL,NULL,0,181,NULL,0,0,0,NULL,NULL,NULL),(717,81,'Venda','ve','ve_ZA',NULL,NULL,0,182,NULL,0,0,0,NULL,NULL,NULL),(718,81,'Vietnamese','vi','vi_VN',NULL,NULL,0,183,NULL,0,0,1,NULL,NULL,NULL),(719,81,'Volapük','vo','vo_XX',NULL,NULL,0,184,NULL,0,0,0,NULL,NULL,NULL),(720,81,'Walloon','wa','wa_BE',NULL,NULL,0,185,NULL,0,0,0,NULL,NULL,NULL),(721,81,'Welsh','cy','cy_GB',NULL,NULL,0,186,NULL,0,0,0,NULL,NULL,NULL),(722,81,'Wolof','wo','wo_SN',NULL,NULL,0,187,NULL,0,0,0,NULL,NULL,NULL),(723,81,'Western Frisian','fy','fy_NL',NULL,NULL,0,188,NULL,0,0,0,NULL,NULL,NULL),(724,81,'Xhosa','xh','xh_ZA',NULL,NULL,0,189,NULL,0,0,0,NULL,NULL,NULL),(725,81,'Yiddish','yi','yi_US',NULL,NULL,0,190,NULL,0,0,0,NULL,NULL,NULL),(726,81,'Yoruba','yo','yo_NG',NULL,NULL,0,191,NULL,0,0,0,NULL,NULL,NULL),(727,81,'Zhuang, Chuang','za','za_CN',NULL,NULL,0,192,NULL,0,0,0,NULL,NULL,NULL),(728,81,'Zulu','zu','zu_ZA',NULL,NULL,0,193,NULL,0,0,0,NULL,NULL,NULL),(729,82,'In Person','1','in_person',NULL,0,0,1,NULL,0,1,1,NULL,NULL,NULL),(730,82,'Phone','2','phone',NULL,0,1,2,NULL,0,1,1,NULL,NULL,NULL),(731,82,'Email','3','email',NULL,0,0,3,NULL,0,1,1,NULL,NULL,NULL),(732,82,'Fax','4','fax',NULL,0,0,4,NULL,0,1,1,NULL,NULL,NULL),(733,82,'Letter Mail','5','letter_mail',NULL,0,0,5,NULL,0,1,1,NULL,NULL,NULL),(734,83,'Cases - Send Copy of an Activity','1','case_activity',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(735,84,'Contributions - Duplicate Organization Alert','1','contribution_dupalert',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(736,84,'Contributions - Receipt (off-line)','2','contribution_offline_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(737,84,'Contributions - Receipt (on-line)','3','contribution_online_receipt',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(738,84,'Contributions - Invoice','4','contribution_invoice_receipt',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(739,84,'Contributions - Recurring Start and End Notification','5','contribution_recurring_notify',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(740,84,'Contributions - Recurring Cancellation Notification','6','contribution_recurring_cancelled',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(741,84,'Contributions - Recurring Billing Updates','7','contribution_recurring_billing',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(742,84,'Contributions - Recurring Updates','8','contribution_recurring_edit',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(743,84,'Personal Campaign Pages - Admin Notification','9','pcp_notify',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(744,84,'Personal Campaign Pages - Supporter Status Change Notification','10','pcp_status_change',NULL,NULL,0,10,NULL,0,0,1,NULL,NULL,NULL),(745,84,'Personal Campaign Pages - Supporter Welcome','11','pcp_supporter_notify',NULL,NULL,0,11,NULL,0,0,1,NULL,NULL,NULL),(746,84,'Personal Campaign Pages - Owner Notification','12','pcp_owner_notify',NULL,NULL,0,12,NULL,0,0,1,NULL,NULL,NULL),(747,84,'Additional Payment Receipt or Refund Notification','13','payment_or_refund_notification',NULL,NULL,0,13,NULL,0,0,1,NULL,NULL,NULL),(748,85,'Events - Registration Confirmation and Receipt (off-line)','1','event_offline_receipt',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(749,85,'Events - Registration Confirmation and Receipt (on-line)','2','event_online_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(750,85,'Events - Receipt only','3','event_registration_receipt',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(751,85,'Events - Registration Cancellation Notice','4','participant_cancelled',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(752,85,'Events - Registration Confirmation Invite','5','participant_confirm',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(753,85,'Events - Pending Registration Expiration Notice','6','participant_expired',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(754,86,'Tell-a-Friend Email','1','friend',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(755,87,'Memberships - Signup and Renewal Receipts (off-line)','1','membership_offline_receipt',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(756,87,'Memberships - Receipt (on-line)','2','membership_online_receipt',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(757,87,'Memberships - Auto-renew Cancellation Notification','3','membership_autorenew_cancelled',NULL,NULL,0,3,NULL,0,0,1,NULL,NULL,NULL),(758,87,'Memberships - Auto-renew Billing Updates','4','membership_autorenew_billing',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(759,88,'Test-drive - Receipt Header','1','test_preview',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(760,89,'Pledges - Acknowledgement','1','pledge_acknowledge',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(761,89,'Pledges - Payment Reminder','2','pledge_reminder',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(762,90,'Profiles - Admin Notification','1','uf_notify',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(763,91,'Petition - signature added','1','petition_sign',NULL,NULL,0,1,NULL,0,0,1,NULL,NULL,NULL),(764,91,'Petition - need verification','2','petition_confirmation_needed',NULL,NULL,0,2,NULL,0,0,1,NULL,NULL,NULL),(765,92,'In Honor of','1','in_honor_of',NULL,NULL,0,1,NULL,0,1,1,NULL,NULL,NULL),(766,92,'In Memory of','2','in_memory_of',NULL,NULL,0,2,NULL,0,1,1,NULL,NULL,NULL),(767,92,'Solicited','3','solicited',NULL,NULL,1,3,NULL,0,1,1,NULL,NULL,NULL),(768,92,'Household','4','household',NULL,NULL,0,4,NULL,0,0,1,NULL,NULL,NULL),(769,92,'Workplace Giving','5','workplace',NULL,NULL,0,5,NULL,0,0,1,NULL,NULL,NULL),(770,92,'Foundation Affiliate','6','foundation_affiliate',NULL,NULL,0,6,NULL,0,0,1,NULL,NULL,NULL),(771,92,'3rd-party Service','7','3rd-party_service',NULL,NULL,0,7,NULL,0,0,1,NULL,NULL,NULL),(772,92,'Donor-advised Fund','8','donor-advised_fund',NULL,NULL,0,8,NULL,0,0,1,NULL,NULL,NULL),(773,92,'Matched Gift','9','matched_gift',NULL,NULL,0,9,NULL,0,0,1,NULL,NULL,NULL),(774,92,'Personal Campaign Page','10','pcp',NULL,NULL,0,10,NULL,0,1,1,NULL,NULL,NULL),(775,92,'Gift','11','gift',NULL,NULL,0,11,NULL,0,1,1,NULL,NULL,NULL),(776,2,'Interview','51','Interview',NULL,0,NULL,51,'Conduct a phone or in person interview.',0,0,1,NULL,NULL,NULL); /*!40000 ALTER TABLE `civicrm_option_value` ENABLE KEYS */; UNLOCK TABLES; @@ -1017,7 +1016,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,121,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(2,140,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(3,166,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,4,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(5,67,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(6,81,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,45,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(8,100,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(9,19,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,93,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(11,99,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(12,171,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,83,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(14,133,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(15,20,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,132,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(17,136,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(18,174,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,54,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(20,143,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(21,35,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,10,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(23,179,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(24,125,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,9,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,57,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(27,196,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(28,151,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,109,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(30,51,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(31,195,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,33,1,3,'3','2009-07-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(33,96,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(34,29,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,42,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(36,68,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(37,117,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,107,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(39,119,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(40,180,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,18,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(42,142,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(43,75,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,32,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(45,148,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(46,159,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,92,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,44,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,155,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,155,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(2,6,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(3,47,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,151,1,4,'4','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(5,140,2,1,'1','2008-01-10 00:00:00','Check','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(6,139,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,96,1,3,'3','2009-07-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(8,129,2,4,'4','2009-03-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(9,144,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,164,1,2,'2','2008-02-01 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(11,21,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(12,13,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,107,1,1,'2','2008-06-04 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(14,173,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(15,196,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,67,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(17,12,2,2,'3','2008-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(18,105,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,103,1,2,'1','2008-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(20,1,2,4,'1','2009-01-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(21,188,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,2,1,2,'3','2009-10-21 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(23,14,2,4,'1','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(24,77,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,122,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,174,1,1,'1','2009-01-21 00:00:00','Check','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(27,53,2,2,'2','2008-05-07 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(28,40,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,153,1,4,'4','2009-12-13 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(30,62,2,1,'1','2009-12-14 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(31,32,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,87,2,4,'4','2009-03-07 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(34,121,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,31,1,2,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(36,162,2,3,'3','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(37,37,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,65,1,1,'2','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(39,161,2,2,'3','2008-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(40,27,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,109,1,4,'2','2009-01-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(42,19,2,2,'3','2009-12-15 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(43,57,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,44,1,2,'1','2009-12-13 00:00:00','Direct Transfer','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(45,29,2,4,'1','2009-01-10 00:00:00','Direct Transfer','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(46,143,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,132,1,2,'3','2009-10-21 00:00:00','Credit Card','Single',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(48,119,2,4,'1','2009-12-10 00:00:00','Credit Card','Soprano',0,0,50.00,NULL,NULL,'USD',NULL,NULL,NULL,NULL),(49,135,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,198,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; @@ -1027,7 +1026,7 @@ 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,4,45),(2,25,46),(3,22,47),(4,41,48),(5,9,49),(6,15,50),(7,34,51),(8,44,52),(9,32,53),(10,21,54),(11,35,55),(12,49,56),(13,7,57),(14,30,58),(15,19,59),(16,26,60),(17,5,61),(18,36,62),(19,43,63),(20,6,64),(21,13,65),(22,47,66),(23,10,67),(24,33,68),(25,11,69),(26,8,70),(27,38,71),(28,29,72),(29,37,73),(30,39,74),(31,1,75),(32,24,76),(33,16,77),(34,14,78),(35,17,79),(36,48,80),(37,2,81),(38,42,82),(39,20,83),(40,45,84),(41,28,85),(42,50,86),(43,46,87),(44,3,88),(45,12,89),(46,18,90),(47,23,91),(48,40,92),(49,31,93),(50,27,94); +INSERT INTO `civicrm_participant_payment` (`id`, `participant_id`, `contribution_id`) VALUES (1,20,45),(2,22,46),(3,2,47),(4,17,48),(5,12,49),(6,23,50),(7,42,51),(8,11,52),(9,40,53),(10,45,54),(11,35,55),(12,31,56),(13,37,57),(14,28,58),(15,32,59),(16,44,60),(17,3,61),(18,27,62),(19,43,63),(20,30,64),(21,38,65),(22,16,66),(23,24,67),(24,33,68),(25,7,69),(26,19,70),(27,18,71),(28,13,72),(29,41,73),(30,48,74),(31,34,75),(32,25,76),(33,8,77),(34,47,78),(35,49,79),(36,6,80),(37,5,81),(38,46,82),(39,9,83),(40,4,84),(41,29,85),(42,1,86),(43,39,87),(44,36,88),(45,10,89),(46,14,90),(47,26,91),(48,21,92),(49,15,93),(50,50,94); /*!40000 ALTER TABLE `civicrm_participant_payment` ENABLE KEYS */; UNLOCK TABLES; @@ -1066,7 +1065,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`) VALUES (1,176,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.','

Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!

\r\n

You can learn more about CiviCRM here.

\r\n

Then click the Contribute Now button to go to our easy-to-use online contribution form.

','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',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,144,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.','

Friends and family - please help build much needed infrastructure for the civic sector by supporting my personal campaign!

\r\n

You can learn more about CiviCRM here.

\r\n

Then click the Contribute Now button to go to our easy-to-use online contribution form.

','Contribute Now',1,'contribute',1,1,1,5000.00,'USD',1,0); /*!40000 ALTER TABLE `civicrm_pcp` ENABLE KEYS */; UNLOCK TABLES; @@ -1076,7 +1075,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_pcp_block` WRITE; /*!40000 ALTER TABLE `civicrm_pcp_block` DISABLE KEYS */; -INSERT INTO `civicrm_pcp_block` (`id`, `entity_table`, `entity_id`, `target_entity_type`, `target_entity_id`, `supporter_profile_id`, `is_approval_needed`, `is_tellfriend_enabled`, `tellfriend_limit`, `link_text`, `is_active`, `notify_email`) VALUES (1,'civicrm_contribution_page',1,'contribute',1,2,1,1,5,'Create your own Personal Campaign Page!',1,NULL); +INSERT INTO `civicrm_pcp_block` (`id`, `entity_table`, `entity_id`, `target_entity_type`, `target_entity_id`, `supporter_profile_id`, `owner_notify_id`, `is_approval_needed`, `is_tellfriend_enabled`, `tellfriend_limit`, `link_text`, `is_active`, `notify_email`) VALUES (1,'civicrm_contribution_page',1,'contribute',1,2,1,1,1,5,'Create your own Personal Campaign Page!',1,NULL); /*!40000 ALTER TABLE `civicrm_pcp_block` ENABLE KEYS */; UNLOCK TABLES; @@ -1095,7 +1094,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,66,1,1,0,NULL,'(381) 679-9596',NULL,'3816799596',1),(2,39,1,1,0,NULL,'(884) 769-5755',NULL,'8847695755',1),(3,39,1,0,0,NULL,'(837) 636-1491',NULL,'8376361491',1),(4,141,1,1,0,NULL,'(627) 576-6991',NULL,'6275766991',2),(5,176,1,1,0,NULL,'734-3152',NULL,'7343152',1),(6,185,1,1,0,NULL,'506-6943',NULL,'5066943',1),(7,27,1,1,0,NULL,'(477) 409-5879',NULL,'4774095879',2),(8,7,1,1,0,NULL,'(870) 299-3309',NULL,'8702993309',1),(9,7,1,0,0,NULL,'(306) 558-4233',NULL,'3065584233',2),(10,91,1,1,0,NULL,'(310) 608-7819',NULL,'3106087819',1),(11,86,1,1,0,NULL,'(203) 628-9919',NULL,'2036289919',2),(12,33,1,1,0,NULL,'376-5443',NULL,'3765443',1),(13,129,1,1,0,NULL,'(836) 460-3974',NULL,'8364603974',2),(14,53,1,1,0,NULL,'(453) 579-8022',NULL,'4535798022',1),(15,53,1,0,0,NULL,'733-3997',NULL,'7333997',1),(16,99,1,1,0,NULL,'827-6508',NULL,'8276508',1),(17,23,1,1,0,NULL,'(448) 454-9002',NULL,'4484549002',2),(18,23,1,0,0,NULL,'683-7600',NULL,'6837600',1),(19,186,1,1,0,NULL,'(804) 316-9426',NULL,'8043169426',1),(20,186,1,0,0,NULL,'867-4562',NULL,'8674562',1),(21,52,1,1,0,NULL,'(488) 544-3753',NULL,'4885443753',2),(22,94,1,1,0,NULL,'312-4736',NULL,'3124736',1),(23,38,1,1,0,NULL,'738-7335',NULL,'7387335',2),(24,38,1,0,0,NULL,'(283) 803-5003',NULL,'2838035003',2),(25,173,1,1,0,NULL,'(642) 309-6567',NULL,'6423096567',1),(26,173,1,0,0,NULL,'351-3503',NULL,'3513503',1),(27,82,1,1,0,NULL,'(505) 340-7334',NULL,'5053407334',1),(28,82,1,0,0,NULL,'(759) 218-8642',NULL,'7592188642',1),(29,88,1,1,0,NULL,'(423) 896-9955',NULL,'4238969955',1),(30,162,1,1,0,NULL,'723-7523',NULL,'7237523',2),(31,196,1,1,0,NULL,'219-3858',NULL,'2193858',2),(32,196,1,0,0,NULL,'(659) 541-4388',NULL,'6595414388',2),(33,84,1,1,0,NULL,'(562) 899-7724',NULL,'5628997724',1),(34,75,1,1,0,NULL,'(491) 658-2684',NULL,'4916582684',2),(35,76,1,1,0,NULL,'346-7586',NULL,'3467586',2),(36,76,1,0,0,NULL,'545-9320',NULL,'5459320',2),(37,153,1,1,0,NULL,'279-5407',NULL,'2795407',1),(38,153,1,0,0,NULL,'(382) 521-4890',NULL,'3825214890',1),(39,150,1,1,0,NULL,'683-9233',NULL,'6839233',2),(40,50,1,1,0,NULL,'(529) 844-8072',NULL,'5298448072',1),(41,28,1,1,0,NULL,'(552) 208-4862',NULL,'5522084862',2),(42,28,1,0,0,NULL,'665-3116',NULL,'6653116',1),(43,73,1,1,0,NULL,'212-1906',NULL,'2121906',2),(44,73,1,0,0,NULL,'361-8221',NULL,'3618221',2),(45,9,1,1,0,NULL,'775-6947',NULL,'7756947',2),(46,9,1,0,0,NULL,'344-5147',NULL,'3445147',2),(47,97,1,1,0,NULL,'(297) 310-2654',NULL,'2973102654',1),(48,97,1,0,0,NULL,'599-6255',NULL,'5996255',2),(49,190,1,1,0,NULL,'(634) 752-2809',NULL,'6347522809',2),(50,17,1,1,0,NULL,'(406) 418-8888',NULL,'4064188888',1),(51,74,1,1,0,NULL,'(593) 583-8129',NULL,'5935838129',1),(52,168,1,1,0,NULL,'520-5561',NULL,'5205561',1),(53,57,1,1,0,NULL,'679-7149',NULL,'6797149',1),(54,105,1,1,0,NULL,'654-6979',NULL,'6546979',2),(55,77,1,1,0,NULL,'(618) 783-2481',NULL,'6187832481',2),(56,154,1,1,0,NULL,'(622) 826-6646',NULL,'6228266646',2),(57,154,1,0,0,NULL,'(800) 207-8846',NULL,'8002078846',1),(58,93,1,1,0,NULL,'269-7363',NULL,'2697363',2),(59,83,1,1,0,NULL,'206-3852',NULL,'2063852',2),(60,83,1,0,0,NULL,'648-6175',NULL,'6486175',1),(61,194,1,1,0,NULL,'800-9149',NULL,'8009149',2),(62,194,1,0,0,NULL,'(527) 836-7314',NULL,'5278367314',2),(63,170,1,1,0,NULL,'(495) 618-3640',NULL,'4956183640',2),(64,170,1,0,0,NULL,'(794) 803-7961',NULL,'7948037961',2),(65,54,1,1,0,NULL,'391-7730',NULL,'3917730',2),(66,54,1,0,0,NULL,'(237) 810-2396',NULL,'2378102396',1),(67,101,1,1,0,NULL,'(695) 426-9445',NULL,'6954269445',2),(68,113,1,1,0,NULL,'353-7867',NULL,'3537867',2),(69,113,1,0,0,NULL,'(683) 583-6595',NULL,'6835836595',1),(70,32,1,1,0,NULL,'528-7845',NULL,'5287845',2),(71,32,1,0,0,NULL,'360-6512',NULL,'3606512',1),(72,98,1,1,0,NULL,'(528) 411-3184',NULL,'5284113184',2),(73,98,1,0,0,NULL,'(606) 778-4614',NULL,'6067784614',2),(74,123,1,1,0,NULL,'(723) 358-9247',NULL,'7233589247',1),(75,104,1,1,0,NULL,'703-6212',NULL,'7036212',1),(76,188,1,1,0,NULL,'(728) 528-7444',NULL,'7285287444',2),(77,188,1,0,0,NULL,'490-1651',NULL,'4901651',2),(78,192,1,1,0,NULL,'397-5085',NULL,'3975085',2),(79,192,1,0,0,NULL,'563-1096',NULL,'5631096',2),(80,19,1,1,0,NULL,'(713) 584-2309',NULL,'7135842309',1),(81,64,1,1,0,NULL,'(847) 808-6193',NULL,'8478086193',1),(82,64,1,0,0,NULL,'321-6601',NULL,'3216601',1),(83,135,1,1,0,NULL,'720-1927',NULL,'7201927',1),(84,181,1,1,0,NULL,'(294) 532-4228',NULL,'2945324228',1),(85,14,1,1,0,NULL,'812-2724',NULL,'8122724',1),(86,14,1,0,0,NULL,'(260) 415-9882',NULL,'2604159882',2),(87,143,1,1,0,NULL,'841-9862',NULL,'8419862',2),(88,143,1,0,0,NULL,'(467) 816-1019',NULL,'4678161019',2),(89,172,1,1,0,NULL,'(275) 303-2679',NULL,'2753032679',2),(90,125,1,1,0,NULL,'(508) 517-2259',NULL,'5085172259',2),(91,2,1,1,0,NULL,'570-4165',NULL,'5704165',2),(92,2,1,0,0,NULL,'(324) 718-7222',NULL,'3247187222',2),(93,144,1,1,0,NULL,'573-5158',NULL,'5735158',1),(94,114,1,1,0,NULL,'(265) 843-1305',NULL,'2658431305',2),(95,114,1,0,0,NULL,'548-2531',NULL,'5482531',2),(96,110,1,1,0,NULL,'417-8473',NULL,'4178473',2),(97,110,1,0,0,NULL,'348-9686',NULL,'3489686',1),(98,85,1,1,0,NULL,'(706) 892-8175',NULL,'7068928175',2),(99,46,1,1,0,NULL,'800-2421',NULL,'8002421',2),(100,48,1,1,0,NULL,'(727) 456-3351',NULL,'7274563351',1),(101,48,1,0,0,NULL,'(725) 756-3506',NULL,'7257563506',1),(102,51,1,1,0,NULL,'(733) 579-6397',NULL,'7335796397',2),(103,15,1,1,0,NULL,'(276) 566-6951',NULL,'2765666951',1),(104,15,1,0,0,NULL,'250-3305',NULL,'2503305',1),(105,36,1,1,0,NULL,'(888) 503-7954',NULL,'8885037954',2),(106,36,1,0,0,NULL,'221-7526',NULL,'2217526',1),(107,145,1,1,0,NULL,'431-3651',NULL,'4313651',2),(108,145,1,0,0,NULL,'(735) 372-5843',NULL,'7353725843',2),(109,183,1,1,0,NULL,'(220) 734-7061',NULL,'2207347061',1),(110,183,1,0,0,NULL,'740-7934',NULL,'7407934',2),(111,151,1,1,0,NULL,'(630) 564-3810',NULL,'6305643810',2),(112,92,1,1,0,NULL,'345-5658',NULL,'3455658',1),(113,92,1,0,0,NULL,'(398) 609-4439',NULL,'3986094439',2),(114,60,1,1,0,NULL,'(743) 605-4611',NULL,'7436054611',1),(115,116,1,1,0,NULL,'739-7178',NULL,'7397178',2),(116,116,1,0,0,NULL,'609-7797',NULL,'6097797',1),(117,71,1,1,0,NULL,'(352) 204-2723',NULL,'3522042723',2),(118,71,1,0,0,NULL,'(796) 405-7917',NULL,'7964057917',1),(119,72,1,1,0,NULL,'421-4471',NULL,'4214471',1),(120,35,1,1,0,NULL,'(737) 380-9028',NULL,'7373809028',1),(121,197,1,1,0,NULL,'853-1974',NULL,'8531974',2),(122,117,1,1,0,NULL,'(619) 491-5410',NULL,'6194915410',2),(123,109,1,1,0,NULL,'(316) 331-4556',NULL,'3163314556',1),(124,159,1,1,0,NULL,'(618) 659-4829',NULL,'6186594829',1),(125,3,1,1,0,NULL,'(238) 470-3261',NULL,'2384703261',2),(126,4,1,1,0,NULL,'491-1562',NULL,'4911562',1),(127,70,1,1,0,NULL,'(660) 897-8845',NULL,'6608978845',2),(128,70,1,0,0,NULL,'509-5363',NULL,'5095363',1),(129,61,1,1,0,NULL,'782-5752',NULL,'7825752',1),(130,61,1,0,0,NULL,'(623) 545-6481',NULL,'6235456481',2),(131,89,1,1,0,NULL,'869-2964',NULL,'8692964',2),(132,89,1,0,0,NULL,'(237) 386-1217',NULL,'2373861217',2),(133,140,1,1,0,NULL,'533-6261',NULL,'5336261',1),(134,140,1,0,0,NULL,'899-3027',NULL,'8993027',2),(135,18,1,1,0,NULL,'(383) 313-9083',NULL,'3833139083',2),(136,18,1,0,0,NULL,'(498) 702-9149',NULL,'4987029149',1),(137,118,1,1,0,NULL,'883-5072',NULL,'8835072',2),(138,11,1,1,0,NULL,'(327) 577-7490',NULL,'3275777490',2),(139,201,1,1,0,NULL,'498-4091',NULL,'4984091',2),(140,201,1,0,0,NULL,'362-9187',NULL,'3629187',1),(141,131,1,1,0,NULL,'586-8610',NULL,'5868610',1),(142,121,1,1,0,NULL,'(805) 327-4274',NULL,'8053274274',1),(143,122,1,1,0,NULL,'(402) 422-8193',NULL,'4024228193',1),(144,122,1,0,0,NULL,'(599) 677-7400',NULL,'5996777400',2),(145,178,1,1,0,NULL,'(422) 886-6494',NULL,'4228866494',1),(146,178,1,0,0,NULL,'737-9040',NULL,'7379040',2),(147,30,1,1,0,NULL,'864-8417',NULL,'8648417',1),(148,152,1,1,0,NULL,'405-3594',NULL,'4053594',2),(149,152,1,0,0,NULL,'549-1686',NULL,'5491686',2),(150,161,1,1,0,NULL,'772-8261',NULL,'7728261',2),(151,161,1,0,0,NULL,'665-6738',NULL,'6656738',2),(152,49,1,1,0,NULL,'843-4934',NULL,'8434934',1),(153,136,1,1,0,NULL,'(817) 625-3678',NULL,'8176253678',1),(154,136,1,0,0,NULL,'739-9008',NULL,'7399008',1),(155,133,1,1,0,NULL,'451-5786',NULL,'4515786',1),(156,133,1,0,0,NULL,'(629) 603-7768',NULL,'6296037768',1),(157,175,1,1,0,NULL,'(680) 241-8976',NULL,'6802418976',2),(158,8,1,1,0,NULL,'832-2080',NULL,'8322080',1),(159,8,1,0,0,NULL,'(410) 341-8233',NULL,'4103418233',1),(160,80,1,1,0,NULL,'(825) 730-8303',NULL,'8257308303',2),(161,80,1,0,0,NULL,'(472) 225-9676',NULL,'4722259676',1),(162,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),(163,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),(164,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,144,1,1,0,NULL,'372-2166',NULL,'3722166',1),(2,144,1,0,0,NULL,'(563) 409-1685',NULL,'5634091685',1),(3,66,1,1,0,NULL,'878-3603',NULL,'8783603',1),(4,56,1,1,0,NULL,'(618) 609-7918',NULL,'6186097918',1),(5,56,1,0,0,NULL,'842-6497',NULL,'8426497',1),(6,80,1,1,0,NULL,'(730) 546-6198',NULL,'7305466198',1),(7,104,1,1,0,NULL,'(213) 617-4444',NULL,'2136174444',2),(8,27,1,1,0,NULL,'(306) 618-3925',NULL,'3066183925',1),(9,27,1,0,0,NULL,'(475) 454-7209',NULL,'4754547209',2),(10,162,1,1,0,NULL,'658-9911',NULL,'6589911',1),(11,162,1,0,0,NULL,'(792) 598-5554',NULL,'7925985554',2),(12,19,1,1,0,NULL,'(645) 731-5532',NULL,'6457315532',2),(13,58,1,1,0,NULL,'265-2121',NULL,'2652121',1),(14,23,1,1,0,NULL,'562-1757',NULL,'5621757',1),(15,23,1,0,0,NULL,'667-8061',NULL,'6678061',1),(16,65,1,1,0,NULL,'223-7969',NULL,'2237969',2),(17,65,1,0,0,NULL,'(316) 248-5290',NULL,'3162485290',1),(18,146,1,1,0,NULL,'704-5822',NULL,'7045822',1),(19,146,1,0,0,NULL,'622-8180',NULL,'6228180',2),(20,177,1,1,0,NULL,'(521) 446-3784',NULL,'5214463784',2),(21,83,1,1,0,NULL,'369-8914',NULL,'3698914',1),(22,83,1,0,0,NULL,'247-1858',NULL,'2471858',1),(23,32,1,1,0,NULL,'(545) 418-8895',NULL,'5454188895',2),(24,32,1,0,0,NULL,'458-5659',NULL,'4585659',2),(25,102,1,1,0,NULL,'(392) 724-8479',NULL,'3927248479',2),(26,69,1,1,0,NULL,'845-8848',NULL,'8458848',2),(27,69,1,0,0,NULL,'739-2498',NULL,'7392498',2),(28,4,1,1,0,NULL,'(898) 550-8355',NULL,'8985508355',1),(29,4,1,0,0,NULL,'(871) 627-4537',NULL,'8716274537',2),(30,34,1,1,0,NULL,'595-4394',NULL,'5954394',2),(31,34,1,0,0,NULL,'(445) 498-9021',NULL,'4454989021',1),(32,62,1,1,0,NULL,'(871) 758-1384',NULL,'8717581384',2),(33,93,1,1,0,NULL,'837-8253',NULL,'8378253',1),(34,46,1,1,0,NULL,'(613) 742-9507',NULL,'6137429507',2),(35,200,1,1,0,NULL,'214-1100',NULL,'2141100',1),(36,200,1,0,0,NULL,'795-5482',NULL,'7955482',1),(37,100,1,1,0,NULL,'(405) 366-3714',NULL,'4053663714',1),(38,100,1,0,0,NULL,'455-5735',NULL,'4555735',1),(39,150,1,1,0,NULL,'(830) 381-2727',NULL,'8303812727',2),(40,150,1,0,0,NULL,'337-9205',NULL,'3379205',1),(41,51,1,1,0,NULL,'(521) 628-5395',NULL,'5216285395',2),(42,51,1,0,0,NULL,'330-1982',NULL,'3301982',1),(43,181,1,1,0,NULL,'879-5860',NULL,'8795860',2),(44,33,1,1,0,NULL,'(489) 411-8689',NULL,'4894118689',1),(45,184,1,1,0,NULL,'(492) 346-7713',NULL,'4923467713',1),(46,127,1,1,0,NULL,'(472) 516-2901',NULL,'4725162901',2),(47,194,1,1,0,NULL,'253-7909',NULL,'2537909',1),(48,194,1,0,0,NULL,'(433) 670-9406',NULL,'4336709406',1),(49,108,1,1,0,NULL,'376-1059',NULL,'3761059',2),(50,122,1,1,0,NULL,'(235) 228-5446',NULL,'2352285446',1),(51,122,1,0,0,NULL,'(888) 488-1402',NULL,'8884881402',1),(52,156,1,1,0,NULL,'(791) 271-1279',NULL,'7912711279',2),(53,156,1,0,0,NULL,'(593) 853-8377',NULL,'5938538377',2),(54,110,1,1,0,NULL,'(357) 566-7551',NULL,'3575667551',2),(55,110,1,0,0,NULL,'(834) 257-1831',NULL,'8342571831',1),(56,172,1,1,0,NULL,'(897) 440-5095',NULL,'8974405095',1),(57,9,1,1,0,NULL,'(832) 310-5274',NULL,'8323105274',1),(58,98,1,1,0,NULL,'809-3861',NULL,'8093861',1),(59,98,1,0,0,NULL,'(638) 558-2337',NULL,'6385582337',1),(60,49,1,1,0,NULL,'(778) 684-1576',NULL,'7786841576',1),(61,123,1,1,0,NULL,'(689) 732-9803',NULL,'6897329803',1),(62,22,1,1,0,NULL,'(702) 659-7085',NULL,'7026597085',1),(63,5,1,1,0,NULL,'(867) 899-5112',NULL,'8678995112',2),(64,5,1,0,0,NULL,'636-3248',NULL,'6363248',1),(65,92,1,1,0,NULL,'(225) 700-8013',NULL,'2257008013',2),(66,92,1,0,0,NULL,'419-7783',NULL,'4197783',1),(67,106,1,1,0,NULL,'(418) 544-1445',NULL,'4185441445',2),(68,106,1,0,0,NULL,'(305) 525-7169',NULL,'3055257169',1),(69,125,1,1,0,NULL,'(751) 669-8525',NULL,'7516698525',1),(70,192,1,1,0,NULL,'(824) 610-4618',NULL,'8246104618',1),(71,192,1,0,0,NULL,'(241) 895-1836',NULL,'2418951836',2),(72,183,1,1,0,NULL,'(785) 358-7655',NULL,'7853587655',1),(73,14,1,1,0,NULL,'717-4112',NULL,'7174112',1),(74,143,1,1,0,NULL,'(333) 799-5610',NULL,'3337995610',1),(75,143,1,0,0,NULL,'695-1505',NULL,'6951505',1),(76,55,1,1,0,NULL,'350-7230',NULL,'3507230',2),(77,171,1,1,0,NULL,'372-5431',NULL,'3725431',1),(78,171,1,0,0,NULL,'585-6103',NULL,'5856103',1),(79,28,1,1,0,NULL,'420-4822',NULL,'4204822',2),(80,28,1,0,0,NULL,'564-4400',NULL,'5644400',2),(81,77,1,1,0,NULL,'425-2578',NULL,'4252578',1),(82,135,1,1,0,NULL,'(498) 570-5288',NULL,'4985705288',1),(83,121,1,1,0,NULL,'(809) 247-5600',NULL,'8092475600',2),(84,121,1,0,0,NULL,'(525) 273-8133',NULL,'5252738133',1),(85,70,1,1,0,NULL,'331-3970',NULL,'3313970',1),(86,70,1,0,0,NULL,'413-4776',NULL,'4134776',1),(87,84,1,1,0,NULL,'614-8702',NULL,'6148702',1),(88,84,1,0,0,NULL,'320-7367',NULL,'3207367',2),(89,42,1,1,0,NULL,'(292) 728-8147',NULL,'2927288147',1),(90,133,1,1,0,NULL,'(719) 640-7015',NULL,'7196407015',2),(91,190,1,1,0,NULL,'(763) 452-9235',NULL,'7634529235',1),(92,197,1,1,0,NULL,'(332) 861-3451',NULL,'3328613451',1),(93,186,1,1,0,NULL,'264-9683',NULL,'2649683',1),(94,186,1,0,0,NULL,'(585) 283-8733',NULL,'5852838733',2),(95,178,1,1,0,NULL,'584-2397',NULL,'5842397',1),(96,178,1,0,0,NULL,'242-6238',NULL,'2426238',2),(97,75,1,1,0,NULL,'(500) 682-8708',NULL,'5006828708',1),(98,75,1,0,0,NULL,'(372) 658-3682',NULL,'3726583682',1),(99,195,1,1,0,NULL,'499-3289',NULL,'4993289',2),(100,43,1,1,0,NULL,'538-3193',NULL,'5383193',1),(101,43,1,0,0,NULL,'(803) 860-6922',NULL,'8038606922',2),(102,132,1,1,0,NULL,'(624) 679-4895',NULL,'6246794895',1),(103,132,1,0,0,NULL,'361-2539',NULL,'3612539',1),(104,76,1,1,0,NULL,'557-7389',NULL,'5577389',1),(105,179,1,1,0,NULL,'363-9442',NULL,'3639442',2),(106,88,1,1,0,NULL,'227-7512',NULL,'2277512',2),(107,88,1,0,0,NULL,'(790) 243-6191',NULL,'7902436191',2),(108,169,1,1,0,NULL,'824-9485',NULL,'8249485',1),(109,39,1,1,0,NULL,'800-9638',NULL,'8009638',2),(110,39,1,0,0,NULL,'625-4596',NULL,'6254596',2),(111,40,1,1,0,NULL,'301-5702',NULL,'3015702',2),(112,40,1,0,0,NULL,'545-5704',NULL,'5455704',1),(113,35,1,1,0,NULL,'782-9841',NULL,'7829841',2),(114,138,1,1,0,NULL,'(320) 488-8553',NULL,'3204888553',2),(115,24,1,1,0,NULL,'(345) 213-7576',NULL,'3452137576',2),(116,24,1,0,0,NULL,'883-2483',NULL,'8832483',2),(117,72,1,1,0,NULL,'(525) 442-9738',NULL,'5254429738',2),(118,72,1,0,0,NULL,'589-5528',NULL,'5895528',2),(119,168,1,1,0,NULL,'(781) 803-1257',NULL,'7818031257',2),(120,37,1,1,0,NULL,'(515) 213-4622',NULL,'5152134622',2),(121,37,1,0,0,NULL,'(560) 449-4505',NULL,'5604494505',1),(122,3,1,1,0,NULL,'478-9975',NULL,'4789975',1),(123,25,1,1,0,NULL,'510-7578',NULL,'5107578',2),(124,25,1,0,0,NULL,'(402) 311-8904',NULL,'4023118904',1),(125,149,1,1,0,NULL,'256-3118',NULL,'2563118',2),(126,20,1,1,0,NULL,'(642) 346-5825',NULL,'6423465825',1),(127,20,1,0,0,NULL,'(710) 267-6298',NULL,'7102676298',2),(128,173,1,1,0,NULL,'499-8097',NULL,'4998097',1),(129,11,1,1,0,NULL,'(673) 746-9617',NULL,'6737469617',2),(130,59,1,1,0,NULL,'(413) 881-1913',NULL,'4138811913',1),(131,59,1,0,0,NULL,'(747) 310-7073',NULL,'7473107073',1),(132,18,1,1,0,NULL,'227-3898',NULL,'2273898',1),(133,18,1,0,0,NULL,'(510) 455-8683',NULL,'5104558683',1),(134,7,1,1,0,NULL,'(559) 523-7854',NULL,'5595237854',1),(135,7,1,0,0,NULL,'(626) 481-2101',NULL,'6264812101',2),(136,21,1,1,0,NULL,'(744) 593-1489',NULL,'7445931489',2),(137,21,1,0,0,NULL,'(373) 894-6370',NULL,'3738946370',2),(138,142,1,1,0,NULL,'(524) 377-7395',NULL,'5243777395',1),(139,142,1,0,0,NULL,'531-9191',NULL,'5319191',2),(140,16,1,1,0,NULL,'(282) 761-4578',NULL,'2827614578',1),(141,16,1,0,0,NULL,'(315) 567-2179',NULL,'3155672179',2),(142,48,1,1,0,NULL,'(264) 600-5939',NULL,'2646005939',2),(143,48,1,0,0,NULL,'(432) 317-5175',NULL,'4323175175',1),(144,73,1,1,0,NULL,'(536) 391-6236',NULL,'5363916236',2),(145,73,1,0,0,NULL,'(523) 770-5968',NULL,'5237705968',1),(146,15,1,1,0,NULL,'397-3791',NULL,'3973791',1),(147,15,1,0,0,NULL,'638-3782',NULL,'6383782',1),(148,134,1,1,0,NULL,'(698) 591-3775',NULL,'6985913775',2),(149,134,1,0,0,NULL,'327-7313',NULL,'3277313',1),(150,NULL,1,0,0,NULL,'204 222-1000',NULL,'2042221000',1),(151,NULL,1,0,0,NULL,'204 223-1000',NULL,'2042231000',1),(152,NULL,1,0,0,NULL,'303 323-1000',NULL,'3033231000',1); /*!40000 ALTER TABLE `civicrm_phone` ENABLE KEYS */; UNLOCK TABLES; @@ -1252,7 +1251,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,37,181,1,NULL,NULL,1,NULL,0,0,NULL),(2,143,181,1,NULL,NULL,1,NULL,0,0,NULL),(3,37,14,1,NULL,NULL,1,NULL,0,0,NULL),(4,143,14,1,NULL,NULL,1,NULL,0,0,NULL),(5,143,37,4,NULL,NULL,1,NULL,0,0,NULL),(6,14,59,8,NULL,NULL,1,NULL,0,0,NULL),(7,37,59,8,NULL,NULL,1,NULL,0,0,NULL),(8,143,59,8,NULL,NULL,1,NULL,0,0,NULL),(9,181,59,7,NULL,NULL,1,NULL,0,0,NULL),(10,14,181,2,NULL,NULL,1,NULL,0,0,NULL),(11,177,172,1,NULL,NULL,1,NULL,0,0,NULL),(12,62,172,1,NULL,NULL,1,NULL,0,0,NULL),(13,177,125,1,NULL,NULL,1,NULL,0,0,NULL),(14,62,125,1,NULL,NULL,1,NULL,0,0,NULL),(15,62,177,4,NULL,NULL,1,NULL,0,0,NULL),(16,125,87,8,NULL,NULL,1,NULL,0,0,NULL),(17,177,87,8,NULL,NULL,1,NULL,0,0,NULL),(18,62,87,8,NULL,NULL,1,NULL,0,0,NULL),(19,172,87,7,NULL,NULL,0,NULL,0,0,NULL),(20,125,172,2,NULL,NULL,0,NULL,0,0,NULL),(21,169,55,1,NULL,NULL,1,NULL,0,0,NULL),(22,2,55,1,NULL,NULL,1,NULL,0,0,NULL),(23,169,139,1,NULL,NULL,1,NULL,0,0,NULL),(24,2,139,1,NULL,NULL,1,NULL,0,0,NULL),(25,2,169,4,NULL,NULL,1,NULL,0,0,NULL),(26,139,90,8,NULL,NULL,1,NULL,0,0,NULL),(27,169,90,8,NULL,NULL,1,NULL,0,0,NULL),(28,2,90,8,NULL,NULL,1,NULL,0,0,NULL),(29,55,90,7,NULL,NULL,1,NULL,0,0,NULL),(30,139,55,2,NULL,NULL,1,NULL,0,0,NULL),(31,198,144,1,NULL,NULL,1,NULL,0,0,NULL),(32,81,144,1,NULL,NULL,1,NULL,0,0,NULL),(33,198,114,1,NULL,NULL,1,NULL,0,0,NULL),(34,81,114,1,NULL,NULL,1,NULL,0,0,NULL),(35,81,198,4,NULL,NULL,1,NULL,0,0,NULL),(36,114,115,8,NULL,NULL,1,NULL,0,0,NULL),(37,198,115,8,NULL,NULL,1,NULL,0,0,NULL),(38,81,115,8,NULL,NULL,1,NULL,0,0,NULL),(39,144,115,7,NULL,NULL,1,NULL,0,0,NULL),(40,114,144,2,NULL,NULL,1,NULL,0,0,NULL),(41,103,195,1,NULL,NULL,1,NULL,0,0,NULL),(42,96,195,1,NULL,NULL,1,NULL,0,0,NULL),(43,103,110,1,NULL,NULL,1,NULL,0,0,NULL),(44,96,110,1,NULL,NULL,1,NULL,0,0,NULL),(45,96,103,4,NULL,NULL,1,NULL,0,0,NULL),(46,110,146,8,NULL,NULL,1,NULL,0,0,NULL),(47,103,146,8,NULL,NULL,1,NULL,0,0,NULL),(48,96,146,8,NULL,NULL,1,NULL,0,0,NULL),(49,195,146,7,NULL,NULL,1,NULL,0,0,NULL),(50,110,195,2,NULL,NULL,1,NULL,0,0,NULL),(51,46,85,1,NULL,NULL,1,NULL,0,0,NULL),(52,155,85,1,NULL,NULL,1,NULL,0,0,NULL),(53,46,78,1,NULL,NULL,1,NULL,0,0,NULL),(54,155,78,1,NULL,NULL,1,NULL,0,0,NULL),(55,155,46,4,NULL,NULL,1,NULL,0,0,NULL),(56,78,12,8,NULL,NULL,1,NULL,0,0,NULL),(57,46,12,8,NULL,NULL,1,NULL,0,0,NULL),(58,155,12,8,NULL,NULL,1,NULL,0,0,NULL),(59,85,12,7,NULL,NULL,1,NULL,0,0,NULL),(60,78,85,2,NULL,NULL,1,NULL,0,0,NULL),(61,51,167,1,NULL,NULL,1,NULL,0,0,NULL),(62,15,167,1,NULL,NULL,1,NULL,0,0,NULL),(63,51,48,1,NULL,NULL,1,NULL,0,0,NULL),(64,15,48,1,NULL,NULL,1,NULL,0,0,NULL),(65,15,51,4,NULL,NULL,1,NULL,0,0,NULL),(66,48,174,8,NULL,NULL,1,NULL,0,0,NULL),(67,51,174,8,NULL,NULL,1,NULL,0,0,NULL),(68,15,174,8,NULL,NULL,1,NULL,0,0,NULL),(69,167,174,7,NULL,NULL,0,NULL,0,0,NULL),(70,48,167,2,NULL,NULL,0,NULL,0,0,NULL),(71,183,36,1,NULL,NULL,1,NULL,0,0,NULL),(72,148,36,1,NULL,NULL,1,NULL,0,0,NULL),(73,183,145,1,NULL,NULL,1,NULL,0,0,NULL),(74,148,145,1,NULL,NULL,1,NULL,0,0,NULL),(75,148,183,4,NULL,NULL,1,NULL,0,0,NULL),(76,145,10,8,NULL,NULL,1,NULL,0,0,NULL),(77,183,10,8,NULL,NULL,1,NULL,0,0,NULL),(78,148,10,8,NULL,NULL,1,NULL,0,0,NULL),(79,36,10,7,NULL,NULL,0,NULL,0,0,NULL),(80,145,36,2,NULL,NULL,0,NULL,0,0,NULL),(81,151,79,1,NULL,NULL,1,NULL,0,0,NULL),(82,92,79,1,NULL,NULL,1,NULL,0,0,NULL),(83,151,40,1,NULL,NULL,1,NULL,0,0,NULL),(84,92,40,1,NULL,NULL,1,NULL,0,0,NULL),(85,92,151,4,NULL,NULL,1,NULL,0,0,NULL),(86,40,156,8,NULL,NULL,1,NULL,0,0,NULL),(87,151,156,8,NULL,NULL,1,NULL,0,0,NULL),(88,92,156,8,NULL,NULL,1,NULL,0,0,NULL),(89,79,156,7,NULL,NULL,0,NULL,0,0,NULL),(90,40,79,2,NULL,NULL,0,NULL,0,0,NULL),(91,71,60,1,NULL,NULL,1,NULL,0,0,NULL),(92,72,60,1,NULL,NULL,1,NULL,0,0,NULL),(93,71,116,1,NULL,NULL,1,NULL,0,0,NULL),(94,72,116,1,NULL,NULL,1,NULL,0,0,NULL),(95,72,71,4,NULL,NULL,1,NULL,0,0,NULL),(96,116,182,8,NULL,NULL,1,NULL,0,0,NULL),(97,71,182,8,NULL,NULL,1,NULL,0,0,NULL),(98,72,182,8,NULL,NULL,1,NULL,0,0,NULL),(99,60,182,7,NULL,NULL,0,NULL,0,0,NULL),(100,116,60,2,NULL,NULL,0,NULL,0,0,NULL),(101,197,126,1,NULL,NULL,1,NULL,0,0,NULL),(102,117,126,1,NULL,NULL,1,NULL,0,0,NULL),(103,197,35,1,NULL,NULL,1,NULL,0,0,NULL),(104,117,35,1,NULL,NULL,1,NULL,0,0,NULL),(105,117,197,4,NULL,NULL,1,NULL,0,0,NULL),(106,35,41,8,NULL,NULL,1,NULL,0,0,NULL),(107,197,41,8,NULL,NULL,1,NULL,0,0,NULL),(108,117,41,8,NULL,NULL,1,NULL,0,0,NULL),(109,126,41,7,NULL,NULL,1,NULL,0,0,NULL),(110,35,126,2,NULL,NULL,1,NULL,0,0,NULL),(111,159,109,1,NULL,NULL,1,NULL,0,0,NULL),(112,3,109,1,NULL,NULL,1,NULL,0,0,NULL),(113,159,166,1,NULL,NULL,1,NULL,0,0,NULL),(114,3,166,1,NULL,NULL,1,NULL,0,0,NULL),(115,3,159,4,NULL,NULL,1,NULL,0,0,NULL),(116,166,180,8,NULL,NULL,1,NULL,0,0,NULL),(117,159,180,8,NULL,NULL,1,NULL,0,0,NULL),(118,3,180,8,NULL,NULL,1,NULL,0,0,NULL),(119,109,180,7,NULL,NULL,1,NULL,0,0,NULL),(120,166,109,2,NULL,NULL,1,NULL,0,0,NULL),(121,70,187,1,NULL,NULL,1,NULL,0,0,NULL),(122,61,187,1,NULL,NULL,1,NULL,0,0,NULL),(123,70,4,1,NULL,NULL,1,NULL,0,0,NULL),(124,61,4,1,NULL,NULL,1,NULL,0,0,NULL),(125,61,70,4,NULL,NULL,1,NULL,0,0,NULL),(126,4,191,8,NULL,NULL,1,NULL,0,0,NULL),(127,70,191,8,NULL,NULL,1,NULL,0,0,NULL),(128,61,191,8,NULL,NULL,1,NULL,0,0,NULL),(129,187,191,7,NULL,NULL,1,NULL,0,0,NULL),(130,4,187,2,NULL,NULL,1,NULL,0,0,NULL),(131,140,89,1,NULL,NULL,1,NULL,0,0,NULL),(132,142,89,1,NULL,NULL,1,NULL,0,0,NULL),(133,140,134,1,NULL,NULL,1,NULL,0,0,NULL),(134,142,134,1,NULL,NULL,1,NULL,0,0,NULL),(135,142,140,4,NULL,NULL,1,NULL,0,0,NULL),(136,134,189,8,NULL,NULL,1,NULL,0,0,NULL),(137,140,189,8,NULL,NULL,1,NULL,0,0,NULL),(138,142,189,8,NULL,NULL,1,NULL,0,0,NULL),(139,89,189,7,NULL,NULL,1,NULL,0,0,NULL),(140,134,89,2,NULL,NULL,1,NULL,0,0,NULL),(141,124,18,1,NULL,NULL,1,NULL,0,0,NULL),(142,11,18,1,NULL,NULL,1,NULL,0,0,NULL),(143,124,118,1,NULL,NULL,1,NULL,0,0,NULL),(144,11,118,1,NULL,NULL,1,NULL,0,0,NULL),(145,11,124,4,NULL,NULL,1,NULL,0,0,NULL),(146,118,127,8,NULL,NULL,1,NULL,0,0,NULL),(147,124,127,8,NULL,NULL,1,NULL,0,0,NULL),(148,11,127,8,NULL,NULL,1,NULL,0,0,NULL),(149,18,127,7,NULL,NULL,0,NULL,0,0,NULL),(150,118,18,2,NULL,NULL,0,NULL,0,0,NULL),(151,121,201,1,NULL,NULL,1,NULL,0,0,NULL),(152,132,201,1,NULL,NULL,1,NULL,0,0,NULL),(153,121,131,1,NULL,NULL,1,NULL,0,0,NULL),(154,132,131,1,NULL,NULL,1,NULL,0,0,NULL),(155,132,121,4,NULL,NULL,1,NULL,0,0,NULL),(156,131,164,8,NULL,NULL,1,NULL,0,0,NULL),(157,121,164,8,NULL,NULL,1,NULL,0,0,NULL),(158,132,164,8,NULL,NULL,1,NULL,0,0,NULL),(159,201,164,7,NULL,NULL,0,NULL,0,0,NULL),(160,131,201,2,NULL,NULL,0,NULL,0,0,NULL),(161,30,122,1,NULL,NULL,1,NULL,0,0,NULL),(162,152,122,1,NULL,NULL,1,NULL,0,0,NULL),(163,30,178,1,NULL,NULL,1,NULL,0,0,NULL),(164,152,178,1,NULL,NULL,1,NULL,0,0,NULL),(165,152,30,4,NULL,NULL,1,NULL,0,0,NULL),(166,178,67,8,NULL,NULL,1,NULL,0,0,NULL),(167,30,67,8,NULL,NULL,1,NULL,0,0,NULL),(168,152,67,8,NULL,NULL,1,NULL,0,0,NULL),(169,122,67,7,NULL,NULL,1,NULL,0,0,NULL),(170,178,122,2,NULL,NULL,1,NULL,0,0,NULL),(171,136,161,1,NULL,NULL,1,NULL,0,0,NULL),(172,147,161,1,NULL,NULL,1,NULL,0,0,NULL),(173,136,49,1,NULL,NULL,1,NULL,0,0,NULL),(174,147,49,1,NULL,NULL,1,NULL,0,0,NULL),(175,147,136,4,NULL,NULL,1,NULL,0,0,NULL),(176,49,157,8,NULL,NULL,1,NULL,0,0,NULL),(177,136,157,8,NULL,NULL,1,NULL,0,0,NULL),(178,147,157,8,NULL,NULL,1,NULL,0,0,NULL),(179,161,157,7,NULL,NULL,1,NULL,0,0,NULL),(180,49,161,2,NULL,NULL,1,NULL,0,0,NULL),(181,138,65,1,NULL,NULL,1,NULL,0,0,NULL),(182,133,65,1,NULL,NULL,1,NULL,0,0,NULL),(183,138,171,1,NULL,NULL,1,NULL,0,0,NULL),(184,133,171,1,NULL,NULL,1,NULL,0,0,NULL),(185,133,138,4,NULL,NULL,1,NULL,0,0,NULL),(186,171,5,8,NULL,NULL,1,NULL,0,0,NULL),(187,138,5,8,NULL,NULL,1,NULL,0,0,NULL),(188,133,5,8,NULL,NULL,1,NULL,0,0,NULL),(189,65,5,7,NULL,NULL,0,NULL,0,0,NULL),(190,171,65,2,NULL,NULL,0,NULL,0,0,NULL),(191,80,175,1,NULL,NULL,1,NULL,0,0,NULL),(192,13,175,1,NULL,NULL,1,NULL,0,0,NULL),(193,80,8,1,NULL,NULL,1,NULL,0,0,NULL),(194,13,8,1,NULL,NULL,1,NULL,0,0,NULL),(195,13,80,4,NULL,NULL,1,NULL,0,0,NULL),(196,8,24,8,NULL,NULL,1,NULL,0,0,NULL),(197,80,24,8,NULL,NULL,1,NULL,0,0,NULL),(198,13,24,8,NULL,NULL,1,NULL,0,0,NULL),(199,175,24,7,NULL,NULL,0,NULL,0,0,NULL),(200,8,175,2,NULL,NULL,0,NULL,0,0,NULL),(201,64,16,5,NULL,NULL,1,NULL,0,0,NULL),(202,178,29,5,NULL,NULL,1,NULL,0,0,NULL),(203,123,58,5,NULL,NULL,1,NULL,0,0,NULL),(204,37,68,5,NULL,NULL,1,NULL,0,0,NULL),(205,6,69,5,NULL,NULL,1,NULL,0,0,NULL),(206,139,95,5,NULL,NULL,1,NULL,0,0,NULL),(207,34,106,5,NULL,NULL,1,NULL,0,0,NULL),(208,104,128,5,NULL,NULL,1,NULL,0,0,NULL),(209,185,130,5,NULL,NULL,1,NULL,0,0,NULL),(210,8,158,5,NULL,NULL,1,NULL,0,0,NULL),(211,143,163,5,NULL,NULL,1,NULL,0,0,NULL),(212,132,165,5,NULL,NULL,1,NULL,0,0,NULL),(213,52,179,5,NULL,NULL,1,NULL,0,0,NULL),(214,135,184,5,NULL,NULL,1,NULL,0,0,NULL),(215,138,193,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,91,125,1,NULL,NULL,1,NULL,0,0,NULL),(2,183,125,1,NULL,NULL,1,NULL,0,0,NULL),(3,91,192,1,NULL,NULL,1,NULL,0,0,NULL),(4,183,192,1,NULL,NULL,1,NULL,0,0,NULL),(5,183,91,4,NULL,NULL,1,NULL,0,0,NULL),(6,192,29,8,NULL,NULL,1,NULL,0,0,NULL),(7,91,29,8,NULL,NULL,1,NULL,0,0,NULL),(8,183,29,8,NULL,NULL,1,NULL,0,0,NULL),(9,125,29,7,NULL,NULL,1,NULL,0,0,NULL),(10,192,125,2,NULL,NULL,1,NULL,0,0,NULL),(11,111,14,1,NULL,NULL,1,NULL,0,0,NULL),(12,129,14,1,NULL,NULL,1,NULL,0,0,NULL),(13,111,151,1,NULL,NULL,1,NULL,0,0,NULL),(14,129,151,1,NULL,NULL,1,NULL,0,0,NULL),(15,129,111,4,NULL,NULL,1,NULL,0,0,NULL),(16,151,130,8,NULL,NULL,1,NULL,0,0,NULL),(17,111,130,8,NULL,NULL,1,NULL,0,0,NULL),(18,129,130,8,NULL,NULL,1,NULL,0,0,NULL),(19,14,130,7,NULL,NULL,1,NULL,0,0,NULL),(20,151,14,2,NULL,NULL,1,NULL,0,0,NULL),(21,171,143,1,NULL,NULL,1,NULL,0,0,NULL),(22,191,143,1,NULL,NULL,1,NULL,0,0,NULL),(23,171,55,1,NULL,NULL,1,NULL,0,0,NULL),(24,191,55,1,NULL,NULL,1,NULL,0,0,NULL),(25,191,171,4,NULL,NULL,1,NULL,0,0,NULL),(26,55,12,8,NULL,NULL,1,NULL,0,0,NULL),(27,171,12,8,NULL,NULL,1,NULL,0,0,NULL),(28,191,12,8,NULL,NULL,1,NULL,0,0,NULL),(29,143,12,7,NULL,NULL,1,NULL,0,0,NULL),(30,55,143,2,NULL,NULL,1,NULL,0,0,NULL),(31,68,28,1,NULL,NULL,1,NULL,0,0,NULL),(32,135,28,1,NULL,NULL,1,NULL,0,0,NULL),(33,68,77,1,NULL,NULL,1,NULL,0,0,NULL),(34,135,77,1,NULL,NULL,1,NULL,0,0,NULL),(35,135,68,4,NULL,NULL,1,NULL,0,0,NULL),(36,77,45,8,NULL,NULL,1,NULL,0,0,NULL),(37,68,45,8,NULL,NULL,1,NULL,0,0,NULL),(38,135,45,8,NULL,NULL,1,NULL,0,0,NULL),(39,28,45,7,NULL,NULL,1,NULL,0,0,NULL),(40,77,28,2,NULL,NULL,1,NULL,0,0,NULL),(41,84,121,1,NULL,NULL,1,NULL,0,0,NULL),(42,74,121,1,NULL,NULL,1,NULL,0,0,NULL),(43,84,70,1,NULL,NULL,1,NULL,0,0,NULL),(44,74,70,1,NULL,NULL,1,NULL,0,0,NULL),(45,74,84,4,NULL,NULL,1,NULL,0,0,NULL),(46,70,198,8,NULL,NULL,1,NULL,0,0,NULL),(47,84,198,8,NULL,NULL,1,NULL,0,0,NULL),(48,74,198,8,NULL,NULL,1,NULL,0,0,NULL),(49,121,198,7,NULL,NULL,1,NULL,0,0,NULL),(50,70,121,2,NULL,NULL,1,NULL,0,0,NULL),(51,133,17,1,NULL,NULL,1,NULL,0,0,NULL),(52,47,17,1,NULL,NULL,1,NULL,0,0,NULL),(53,133,42,1,NULL,NULL,1,NULL,0,0,NULL),(54,47,42,1,NULL,NULL,1,NULL,0,0,NULL),(55,47,133,4,NULL,NULL,1,NULL,0,0,NULL),(56,42,193,8,NULL,NULL,1,NULL,0,0,NULL),(57,133,193,8,NULL,NULL,1,NULL,0,0,NULL),(58,47,193,8,NULL,NULL,1,NULL,0,0,NULL),(59,17,193,7,NULL,NULL,0,NULL,0,0,NULL),(60,42,17,2,NULL,NULL,0,NULL,0,0,NULL),(61,186,190,1,NULL,NULL,1,NULL,0,0,NULL),(62,160,190,1,NULL,NULL,1,NULL,0,0,NULL),(63,186,197,1,NULL,NULL,1,NULL,0,0,NULL),(64,160,197,1,NULL,NULL,1,NULL,0,0,NULL),(65,160,186,4,NULL,NULL,1,NULL,0,0,NULL),(66,197,147,8,NULL,NULL,1,NULL,0,0,NULL),(67,186,147,8,NULL,NULL,1,NULL,0,0,NULL),(68,160,147,8,NULL,NULL,1,NULL,0,0,NULL),(69,190,147,7,NULL,NULL,0,NULL,0,0,NULL),(70,197,190,2,NULL,NULL,0,NULL,0,0,NULL),(71,112,178,1,NULL,NULL,1,NULL,0,0,NULL),(72,195,178,1,NULL,NULL,1,NULL,0,0,NULL),(73,112,75,1,NULL,NULL,1,NULL,0,0,NULL),(74,195,75,1,NULL,NULL,1,NULL,0,0,NULL),(75,195,112,4,NULL,NULL,1,NULL,0,0,NULL),(76,75,61,8,NULL,NULL,1,NULL,0,0,NULL),(77,112,61,8,NULL,NULL,1,NULL,0,0,NULL),(78,195,61,8,NULL,NULL,1,NULL,0,0,NULL),(79,178,61,7,NULL,NULL,1,NULL,0,0,NULL),(80,75,178,2,NULL,NULL,1,NULL,0,0,NULL),(81,76,43,1,NULL,NULL,1,NULL,0,0,NULL),(82,36,43,1,NULL,NULL,1,NULL,0,0,NULL),(83,76,132,1,NULL,NULL,1,NULL,0,0,NULL),(84,36,132,1,NULL,NULL,1,NULL,0,0,NULL),(85,36,76,4,NULL,NULL,1,NULL,0,0,NULL),(86,132,140,8,NULL,NULL,1,NULL,0,0,NULL),(87,76,140,8,NULL,NULL,1,NULL,0,0,NULL),(88,36,140,8,NULL,NULL,1,NULL,0,0,NULL),(89,43,140,7,NULL,NULL,1,NULL,0,0,NULL),(90,132,43,2,NULL,NULL,1,NULL,0,0,NULL),(91,88,158,1,NULL,NULL,1,NULL,0,0,NULL),(92,169,158,1,NULL,NULL,1,NULL,0,0,NULL),(93,88,179,1,NULL,NULL,1,NULL,0,0,NULL),(94,169,179,1,NULL,NULL,1,NULL,0,0,NULL),(95,169,88,4,NULL,NULL,1,NULL,0,0,NULL),(96,179,13,8,NULL,NULL,1,NULL,0,0,NULL),(97,88,13,8,NULL,NULL,1,NULL,0,0,NULL),(98,169,13,8,NULL,NULL,1,NULL,0,0,NULL),(99,158,13,7,NULL,NULL,0,NULL,0,0,NULL),(100,179,158,2,NULL,NULL,0,NULL,0,0,NULL),(101,114,39,1,NULL,NULL,1,NULL,0,0,NULL),(102,35,39,1,NULL,NULL,1,NULL,0,0,NULL),(103,114,40,1,NULL,NULL,1,NULL,0,0,NULL),(104,35,40,1,NULL,NULL,1,NULL,0,0,NULL),(105,35,114,4,NULL,NULL,1,NULL,0,0,NULL),(106,40,94,8,NULL,NULL,1,NULL,0,0,NULL),(107,114,94,8,NULL,NULL,1,NULL,0,0,NULL),(108,35,94,8,NULL,NULL,1,NULL,0,0,NULL),(109,39,94,7,NULL,NULL,0,NULL,0,0,NULL),(110,40,39,2,NULL,NULL,0,NULL,0,0,NULL),(111,24,138,1,NULL,NULL,1,NULL,0,0,NULL),(112,166,138,1,NULL,NULL,1,NULL,0,0,NULL),(113,24,137,1,NULL,NULL,1,NULL,0,0,NULL),(114,166,137,1,NULL,NULL,1,NULL,0,0,NULL),(115,166,24,4,NULL,NULL,1,NULL,0,0,NULL),(116,137,188,8,NULL,NULL,1,NULL,0,0,NULL),(117,24,188,8,NULL,NULL,1,NULL,0,0,NULL),(118,166,188,8,NULL,NULL,1,NULL,0,0,NULL),(119,138,188,7,NULL,NULL,1,NULL,0,0,NULL),(120,137,138,2,NULL,NULL,1,NULL,0,0,NULL),(121,107,72,1,NULL,NULL,1,NULL,0,0,NULL),(122,96,72,1,NULL,NULL,1,NULL,0,0,NULL),(123,107,168,1,NULL,NULL,1,NULL,0,0,NULL),(124,96,168,1,NULL,NULL,1,NULL,0,0,NULL),(125,96,107,4,NULL,NULL,1,NULL,0,0,NULL),(126,168,131,8,NULL,NULL,1,NULL,0,0,NULL),(127,107,131,8,NULL,NULL,1,NULL,0,0,NULL),(128,96,131,8,NULL,NULL,1,NULL,0,0,NULL),(129,72,131,7,NULL,NULL,0,NULL,0,0,NULL),(130,168,72,2,NULL,NULL,0,NULL,0,0,NULL),(131,167,37,1,NULL,NULL,1,NULL,0,0,NULL),(132,2,37,1,NULL,NULL,1,NULL,0,0,NULL),(133,167,3,1,NULL,NULL,1,NULL,0,0,NULL),(134,2,3,1,NULL,NULL,1,NULL,0,0,NULL),(135,2,167,4,NULL,NULL,1,NULL,0,0,NULL),(136,3,155,8,NULL,NULL,1,NULL,0,0,NULL),(137,167,155,8,NULL,NULL,1,NULL,0,0,NULL),(138,2,155,8,NULL,NULL,1,NULL,0,0,NULL),(139,37,155,7,NULL,NULL,1,NULL,0,0,NULL),(140,3,37,2,NULL,NULL,1,NULL,0,0,NULL),(141,20,25,1,NULL,NULL,1,NULL,0,0,NULL),(142,116,25,1,NULL,NULL,1,NULL,0,0,NULL),(143,20,149,1,NULL,NULL,1,NULL,0,0,NULL),(144,116,149,1,NULL,NULL,1,NULL,0,0,NULL),(145,116,20,4,NULL,NULL,1,NULL,0,0,NULL),(146,149,89,8,NULL,NULL,1,NULL,0,0,NULL),(147,20,89,8,NULL,NULL,1,NULL,0,0,NULL),(148,116,89,8,NULL,NULL,1,NULL,0,0,NULL),(149,25,89,7,NULL,NULL,1,NULL,0,0,NULL),(150,149,25,2,NULL,NULL,1,NULL,0,0,NULL),(151,173,44,1,NULL,NULL,1,NULL,0,0,NULL),(152,11,44,1,NULL,NULL,1,NULL,0,0,NULL),(153,173,145,1,NULL,NULL,1,NULL,0,0,NULL),(154,11,145,1,NULL,NULL,1,NULL,0,0,NULL),(155,11,173,4,NULL,NULL,1,NULL,0,0,NULL),(156,145,38,8,NULL,NULL,1,NULL,0,0,NULL),(157,173,38,8,NULL,NULL,1,NULL,0,0,NULL),(158,11,38,8,NULL,NULL,1,NULL,0,0,NULL),(159,44,38,7,NULL,NULL,0,NULL,0,0,NULL),(160,145,44,2,NULL,NULL,0,NULL,0,0,NULL),(161,85,157,1,NULL,NULL,1,NULL,0,0,NULL),(162,18,157,1,NULL,NULL,1,NULL,0,0,NULL),(163,85,59,1,NULL,NULL,1,NULL,0,0,NULL),(164,18,59,1,NULL,NULL,1,NULL,0,0,NULL),(165,18,85,4,NULL,NULL,1,NULL,0,0,NULL),(166,59,82,8,NULL,NULL,1,NULL,0,0,NULL),(167,85,82,8,NULL,NULL,1,NULL,0,0,NULL),(168,18,82,8,NULL,NULL,1,NULL,0,0,NULL),(169,157,82,7,NULL,NULL,0,NULL,0,0,NULL),(170,59,157,2,NULL,NULL,0,NULL,0,0,NULL),(171,90,175,1,NULL,NULL,1,NULL,0,0,NULL),(172,7,175,1,NULL,NULL,1,NULL,0,0,NULL),(173,90,63,1,NULL,NULL,1,NULL,0,0,NULL),(174,7,63,1,NULL,NULL,1,NULL,0,0,NULL),(175,7,90,4,NULL,NULL,1,NULL,0,0,NULL),(176,63,31,8,NULL,NULL,1,NULL,0,0,NULL),(177,90,31,8,NULL,NULL,1,NULL,0,0,NULL),(178,7,31,8,NULL,NULL,1,NULL,0,0,NULL),(179,175,31,7,NULL,NULL,0,NULL,0,0,NULL),(180,63,175,2,NULL,NULL,0,NULL,0,0,NULL),(181,16,21,1,NULL,NULL,1,NULL,0,0,NULL),(182,48,21,1,NULL,NULL,1,NULL,0,0,NULL),(183,16,142,1,NULL,NULL,1,NULL,0,0,NULL),(184,48,142,1,NULL,NULL,1,NULL,0,0,NULL),(185,48,16,4,NULL,NULL,1,NULL,0,0,NULL),(186,142,95,8,NULL,NULL,1,NULL,0,0,NULL),(187,16,95,8,NULL,NULL,1,NULL,0,0,NULL),(188,48,95,8,NULL,NULL,1,NULL,0,0,NULL),(189,21,95,7,NULL,NULL,0,NULL,0,0,NULL),(190,142,21,2,NULL,NULL,0,NULL,0,0,NULL),(191,15,73,1,NULL,NULL,1,NULL,0,0,NULL),(192,134,73,1,NULL,NULL,1,NULL,0,0,NULL),(193,15,201,1,NULL,NULL,1,NULL,0,0,NULL),(194,134,201,1,NULL,NULL,1,NULL,0,0,NULL),(195,134,15,4,NULL,NULL,1,NULL,0,0,NULL),(196,201,165,8,NULL,NULL,1,NULL,0,0,NULL),(197,15,165,8,NULL,NULL,1,NULL,0,0,NULL),(198,134,165,8,NULL,NULL,1,NULL,0,0,NULL),(199,73,165,7,NULL,NULL,1,NULL,0,0,NULL),(200,201,73,2,NULL,NULL,1,NULL,0,0,NULL),(201,47,41,5,NULL,NULL,1,NULL,0,0,NULL),(202,102,57,5,NULL,NULL,1,NULL,0,0,NULL),(203,17,67,5,NULL,NULL,1,NULL,0,0,NULL),(204,5,78,5,NULL,NULL,1,NULL,0,0,NULL),(205,162,86,5,NULL,NULL,1,NULL,0,0,NULL),(206,158,97,5,NULL,NULL,1,NULL,0,0,NULL),(207,100,105,5,NULL,NULL,1,NULL,0,0,NULL),(208,132,109,5,NULL,NULL,1,NULL,0,0,NULL),(209,146,119,5,NULL,NULL,1,NULL,0,0,NULL),(210,163,120,5,NULL,NULL,1,NULL,0,0,NULL),(211,25,124,5,NULL,NULL,1,NULL,0,0,NULL),(212,177,141,5,NULL,NULL,1,NULL,0,0,NULL),(213,49,154,5,NULL,NULL,1,NULL,0,0,NULL),(214,59,161,5,NULL,NULL,1,NULL,0,0,NULL),(215,107,164,5,NULL,NULL,1,NULL,0,0,NULL),(216,116,174,5,NULL,NULL,1,NULL,0,0,NULL),(217,84,176,5,NULL,NULL,1,NULL,0,0,NULL); /*!40000 ALTER TABLE `civicrm_relationship` ENABLE KEYS */; UNLOCK TABLES; @@ -1291,7 +1290,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:\"123456789101113\";',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:\"123456789111214151617\";',1,NULL,1,NULL,NULL,NULL),(4,'CiviCRM Preferences','advanced_search_options','s:46:\"123456789101112131516171819\";',1,NULL,1,NULL,NULL,NULL),(5,'CiviCRM Preferences','user_dashboard_options','s:15:\"1234578\";',1,NULL,1,NULL,NULL,NULL),(6,'CiviCRM Preferences','address_options','s:23:\"123456891011\";',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:\"12\";',1,NULL,1,NULL,NULL,NULL),(16,'CiviCRM Preferences','contact_reference_options','s:5:\"12\";',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-01-20 06:35:05',NULL),(36,'Directory Preferences','imageUploadDir','s:19:\"persist/contribute/\";',1,NULL,1,NULL,'2015-01-20 06:35:05',NULL),(37,'Directory Preferences','customFileUploadDir','s:7:\"custom/\";',1,NULL,1,NULL,'2015-01-20 06:35:05',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-01-20 06:35:05',NULL),(42,'URL Preferences','imageUploadURL',NULL,1,NULL,1,NULL,'2015-01-20 06:35:05',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),(46,'Contribute Preferences','cvv_backoffice_required','s:1:\"1\";',1,NULL,1,NULL,'2015-01-20 09:35:12',NULL),(47,'CiviCRM Preferences','ajaxPopupsEnabled','i:1;',1,NULL,1,NULL,'2015-01-20 09:35:12',NULL),(48,'CiviCRM Preferences','max_attachments','i:3;',1,NULL,1,NULL,'2015-01-20 09:35:12',NULL),(49,'CiviCRM Preferences','contact_undelete','i:1;',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(50,'CiviCRM Preferences','allowPermDeleteFinancial','b:0;',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(51,'CiviCRM Preferences','versionAlert','i:1;',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(52,'CiviCRM Preferences','securityUpdateAlert','i:3;',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(53,'CiviCRM Preferences','versionCheck','i:1;',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(54,'CiviCRM Preferences','versionCheckIgnoreDate',NULL,1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(55,'CiviCRM Preferences','securityAlert','i:1;',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(56,'CiviCRM Preferences','blogUrl','s:9:\"*default*\";',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(57,'CiviCRM Preferences','communityMessagesUrl','s:9:\"*default*\";',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(58,'CiviCRM Preferences','verifySSL','i:1;',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(59,'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-01-20 09:35:13',NULL),(60,'CiviCRM Preferences','disable_core_css','s:1:\"0\";',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(61,'CiviCRM Preferences','empoweredBy','b:1;',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(62,'Developer Preferences','fatalErrorTemplate','s:20:\"CRM/common/fatal.tpl\";',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(63,'Event Preferences','event_enable_cart','i:0;',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(64,'Mailing Preferences','disable_mandatory_tokens_check','i:0;',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(65,'Mailing Preferences','dedupe_email_default','i:1;',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(66,'Mailing Preferences','hash_mailing_url','i:0;',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(67,'Search Preferences','search_autocomplete_count','i:10;',1,NULL,1,NULL,'2015-01-20 09:35:13',NULL),(68,'Search Preferences','enable_innodb_fts','i:0;',1,NULL,1,NULL,'2015-01-20 09:35:14',NULL),(69,'Search Preferences','fts_query_mode','s:6:\"simple\";',1,NULL,1,NULL,'2015-01-20 09:35:14',NULL),(70,'CiviCRM Preferences','resCacheCode','s:5:\"qDREZ\";',1,NULL,1,NULL,'2015-01-20 09:35:14',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:\"123456789101113\";',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:\"123456789111214151617\";',1,NULL,1,NULL,NULL,NULL),(4,'CiviCRM Preferences','advanced_search_options','s:46:\"123456789101112131516171819\";',1,NULL,1,NULL,NULL,NULL),(5,'CiviCRM Preferences','user_dashboard_options','s:15:\"1234578\";',1,NULL,1,NULL,NULL,NULL),(6,'CiviCRM Preferences','address_options','s:23:\"123456891011\";',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:\"12\";',1,NULL,1,NULL,NULL,NULL),(16,'CiviCRM Preferences','contact_reference_options','s:5:\"12\";',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-01-16 06:12:20',NULL),(36,'Directory Preferences','imageUploadDir','s:19:\"persist/contribute/\";',1,NULL,1,NULL,'2015-01-16 06:12:20',NULL),(37,'Directory Preferences','customFileUploadDir','s:7:\"custom/\";',1,NULL,1,NULL,'2015-01-16 06:12:20',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-01-16 06:12:20',NULL),(42,'URL Preferences','imageUploadURL',NULL,1,NULL,1,NULL,'2015-01-16 06:12:20',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); /*!40000 ALTER TABLE `civicrm_setting` ENABLE KEYS */; UNLOCK TABLES; @@ -1310,7 +1309,7 @@ UNLOCK TABLES; LOCK TABLES `civicrm_state_province` WRITE; /*!40000 ALTER TABLE `civicrm_state_province` DISABLE KEYS */; -INSERT INTO `civicrm_state_province` (`id`, `name`, `abbreviation`, `country_id`) VALUES (1000,'Alabama','AL',1228),(1001,'Alaska','AK',1228),(1002,'Arizona','AZ',1228),(1003,'Arkansas','AR',1228),(1004,'California','CA',1228),(1005,'Colorado','CO',1228),(1006,'Connecticut','CT',1228),(1007,'Delaware','DE',1228),(1008,'Florida','FL',1228),(1009,'Georgia','GA',1228),(1010,'Hawaii','HI',1228),(1011,'Idaho','ID',1228),(1012,'Illinois','IL',1228),(1013,'Indiana','IN',1228),(1014,'Iowa','IA',1228),(1015,'Kansas','KS',1228),(1016,'Kentucky','KY',1228),(1017,'Louisiana','LA',1228),(1018,'Maine','ME',1228),(1019,'Maryland','MD',1228),(1020,'Massachusetts','MA',1228),(1021,'Michigan','MI',1228),(1022,'Minnesota','MN',1228),(1023,'Mississippi','MS',1228),(1024,'Missouri','MO',1228),(1025,'Montana','MT',1228),(1026,'Nebraska','NE',1228),(1027,'Nevada','NV',1228),(1028,'New Hampshire','NH',1228),(1029,'New Jersey','NJ',1228),(1030,'New Mexico','NM',1228),(1031,'New York','NY',1228),(1032,'North Carolina','NC',1228),(1033,'North Dakota','ND',1228),(1034,'Ohio','OH',1228),(1035,'Oklahoma','OK',1228),(1036,'Oregon','OR',1228),(1037,'Pennsylvania','PA',1228),(1038,'Rhode Island','RI',1228),(1039,'South Carolina','SC',1228),(1040,'South Dakota','SD',1228),(1041,'Tennessee','TN',1228),(1042,'Texas','TX',1228),(1043,'Utah','UT',1228),(1044,'Vermont','VT',1228),(1045,'Virginia','VA',1228),(1046,'Washington','WA',1228),(1047,'West Virginia','WV',1228),(1048,'Wisconsin','WI',1228),(1049,'Wyoming','WY',1228),(1050,'District of Columbia','DC',1228),(1052,'American Samoa','AS',1228),(1053,'Guam','GU',1228),(1055,'Northern Mariana Islands','MP',1228),(1056,'Puerto Rico','PR',1228),(1057,'Virgin Islands','VI',1228),(1058,'United States Minor Outlying Islands','UM',1228),(1059,'Armed Forces Europe','AE',1228),(1060,'Armed Forces Americas','AA',1228),(1061,'Armed Forces Pacific','AP',1228),(1100,'Alberta','AB',1039),(1101,'British Columbia','BC',1039),(1102,'Manitoba','MB',1039),(1103,'New Brunswick','NB',1039),(1104,'Newfoundland and Labrador','NL',1039),(1105,'Northwest Territories','NT',1039),(1106,'Nova Scotia','NS',1039),(1107,'Nunavut','NU',1039),(1108,'Ontario','ON',1039),(1109,'Prince Edward Island','PE',1039),(1110,'Quebec','QC',1039),(1111,'Saskatchewan','SK',1039),(1112,'Yukon Territory','YT',1039),(1200,'Maharashtra','MM',1101),(1201,'Karnataka','KA',1101),(1202,'Andhra Pradesh','AP',1101),(1203,'Arunachal Pradesh','AR',1101),(1204,'Assam','AS',1101),(1205,'Bihar','BR',1101),(1206,'Chhattisgarh','CH',1101),(1207,'Goa','GA',1101),(1208,'Gujarat','GJ',1101),(1209,'Haryana','HR',1101),(1210,'Himachal Pradesh','HP',1101),(1211,'Jammu and Kashmir','JK',1101),(1212,'Jharkhand','JH',1101),(1213,'Kerala','KL',1101),(1214,'Madhya Pradesh','MP',1101),(1215,'Manipur','MN',1101),(1216,'Meghalaya','ML',1101),(1217,'Mizoram','MZ',1101),(1218,'Nagaland','NL',1101),(1219,'Orissa','OR',1101),(1220,'Punjab','PB',1101),(1221,'Rajasthan','RJ',1101),(1222,'Sikkim','SK',1101),(1223,'Tamil Nadu','TN',1101),(1224,'Tripura','TR',1101),(1225,'Uttaranchal','UL',1101),(1226,'Uttar Pradesh','UP',1101),(1227,'West Bengal','WB',1101),(1228,'Andaman and Nicobar Islands','AN',1101),(1229,'Dadra and Nagar Haveli','DN',1101),(1230,'Daman and Diu','DD',1101),(1231,'Delhi','DL',1101),(1232,'Lakshadweep','LD',1101),(1233,'Pondicherry','PY',1101),(1300,'mazowieckie','MZ',1172),(1301,'pomorskie','PM',1172),(1302,'dolnośląskie','DS',1172),(1303,'kujawsko-pomorskie','KP',1172),(1304,'lubelskie','LU',1172),(1305,'lubuskie','LB',1172),(1306,'łódzkie','LD',1172),(1307,'małopolskie','MA',1172),(1308,'opolskie','OP',1172),(1309,'podkarpackie','PK',1172),(1310,'podlaskie','PD',1172),(1311,'śląskie','SL',1172),(1312,'świętokrzyskie','SK',1172),(1313,'warmińsko-mazurskie','WN',1172),(1314,'wielkopolskie','WP',1172),(1315,'zachodniopomorskie','ZP',1172),(1500,'Abu Zaby','AZ',1225),(1501,'\'Ajman','AJ',1225),(1502,'Al Fujayrah','FU',1225),(1503,'Ash Shariqah','SH',1225),(1504,'Dubayy','DU',1225),(1505,'Ra\'s al Khaymah','RK',1225),(1506,'Dac Lac','33',1233),(1507,'Umm al Qaywayn','UQ',1225),(1508,'Badakhshan','BDS',1001),(1509,'Badghis','BDG',1001),(1510,'Baghlan','BGL',1001),(1511,'Balkh','BAL',1001),(1512,'Bamian','BAM',1001),(1513,'Farah','FRA',1001),(1514,'Faryab','FYB',1001),(1515,'Ghazni','GHA',1001),(1516,'Ghowr','GHO',1001),(1517,'Helmand','HEL',1001),(1518,'Herat','HER',1001),(1519,'Jowzjan','JOW',1001),(1520,'Kabul','KAB',1001),(1521,'Kandahar','KAN',1001),(1522,'Kapisa','KAP',1001),(1523,'Khowst','KHO',1001),(1524,'Konar','KNR',1001),(1525,'Kondoz','KDZ',1001),(1526,'Laghman','LAG',1001),(1527,'Lowgar','LOW',1001),(1528,'Nangrahar','NAN',1001),(1529,'Nimruz','NIM',1001),(1530,'Nurestan','NUR',1001),(1531,'Oruzgan','ORU',1001),(1532,'Paktia','PIA',1001),(1533,'Paktika','PKA',1001),(1534,'Parwan','PAR',1001),(1535,'Samangan','SAM',1001),(1536,'Sar-e Pol','SAR',1001),(1537,'Takhar','TAK',1001),(1538,'Wardak','WAR',1001),(1539,'Zabol','ZAB',1001),(1540,'Berat','BR',1002),(1541,'Bulqizë','BU',1002),(1542,'Delvinë','DL',1002),(1543,'Devoll','DV',1002),(1544,'Dibër','DI',1002),(1545,'Durrës','DR',1002),(1546,'Elbasan','EL',1002),(1547,'Fier','FR',1002),(1548,'Gramsh','GR',1002),(1549,'Gjirokastër','GJ',1002),(1550,'Has','HA',1002),(1551,'Kavajë','KA',1002),(1552,'Kolonjë','ER',1002),(1553,'Korçë','KO',1002),(1554,'Krujë','KR',1002),(1555,'Kuçovë','KC',1002),(1556,'Kukës','KU',1002),(1557,'Kurbin','KB',1002),(1558,'Lezhë','LE',1002),(1559,'Librazhd','LB',1002),(1560,'Lushnjë','LU',1002),(1561,'Malësi e Madhe','MM',1002),(1562,'Mallakastër','MK',1002),(1563,'Mat','MT',1002),(1564,'Mirditë','MR',1002),(1565,'Peqin','PQ',1002),(1566,'Përmet','PR',1002),(1567,'Pogradec','PG',1002),(1568,'Pukë','PU',1002),(1569,'Sarandë','SR',1002),(1570,'Skrapar','SK',1002),(1571,'Shkodër','SH',1002),(1572,'Tepelenë','TE',1002),(1573,'Tiranë','TR',1002),(1574,'Tropojë','TP',1002),(1575,'Vlorë','VL',1002),(1576,'Erevan','ER',1011),(1577,'Aragacotn','AG',1011),(1578,'Ararat','AR',1011),(1579,'Armavir','AV',1011),(1580,'Gegarkunik\'','GR',1011),(1581,'Kotayk\'','KT',1011),(1582,'Lory','LO',1011),(1583,'Sirak','SH',1011),(1584,'Syunik\'','SU',1011),(1585,'Tavus','TV',1011),(1586,'Vayoc Jor','VD',1011),(1587,'Bengo','BGO',1006),(1588,'Benguela','BGU',1006),(1589,'Bie','BIE',1006),(1590,'Cabinda','CAB',1006),(1591,'Cuando-Cubango','CCU',1006),(1592,'Cuanza Norte','CNO',1006),(1593,'Cuanza Sul','CUS',1006),(1594,'Cunene','CNN',1006),(1595,'Huambo','HUA',1006),(1596,'Huila','HUI',1006),(1597,'Luanda','LUA',1006),(1598,'Lunda Norte','LNO',1006),(1599,'Lunda Sul','LSU',1006),(1600,'Malange','MAL',1006),(1601,'Moxico','MOX',1006),(1602,'Namibe','NAM',1006),(1603,'Uige','UIG',1006),(1604,'Zaire','ZAI',1006),(1605,'Capital federal','C',1010),(1606,'Buenos Aires','B',1010),(1607,'Catamarca','K',1010),(1608,'Cordoba','X',1010),(1609,'Corrientes','W',1010),(1610,'Chaco','H',1010),(1611,'Chubut','U',1010),(1612,'Entre Rios','E',1010),(1613,'Formosa','P',1010),(1614,'Jujuy','Y',1010),(1615,'La Pampa','L',1010),(1616,'Mendoza','M',1010),(1617,'Misiones','N',1010),(1618,'Neuquen','Q',1010),(1619,'Rio Negro','R',1010),(1620,'Salta','A',1010),(1621,'San Juan','J',1010),(1622,'San Luis','D',1010),(1623,'Santa Cruz','Z',1010),(1624,'Santa Fe','S',1010),(1625,'Santiago del Estero','G',1010),(1626,'Tierra del Fuego','V',1010),(1627,'Tucuman','T',1010),(1628,'Burgenland','1',1014),(1629,'Kärnten','2',1014),(1630,'Niederosterreich','3',1014),(1631,'Oberosterreich','4',1014),(1632,'Salzburg','5',1014),(1633,'Steiermark','6',1014),(1634,'Tirol','7',1014),(1635,'Vorarlberg','8',1014),(1636,'Wien','9',1014),(1637,'Australian Antarctic Territory','AAT',1008),(1638,'Australian Capital Territory','ACT',1013),(1639,'Northern Territory','NT',1013),(1640,'New South Wales','NSW',1013),(1641,'Queensland','QLD',1013),(1642,'South Australia','SA',1013),(1643,'Tasmania','TAS',1013),(1644,'Victoria','VIC',1013),(1645,'Western Australia','WA',1013),(1646,'Naxcivan','NX',1015),(1647,'Ali Bayramli','AB',1015),(1648,'Baki','BA',1015),(1649,'Ganca','GA',1015),(1650,'Lankaran','LA',1015),(1651,'Mingacevir','MI',1015),(1652,'Naftalan','NA',1015),(1653,'Saki','SA',1015),(1654,'Sumqayit','SM',1015),(1655,'Susa','SS',1015),(1656,'Xankandi','XA',1015),(1657,'Yevlax','YE',1015),(1658,'Abseron','ABS',1015),(1659,'Agcabadi','AGC',1015),(1660,'Agdam','AGM',1015),(1661,'Agdas','AGS',1015),(1662,'Agstafa','AGA',1015),(1663,'Agsu','AGU',1015),(1664,'Astara','AST',1015),(1665,'Babak','BAB',1015),(1666,'Balakan','BAL',1015),(1667,'Barda','BAR',1015),(1668,'Beylagan','BEY',1015),(1669,'Bilasuvar','BIL',1015),(1670,'Cabrayll','CAB',1015),(1671,'Calilabad','CAL',1015),(1672,'Culfa','CUL',1015),(1673,'Daskasan','DAS',1015),(1674,'Davaci','DAV',1015),(1675,'Fuzuli','FUZ',1015),(1676,'Gadabay','GAD',1015),(1677,'Goranboy','GOR',1015),(1678,'Goycay','GOY',1015),(1679,'Haciqabul','HAC',1015),(1680,'Imisli','IMI',1015),(1681,'Ismayilli','ISM',1015),(1682,'Kalbacar','KAL',1015),(1683,'Kurdamir','KUR',1015),(1684,'Lacin','LAC',1015),(1685,'Lerik','LER',1015),(1686,'Masalli','MAS',1015),(1687,'Neftcala','NEF',1015),(1688,'Oguz','OGU',1015),(1689,'Ordubad','ORD',1015),(1690,'Qabala','QAB',1015),(1691,'Qax','QAX',1015),(1692,'Qazax','QAZ',1015),(1693,'Qobustan','QOB',1015),(1694,'Quba','QBA',1015),(1695,'Qubadli','QBI',1015),(1696,'Qusar','QUS',1015),(1697,'Saatli','SAT',1015),(1698,'Sabirabad','SAB',1015),(1699,'Sadarak','SAD',1015),(1700,'Sahbuz','SAH',1015),(1701,'Salyan','SAL',1015),(1702,'Samaxi','SMI',1015),(1703,'Samkir','SKR',1015),(1704,'Samux','SMX',1015),(1705,'Sarur','SAR',1015),(1706,'Siyazan','SIY',1015),(1707,'Tartar','TAR',1015),(1708,'Tovuz','TOV',1015),(1709,'Ucar','UCA',1015),(1710,'Xacmaz','XAC',1015),(1711,'Xanlar','XAN',1015),(1712,'Xizi','XIZ',1015),(1713,'Xocali','XCI',1015),(1714,'Xocavand','XVD',1015),(1715,'Yardimli','YAR',1015),(1716,'Zangilan','ZAN',1015),(1717,'Zaqatala','ZAQ',1015),(1718,'Zardab','ZAR',1015),(1719,'Federacija Bosna i Hercegovina','BIH',1026),(1720,'Republika Srpska','SRP',1026),(1721,'Bagerhat zila','05',1017),(1722,'Bandarban zila','01',1017),(1723,'Barguna zila','02',1017),(1724,'Barisal zila','06',1017),(1725,'Bhola zila','07',1017),(1726,'Bogra zila','03',1017),(1727,'Brahmanbaria zila','04',1017),(1728,'Chandpur zila','09',1017),(1729,'Chittagong zila','10',1017),(1730,'Chuadanga zila','12',1017),(1731,'Comilla zila','08',1017),(1732,'Cox\'s Bazar zila','11',1017),(1733,'Dhaka zila','13',1017),(1734,'Dinajpur zila','14',1017),(1735,'Faridpur zila','15',1017),(1736,'Feni zila','16',1017),(1737,'Gaibandha zila','19',1017),(1738,'Gazipur zila','18',1017),(1739,'Gopalganj zila','17',1017),(1740,'Habiganj zila','20',1017),(1741,'Jaipurhat zila','24',1017),(1742,'Jamalpur zila','21',1017),(1743,'Jessore zila','22',1017),(1744,'Jhalakati zila','25',1017),(1745,'Jhenaidah zila','23',1017),(1746,'Khagrachari zila','29',1017),(1747,'Khulna zila','27',1017),(1748,'Kishorganj zila','26',1017),(1749,'Kurigram zila','28',1017),(1750,'Kushtia zila','30',1017),(1751,'Lakshmipur zila','31',1017),(1752,'Lalmonirhat zila','32',1017),(1753,'Madaripur zila','36',1017),(1754,'Magura zila','37',1017),(1755,'Manikganj zila','33',1017),(1756,'Meherpur zila','39',1017),(1757,'Moulvibazar zila','38',1017),(1758,'Munshiganj zila','35',1017),(1759,'Mymensingh zila','34',1017),(1760,'Naogaon zila','48',1017),(1761,'Narail zila','43',1017),(1762,'Narayanganj zila','40',1017),(1763,'Narsingdi zila','42',1017),(1764,'Natore zila','44',1017),(1765,'Nawabganj zila','45',1017),(1766,'Netrakona zila','41',1017),(1767,'Nilphamari zila','46',1017),(1768,'Noakhali zila','47',1017),(1769,'Pabna zila','49',1017),(1770,'Panchagarh zila','52',1017),(1771,'Patuakhali zila','51',1017),(1772,'Pirojpur zila','50',1017),(1773,'Rajbari zila','53',1017),(1774,'Rajshahi zila','54',1017),(1775,'Rangamati zila','56',1017),(1776,'Rangpur zila','55',1017),(1777,'Satkhira zila','58',1017),(1778,'Shariatpur zila','62',1017),(1779,'Sherpur zila','57',1017),(1780,'Sirajganj zila','59',1017),(1781,'Sunamganj zila','61',1017),(1782,'Sylhet zila','60',1017),(1783,'Tangail zila','63',1017),(1784,'Thakurgaon zila','64',1017),(1785,'Antwerpen','VAN',1020),(1786,'Brabant Wallon','WBR',1020),(1787,'Hainaut','WHT',1020),(1788,'Liege','WLG',1020),(1789,'Limburg','VLI',1020),(1790,'Luxembourg','WLX',1020),(1791,'Namur','WNA',1020),(1792,'Oost-Vlaanderen','VOV',1020),(1793,'Vlaams-Brabant','VBR',1020),(1794,'West-Vlaanderen','VWV',1020),(1795,'Bale','BAL',1034),(1796,'Bam','BAM',1034),(1797,'Banwa','BAN',1034),(1798,'Bazega','BAZ',1034),(1799,'Bougouriba','BGR',1034),(1800,'Boulgou','BLG',1034),(1801,'Boulkiemde','BLK',1034),(1802,'Comoe','COM',1034),(1803,'Ganzourgou','GAN',1034),(1804,'Gnagna','GNA',1034),(1805,'Gourma','GOU',1034),(1806,'Houet','HOU',1034),(1807,'Ioba','IOB',1034),(1808,'Kadiogo','KAD',1034),(1809,'Kenedougou','KEN',1034),(1810,'Komondjari','KMD',1034),(1811,'Kompienga','KMP',1034),(1812,'Kossi','KOS',1034),(1813,'Koulpulogo','KOP',1034),(1814,'Kouritenga','KOT',1034),(1815,'Kourweogo','KOW',1034),(1816,'Leraba','LER',1034),(1817,'Loroum','LOR',1034),(1818,'Mouhoun','MOU',1034),(1819,'Nahouri','NAO',1034),(1820,'Namentenga','NAM',1034),(1821,'Nayala','NAY',1034),(1822,'Noumbiel','NOU',1034),(1823,'Oubritenga','OUB',1034),(1824,'Oudalan','OUD',1034),(1825,'Passore','PAS',1034),(1826,'Poni','PON',1034),(1827,'Sanguie','SNG',1034),(1828,'Sanmatenga','SMT',1034),(1829,'Seno','SEN',1034),(1830,'Siasili','SIS',1034),(1831,'Soum','SOM',1034),(1832,'Sourou','SOR',1034),(1833,'Tapoa','TAP',1034),(1834,'Tui','TUI',1034),(1835,'Yagha','YAG',1034),(1836,'Yatenga','YAT',1034),(1837,'Ziro','ZIR',1034),(1838,'Zondoma','ZON',1034),(1839,'Zoundweogo','ZOU',1034),(1840,'Blagoevgrad','01',1033),(1841,'Burgas','02',1033),(1842,'Dobric','08',1033),(1843,'Gabrovo','07',1033),(1844,'Haskovo','26',1033),(1845,'Jambol','28',1033),(1846,'Kardzali','09',1033),(1847,'Kjstendil','10',1033),(1848,'Lovec','11',1033),(1849,'Montana','12',1033),(1850,'Pazardzik','13',1033),(1851,'Pernik','14',1033),(1852,'Pleven','15',1033),(1853,'Plovdiv','16',1033),(1854,'Razgrad','17',1033),(1855,'Ruse','18',1033),(1856,'Silistra','19',1033),(1857,'Sliven','20',1033),(1858,'Smoljan','21',1033),(1859,'Sofia','23',1033),(1860,'Stara Zagora','24',1033),(1861,'Sumen','27',1033),(1862,'Targoviste','25',1033),(1863,'Varna','03',1033),(1864,'Veliko Tarnovo','04',1033),(1865,'Vidin','05',1033),(1866,'Vraca','06',1033),(1867,'Al Hadd','01',1016),(1868,'Al Manamah','03',1016),(1869,'Al Mintaqah al Gharbiyah','10',1016),(1870,'Al Mintagah al Wusta','07',1016),(1871,'Al Mintaqah ash Shamaliyah','05',1016),(1872,'Al Muharraq','02',1016),(1873,'Ar Rifa','09',1016),(1874,'Jidd Hafs','04',1016),(1875,'Madluat Jamad','12',1016),(1876,'Madluat Isa','08',1016),(1877,'Mintaqat Juzur tawar','11',1016),(1878,'Sitrah','06',1016),(1879,'Bubanza','BB',1036),(1880,'Bujumbura','BJ',1036),(1881,'Bururi','BR',1036),(1882,'Cankuzo','CA',1036),(1883,'Cibitoke','CI',1036),(1884,'Gitega','GI',1036),(1885,'Karuzi','KR',1036),(1886,'Kayanza','KY',1036),(1887,'Makamba','MA',1036),(1888,'Muramvya','MU',1036),(1889,'Mwaro','MW',1036),(1890,'Ngozi','NG',1036),(1891,'Rutana','RT',1036),(1892,'Ruyigi','RY',1036),(1893,'Alibori','AL',1022),(1894,'Atakora','AK',1022),(1895,'Atlantique','AQ',1022),(1896,'Borgou','BO',1022),(1897,'Collines','CO',1022),(1898,'Donga','DO',1022),(1899,'Kouffo','KO',1022),(1900,'Littoral','LI',1022),(1901,'Mono','MO',1022),(1902,'Oueme','OU',1022),(1903,'Plateau','PL',1022),(1904,'Zou','ZO',1022),(1905,'Belait','BE',1032),(1906,'Brunei-Muara','BM',1032),(1907,'Temburong','TE',1032),(1908,'Tutong','TU',1032),(1909,'Cochabamba','C',1025),(1910,'Chuquisaca','H',1025),(1911,'El Beni','B',1025),(1912,'La Paz','L',1025),(1913,'Oruro','O',1025),(1914,'Pando','N',1025),(1915,'Potosi','P',1025),(1916,'Tarija','T',1025),(1917,'Acre','AC',1029),(1918,'Alagoas','AL',1029),(1919,'Amazonas','AM',1029),(1920,'Amapa','AP',1029),(1921,'Bahia','BA',1029),(1922,'Ceara','CE',1029),(1923,'Distrito Federal','DF',1029),(1924,'Espirito Santo','ES',1029),(1925,'Fernando de Noronha','FN',1029),(1926,'Goias','GO',1029),(1927,'Maranhao','MA',1029),(1928,'Minas Gerais','MG',1029),(1929,'Mato Grosso do Sul','MS',1029),(1930,'Mato Grosso','MT',1029),(1931,'Para','PA',1029),(1932,'Paraiba','PB',1029),(1933,'Pernambuco','PE',1029),(1934,'Piaui','PI',1029),(1935,'Parana','PR',1029),(1936,'Rio de Janeiro','RJ',1029),(1937,'Rio Grande do Norte','RN',1029),(1938,'Rondonia','RO',1029),(1939,'Roraima','RR',1029),(1940,'Rio Grande do Sul','RS',1029),(1941,'Santa Catarina','SC',1029),(1942,'Sergipe','SE',1029),(1943,'Sao Paulo','SP',1029),(1944,'Tocantins','TO',1029),(1945,'Acklins and Crooked Islands','AC',1212),(1946,'Bimini','BI',1212),(1947,'Cat Island','CI',1212),(1948,'Exuma','EX',1212),(1955,'Inagua','IN',1212),(1957,'Long Island','LI',1212),(1959,'Mayaguana','MG',1212),(1960,'New Providence','NP',1212),(1962,'Ragged Island','RI',1212),(1966,'Bumthang','33',1024),(1967,'Chhukha','12',1024),(1968,'Dagana','22',1024),(1969,'Gasa','GA',1024),(1970,'Ha','13',1024),(1971,'Lhuentse','44',1024),(1972,'Monggar','42',1024),(1973,'Paro','11',1024),(1974,'Pemagatshel','43',1024),(1975,'Punakha','23',1024),(1976,'Samdrup Jongkha','45',1024),(1977,'Samtee','14',1024),(1978,'Sarpang','31',1024),(1979,'Thimphu','15',1024),(1980,'Trashigang','41',1024),(1981,'Trashi Yangtse','TY',1024),(1982,'Trongsa','32',1024),(1983,'Tsirang','21',1024),(1984,'Wangdue Phodrang','24',1024),(1985,'Zhemgang','34',1024),(1986,'Central','CE',1027),(1987,'Ghanzi','GH',1027),(1988,'Kgalagadi','KG',1027),(1989,'Kgatleng','KL',1027),(1990,'Kweneng','KW',1027),(1991,'Ngamiland','NG',1027),(1992,'North-East','NE',1027),(1993,'North-West','NW',1027),(1994,'South-East','SE',1027),(1995,'Southern','SO',1027),(1996,'Brèsckaja voblasc\'','BR',1019),(1997,'Homel\'skaja voblasc\'','HO',1019),(1998,'Hrodzenskaja voblasc\'','HR',1019),(1999,'Mahilëuskaja voblasc\'','MA',1019),(2000,'Minskaja voblasc\'','MI',1019),(2001,'Vicebskaja voblasc\'','VI',1019),(2002,'Belize','BZ',1021),(2003,'Cayo','CY',1021),(2004,'Corozal','CZL',1021),(2005,'Orange Walk','OW',1021),(2006,'Stann Creek','SC',1021),(2007,'Toledo','TOL',1021),(2008,'Kinshasa','KN',1050),(2011,'Equateur','EQ',1050),(2014,'Kasai-Oriental','KE',1050),(2016,'Maniema','MA',1050),(2017,'Nord-Kivu','NK',1050),(2019,'Sud-Kivu','SK',1050),(2020,'Bangui','BGF',1042),(2021,'Bamingui-Bangoran','BB',1042),(2022,'Basse-Kotto','BK',1042),(2023,'Haute-Kotto','HK',1042),(2024,'Haut-Mbomou','HM',1042),(2025,'Kemo','KG',1042),(2026,'Lobaye','LB',1042),(2027,'Mambere-Kadei','HS',1042),(2028,'Mbomou','MB',1042),(2029,'Nana-Grebizi','KB',1042),(2030,'Nana-Mambere','NM',1042),(2031,'Ombella-Mpoko','MP',1042),(2032,'Ouaka','UK',1042),(2033,'Ouham','AC',1042),(2034,'Ouham-Pende','OP',1042),(2035,'Sangha-Mbaere','SE',1042),(2036,'Vakaga','VR',1042),(2037,'Brazzaville','BZV',1051),(2038,'Bouenza','11',1051),(2039,'Cuvette','8',1051),(2040,'Cuvette-Ouest','15',1051),(2041,'Kouilou','5',1051),(2042,'Lekoumou','2',1051),(2043,'Likouala','7',1051),(2044,'Niari','9',1051),(2045,'Plateaux','14',1051),(2046,'Pool','12',1051),(2047,'Sangha','13',1051),(2048,'Aargau','AG',1205),(2049,'Appenzell Innerrhoden','AI',1205),(2050,'Appenzell Ausserrhoden','AR',1205),(2051,'Bern','BE',1205),(2052,'Basel-Landschaft','BL',1205),(2053,'Basel-Stadt','BS',1205),(2054,'Fribourg','FR',1205),(2055,'Geneva','GE',1205),(2056,'Glarus','GL',1205),(2057,'Graubunden','GR',1205),(2058,'Jura','JU',1205),(2059,'Luzern','LU',1205),(2060,'Neuchatel','NE',1205),(2061,'Nidwalden','NW',1205),(2062,'Obwalden','OW',1205),(2063,'Sankt Gallen','SG',1205),(2064,'Schaffhausen','SH',1205),(2065,'Solothurn','SO',1205),(2066,'Schwyz','SZ',1205),(2067,'Thurgau','TG',1205),(2068,'Ticino','TI',1205),(2069,'Uri','UR',1205),(2070,'Vaud','VD',1205),(2071,'Valais','VS',1205),(2072,'Zug','ZG',1205),(2073,'Zurich','ZH',1205),(2074,'18 Montagnes','06',1054),(2075,'Agnebi','16',1054),(2076,'Bas-Sassandra','09',1054),(2077,'Denguele','10',1054),(2078,'Haut-Sassandra','02',1054),(2079,'Lacs','07',1054),(2080,'Lagunes','01',1054),(2081,'Marahoue','12',1054),(2082,'Moyen-Comoe','05',1054),(2083,'Nzi-Comoe','11',1054),(2084,'Savanes','03',1054),(2085,'Sud-Bandama','15',1054),(2086,'Sud-Comoe','13',1054),(2087,'Vallee du Bandama','04',1054),(2088,'Worodouqou','14',1054),(2089,'Zanzan','08',1054),(2090,'Aisen del General Carlos Ibanez del Campo','AI',1044),(2091,'Antofagasta','AN',1044),(2092,'Araucania','AR',1044),(2093,'Atacama','AT',1044),(2094,'Bio-Bio','BI',1044),(2095,'Coquimbo','CO',1044),(2096,'Libertador General Bernardo O\'Higgins','LI',1044),(2097,'Los Lagos','LL',1044),(2098,'Magallanes','MA',1044),(2099,'Maule','ML',1044),(2100,'Santiago Metropolitan','SM',1044),(2101,'Tarapaca','TA',1044),(2102,'Valparaiso','VS',1044),(2103,'Adamaoua','AD',1038),(2104,'Centre','CE',1038),(2105,'East','ES',1038),(2106,'Far North','EN',1038),(2107,'North','NO',1038),(2108,'South','SW',1038),(2109,'South-West','SW',1038),(2110,'West','OU',1038),(2111,'Beijing','11',1045),(2112,'Chongqing','50',1045),(2113,'Shanghai','31',1045),(2114,'Tianjin','12',1045),(2115,'Anhui','34',1045),(2116,'Fujian','35',1045),(2117,'Gansu','62',1045),(2118,'Guangdong','44',1045),(2119,'Guizhou','52',1045),(2120,'Hainan','46',1045),(2121,'Hebei','13',1045),(2122,'Heilongjiang','23',1045),(2123,'Henan','41',1045),(2124,'Hubei','42',1045),(2125,'Hunan','43',1045),(2126,'Jiangsu','32',1045),(2127,'Jiangxi','36',1045),(2128,'Jilin','22',1045),(2129,'Liaoning','21',1045),(2130,'Qinghai','63',1045),(2131,'Shaanxi','61',1045),(2132,'Shandong','37',1045),(2133,'Shanxi','14',1045),(2134,'Sichuan','51',1045),(2135,'Taiwan','71',1045),(2136,'Yunnan','53',1045),(2137,'Zhejiang','33',1045),(2138,'Guangxi','45',1045),(2139,'Neia Mongol (mn)','15',1045),(2140,'Xinjiang','65',1045),(2141,'Xizang','54',1045),(2142,'Hong Kong','91',1045),(2143,'Macau','92',1045),(2144,'Distrito Capital de Bogotá','DC',1048),(2145,'Amazonea','AMA',1048),(2146,'Antioquia','ANT',1048),(2147,'Arauca','ARA',1048),(2148,'Atlántico','ATL',1048),(2149,'Bolívar','BOL',1048),(2150,'Boyacá','BOY',1048),(2151,'Caldea','CAL',1048),(2152,'Caquetá','CAQ',1048),(2153,'Casanare','CAS',1048),(2154,'Cauca','CAU',1048),(2155,'Cesar','CES',1048),(2156,'Córdoba','COR',1048),(2157,'Cundinamarca','CUN',1048),(2158,'Chocó','CHO',1048),(2159,'Guainía','GUA',1048),(2160,'Guaviare','GUV',1048),(2161,'La Guajira','LAG',1048),(2162,'Magdalena','MAG',1048),(2163,'Meta','MET',1048),(2164,'Nariño','NAR',1048),(2165,'Norte de Santander','NSA',1048),(2166,'Putumayo','PUT',1048),(2167,'Quindio','QUI',1048),(2168,'Risaralda','RIS',1048),(2169,'San Andrés, Providencia y Santa Catalina','SAP',1048),(2170,'Santander','SAN',1048),(2171,'Sucre','SUC',1048),(2172,'Tolima','TOL',1048),(2173,'Valle del Cauca','VAC',1048),(2174,'Vaupés','VAU',1048),(2175,'Vichada','VID',1048),(2176,'Alajuela','A',1053),(2177,'Cartago','C',1053),(2178,'Guanacaste','G',1053),(2179,'Heredia','H',1053),(2180,'Limon','L',1053),(2181,'Puntarenas','P',1053),(2182,'San Jose','SJ',1053),(2183,'Camagey','09',1056),(2184,'Ciego de `vila','08',1056),(2185,'Cienfuegos','06',1056),(2186,'Ciudad de La Habana','03',1056),(2187,'Granma','12',1056),(2188,'Guantanamo','14',1056),(2189,'Holquin','11',1056),(2190,'La Habana','02',1056),(2191,'Las Tunas','10',1056),(2192,'Matanzas','04',1056),(2193,'Pinar del Rio','01',1056),(2194,'Sancti Spiritus','07',1056),(2195,'Santiago de Cuba','13',1056),(2196,'Villa Clara','05',1056),(2197,'Isla de la Juventud','99',1056),(2198,'Pinar del Roo','PR',1056),(2199,'Ciego de Avila','CA',1056),(2200,'Camagoey','CG',1056),(2201,'Holgun','HO',1056),(2202,'Sancti Spritus','SS',1056),(2203,'Municipio Especial Isla de la Juventud','IJ',1056),(2204,'Boa Vista','BV',1040),(2205,'Brava','BR',1040),(2206,'Calheta de Sao Miguel','CS',1040),(2207,'Fogo','FO',1040),(2208,'Maio','MA',1040),(2209,'Mosteiros','MO',1040),(2210,'Paul','PA',1040),(2211,'Porto Novo','PN',1040),(2212,'Praia','PR',1040),(2213,'Ribeira Grande','RG',1040),(2214,'Sal','SL',1040),(2215,'Sao Domingos','SD',1040),(2216,'Sao Filipe','SF',1040),(2217,'Sao Nicolau','SN',1040),(2218,'Sao Vicente','SV',1040),(2219,'Tarrafal','TA',1040),(2220,'Ammochostos Magusa','04',1057),(2221,'Keryneia','06',1057),(2222,'Larnaka','03',1057),(2223,'Lefkosia','01',1057),(2224,'Lemesos','02',1057),(2225,'Pafos','05',1057),(2226,'Jihočeský kraj','JC',1058),(2227,'Jihomoravský kraj','JM',1058),(2228,'Karlovarský kraj','KA',1058),(2229,'Královéhradecký kraj','KR',1058),(2230,'Liberecký kraj','LI',1058),(2231,'Moravskoslezský kraj','MO',1058),(2232,'Olomoucký kraj','OL',1058),(2233,'Pardubický kraj','PA',1058),(2234,'Plzeňský kraj','PL',1058),(2235,'Praha, hlavní město','PR',1058),(2236,'Středočeský kraj','ST',1058),(2237,'Ústecký kraj','US',1058),(2238,'Vysočina','VY',1058),(2239,'Zlínský kraj','ZL',1058),(2240,'Baden-Wuerttemberg','BW',1082),(2241,'Bayern','BY',1082),(2242,'Bremen','HB',1082),(2243,'Hamburg','HH',1082),(2244,'Hessen','HE',1082),(2245,'Niedersachsen','NI',1082),(2246,'Nordrhein-Westfalen','NW',1082),(2247,'Rheinland-Pfalz','RP',1082),(2248,'Saarland','SL',1082),(2249,'Schleswig-Holstein','SH',1082),(2250,'Berlin','BR',1082),(2251,'Brandenburg','BB',1082),(2252,'Mecklenburg-Vorpommern','MV',1082),(2253,'Sachsen','SN',1082),(2254,'Sachsen-Anhalt','ST',1082),(2255,'Thueringen','TH',1082),(2256,'Ali Sabiah','AS',1060),(2257,'Dikhil','DI',1060),(2258,'Djibouti','DJ',1060),(2259,'Obock','OB',1060),(2260,'Tadjoura','TA',1060),(2261,'Frederiksberg','147',1059),(2262,'Copenhagen City','101',1059),(2263,'Copenhagen','015',1059),(2264,'Frederiksborg','020',1059),(2265,'Roskilde','025',1059),(2266,'Vestsjælland','030',1059),(2267,'Storstrøm','035',1059),(2268,'Bornholm','040',1059),(2269,'Fyn','042',1059),(2270,'South Jutland','050',1059),(2271,'Ribe','055',1059),(2272,'Vejle','060',1059),(2273,'Ringkjøbing','065',1059),(2274,'Århus','070',1059),(2275,'Viborg','076',1059),(2276,'North Jutland','080',1059),(2277,'Distrito Nacional (Santo Domingo)','01',1062),(2278,'Azua','02',1062),(2279,'Bahoruco','03',1062),(2280,'Barahona','04',1062),(2281,'Dajabón','05',1062),(2282,'Duarte','06',1062),(2283,'El Seybo [El Seibo]','08',1062),(2284,'Espaillat','09',1062),(2285,'Hato Mayor','30',1062),(2286,'Independencia','10',1062),(2287,'La Altagracia','11',1062),(2288,'La Estrelleta [Elias Pina]','07',1062),(2289,'La Romana','12',1062),(2290,'La Vega','13',1062),(2291,'Maroia Trinidad Sánchez','14',1062),(2292,'Monseñor Nouel','28',1062),(2293,'Monte Cristi','15',1062),(2294,'Monte Plata','29',1062),(2295,'Pedernales','16',1062),(2296,'Peravia','17',1062),(2297,'Puerto Plata','18',1062),(2298,'Salcedo','19',1062),(2299,'Samaná','20',1062),(2300,'San Cristóbal','21',1062),(2301,'San Pedro de Macorís','23',1062),(2302,'Sánchez Ramírez','24',1062),(2303,'Santiago','25',1062),(2304,'Santiago Rodríguez','26',1062),(2305,'Valverde','27',1062),(2306,'Adrar','01',1003),(2307,'Ain Defla','44',1003),(2308,'Ain Tmouchent','46',1003),(2309,'Alger','16',1003),(2310,'Annaba','23',1003),(2311,'Batna','05',1003),(2312,'Bechar','08',1003),(2313,'Bejaia','06',1003),(2314,'Biskra','07',1003),(2315,'Blida','09',1003),(2316,'Bordj Bou Arreridj','34',1003),(2317,'Bouira','10',1003),(2318,'Boumerdes','35',1003),(2319,'Chlef','02',1003),(2320,'Constantine','25',1003),(2321,'Djelfa','17',1003),(2322,'El Bayadh','32',1003),(2323,'El Oued','39',1003),(2324,'El Tarf','36',1003),(2325,'Ghardaia','47',1003),(2326,'Guelma','24',1003),(2327,'Illizi','33',1003),(2328,'Jijel','18',1003),(2329,'Khenchela','40',1003),(2330,'Laghouat','03',1003),(2331,'Mascara','29',1003),(2332,'Medea','26',1003),(2333,'Mila','43',1003),(2334,'Mostaganem','27',1003),(2335,'Msila','28',1003),(2336,'Naama','45',1003),(2337,'Oran','31',1003),(2338,'Ouargla','30',1003),(2339,'Oum el Bouaghi','04',1003),(2340,'Relizane','48',1003),(2341,'Saida','20',1003),(2342,'Setif','19',1003),(2343,'Sidi Bel Abbes','22',1003),(2344,'Skikda','21',1003),(2345,'Souk Ahras','41',1003),(2346,'Tamanghasset','11',1003),(2347,'Tebessa','12',1003),(2348,'Tiaret','14',1003),(2349,'Tindouf','37',1003),(2350,'Tipaza','42',1003),(2351,'Tissemsilt','38',1003),(2352,'Tizi Ouzou','15',1003),(2353,'Tlemcen','13',1003),(2354,'Azuay','A',1064),(2355,'Bolivar','B',1064),(2356,'Canar','F',1064),(2357,'Carchi','C',1064),(2358,'Cotopaxi','X',1064),(2359,'Chimborazo','H',1064),(2360,'El Oro','O',1064),(2361,'Esmeraldas','E',1064),(2362,'Galapagos','W',1064),(2363,'Guayas','G',1064),(2364,'Imbabura','I',1064),(2365,'Loja','L',1064),(2366,'Los Rios','R',1064),(2367,'Manabi','M',1064),(2368,'Morona-Santiago','S',1064),(2369,'Napo','N',1064),(2370,'Orellana','D',1064),(2371,'Pastaza','Y',1064),(2372,'Pichincha','P',1064),(2373,'Sucumbios','U',1064),(2374,'Tungurahua','T',1064),(2375,'Zamora-Chinchipe','Z',1064),(2376,'Harjumsa','37',1069),(2377,'Hitumea','39',1069),(2378,'Ida-Virumsa','44',1069),(2379,'Jogevamsa','49',1069),(2380,'Jarvamsa','51',1069),(2381,'Lasnemsa','57',1069),(2382,'Laane-Virumaa','59',1069),(2383,'Polvamea','65',1069),(2384,'Parnumsa','67',1069),(2385,'Raplamsa','70',1069),(2386,'Saaremsa','74',1069),(2387,'Tartumsa','7B',1069),(2388,'Valgamaa','82',1069),(2389,'Viljandimsa','84',1069),(2390,'Vorumaa','86',1069),(2391,'Ad Daqahllyah','DK',1065),(2392,'Al Bahr al Ahmar','BA',1065),(2393,'Al Buhayrah','BH',1065),(2394,'Al Fayym','FYM',1065),(2395,'Al Gharbiyah','GH',1065),(2396,'Al Iskandarlyah','ALX',1065),(2397,'Al Isma illyah','IS',1065),(2398,'Al Jizah','GZ',1065),(2399,'Al Minuflyah','MNF',1065),(2400,'Al Minya','MN',1065),(2401,'Al Qahirah','C',1065),(2402,'Al Qalyublyah','KB',1065),(2403,'Al Wadi al Jadid','WAD',1065),(2404,'Ash Sharqiyah','SHR',1065),(2405,'As Suways','SUZ',1065),(2406,'Aswan','ASN',1065),(2407,'Asyut','AST',1065),(2408,'Bani Suwayf','BNS',1065),(2409,'Bur Sa\'id','PTS',1065),(2410,'Dumyat','DT',1065),(2411,'Janub Sina\'','JS',1065),(2412,'Kafr ash Shaykh','KFS',1065),(2413,'Matruh','MT',1065),(2414,'Qina','KN',1065),(2415,'Shamal Sina\'','SIN',1065),(2416,'Suhaj','SHG',1065),(2417,'Anseba','AN',1068),(2418,'Debub','DU',1068),(2419,'Debubawi Keyih Bahri [Debub-Keih-Bahri]','DK',1068),(2420,'Gash-Barka','GB',1068),(2421,'Maakel [Maekel]','MA',1068),(2422,'Semenawi Keyih Bahri [Semien-Keih-Bahri]','SK',1068),(2423,'Álava','VI',1198),(2424,'Albacete','AB',1198),(2425,'Alicante','A',1198),(2426,'Almería','AL',1198),(2427,'Asturias','O',1198),(2428,'Ávila','AV',1198),(2429,'Badajoz','BA',1198),(2430,'Baleares','PM',1198),(2431,'Barcelona','B',1198),(2432,'Burgos','BU',1198),(2433,'Cáceres','CC',1198),(2434,'Cádiz','CA',1198),(2435,'Cantabria','S',1198),(2436,'Castellón','CS',1198),(2437,'Ciudad Real','CR',1198),(2438,'Cuenca','CU',1198),(2439,'Girona [Gerona]','GE',1198),(2440,'Granada','GR',1198),(2441,'Guadalajara','GU',1198),(2442,'Guipúzcoa','SS',1198),(2443,'Huelva','H',1198),(2444,'Huesca','HU',1198),(2445,'Jaén','J',1198),(2446,'La Coruña','C',1198),(2447,'La Rioja','LO',1198),(2448,'Las Palmas','GC',1198),(2449,'León','LE',1198),(2450,'Lleida [Lérida]','L',1198),(2451,'Lugo','LU',1198),(2452,'Madrid','M',1198),(2453,'Málaga','MA',1198),(2454,'Murcia','MU',1198),(2455,'Navarra','NA',1198),(2456,'Ourense','OR',1198),(2457,'Palencia','P',1198),(2458,'Pontevedra','PO',1198),(2459,'Salamanca','SA',1198),(2460,'Santa Cruz de Tenerife','TF',1198),(2461,'Segovia','SG',1198),(2462,'Sevilla','SE',1198),(2463,'Soria','SO',1198),(2464,'Tarragona','T',1198),(2465,'Teruel','TE',1198),(2466,'Valencia','V',1198),(2467,'Valladolid','VA',1198),(2468,'Vizcaya','BI',1198),(2469,'Zamora','ZA',1198),(2470,'Zaragoza','Z',1198),(2471,'Ceuta','CE',1198),(2472,'Melilla','ML',1198),(2473,'Addis Ababa','AA',1070),(2474,'Dire Dawa','DD',1070),(2475,'Afar','AF',1070),(2476,'Amara','AM',1070),(2477,'Benshangul-Gumaz','BE',1070),(2478,'Gambela Peoples','GA',1070),(2479,'Harari People','HA',1070),(2480,'Oromia','OR',1070),(2481,'Somali','SO',1070),(2482,'Southern Nations, Nationalities and Peoples','SN',1070),(2483,'Tigrai','TI',1070),(2490,'Eastern','E',1074),(2491,'Northern','N',1074),(2492,'Western','W',1074),(2493,'Rotuma','R',1074),(2494,'Chuuk','TRK',1141),(2495,'Kosrae','KSA',1141),(2496,'Pohnpei','PNI',1141),(2497,'Yap','YAP',1141),(2498,'Ain','01',1076),(2499,'Aisne','02',1076),(2500,'Allier','03',1076),(2501,'Alpes-de-Haute-Provence','04',1076),(2502,'Alpes-Maritimes','06',1076),(2503,'Ardèche','07',1076),(2504,'Ardennes','08',1076),(2505,'Ariège','09',1076),(2506,'Aube','10',1076),(2507,'Aude','11',1076),(2508,'Aveyron','12',1076),(2509,'Bas-Rhin','67',1076),(2510,'Bouches-du-Rhône','13',1076),(2511,'Calvados','14',1076),(2512,'Cantal','15',1076),(2513,'Charente','16',1076),(2514,'Charente-Maritime','17',1076),(2515,'Cher','18',1076),(2516,'Corrèze','19',1076),(2517,'Corse-du-Sud','20A',1076),(2518,'Côte-d\'Or','21',1076),(2519,'Côtes-d\'Armor','22',1076),(2520,'Creuse','23',1076),(2521,'Deux-Sèvres','79',1076),(2522,'Dordogne','24',1076),(2523,'Doubs','25',1076),(2524,'Drôme','26',1076),(2525,'Essonne','91',1076),(2526,'Eure','27',1076),(2527,'Eure-et-Loir','28',1076),(2528,'Finistère','29',1076),(2529,'Gard','30',1076),(2530,'Gers','32',1076),(2531,'Gironde','33',1076),(2532,'Haut-Rhin','68',1076),(2533,'Haute-Corse','20B',1076),(2534,'Haute-Garonne','31',1076),(2535,'Haute-Loire','43',1076),(2536,'Haute-Saône','70',1076),(2537,'Haute-Savoie','74',1076),(2538,'Haute-Vienne','87',1076),(2539,'Hautes-Alpes','05',1076),(2540,'Hautes-Pyrénées','65',1076),(2541,'Hauts-de-Seine','92',1076),(2542,'Hérault','34',1076),(2543,'Indre','36',1076),(2544,'Ille-et-Vilaine','35',1076),(2545,'Indre-et-Loire','37',1076),(2546,'Isère','38',1076),(2547,'Landes','40',1076),(2548,'Loir-et-Cher','41',1076),(2549,'Loire','42',1076),(2550,'Loire-Atlantique','44',1076),(2551,'Loiret','45',1076),(2552,'Lot','46',1076),(2553,'Lot-et-Garonne','47',1076),(2554,'Lozère','48',1076),(2555,'Maine-et-Loire','49',1076),(2556,'Manche','50',1076),(2557,'Marne','51',1076),(2558,'Mayenne','53',1076),(2559,'Meurthe-et-Moselle','54',1076),(2560,'Meuse','55',1076),(2561,'Morbihan','56',1076),(2562,'Moselle','57',1076),(2563,'Nièvre','58',1076),(2564,'Nord','59',1076),(2565,'Oise','60',1076),(2566,'Orne','61',1076),(2567,'Paris','75',1076),(2568,'Pas-de-Calais','62',1076),(2569,'Puy-de-Dôme','63',1076),(2570,'Pyrénées-Atlantiques','64',1076),(2571,'Pyrénées-Orientales','66',1076),(2572,'Rhône','69',1076),(2573,'Saône-et-Loire','71',1076),(2574,'Sarthe','72',1076),(2575,'Savoie','73',1076),(2576,'Seine-et-Marne','77',1076),(2577,'Seine-Maritime','76',1076),(2578,'Seine-Saint-Denis','93',1076),(2579,'Somme','80',1076),(2580,'Tarn','81',1076),(2581,'Tarn-et-Garonne','82',1076),(2582,'Val d\'Oise','95',1076),(2583,'Territoire de Belfort','90',1076),(2584,'Val-de-Marne','94',1076),(2585,'Var','83',1076),(2586,'Vaucluse','84',1076),(2587,'Vendée','85',1076),(2588,'Vienne','86',1076),(2589,'Vosges','88',1076),(2590,'Yonne','89',1076),(2591,'Yvelines','78',1076),(2592,'Aberdeen City','ABE',1226),(2593,'Aberdeenshire','ABD',1226),(2594,'Angus','ANS',1226),(2595,'Co Antrim','ANT',1226),(2597,'Argyll and Bute','AGB',1226),(2598,'Co Armagh','ARM',1226),(2606,'Bedfordshire','BDF',1226),(2612,'Gwent','BGW',1226),(2620,'Bristol, City of','BST',1226),(2622,'Buckinghamshire','BKM',1226),(2626,'Cambridgeshire','CAM',1226),(2634,'Cheshire','CHS',1226),(2635,'Clackmannanshire','CLK',1226),(2639,'Cornwall','CON',1226),(2643,'Cumbria','CMA',1226),(2647,'Derbyshire','DBY',1226),(2648,'Co Londonderry','DRY',1226),(2649,'Devon','DEV',1226),(2651,'Dorset','DOR',1226),(2652,'Co Down','DOW',1226),(2654,'Dumfries and Galloway','DGY',1226),(2655,'Dundee City','DND',1226),(2657,'County Durham','DUR',1226),(2659,'East Ayrshire','EAY',1226),(2660,'East Dunbartonshire','EDU',1226),(2661,'East Lothian','ELN',1226),(2662,'East Renfrewshire','ERW',1226),(2663,'East Riding of Yorkshire','ERY',1226),(2664,'East Sussex','ESX',1226),(2665,'Edinburgh, City of','EDH',1226),(2666,'Na h-Eileanan Siar','ELS',1226),(2668,'Essex','ESS',1226),(2669,'Falkirk','FAL',1226),(2670,'Co Fermanagh','FER',1226),(2671,'Fife','FIF',1226),(2674,'Glasgow City','GLG',1226),(2675,'Gloucestershire','GLS',1226),(2678,'Gwynedd','GWN',1226),(2682,'Hampshire','HAM',1226),(2687,'Herefordshire','HEF',1226),(2688,'Hertfordshire','HRT',1226),(2689,'Highland','HED',1226),(2692,'Inverclyde','IVC',1226),(2694,'Isle of Wight','IOW',1226),(2699,'Kent','KEN',1226),(2705,'Lancashire','LAN',1226),(2709,'Leicestershire','LEC',1226),(2712,'Lincolnshire','LIN',1226),(2723,'Midlothian','MLN',1226),(2726,'Moray','MRY',1226),(2734,'Norfolk','NFK',1226),(2735,'North Ayrshire','NAY',1226),(2738,'North Lanarkshire','NLK',1226),(2742,'North Yorkshire','NYK',1226),(2743,'Northamptonshire','NTH',1226),(2744,'Northumberland','NBL',1226),(2746,'Nottinghamshire','NTT',1226),(2747,'Oldham','OLD',1226),(2748,'Omagh','OMH',1226),(2749,'Orkney Islands','ORR',1226),(2750,'Oxfordshire','OXF',1226),(2752,'Perth and Kinross','PKN',1226),(2757,'Powys','POW',1226),(2761,'Renfrewshire','RFW',1226),(2766,'Rutland','RUT',1226),(2770,'Scottish Borders','SCB',1226),(2773,'Shetland Islands','ZET',1226),(2774,'Shropshire','SHR',1226),(2777,'Somerset','SOM',1226),(2778,'South Ayrshire','SAY',1226),(2779,'South Gloucestershire','SGC',1226),(2780,'South Lanarkshire','SLK',1226),(2785,'Staffordshire','STS',1226),(2786,'Stirling','STG',1226),(2791,'Suffolk','SFK',1226),(2793,'Surrey','SRY',1226),(2804,'Mid Glamorgan','VGL',1226),(2811,'Warwickshire','WAR',1226),(2813,'West Dunbartonshire','WDU',1226),(2814,'West Lothian','WLN',1226),(2815,'West Sussex','WSX',1226),(2818,'Wiltshire','WIL',1226),(2823,'Worcestershire','WOR',1226),(2826,'Ashanti','AH',1083),(2827,'Brong-Ahafo','BA',1083),(2828,'Greater Accra','AA',1083),(2829,'Upper East','UE',1083),(2830,'Upper West','UW',1083),(2831,'Volta','TV',1083),(2832,'Banjul','B',1213),(2833,'Lower River','L',1213),(2834,'MacCarthy Island','M',1213),(2835,'North Bank','N',1213),(2836,'Upper River','U',1213),(2837,'Beyla','BE',1091),(2838,'Boffa','BF',1091),(2839,'Boke','BK',1091),(2840,'Coyah','CO',1091),(2841,'Dabola','DB',1091),(2842,'Dalaba','DL',1091),(2843,'Dinguiraye','DI',1091),(2844,'Dubreka','DU',1091),(2845,'Faranah','FA',1091),(2846,'Forecariah','FO',1091),(2847,'Fria','FR',1091),(2848,'Gaoual','GA',1091),(2849,'Guekedou','GU',1091),(2850,'Kankan','KA',1091),(2851,'Kerouane','KE',1091),(2852,'Kindia','KD',1091),(2853,'Kissidougou','KS',1091),(2854,'Koubia','KB',1091),(2855,'Koundara','KN',1091),(2856,'Kouroussa','KO',1091),(2857,'Labe','LA',1091),(2858,'Lelouma','LE',1091),(2859,'Lola','LO',1091),(2860,'Macenta','MC',1091),(2861,'Mali','ML',1091),(2862,'Mamou','MM',1091),(2863,'Mandiana','MD',1091),(2864,'Nzerekore','NZ',1091),(2865,'Pita','PI',1091),(2866,'Siguiri','SI',1091),(2867,'Telimele','TE',1091),(2868,'Tougue','TO',1091),(2869,'Yomou','YO',1091),(2870,'Region Continental','C',1067),(2871,'Region Insular','I',1067),(2872,'Annobon','AN',1067),(2873,'Bioko Norte','BN',1067),(2874,'Bioko Sur','BS',1067),(2875,'Centro Sur','CS',1067),(2876,'Kie-Ntem','KN',1067),(2877,'Litoral','LI',1067),(2878,'Wele-Nzas','WN',1067),(2879,'Achaïa','13',1085),(2880,'Aitolia-Akarnania','01',1085),(2881,'Argolis','11',1085),(2882,'Arkadia','12',1085),(2883,'Arta','31',1085),(2884,'Attiki','A1',1085),(2885,'Chalkidiki','64',1085),(2886,'Chania','94',1085),(2887,'Chios','85',1085),(2888,'Dodekanisos','81',1085),(2889,'Drama','52',1085),(2890,'Evros','71',1085),(2891,'Evrytania','05',1085),(2892,'Evvoia','04',1085),(2893,'Florina','63',1085),(2894,'Fokis','07',1085),(2895,'Fthiotis','06',1085),(2896,'Grevena','51',1085),(2897,'Ileia','14',1085),(2898,'Imathia','53',1085),(2899,'Ioannina','33',1085),(2900,'Irakleion','91',1085),(2901,'Karditsa','41',1085),(2902,'Kastoria','56',1085),(2903,'Kavalla','55',1085),(2904,'Kefallinia','23',1085),(2905,'Kerkyra','22',1085),(2906,'Kilkis','57',1085),(2907,'Korinthia','15',1085),(2908,'Kozani','58',1085),(2909,'Kyklades','82',1085),(2910,'Lakonia','16',1085),(2911,'Larisa','42',1085),(2912,'Lasithion','92',1085),(2913,'Lefkas','24',1085),(2914,'Lesvos','83',1085),(2915,'Magnisia','43',1085),(2916,'Messinia','17',1085),(2917,'Pella','59',1085),(2918,'Preveza','34',1085),(2919,'Rethymnon','93',1085),(2920,'Rodopi','73',1085),(2921,'Samos','84',1085),(2922,'Serrai','62',1085),(2923,'Thesprotia','32',1085),(2924,'Thessaloniki','54',1085),(2925,'Trikala','44',1085),(2926,'Voiotia','03',1085),(2927,'Xanthi','72',1085),(2928,'Zakynthos','21',1085),(2929,'Agio Oros','69',1085),(2930,'Alta Verapaz','AV',1090),(2931,'Baja Verapaz','BV',1090),(2932,'Chimaltenango','CM',1090),(2933,'Chiquimula','CQ',1090),(2934,'El Progreso','PR',1090),(2935,'Escuintla','ES',1090),(2936,'Guatemala','GU',1090),(2937,'Huehuetenango','HU',1090),(2938,'Izabal','IZ',1090),(2939,'Jalapa','JA',1090),(2940,'Jutiapa','JU',1090),(2941,'Peten','PE',1090),(2942,'Quetzaltenango','QZ',1090),(2943,'Quiche','QC',1090),(2944,'Retalhuleu','RE',1090),(2945,'Sacatepequez','SA',1090),(2946,'San Marcos','SM',1090),(2947,'Santa Rosa','SR',1090),(2948,'Sololá','SO',1090),(2949,'Suchitepequez','SU',1090),(2950,'Totonicapan','TO',1090),(2951,'Zacapa','ZA',1090),(2952,'Bissau','BS',1092),(2953,'Bafata','BA',1092),(2954,'Biombo','BM',1092),(2955,'Bolama','BL',1092),(2956,'Cacheu','CA',1092),(2957,'Gabu','GA',1092),(2958,'Oio','OI',1092),(2959,'Quloara','QU',1092),(2960,'Tombali S','TO',1092),(2961,'Barima-Waini','BA',1093),(2962,'Cuyuni-Mazaruni','CU',1093),(2963,'Demerara-Mahaica','DE',1093),(2964,'East Berbice-Corentyne','EB',1093),(2965,'Essequibo Islands-West Demerara','ES',1093),(2966,'Mahaica-Berbice','MA',1093),(2967,'Pomeroon-Supenaam','PM',1093),(2968,'Potaro-Siparuni','PT',1093),(2969,'Upper Demerara-Berbice','UD',1093),(2970,'Upper Takutu-Upper Essequibo','UT',1093),(2971,'Atlantida','AT',1097),(2972,'Colon','CL',1097),(2973,'Comayagua','CM',1097),(2974,'Copan','CP',1097),(2975,'Cortes','CR',1097),(2976,'Choluteca','CH',1097),(2977,'El Paraiso','EP',1097),(2978,'Francisco Morazan','FM',1097),(2979,'Gracias a Dios','GD',1097),(2980,'Intibuca','IN',1097),(2981,'Islas de la Bahia','IB',1097),(2982,'Lempira','LE',1097),(2983,'Ocotepeque','OC',1097),(2984,'Olancho','OL',1097),(2985,'Santa Barbara','SB',1097),(2986,'Valle','VA',1097),(2987,'Yoro','YO',1097),(2988,'Bjelovarsko-bilogorska zupanija','07',1055),(2989,'Brodsko-posavska zupanija','12',1055),(2990,'Dubrovacko-neretvanska zupanija','19',1055),(2991,'Istarska zupanija','18',1055),(2992,'Karlovacka zupanija','04',1055),(2993,'Koprivnickco-krizevacka zupanija','06',1055),(2994,'Krapinako-zagorska zupanija','02',1055),(2995,'Licko-senjska zupanija','09',1055),(2996,'Medimurska zupanija','20',1055),(2997,'Osjecko-baranjska zupanija','14',1055),(2998,'Pozesko-slavonska zupanija','11',1055),(2999,'Primorsko-goranska zupanija','08',1055),(3000,'Sisacko-moelavacka Iupanija','03',1055),(3001,'Splitako-dalmatinska zupanija','17',1055),(3002,'Sibenako-kninska zupanija','15',1055),(3003,'Varaidinska zupanija','05',1055),(3004,'VirovitiEko-podravska zupanija','10',1055),(3005,'VuRovarako-srijemska zupanija','16',1055),(3006,'Zadaraka','13',1055),(3007,'Zagrebacka zupanija','01',1055),(3008,'Grande-Anse','GA',1094),(3009,'Nord-Est','NE',1094),(3010,'Nord-Ouest','NO',1094),(3011,'Ouest','OU',1094),(3012,'Sud','SD',1094),(3013,'Sud-Est','SE',1094),(3014,'Budapest','BU',1099),(3015,'Bács-Kiskun','BK',1099),(3016,'Baranya','BA',1099),(3017,'Békés','BE',1099),(3018,'Borsod-Abaúj-Zemplén','BZ',1099),(3019,'Csongrád','CS',1099),(3020,'Fejér','FE',1099),(3021,'Győr-Moson-Sopron','GS',1099),(3022,'Hajdu-Bihar','HB',1099),(3023,'Heves','HE',1099),(3024,'Jász-Nagykun-Szolnok','JN',1099),(3025,'Komárom-Esztergom','KE',1099),(3026,'Nográd','NO',1099),(3027,'Pest','PE',1099),(3028,'Somogy','SO',1099),(3029,'Szabolcs-Szatmár-Bereg','SZ',1099),(3030,'Tolna','TO',1099),(3031,'Vas','VA',1099),(3032,'Veszprém','VE',1099),(3033,'Zala','ZA',1099),(3034,'Békéscsaba','BC',1099),(3035,'Debrecen','DE',1099),(3036,'Dunaújváros','DU',1099),(3037,'Eger','EG',1099),(3038,'Győr','GY',1099),(3039,'Hódmezővásárhely','HV',1099),(3040,'Kaposvár','KV',1099),(3041,'Kecskemét','KM',1099),(3042,'Miskolc','MI',1099),(3043,'Nagykanizsa','NK',1099),(3044,'Nyiregyháza','NY',1099),(3045,'Pécs','PS',1099),(3046,'Salgótarján','ST',1099),(3047,'Sopron','SN',1099),(3048,'Szeged','SD',1099),(3049,'Székesfehérvár','SF',1099),(3050,'Szekszárd','SS',1099),(3051,'Szolnok','SK',1099),(3052,'Szombathely','SH',1099),(3053,'Tatabánya','TB',1099),(3054,'Zalaegerszeg','ZE',1099),(3055,'Bali','BA',1102),(3056,'Kepulauan Bangka Belitung','BB',1102),(3057,'Banten','BT',1102),(3058,'Bengkulu','BE',1102),(3059,'Gorontalo','GO',1102),(3060,'Papua Barat','PB',1102),(3061,'Jambi','JA',1102),(3062,'Jawa Barat','JB',1102),(3063,'Jawa Tengah','JT',1102),(3064,'Jawa Timur','JI',1102),(3065,'Kalimantan Barat','KB',1102),(3066,'Kalimantan Timur','KI',1102),(3067,'Kalimantan Selatan','KS',1102),(3068,'Kepulauan Riau','KR',1102),(3069,'Lampung','LA',1102),(3070,'Maluku','MA',1102),(3071,'Maluku Utara','MU',1102),(3072,'Nusa Tenggara Barat','NB',1102),(3073,'Nusa Tenggara Timur','NT',1102),(3074,'Papua','PA',1102),(3075,'Riau','RI',1102),(3076,'Sulawesi Selatan','SN',1102),(3077,'Sulawesi Tengah','ST',1102),(3078,'Sulawesi Tenggara','SG',1102),(3079,'Sulawesi Utara','SA',1102),(3080,'Sumatra Barat','SB',1102),(3081,'Sumatra Selatan','SS',1102),(3082,'Sumatera Utara','SU',1102),(3083,'DKI Jakarta','JK',1102),(3084,'Aceh','AC',1102),(3085,'DI Yogyakarta','YO',1102),(3086,'Cork','C',1105),(3087,'Clare','CE',1105),(3088,'Cavan','CN',1105),(3089,'Carlow','CW',1105),(3090,'Dublin','D',1105),(3091,'Donegal','DL',1105),(3092,'Galway','G',1105),(3093,'Kildare','KE',1105),(3094,'Kilkenny','KK',1105),(3095,'Kerry','KY',1105),(3096,'Longford','LD',1105),(3097,'Louth','LH',1105),(3098,'Limerick','LK',1105),(3099,'Leitrim','LM',1105),(3100,'Laois','LS',1105),(3101,'Meath','MH',1105),(3102,'Monaghan','MN',1105),(3103,'Mayo','MO',1105),(3104,'Offaly','OY',1105),(3105,'Roscommon','RN',1105),(3106,'Sligo','SO',1105),(3107,'Tipperary','TA',1105),(3108,'Waterford','WD',1105),(3109,'Westmeath','WH',1105),(3110,'Wicklow','WW',1105),(3111,'Wexford','WX',1105),(3112,'HaDarom','D',1106),(3113,'HaMerkaz','M',1106),(3114,'HaZafon','Z',1106),(3115,'Haifa','HA',1106),(3116,'Tel-Aviv','TA',1106),(3117,'Jerusalem','JM',1106),(3118,'Al Anbar','AN',1104),(3119,'Al Ba,rah','BA',1104),(3120,'Al Muthanna','MU',1104),(3121,'Al Qadisiyah','QA',1104),(3122,'An Najef','NA',1104),(3123,'Arbil','AR',1104),(3124,'As Sulaymaniyah','SW',1104),(3125,'At Ta\'mim','TS',1104),(3126,'Babil','BB',1104),(3127,'Baghdad','BG',1104),(3128,'Dahuk','DA',1104),(3129,'Dhi Qar','DQ',1104),(3130,'Diyala','DI',1104),(3131,'Karbala\'','KA',1104),(3132,'Maysan','MA',1104),(3133,'Ninawa','NI',1104),(3134,'Salah ad Din','SD',1104),(3135,'Wasit','WA',1104),(3136,'Ardabil','03',1103),(3137,'Azarbayjan-e Gharbi','02',1103),(3138,'Azarbayjan-e Sharqi','01',1103),(3139,'Bushehr','06',1103),(3140,'Chahar Mahall va Bakhtiari','08',1103),(3141,'Esfahan','04',1103),(3142,'Fars','14',1103),(3143,'Gilan','19',1103),(3144,'Golestan','27',1103),(3145,'Hamadan','24',1103),(3146,'Hormozgan','23',1103),(3147,'Iiam','05',1103),(3148,'Kerman','15',1103),(3149,'Kermanshah','17',1103),(3150,'Khorasan','09',1103),(3151,'Khuzestan','10',1103),(3152,'Kohjiluyeh va Buyer Ahmad','18',1103),(3153,'Kordestan','16',1103),(3154,'Lorestan','20',1103),(3155,'Markazi','22',1103),(3156,'Mazandaran','21',1103),(3157,'Qazvin','28',1103),(3158,'Qom','26',1103),(3159,'Semnan','12',1103),(3160,'Sistan va Baluchestan','13',1103),(3161,'Tehran','07',1103),(3162,'Yazd','25',1103),(3163,'Zanjan','11',1103),(3164,'Austurland','7',1100),(3165,'Hofuoborgarsvaeoi utan Reykjavikur','1',1100),(3166,'Norourland eystra','6',1100),(3167,'Norourland vestra','5',1100),(3168,'Reykjavik','0',1100),(3169,'Suourland','8',1100),(3170,'Suournes','2',1100),(3171,'Vestfirolr','4',1100),(3172,'Vesturland','3',1100),(3173,'Agrigento','AG',1107),(3174,'Alessandria','AL',1107),(3175,'Ancona','AN',1107),(3176,'Aosta','AO',1107),(3177,'Arezzo','AR',1107),(3178,'Ascoli Piceno','AP',1107),(3179,'Asti','AT',1107),(3180,'Avellino','AV',1107),(3181,'Bari','BA',1107),(3182,'Belluno','BL',1107),(3183,'Benevento','BN',1107),(3184,'Bergamo','BG',1107),(3185,'Biella','BI',1107),(3186,'Bologna','BO',1107),(3187,'Bolzano','BZ',1107),(3188,'Brescia','BS',1107),(3189,'Brindisi','BR',1107),(3190,'Cagliari','CA',1107),(3191,'Caltanissetta','CL',1107),(3192,'Campobasso','CB',1107),(3193,'Caserta','CE',1107),(3194,'Catania','CT',1107),(3195,'Catanzaro','CZ',1107),(3196,'Chieti','CH',1107),(3197,'Como','CO',1107),(3198,'Cosenza','CS',1107),(3199,'Cremona','CR',1107),(3200,'Crotone','KR',1107),(3201,'Cuneo','CN',1107),(3202,'Enna','EN',1107),(3203,'Ferrara','FE',1107),(3204,'Firenze','FI',1107),(3205,'Foggia','FG',1107),(3206,'Forlì-Cesena','FC',1107),(3207,'Frosinone','FR',1107),(3208,'Genova','GE',1107),(3209,'Gorizia','GO',1107),(3210,'Grosseto','GR',1107),(3211,'Imperia','IM',1107),(3212,'Isernia','IS',1107),(3213,'L\'Aquila','AQ',1107),(3214,'La Spezia','SP',1107),(3215,'Latina','LT',1107),(3216,'Lecce','LE',1107),(3217,'Lecco','LC',1107),(3218,'Livorno','LI',1107),(3219,'Lodi','LO',1107),(3220,'Lucca','LU',1107),(3221,'Macerata','MC',1107),(3222,'Mantova','MN',1107),(3223,'Massa-Carrara','MS',1107),(3224,'Matera','MT',1107),(3225,'Messina','ME',1107),(3226,'Milano','MI',1107),(3227,'Modena','MO',1107),(3228,'Napoli','NA',1107),(3229,'Novara','NO',1107),(3230,'Nuoro','NU',1107),(3231,'Oristano','OR',1107),(3232,'Padova','PD',1107),(3233,'Palermo','PA',1107),(3234,'Parma','PR',1107),(3235,'Pavia','PV',1107),(3236,'Perugia','PG',1107),(3237,'Pesaro e Urbino','PU',1107),(3238,'Pescara','PE',1107),(3239,'Piacenza','PC',1107),(3240,'Pisa','PI',1107),(3241,'Pistoia','PT',1107),(3242,'Pordenone','PN',1107),(3243,'Potenza','PZ',1107),(3244,'Prato','PO',1107),(3245,'Ragusa','RG',1107),(3246,'Ravenna','RA',1107),(3247,'Reggio Calabria','RC',1107),(3248,'Reggio Emilia','RE',1107),(3249,'Rieti','RI',1107),(3250,'Rimini','RN',1107),(3251,'Roma','RM',1107),(3252,'Rovigo','RO',1107),(3253,'Salerno','SA',1107),(3254,'Sassari','SS',1107),(3255,'Savona','SV',1107),(3256,'Siena','SI',1107),(3257,'Siracusa','SR',1107),(3258,'Sondrio','SO',1107),(3259,'Taranto','TA',1107),(3260,'Teramo','TE',1107),(3261,'Terni','TR',1107),(3262,'Torino','TO',1107),(3263,'Trapani','TP',1107),(3264,'Trento','TN',1107),(3265,'Treviso','TV',1107),(3266,'Trieste','TS',1107),(3267,'Udine','UD',1107),(3268,'Varese','VA',1107),(3269,'Venezia','VE',1107),(3270,'Verbano-Cusio-Ossola','VB',1107),(3271,'Vercelli','VC',1107),(3272,'Verona','VR',1107),(3273,'Vibo Valentia','VV',1107),(3274,'Vicenza','VI',1107),(3275,'Viterbo','VT',1107),(3276,'Aichi','23',1109),(3277,'Akita','05',1109),(3278,'Aomori','02',1109),(3279,'Chiba','12',1109),(3280,'Ehime','38',1109),(3281,'Fukui','18',1109),(3282,'Fukuoka','40',1109),(3283,'Fukusima','07',1109),(3284,'Gifu','21',1109),(3285,'Gunma','10',1109),(3286,'Hiroshima','34',1109),(3287,'Hokkaido','01',1109),(3288,'Hyogo','28',1109),(3289,'Ibaraki','08',1109),(3290,'Ishikawa','17',1109),(3291,'Iwate','03',1109),(3292,'Kagawa','37',1109),(3293,'Kagoshima','46',1109),(3294,'Kanagawa','14',1109),(3295,'Kochi','39',1109),(3296,'Kumamoto','43',1109),(3297,'Kyoto','26',1109),(3298,'Mie','24',1109),(3299,'Miyagi','04',1109),(3300,'Miyazaki','45',1109),(3301,'Nagano','20',1109),(3302,'Nagasaki','42',1109),(3303,'Nara','29',1109),(3304,'Niigata','15',1109),(3305,'Oita','44',1109),(3306,'Okayama','33',1109),(3307,'Okinawa','47',1109),(3308,'Osaka','27',1109),(3309,'Saga','41',1109),(3310,'Saitama','11',1109),(3311,'Shiga','25',1109),(3312,'Shimane','32',1109),(3313,'Shizuoka','22',1109),(3314,'Tochigi','09',1109),(3315,'Tokushima','36',1109),(3316,'Tokyo','13',1109),(3317,'Tottori','31',1109),(3318,'Toyama','16',1109),(3319,'Wakayama','30',1109),(3320,'Yamagata','06',1109),(3321,'Yamaguchi','35',1109),(3322,'Yamanashi','19',1109),(3323,'Clarendon','CN',1108),(3324,'Hanover','HR',1108),(3325,'Kingston','KN',1108),(3326,'Portland','PD',1108),(3327,'Saint Andrew','AW',1108),(3328,'Saint Ann','AN',1108),(3329,'Saint Catherine','CE',1108),(3330,'Saint Elizabeth','EH',1108),(3331,'Saint James','JS',1108),(3332,'Saint Mary','MY',1108),(3333,'Saint Thomas','TS',1108),(3334,'Trelawny','TY',1108),(3335,'Westmoreland','WD',1108),(3336,'Ajln','AJ',1110),(3337,'Al \'Aqaba','AQ',1110),(3338,'Al Balqa\'','BA',1110),(3339,'Al Karak','KA',1110),(3340,'Al Mafraq','MA',1110),(3341,'Amman','AM',1110),(3342,'At Tafilah','AT',1110),(3343,'Az Zarga','AZ',1110),(3344,'Irbid','JR',1110),(3345,'Jarash','JA',1110),(3346,'Ma\'an','MN',1110),(3347,'Madaba','MD',1110),(3348,'Nairobi Municipality','110',1112),(3349,'Coast','300',1112),(3350,'North-Eastern Kaskazini Mashariki','500',1112),(3351,'Rift Valley','700',1112),(3352,'Western Magharibi','900',1112),(3353,'Bishkek','GB',1117),(3354,'Batken','B',1117),(3355,'Chu','C',1117),(3356,'Jalal-Abad','J',1117),(3357,'Naryn','N',1117),(3358,'Osh','O',1117),(3359,'Talas','T',1117),(3360,'Ysyk-Kol','Y',1117),(3361,'Krong Kaeb','23',1037),(3362,'Krong Pailin','24',1037),(3363,'Xrong Preah Sihanouk','18',1037),(3364,'Phnom Penh','12',1037),(3365,'Baat Dambang','2',1037),(3366,'Banteay Mean Chey','1',1037),(3367,'Rampong Chaam','3',1037),(3368,'Kampong Chhnang','4',1037),(3369,'Kampong Spueu','5',1037),(3370,'Kampong Thum','6',1037),(3371,'Kampot','7',1037),(3372,'Kandaal','8',1037),(3373,'Kach Kong','9',1037),(3374,'Krachoh','10',1037),(3375,'Mondol Kiri','11',1037),(3376,'Otdar Mean Chey','22',1037),(3377,'Pousaat','15',1037),(3378,'Preah Vihear','13',1037),(3379,'Prey Veaeng','14',1037),(3380,'Rotanak Kiri','16',1037),(3381,'Siem Reab','17',1037),(3382,'Stueng Traeng','19',1037),(3383,'Svaay Rieng','20',1037),(3384,'Taakaev','21',1037),(3385,'Gilbert Islands','G',1113),(3386,'Line Islands','L',1113),(3387,'Phoenix Islands','P',1113),(3388,'Anjouan Ndzouani','A',1049),(3389,'Grande Comore Ngazidja','G',1049),(3390,'Moheli Moili','M',1049),(3391,'Kaesong-si','KAE',1114),(3392,'Nampo-si','NAM',1114),(3393,'Pyongyang-ai','PYO',1114),(3394,'Chagang-do','CHA',1114),(3395,'Hamgyongbuk-do','HAB',1114),(3396,'Hamgyongnam-do','HAN',1114),(3397,'Hwanghaebuk-do','HWB',1114),(3398,'Hwanghaenam-do','HWN',1114),(3399,'Kangwon-do','KAN',1114),(3400,'Pyonganbuk-do','PYB',1114),(3401,'Pyongannam-do','PYN',1114),(3402,'Yanggang-do','YAN',1114),(3403,'Najin Sonbong-si','NAJ',1114),(3404,'Seoul Teugbyeolsi','11',1115),(3405,'Busan Gwang\'yeogsi','26',1115),(3406,'Daegu Gwang\'yeogsi','27',1115),(3407,'Daejeon Gwang\'yeogsi','30',1115),(3408,'Gwangju Gwang\'yeogsi','29',1115),(3409,'Incheon Gwang\'yeogsi','28',1115),(3410,'Ulsan Gwang\'yeogsi','31',1115),(3411,'Chungcheongbugdo','43',1115),(3412,'Chungcheongnamdo','44',1115),(3413,'Gang\'weondo','42',1115),(3414,'Gyeonggido','41',1115),(3415,'Gyeongsangbugdo','47',1115),(3416,'Gyeongsangnamdo','48',1115),(3417,'Jejudo','49',1115),(3418,'Jeonrabugdo','45',1115),(3419,'Jeonranamdo','46',1115),(3420,'Al Ahmadi','AH',1116),(3421,'Al Farwanlyah','FA',1116),(3422,'Al Jahrah','JA',1116),(3423,'Al Kuwayt','KU',1116),(3424,'Hawalli','HA',1116),(3425,'Almaty','ALA',1111),(3426,'Astana','AST',1111),(3427,'Almaty oblysy','ALM',1111),(3428,'Aqmola oblysy','AKM',1111),(3429,'Aqtobe oblysy','AKT',1111),(3430,'Atyrau oblyfiy','ATY',1111),(3431,'Batys Quzaqstan oblysy','ZAP',1111),(3432,'Mangghystau oblysy','MAN',1111),(3433,'Ongtustik Quzaqstan oblysy','YUZ',1111),(3434,'Pavlodar oblysy','PAV',1111),(3435,'Qaraghandy oblysy','KAR',1111),(3436,'Qostanay oblysy','KUS',1111),(3437,'Qyzylorda oblysy','KZY',1111),(3438,'Shyghys Quzaqstan oblysy','VOS',1111),(3439,'Soltustik Quzaqstan oblysy','SEV',1111),(3440,'Zhambyl oblysy Zhambylskaya oblast\'','ZHA',1111),(3441,'Vientiane','VT',1118),(3442,'Attapu','AT',1118),(3443,'Bokeo','BK',1118),(3444,'Bolikhamxai','BL',1118),(3445,'Champasak','CH',1118),(3446,'Houaphan','HO',1118),(3447,'Khammouan','KH',1118),(3448,'Louang Namtha','LM',1118),(3449,'Louangphabang','LP',1118),(3450,'Oudomxai','OU',1118),(3451,'Phongsali','PH',1118),(3452,'Salavan','SL',1118),(3453,'Savannakhet','SV',1118),(3454,'Xaignabouli','XA',1118),(3455,'Xiasomboun','XN',1118),(3456,'Xekong','XE',1118),(3457,'Xiangkhoang','XI',1118),(3458,'Beirut','BA',1120),(3459,'Beqaa','BI',1120),(3460,'Mount Lebanon','JL',1120),(3461,'North Lebanon','AS',1120),(3462,'South Lebanon','JA',1120),(3463,'Nabatieh','NA',1120),(3464,'Ampara','52',1199),(3465,'Anuradhapura','71',1199),(3466,'Badulla','81',1199),(3467,'Batticaloa','51',1199),(3468,'Colombo','11',1199),(3469,'Galle','31',1199),(3470,'Gampaha','12',1199),(3471,'Hambantota','33',1199),(3472,'Jaffna','41',1199),(3473,'Kalutara','13',1199),(3474,'Kandy','21',1199),(3475,'Kegalla','92',1199),(3476,'Kilinochchi','42',1199),(3477,'Kurunegala','61',1199),(3478,'Mannar','43',1199),(3479,'Matale','22',1199),(3480,'Matara','32',1199),(3481,'Monaragala','82',1199),(3482,'Mullaittivu','45',1199),(3483,'Nuwara Eliya','23',1199),(3484,'Polonnaruwa','72',1199),(3485,'Puttalum','62',1199),(3486,'Ratnapura','91',1199),(3487,'Trincomalee','53',1199),(3488,'VavunLya','44',1199),(3489,'Bomi','BM',1122),(3490,'Bong','BG',1122),(3491,'Grand Basaa','GB',1122),(3492,'Grand Cape Mount','CM',1122),(3493,'Grand Gedeh','GG',1122),(3494,'Grand Kru','GK',1122),(3495,'Lofa','LO',1122),(3496,'Margibi','MG',1122),(3497,'Maryland','MY',1122),(3498,'Montserrado','MO',1122),(3499,'Nimba','NI',1122),(3500,'Rivercess','RI',1122),(3501,'Sinoe','SI',1122),(3502,'Berea','D',1121),(3503,'Butha-Buthe','B',1121),(3504,'Leribe','C',1121),(3505,'Mafeteng','E',1121),(3506,'Maseru','A',1121),(3507,'Mohale\'s Hoek','F',1121),(3508,'Mokhotlong','J',1121),(3509,'Qacha\'s Nek','H',1121),(3510,'Quthing','G',1121),(3511,'Thaba-Tseka','K',1121),(3512,'Alytaus Apskritis','AL',1125),(3513,'Kauno Apskritis','KU',1125),(3514,'Klaipedos Apskritis','KL',1125),(3515,'Marijampoles Apskritis','MR',1125),(3516,'Panevezio Apskritis','PN',1125),(3517,'Sisuliu Apskritis','SA',1125),(3518,'Taurages Apskritis','TA',1125),(3519,'Telsiu Apskritis','TE',1125),(3520,'Utenos Apskritis','UT',1125),(3521,'Vilniaus Apskritis','VL',1125),(3522,'Diekirch','D',1126),(3523,'GreveNmacher','G',1126),(3550,'Daugavpils','DGV',1119),(3551,'Jelgava','JEL',1119),(3552,'Jūrmala','JUR',1119),(3553,'Liepāja','LPX',1119),(3554,'Rēzekne','REZ',1119),(3555,'Rīga','RIX',1119),(3556,'Ventspils','VEN',1119),(3557,'Ajdābiyā','AJ',1123),(3558,'Al Buţnān','BU',1123),(3559,'Al Hizām al Akhdar','HZ',1123),(3560,'Al Jabal al Akhdar','JA',1123),(3561,'Al Jifārah','JI',1123),(3562,'Al Jufrah','JU',1123),(3563,'Al Kufrah','KF',1123),(3564,'Al Marj','MJ',1123),(3565,'Al Marqab','MB',1123),(3566,'Al Qaţrūn','QT',1123),(3567,'Al Qubbah','QB',1123),(3568,'Al Wāhah','WA',1123),(3569,'An Nuqaţ al Khams','NQ',1123),(3570,'Ash Shāţi\'','SH',1123),(3571,'Az Zāwiyah','ZA',1123),(3572,'Banghāzī','BA',1123),(3573,'Banī Walīd','BW',1123),(3574,'Darnah','DR',1123),(3575,'Ghadāmis','GD',1123),(3576,'Gharyān','GR',1123),(3577,'Ghāt','GT',1123),(3578,'Jaghbūb','JB',1123),(3579,'Mişrātah','MI',1123),(3580,'Mizdah','MZ',1123),(3581,'Murzuq','MQ',1123),(3582,'Nālūt','NL',1123),(3583,'Sabhā','SB',1123),(3584,'Şabrātah Şurmān','SS',1123),(3585,'Surt','SR',1123),(3586,'Tājūrā\' wa an Nawāhī al Arbāh','TN',1123),(3587,'Ţarābulus','TB',1123),(3588,'Tarhūnah-Masallātah','TM',1123),(3589,'Wādī al hayāt','WD',1123),(3590,'Yafran-Jādū','YJ',1123),(3591,'Agadir','AGD',1146),(3592,'Aït Baha','BAH',1146),(3593,'Aït Melloul','MEL',1146),(3594,'Al Haouz','HAO',1146),(3595,'Al Hoceïma','HOC',1146),(3596,'Assa-Zag','ASZ',1146),(3597,'Azilal','AZI',1146),(3598,'Beni Mellal','BEM',1146),(3599,'Ben Sllmane','BES',1146),(3600,'Berkane','BER',1146),(3601,'Boujdour','BOD',1146),(3602,'Boulemane','BOM',1146),(3603,'Casablanca [Dar el Beïda]','CAS',1146),(3604,'Chefchaouene','CHE',1146),(3605,'Chichaoua','CHI',1146),(3606,'El Hajeb','HAJ',1146),(3607,'El Jadida','JDI',1146),(3608,'Errachidia','ERR',1146),(3609,'Essaouira','ESI',1146),(3610,'Es Smara','ESM',1146),(3611,'Fès','FES',1146),(3612,'Figuig','FIG',1146),(3613,'Guelmim','GUE',1146),(3614,'Ifrane','IFR',1146),(3615,'Jerada','JRA',1146),(3616,'Kelaat Sraghna','KES',1146),(3617,'Kénitra','KEN',1146),(3618,'Khemisaet','KHE',1146),(3619,'Khenifra','KHN',1146),(3620,'Khouribga','KHO',1146),(3621,'Laâyoune (EH)','LAA',1146),(3622,'Larache','LAP',1146),(3623,'Marrakech','MAR',1146),(3624,'Meknsès','MEK',1146),(3625,'Nador','NAD',1146),(3626,'Ouarzazate','OUA',1146),(3627,'Oued ed Dahab (EH)','OUD',1146),(3628,'Oujda','OUJ',1146),(3629,'Rabat-Salé','RBA',1146),(3630,'Safi','SAF',1146),(3631,'Sefrou','SEF',1146),(3632,'Settat','SET',1146),(3633,'Sidl Kacem','SIK',1146),(3634,'Tanger','TNG',1146),(3635,'Tan-Tan','TNT',1146),(3636,'Taounate','TAO',1146),(3637,'Taroudannt','TAR',1146),(3638,'Tata','TAT',1146),(3639,'Taza','TAZ',1146),(3640,'Tétouan','TET',1146),(3641,'Tiznit','TIZ',1146),(3642,'Gagauzia, Unitate Teritoriala Autonoma','GA',1142),(3643,'Chisinau','CU',1142),(3644,'Stinga Nistrului, unitatea teritoriala din','SN',1142),(3645,'Balti','BA',1142),(3646,'Cahul','CA',1142),(3647,'Edinet','ED',1142),(3648,'Lapusna','LA',1142),(3649,'Orhei','OR',1142),(3650,'Soroca','SO',1142),(3651,'Taraclia','TA',1142),(3652,'Tighina [Bender]','TI',1142),(3653,'Ungheni','UN',1142),(3654,'Antananarivo','T',1129),(3655,'Antsiranana','D',1129),(3656,'Fianarantsoa','F',1129),(3657,'Mahajanga','M',1129),(3658,'Toamasina','A',1129),(3659,'Toliara','U',1129),(3660,'Ailinglapalap','ALL',1135),(3661,'Ailuk','ALK',1135),(3662,'Arno','ARN',1135),(3663,'Aur','AUR',1135),(3664,'Ebon','EBO',1135),(3665,'Eniwetok','ENI',1135),(3666,'Jaluit','JAL',1135),(3667,'Kili','KIL',1135),(3668,'Kwajalein','KWA',1135),(3669,'Lae','LAE',1135),(3670,'Lib','LIB',1135),(3671,'Likiep','LIK',1135),(3672,'Majuro','MAJ',1135),(3673,'Maloelap','MAL',1135),(3674,'Mejit','MEJ',1135),(3675,'Mili','MIL',1135),(3676,'Namorik','NMK',1135),(3677,'Namu','NMU',1135),(3678,'Rongelap','RON',1135),(3679,'Ujae','UJA',1135),(3680,'Ujelang','UJL',1135),(3681,'Utirik','UTI',1135),(3682,'Wotho','WTN',1135),(3683,'Wotje','WTJ',1135),(3684,'Bamako','BK0',1133),(3685,'Gao','7',1133),(3686,'Kayes','1',1133),(3687,'Kidal','8',1133),(3688,'Xoulikoro','2',1133),(3689,'Mopti','5',1133),(3690,'S69ou','4',1133),(3691,'Sikasso','3',1133),(3692,'Tombouctou','6',1133),(3693,'Ayeyarwady','07',1035),(3694,'Bago','02',1035),(3695,'Magway','03',1035),(3696,'Mandalay','04',1035),(3697,'Sagaing','01',1035),(3698,'Tanintharyi','05',1035),(3699,'Yangon','06',1035),(3700,'Chin','14',1035),(3701,'Kachin','11',1035),(3702,'Kayah','12',1035),(3703,'Kayin','13',1035),(3704,'Mon','15',1035),(3705,'Rakhine','16',1035),(3706,'Shan','17',1035),(3707,'Ulaanbaatar','1',1144),(3708,'Arhangay','073',1144),(3709,'Bayanhongor','069',1144),(3710,'Bayan-Olgiy','071',1144),(3711,'Bulgan','067',1144),(3712,'Darhan uul','037',1144),(3713,'Dornod','061',1144),(3714,'Dornogov,','063',1144),(3715,'DundgovL','059',1144),(3716,'Dzavhan','057',1144),(3717,'Govi-Altay','065',1144),(3718,'Govi-Smber','064',1144),(3719,'Hentiy','039',1144),(3720,'Hovd','043',1144),(3721,'Hovsgol','041',1144),(3722,'Omnogovi','053',1144),(3723,'Orhon','035',1144),(3724,'Ovorhangay','055',1144),(3725,'Selenge','049',1144),(3726,'Shbaatar','051',1144),(3727,'Tov','047',1144),(3728,'Uvs','046',1144),(3729,'Nouakchott','NKC',1137),(3730,'Assaba','03',1137),(3731,'Brakna','05',1137),(3732,'Dakhlet Nouadhibou','08',1137),(3733,'Gorgol','04',1137),(3734,'Guidimaka','10',1137),(3735,'Hodh ech Chargui','01',1137),(3736,'Hodh el Charbi','02',1137),(3737,'Inchiri','12',1137),(3738,'Tagant','09',1137),(3739,'Tiris Zemmour','11',1137),(3740,'Trarza','06',1137),(3741,'Beau Bassin-Rose Hill','BR',1138),(3742,'Curepipe','CU',1138),(3743,'Port Louis','PU',1138),(3744,'Quatre Bornes','QB',1138),(3745,'Vacosa-Phoenix','VP',1138),(3746,'Black River','BL',1138),(3747,'Flacq','FL',1138),(3748,'Grand Port','GP',1138),(3749,'Moka','MO',1138),(3750,'Pamplemousses','PA',1138),(3751,'Plaines Wilhems','PW',1138),(3752,'Riviere du Rempart','RP',1138),(3753,'Savanne','SA',1138),(3754,'Agalega Islands','AG',1138),(3755,'Cargados Carajos Shoals','CC',1138),(3756,'Rodrigues Island','RO',1138),(3757,'Male','MLE',1132),(3758,'Alif','02',1132),(3759,'Baa','20',1132),(3760,'Dhaalu','17',1132),(3761,'Faafu','14',1132),(3762,'Gaaf Alif','27',1132),(3763,'Gaefu Dhaalu','28',1132),(3764,'Gnaviyani','29',1132),(3765,'Haa Alif','07',1132),(3766,'Haa Dhaalu','23',1132),(3767,'Kaafu','26',1132),(3768,'Laamu','05',1132),(3769,'Lhaviyani','03',1132),(3770,'Meemu','12',1132),(3771,'Noonu','25',1132),(3772,'Raa','13',1132),(3773,'Seenu','01',1132),(3774,'Shaviyani','24',1132),(3775,'Thaa','08',1132),(3776,'Vaavu','04',1132),(3777,'Balaka','BA',1130),(3778,'Blantyre','BL',1130),(3779,'Chikwawa','CK',1130),(3780,'Chiradzulu','CR',1130),(3781,'Chitipa','CT',1130),(3782,'Dedza','DE',1130),(3783,'Dowa','DO',1130),(3784,'Karonga','KR',1130),(3785,'Kasungu','KS',1130),(3786,'Likoma Island','LK',1130),(3787,'Lilongwe','LI',1130),(3788,'Machinga','MH',1130),(3789,'Mangochi','MG',1130),(3790,'Mchinji','MC',1130),(3791,'Mulanje','MU',1130),(3792,'Mwanza','MW',1130),(3793,'Mzimba','MZ',1130),(3794,'Nkhata Bay','NB',1130),(3795,'Nkhotakota','NK',1130),(3796,'Nsanje','NS',1130),(3797,'Ntcheu','NU',1130),(3798,'Ntchisi','NI',1130),(3799,'Phalomba','PH',1130),(3800,'Rumphi','RU',1130),(3801,'Salima','SA',1130),(3802,'Thyolo','TH',1130),(3803,'Zomba','ZO',1130),(3804,'Aguascalientes','AGU',1140),(3805,'Baja California','BCN',1140),(3806,'Baja California Sur','BCS',1140),(3807,'Campeche','CAM',1140),(3808,'Coahuila','COA',1140),(3809,'Colima','COL',1140),(3810,'Chiapas','CHP',1140),(3811,'Chihuahua','CHH',1140),(3812,'Durango','DUR',1140),(3813,'Guanajuato','GUA',1140),(3814,'Guerrero','GRO',1140),(3815,'Hidalgo','HID',1140),(3816,'Jalisco','JAL',1140),(3817,'Mexico','MEX',1140),(3818,'Michoacin','MIC',1140),(3819,'Morelos','MOR',1140),(3820,'Nayarit','NAY',1140),(3821,'Nuevo Leon','NLE',1140),(3822,'Oaxaca','OAX',1140),(3823,'Puebla','PUE',1140),(3824,'Queretaro','QUE',1140),(3825,'Quintana Roo','ROO',1140),(3826,'San Luis Potosi','SLP',1140),(3827,'Sinaloa','SIN',1140),(3828,'Sonora','SON',1140),(3829,'Tabasco','TAB',1140),(3830,'Tamaulipas','TAM',1140),(3831,'Tlaxcala','TLA',1140),(3832,'Veracruz','VER',1140),(3833,'Yucatan','YUC',1140),(3834,'Zacatecas','ZAC',1140),(3835,'Wilayah Persekutuan Kuala Lumpur','14',1131),(3836,'Wilayah Persekutuan Labuan','15',1131),(3837,'Wilayah Persekutuan Putrajaya','16',1131),(3838,'Johor','01',1131),(3839,'Kedah','02',1131),(3840,'Kelantan','03',1131),(3841,'Melaka','04',1131),(3842,'Negeri Sembilan','05',1131),(3843,'Pahang','06',1131),(3844,'Perak','08',1131),(3845,'Perlis','09',1131),(3846,'Pulau Pinang','07',1131),(3847,'Sabah','12',1131),(3848,'Sarawak','13',1131),(3849,'Selangor','10',1131),(3850,'Terengganu','11',1131),(3851,'Maputo','MPM',1147),(3852,'Cabo Delgado','P',1147),(3853,'Gaza','G',1147),(3854,'Inhambane','I',1147),(3855,'Manica','B',1147),(3856,'Numpula','N',1147),(3857,'Niaaea','A',1147),(3858,'Sofala','S',1147),(3859,'Tete','T',1147),(3860,'Zambezia','Q',1147),(3861,'Caprivi','CA',1148),(3862,'Erongo','ER',1148),(3863,'Hardap','HA',1148),(3864,'Karas','KA',1148),(3865,'Khomas','KH',1148),(3866,'Kunene','KU',1148),(3867,'Ohangwena','OW',1148),(3868,'Okavango','OK',1148),(3869,'Omaheke','OH',1148),(3870,'Omusati','OS',1148),(3871,'Oshana','ON',1148),(3872,'Oshikoto','OT',1148),(3873,'Otjozondjupa','OD',1148),(3874,'Niamey','8',1156),(3875,'Agadez','1',1156),(3876,'Diffa','2',1156),(3877,'Dosso','3',1156),(3878,'Maradi','4',1156),(3879,'Tahoua','S',1156),(3880,'Tillaberi','6',1156),(3881,'Zinder','7',1156),(3882,'Abuja Federal Capital Territory','FC',1157),(3883,'Abia','AB',1157),(3884,'Adamawa','AD',1157),(3885,'Akwa Ibom','AK',1157),(3886,'Anambra','AN',1157),(3887,'Bauchi','BA',1157),(3888,'Bayelsa','BY',1157),(3889,'Benue','BE',1157),(3890,'Borno','BO',1157),(3891,'Cross River','CR',1157),(3892,'Delta','DE',1157),(3893,'Ebonyi','EB',1157),(3894,'Edo','ED',1157),(3895,'Ekiti','EK',1157),(3896,'Enugu','EN',1157),(3897,'Gombe','GO',1157),(3898,'Imo','IM',1157),(3899,'Jigawa','JI',1157),(3900,'Kaduna','KD',1157),(3901,'Kano','KN',1157),(3902,'Katsina','KT',1157),(3903,'Kebbi','KE',1157),(3904,'Kogi','KO',1157),(3905,'Kwara','KW',1157),(3906,'Lagos','LA',1157),(3907,'Nassarawa','NA',1157),(3908,'Niger','NI',1157),(3909,'Ogun','OG',1157),(3910,'Ondo','ON',1157),(3911,'Osun','OS',1157),(3912,'Oyo','OY',1157),(3913,'Rivers','RI',1157),(3914,'Sokoto','SO',1157),(3915,'Taraba','TA',1157),(3916,'Yobe','YO',1157),(3917,'Zamfara','ZA',1157),(3918,'Boaco','BO',1155),(3919,'Carazo','CA',1155),(3920,'Chinandega','CI',1155),(3921,'Chontales','CO',1155),(3922,'Esteli','ES',1155),(3923,'Jinotega','JI',1155),(3924,'Leon','LE',1155),(3925,'Madriz','MD',1155),(3926,'Managua','MN',1155),(3927,'Masaya','MS',1155),(3928,'Matagalpa','MT',1155),(3929,'Nueva Segovia','NS',1155),(3930,'Rio San Juan','SJ',1155),(3931,'Rivas','RI',1155),(3932,'Atlantico Norte','AN',1155),(3933,'Atlantico Sur','AS',1155),(3934,'Drente','DR',1152),(3935,'Flevoland','FL',1152),(3936,'Friesland','FR',1152),(3937,'Gelderland','GL',1152),(3938,'Groningen','GR',1152),(3939,'Noord-Brabant','NB',1152),(3940,'Noord-Holland','NH',1152),(3941,'Overijssel','OV',1152),(3942,'Utrecht','UT',1152),(3943,'Zuid-Holland','ZH',1152),(3944,'Zeeland','ZL',1152),(3945,'Akershus','02',1161),(3946,'Aust-Agder','09',1161),(3947,'Buskerud','06',1161),(3948,'Finnmark','20',1161),(3949,'Hedmark','04',1161),(3950,'Hordaland','12',1161),(3951,'Møre og Romsdal','15',1161),(3952,'Nordland','18',1161),(3953,'Nord-Trøndelag','17',1161),(3954,'Oppland','05',1161),(3955,'Oslo','03',1161),(3956,'Rogaland','11',1161),(3957,'Sogn og Fjordane','14',1161),(3958,'Sør-Trøndelag','16',1161),(3959,'Telemark','06',1161),(3960,'Troms','19',1161),(3961,'Vest-Agder','10',1161),(3962,'Vestfold','07',1161),(3963,'Østfold','01',1161),(3964,'Jan Mayen','22',1161),(3965,'Svalbard','21',1161),(3966,'Auckland','AUK',1154),(3967,'Bay of Plenty','BOP',1154),(3968,'Canterbury','CAN',1154),(3969,'Gisborne','GIS',1154),(3970,'Hawkes Bay','HKB',1154),(3971,'Manawatu-Wanganui','MWT',1154),(3972,'Marlborough','MBH',1154),(3973,'Nelson','NSN',1154),(3974,'Northland','NTL',1154),(3975,'Otago','OTA',1154),(3976,'Southland','STL',1154),(3977,'Taranaki','TKI',1154),(3978,'Tasman','TAS',1154),(3979,'Waikato','WKO',1154),(3980,'Wellington','WGN',1154),(3981,'West Coast','WTC',1154),(3982,'Ad Dakhillyah','DA',1162),(3983,'Al Batinah','BA',1162),(3984,'Al Janblyah','JA',1162),(3985,'Al Wusta','WU',1162),(3986,'Ash Sharqlyah','SH',1162),(3987,'Az Zahirah','ZA',1162),(3988,'Masqat','MA',1162),(3989,'Musandam','MU',1162),(3990,'Bocas del Toro','1',1166),(3991,'Cocle','2',1166),(3992,'Chiriqui','4',1166),(3993,'Darien','5',1166),(3994,'Herrera','6',1166),(3995,'Loa Santoa','7',1166),(3996,'Panama','8',1166),(3997,'Veraguas','9',1166),(3998,'Comarca de San Blas','Q',1166),(3999,'El Callao','CAL',1169),(4000,'Ancash','ANC',1169),(4001,'Apurimac','APU',1169),(4002,'Arequipa','ARE',1169),(4003,'Ayacucho','AYA',1169),(4004,'Cajamarca','CAJ',1169),(4005,'Cuzco','CUS',1169),(4006,'Huancavelica','HUV',1169),(4007,'Huanuco','HUC',1169),(4008,'Ica','ICA',1169),(4009,'Junin','JUN',1169),(4010,'La Libertad','LAL',1169),(4011,'Lambayeque','LAM',1169),(4012,'Lima','LIM',1169),(4013,'Loreto','LOR',1169),(4014,'Madre de Dios','MDD',1169),(4015,'Moquegua','MOQ',1169),(4016,'Pasco','PAS',1169),(4017,'Piura','PIU',1169),(4018,'Puno','PUN',1169),(4019,'San Martin','SAM',1169),(4020,'Tacna','TAC',1169),(4021,'Tumbes','TUM',1169),(4022,'Ucayali','UCA',1169),(4023,'National Capital District (Port Moresby)','NCD',1167),(4024,'Chimbu','CPK',1167),(4025,'Eastern Highlands','EHG',1167),(4026,'East New Britain','EBR',1167),(4027,'East Sepik','ESW',1167),(4028,'Enga','EPW',1167),(4029,'Gulf','GPK',1167),(4030,'Madang','MPM',1167),(4031,'Manus','MRL',1167),(4032,'Milne Bay','MBA',1167),(4033,'Morobe','MPL',1167),(4034,'New Ireland','NIK',1167),(4035,'North Solomons','NSA',1167),(4036,'Santaun','SAN',1167),(4037,'Southern Highlands','SHM',1167),(4038,'Western Highlands','WHM',1167),(4039,'West New Britain','WBK',1167),(4040,'Abra','ABR',1170),(4041,'Agusan del Norte','AGN',1170),(4042,'Agusan del Sur','AGS',1170),(4043,'Aklan','AKL',1170),(4044,'Albay','ALB',1170),(4045,'Antique','ANT',1170),(4046,'Apayao','APA',1170),(4047,'Aurora','AUR',1170),(4048,'Basilan','BAS',1170),(4049,'Batasn','BAN',1170),(4050,'Batanes','BTN',1170),(4051,'Batangas','BTG',1170),(4052,'Benguet','BEN',1170),(4053,'Biliran','BIL',1170),(4054,'Bohol','BOH',1170),(4055,'Bukidnon','BUK',1170),(4056,'Bulacan','BUL',1170),(4057,'Cagayan','CAG',1170),(4058,'Camarines Norte','CAN',1170),(4059,'Camarines Sur','CAS',1170),(4060,'Camiguin','CAM',1170),(4061,'Capiz','CAP',1170),(4062,'Catanduanes','CAT',1170),(4063,'Cavite','CAV',1170),(4064,'Cebu','CEB',1170),(4065,'Compostela Valley','COM',1170),(4066,'Davao','DAV',1170),(4067,'Davao del Sur','DAS',1170),(4068,'Davao Oriental','DAO',1170),(4069,'Eastern Samar','EAS',1170),(4070,'Guimaras','GUI',1170),(4071,'Ifugao','IFU',1170),(4072,'Ilocos Norte','ILN',1170),(4073,'Ilocos Sur','ILS',1170),(4074,'Iloilo','ILI',1170),(4075,'Isabela','ISA',1170),(4076,'Kalinga-Apayso','KAL',1170),(4077,'Laguna','LAG',1170),(4078,'Lanao del Norte','LAN',1170),(4079,'Lanao del Sur','LAS',1170),(4080,'La Union','LUN',1170),(4081,'Leyte','LEY',1170),(4082,'Maguindanao','MAG',1170),(4083,'Marinduque','MAD',1170),(4084,'Masbate','MAS',1170),(4085,'Mindoro Occidental','MDC',1170),(4086,'Mindoro Oriental','MDR',1170),(4087,'Misamis Occidental','MSC',1170),(4088,'Misamis Oriental','MSR',1170),(4089,'Mountain Province','MOU',1170),(4090,'Negroe Occidental','NEC',1170),(4091,'Negros Oriental','NER',1170),(4092,'North Cotabato','NCO',1170),(4093,'Northern Samar','NSA',1170),(4094,'Nueva Ecija','NUE',1170),(4095,'Nueva Vizcaya','NUV',1170),(4096,'Palawan','PLW',1170),(4097,'Pampanga','PAM',1170),(4098,'Pangasinan','PAN',1170),(4099,'Quezon','QUE',1170),(4100,'Quirino','QUI',1170),(4101,'Rizal','RIZ',1170),(4102,'Romblon','ROM',1170),(4103,'Sarangani','SAR',1170),(4104,'Siquijor','SIG',1170),(4105,'Sorsogon','SOR',1170),(4106,'South Cotabato','SCO',1170),(4107,'Southern Leyte','SLE',1170),(4108,'Sultan Kudarat','SUK',1170),(4109,'Sulu','SLU',1170),(4110,'Surigao del Norte','SUN',1170),(4111,'Surigao del Sur','SUR',1170),(4112,'Tarlac','TAR',1170),(4113,'Tawi-Tawi','TAW',1170),(4114,'Western Samar','WSA',1170),(4115,'Zambales','ZMB',1170),(4116,'Zamboanga del Norte','ZAN',1170),(4117,'Zamboanga del Sur','ZAS',1170),(4118,'Zamboanga Sibiguey','ZSI',1170),(4119,'Islamabad Federal Capital Area','IS',1163),(4120,'Baluchistan','BA',1163),(4121,'Khyber Pakhtun Khawa','NW',1163),(4122,'Sindh','SD',1163),(4123,'Federally Administered Tribal Areas','TA',1163),(4124,'Azad Kashmir','JK',1163),(4125,'Gilgit-Baltistan','NA',1163),(4126,'Aveiro','01',1173),(4127,'Beja','02',1173),(4128,'Braga','03',1173),(4129,'Braganca','04',1173),(4130,'Castelo Branco','05',1173),(4131,'Colmbra','06',1173),(4132,'Ovora','07',1173),(4133,'Faro','08',1173),(4134,'Guarda','09',1173),(4135,'Leiria','10',1173),(4136,'Lisboa','11',1173),(4137,'Portalegre','12',1173),(4138,'Porto','13',1173),(4139,'Santarem','14',1173),(4140,'Setubal','15',1173),(4141,'Viana do Castelo','16',1173),(4142,'Vila Real','17',1173),(4143,'Viseu','18',1173),(4144,'Regiao Autonoma dos Acores','20',1173),(4145,'Regiao Autonoma da Madeira','30',1173),(4146,'Asuncion','ASU',1168),(4147,'Alto Paraguay','16',1168),(4148,'Alto Parana','10',1168),(4149,'Amambay','13',1168),(4150,'Boqueron','19',1168),(4151,'Caeguazu','5',1168),(4152,'Caazapl','6',1168),(4153,'Canindeyu','14',1168),(4154,'Concepcion','1',1168),(4155,'Cordillera','3',1168),(4156,'Guaira','4',1168),(4157,'Itapua','7',1168),(4158,'Miaiones','8',1168),(4159,'Neembucu','12',1168),(4160,'Paraguari','9',1168),(4161,'Presidente Hayes','15',1168),(4162,'San Pedro','2',1168),(4163,'Ad Dawhah','DA',1175),(4164,'Al Ghuwayriyah','GH',1175),(4165,'Al Jumayliyah','JU',1175),(4166,'Al Khawr','KH',1175),(4167,'Al Wakrah','WA',1175),(4168,'Ar Rayyan','RA',1175),(4169,'Jariyan al Batnah','JB',1175),(4170,'Madinat ash Shamal','MS',1175),(4171,'Umm Salal','US',1175),(4172,'Bucuresti','B',1176),(4173,'Alba','AB',1176),(4174,'Arad','AR',1176),(4175,'Arges','AG',1176),(4176,'Bacau','BC',1176),(4177,'Bihor','BH',1176),(4178,'Bistrita-Nasaud','BN',1176),(4179,'Boto\'ani','BT',1176),(4180,'Bra\'ov','BV',1176),(4181,'Braila','BR',1176),(4182,'Buzau','BZ',1176),(4183,'Caras-Severin','CS',1176),(4184,'Ca la ras\'i','CL',1176),(4185,'Cluj','CJ',1176),(4186,'Constant\'a','CT',1176),(4187,'Covasna','CV',1176),(4188,'Dambovit\'a','DB',1176),(4189,'Dolj','DJ',1176),(4190,'Galat\'i','GL',1176),(4191,'Giurgiu','GR',1176),(4192,'Gorj','GJ',1176),(4193,'Harghita','HR',1176),(4194,'Hunedoara','HD',1176),(4195,'Ialomit\'a','IL',1176),(4196,'Ias\'i','IS',1176),(4197,'Ilfov','IF',1176),(4198,'Maramures','MM',1176),(4199,'Mehedint\'i','MH',1176),(4200,'Mures','MS',1176),(4201,'Neamt','NT',1176),(4202,'Olt','OT',1176),(4203,'Prahova','PH',1176),(4204,'Satu Mare','SM',1176),(4205,'Sa laj','SJ',1176),(4206,'Sibiu','SB',1176),(4207,'Suceava','SV',1176),(4208,'Teleorman','TR',1176),(4209,'Timis','TM',1176),(4210,'Tulcea','TL',1176),(4211,'Vaslui','VS',1176),(4212,'Valcea','VL',1176),(4213,'Vrancea','VN',1176),(4214,'Adygeya, Respublika','AD',1177),(4215,'Altay, Respublika','AL',1177),(4216,'Bashkortostan, Respublika','BA',1177),(4217,'Buryatiya, Respublika','BU',1177),(4218,'Chechenskaya Respublika','CE',1177),(4219,'Chuvashskaya Respublika','CU',1177),(4220,'Dagestan, Respublika','DA',1177),(4221,'Ingushskaya Respublika','IN',1177),(4222,'Kabardino-Balkarskaya','KB',1177),(4223,'Kalmykiya, Respublika','KL',1177),(4224,'Karachayevo-Cherkesskaya Respublika','KC',1177),(4225,'Kareliya, Respublika','KR',1177),(4226,'Khakasiya, Respublika','KK',1177),(4227,'Komi, Respublika','KO',1177),(4228,'Mariy El, Respublika','ME',1177),(4229,'Mordoviya, Respublika','MO',1177),(4230,'Sakha, Respublika [Yakutiya]','SA',1177),(4231,'Severnaya Osetiya, Respublika','SE',1177),(4232,'Tatarstan, Respublika','TA',1177),(4233,'Tyva, Respublika [Tuva]','TY',1177),(4234,'Udmurtskaya Respublika','UD',1177),(4235,'Altayskiy kray','ALT',1177),(4236,'Khabarovskiy kray','KHA',1177),(4237,'Krasnodarskiy kray','KDA',1177),(4238,'Krasnoyarskiy kray','KYA',1177),(4239,'Primorskiy kray','PRI',1177),(4240,'Stavropol\'skiy kray','STA',1177),(4241,'Amurskaya oblast\'','AMU',1177),(4242,'Arkhangel\'skaya oblast\'','ARK',1177),(4243,'Astrakhanskaya oblast\'','AST',1177),(4244,'Belgorodskaya oblast\'','BEL',1177),(4245,'Bryanskaya oblast\'','BRY',1177),(4246,'Chelyabinskaya oblast\'','CHE',1177),(4247,'Zabaykalsky Krai\'','ZSK',1177),(4248,'Irkutskaya oblast\'','IRK',1177),(4249,'Ivanovskaya oblast\'','IVA',1177),(4250,'Kaliningradskaya oblast\'','KGD',1177),(4251,'Kaluzhskaya oblast\'','KLU',1177),(4252,'Kamchatka Krai\'','KAM',1177),(4253,'Kemerovskaya oblast\'','KEM',1177),(4254,'Kirovskaya oblast\'','KIR',1177),(4255,'Kostromskaya oblast\'','KOS',1177),(4256,'Kurganskaya oblast\'','KGN',1177),(4257,'Kurskaya oblast\'','KRS',1177),(4258,'Leningradskaya oblast\'','LEN',1177),(4259,'Lipetskaya oblast\'','LIP',1177),(4260,'Magadanskaya oblast\'','MAG',1177),(4261,'Moskovskaya oblast\'','MOS',1177),(4262,'Murmanskaya oblast\'','MUR',1177),(4263,'Nizhegorodskaya oblast\'','NIZ',1177),(4264,'Novgorodskaya oblast\'','NGR',1177),(4265,'Novosibirskaya oblast\'','NVS',1177),(4266,'Omskaya oblast\'','OMS',1177),(4267,'Orenburgskaya oblast\'','ORE',1177),(4268,'Orlovskaya oblast\'','ORL',1177),(4269,'Penzenskaya oblast\'','PNZ',1177),(4270,'Perm krai\'','PEK',1177),(4271,'Pskovskaya oblast\'','PSK',1177),(4272,'Rostovskaya oblast\'','ROS',1177),(4273,'Ryazanskaya oblast\'','RYA',1177),(4274,'Sakhalinskaya oblast\'','SAK',1177),(4275,'Samarskaya oblast\'','SAM',1177),(4276,'Saratovskaya oblast\'','SAR',1177),(4277,'Smolenskaya oblast\'','SMO',1177),(4278,'Sverdlovskaya oblast\'','SVE',1177),(4279,'Tambovskaya oblast\'','TAM',1177),(4280,'Tomskaya oblast\'','TOM',1177),(4281,'Tul\'skaya oblast\'','TUL',1177),(4282,'Tverskaya oblast\'','TVE',1177),(4283,'Tyumenskaya oblast\'','TYU',1177),(4284,'Ul\'yanovskaya oblast\'','ULY',1177),(4285,'Vladimirskaya oblast\'','VLA',1177),(4286,'Volgogradskaya oblast\'','VGG',1177),(4287,'Vologodskaya oblast\'','VLG',1177),(4288,'Voronezhskaya oblast\'','VOR',1177),(4289,'Yaroslavskaya oblast\'','YAR',1177),(4290,'Moskva','MOW',1177),(4291,'Sankt-Peterburg','SPE',1177),(4292,'Yevreyskaya avtonomnaya oblast\'','YEV',1177),(4294,'Chukotskiy avtonomnyy okrug','CHU',1177),(4296,'Khanty-Mansiyskiy avtonomnyy okrug','KHM',1177),(4299,'Nenetskiy avtonomnyy okrug','NEN',1177),(4302,'Yamalo-Nenetskiy avtonomnyy okrug','YAN',1177),(4303,'Butare','C',1178),(4304,'Byumba','I',1178),(4305,'Cyangugu','E',1178),(4306,'Gikongoro','D',1178),(4307,'Gisenyi','G',1178),(4308,'Gitarama','B',1178),(4309,'Kibungo','J',1178),(4310,'Kibuye','F',1178),(4311,'Kigali-Rural Kigali y\' Icyaro','K',1178),(4312,'Kigali-Ville Kigali Ngari','L',1178),(4313,'Mutara','M',1178),(4314,'Ruhengeri','H',1178),(4315,'Al Batah','11',1187),(4316,'Al H,udd ash Shamallyah','08',1187),(4317,'Al Jawf','12',1187),(4318,'Al Madinah','03',1187),(4319,'Al Qasim','05',1187),(4320,'Ar Riyad','01',1187),(4321,'Asir','14',1187),(4322,'Ha\'il','06',1187),(4323,'Jlzan','09',1187),(4324,'Makkah','02',1187),(4325,'Najran','10',1187),(4326,'Tabuk','07',1187),(4327,'Capital Territory (Honiara)','CT',1194),(4328,'Guadalcanal','GU',1194),(4329,'Isabel','IS',1194),(4330,'Makira','MK',1194),(4331,'Malaita','ML',1194),(4332,'Temotu','TE',1194),(4333,'A\'ali an Nil','23',1200),(4334,'Al Bah al Ahmar','26',1200),(4335,'Al Buhayrat','18',1200),(4336,'Al Jazirah','07',1200),(4337,'Al Khartum','03',1200),(4338,'Al Qadarif','06',1200),(4339,'Al Wahdah','22',1200),(4340,'An Nil','04',1200),(4341,'An Nil al Abyaq','08',1200),(4342,'An Nil al Azraq','24',1200),(4343,'Ash Shamallyah','01',1200),(4344,'Bahr al Jabal','17',1200),(4345,'Gharb al Istiwa\'iyah','16',1200),(4346,'Gharb Ba~r al Ghazal','14',1200),(4347,'Gharb Darfur','12',1200),(4348,'Gharb Kurdufan','10',1200),(4349,'Janub Darfur','11',1200),(4350,'Janub Rurdufan','13',1200),(4351,'Jnqall','20',1200),(4352,'Kassala','05',1200),(4353,'Shamal Batr al Ghazal','15',1200),(4354,'Shamal Darfur','02',1200),(4355,'Shamal Kurdufan','09',1200),(4356,'Sharq al Istiwa\'iyah','19',1200),(4357,'Sinnar','25',1200),(4358,'Warab','21',1200),(4359,'Blekinge lan','K',1204),(4360,'Dalarnas lan','W',1204),(4361,'Gotlands lan','I',1204),(4362,'Gavleborge lan','X',1204),(4363,'Hallands lan','N',1204),(4364,'Jamtlande lan','Z',1204),(4365,'Jonkopings lan','F',1204),(4366,'Kalmar lan','H',1204),(4367,'Kronoberge lan','G',1204),(4368,'Norrbottena lan','BD',1204),(4369,'Skane lan','M',1204),(4370,'Stockholms lan','AB',1204),(4371,'Sodermanlands lan','D',1204),(4372,'Uppsala lan','C',1204),(4373,'Varmlanda lan','S',1204),(4374,'Vasterbottens lan','AC',1204),(4375,'Vasternorrlands lan','Y',1204),(4376,'Vastmanlanda lan','U',1204),(4377,'Vastra Gotalands lan','Q',1204),(4378,'Orebro lan','T',1204),(4379,'Ostergotlands lan','E',1204),(4380,'Saint Helena','SH',1180),(4381,'Ascension','AC',1180),(4382,'Tristan da Cunha','TA',1180),(4383,'Ajdovščina','001',1193),(4384,'Beltinci','002',1193),(4385,'Benedikt','148',1193),(4386,'Bistrica ob Sotli','149',1193),(4387,'Bled','003',1193),(4388,'Bloke','150',1193),(4389,'Bohinj','004',1193),(4390,'Borovnica','005',1193),(4391,'Bovec','006',1193),(4392,'Braslovče','151',1193),(4393,'Brda','007',1193),(4394,'Brezovica','008',1193),(4395,'Brežice','009',1193),(4396,'Cankova','152',1193),(4397,'Celje','011',1193),(4398,'Cerklje na Gorenjskem','012',1193),(4399,'Cerknica','013',1193),(4400,'Cerkno','014',1193),(4401,'Cerkvenjak','153',1193),(4402,'Črenšovci','015',1193),(4403,'Črna na Koroškem','016',1193),(4404,'Črnomelj','017',1193),(4405,'Destrnik','018',1193),(4406,'Divača','019',1193),(4407,'Dobje','154',1193),(4408,'Dobrepolje','020',1193),(4409,'Dobrna','155',1193),(4410,'Dobrova-Polhov Gradec','021',1193),(4411,'Dobrovnik','156',1193),(4412,'Dol pri Ljubljani','022',1193),(4413,'Dolenjske Toplice','157',1193),(4414,'Domžale','023',1193),(4415,'Dornava','024',1193),(4416,'Dravograd','025',1193),(4417,'Duplek','026',1193),(4418,'Gorenja vas-Poljane','027',1193),(4419,'Gorišnica','028',1193),(4420,'Gornja Radgona','029',1193),(4421,'Gornji Grad','030',1193),(4422,'Gornji Petrovci','031',1193),(4423,'Grad','158',1193),(4424,'Grosuplje','032',1193),(4425,'Hajdina','159',1193),(4426,'Hoče-Slivnica','160',1193),(4427,'Hodoš','161',1193),(4428,'Horjul','162',1193),(4429,'Hrastnik','034',1193),(4430,'Hrpelje-Kozina','035',1193),(4431,'Idrija','036',1193),(4432,'Ig','037',1193),(4433,'Ilirska Bistrica','038',1193),(4434,'Ivančna Gorica','039',1193),(4435,'Izola','040',1193),(4436,'Jesenice','041',1193),(4437,'Jezersko','163',1193),(4438,'Juršinci','042',1193),(4439,'Kamnik','043',1193),(4440,'Kanal','044',1193),(4441,'Kidričevo','045',1193),(4442,'Kobarid','046',1193),(4443,'Kobilje','047',1193),(4444,'Kočevje','048',1193),(4445,'Komen','049',1193),(4446,'Komenda','164',1193),(4447,'Koper','050',1193),(4448,'Kostel','165',1193),(4449,'Kozje','051',1193),(4450,'Kranj','052',1193),(4451,'Kranjska Gora','053',1193),(4452,'Križevci','166',1193),(4453,'Krško','054',1193),(4454,'Kungota','055',1193),(4455,'Kuzma','056',1193),(4456,'Laško','057',1193),(4457,'Lenart','058',1193),(4458,'Lendava','059',1193),(4459,'Litija','060',1193),(4460,'Ljubljana','061',1193),(4461,'Ljubno','062',1193),(4462,'Ljutomer','063',1193),(4463,'Logatec','064',1193),(4464,'Loška dolina','065',1193),(4465,'Loški Potok','066',1193),(4466,'Lovrenc na Pohorju','167',1193),(4467,'Luče','067',1193),(4468,'Lukovica','068',1193),(4469,'Majšperk','069',1193),(4470,'Maribor','070',1193),(4471,'Markovci','168',1193),(4472,'Medvode','071',1193),(4473,'Mengeš','072',1193),(4474,'Metlika','073',1193),(4475,'Mežica','074',1193),(4476,'Miklavž na Dravskem polju','169',1193),(4477,'Miren-Kostanjevica','075',1193),(4478,'Mirna Peč','170',1193),(4479,'Mislinja','076',1193),(4480,'Moravče','077',1193),(4481,'Moravske Toplice','078',1193),(4482,'Mozirje','079',1193),(4483,'Murska Sobota','080',1193),(4484,'Muta','081',1193),(4485,'Naklo','082',1193),(4486,'Nazarje','083',1193),(4487,'Nova Gorica','084',1193),(4488,'Novo mesto','085',1193),(4489,'Sveta Ana','181',1193),(4490,'Sveti Andraž v Slovenskih goricah','182',1193),(4491,'Sveti Jurij','116',1193),(4492,'Šalovci','033',1193),(4493,'Šempeter-Vrtojba','183',1193),(4494,'Šenčur','117',1193),(4495,'Šentilj','118',1193),(4496,'Šentjernej','119',1193),(4497,'Šentjur','120',1193),(4498,'Škocjan','121',1193),(4499,'Škofja Loka','122',1193),(4500,'Škofljica','123',1193),(4501,'Šmarje pri Jelšah','124',1193),(4502,'Šmartno ob Paki','125',1193),(4503,'Šmartno pri Litiji','194',1193),(4504,'Šoštanj','126',1193),(4505,'Štore','127',1193),(4506,'Tabor','184',1193),(4507,'Tišina','010',1193),(4508,'Tolmin','128',1193),(4509,'Trbovlje','129',1193),(4510,'Trebnje','130',1193),(4511,'Trnovska vas','185',1193),(4512,'Tržič','131',1193),(4513,'Trzin','186',1193),(4514,'Turnišče','132',1193),(4515,'Velenje','133',1193),(4516,'Velika Polana','187',1193),(4517,'Velike Lašče','134',1193),(4518,'Veržej','188',1193),(4519,'Videm','135',1193),(4520,'Vipava','136',1193),(4521,'Vitanje','137',1193),(4522,'Vojnik','138',1193),(4523,'Vransko','189',1193),(4524,'Vrhnika','140',1193),(4525,'Vuzenica','141',1193),(4526,'Zagorje ob Savi','142',1193),(4527,'Zavrč','143',1193),(4528,'Zreče','144',1193),(4529,'Žalec','190',1193),(4530,'Železniki','146',1193),(4531,'Žetale','191',1193),(4532,'Žiri','147',1193),(4533,'Žirovnica','192',1193),(4534,'Žužemberk','193',1193),(4535,'Banskobystrický kraj','BC',1192),(4536,'Bratislavský kraj','BL',1192),(4537,'Košický kraj','KI',1192),(4538,'Nitriansky kraj','NJ',1192),(4539,'Prešovský kraj','PV',1192),(4540,'Trenčiansky kraj','TC',1192),(4541,'Trnavský kraj','TA',1192),(4542,'Žilinský kraj','ZI',1192),(4543,'Western Area (Freetown)','W',1190),(4544,'Dakar','DK',1188),(4545,'Diourbel','DB',1188),(4546,'Fatick','FK',1188),(4547,'Kaolack','KL',1188),(4548,'Kolda','KD',1188),(4549,'Louga','LG',1188),(4550,'Matam','MT',1188),(4551,'Saint-Louis','SL',1188),(4552,'Tambacounda','TC',1188),(4553,'Thies','TH',1188),(4554,'Ziguinchor','ZG',1188),(4555,'Awdal','AW',1195),(4556,'Bakool','BK',1195),(4557,'Banaadir','BN',1195),(4558,'Bay','BY',1195),(4559,'Galguduud','GA',1195),(4560,'Gedo','GE',1195),(4561,'Hiirsan','HI',1195),(4562,'Jubbada Dhexe','JD',1195),(4563,'Jubbada Hoose','JH',1195),(4564,'Mudug','MU',1195),(4565,'Nugaal','NU',1195),(4566,'Saneag','SA',1195),(4567,'Shabeellaha Dhexe','SD',1195),(4568,'Shabeellaha Hoose','SH',1195),(4569,'Sool','SO',1195),(4570,'Togdheer','TO',1195),(4571,'Woqooyi Galbeed','WO',1195),(4572,'Brokopondo','BR',1201),(4573,'Commewijne','CM',1201),(4574,'Coronie','CR',1201),(4575,'Marowijne','MA',1201),(4576,'Nickerie','NI',1201),(4577,'Paramaribo','PM',1201),(4578,'Saramacca','SA',1201),(4579,'Sipaliwini','SI',1201),(4580,'Wanica','WA',1201),(4581,'Principe','P',1207),(4582,'Sao Tome','S',1207),(4583,'Ahuachapan','AH',1066),(4584,'Cabanas','CA',1066),(4585,'Cuscatlan','CU',1066),(4586,'Chalatenango','CH',1066),(4587,'Morazan','MO',1066),(4588,'San Miguel','SM',1066),(4589,'San Salvador','SS',1066),(4590,'Santa Ana','SA',1066),(4591,'San Vicente','SV',1066),(4592,'Sonsonate','SO',1066),(4593,'Usulutan','US',1066),(4594,'Al Hasakah','HA',1206),(4595,'Al Ladhiqiyah','LA',1206),(4596,'Al Qunaytirah','QU',1206),(4597,'Ar Raqqah','RA',1206),(4598,'As Suwayda\'','SU',1206),(4599,'Dar\'a','DR',1206),(4600,'Dayr az Zawr','DY',1206),(4601,'Dimashq','DI',1206),(4602,'Halab','HL',1206),(4603,'Hamah','HM',1206),(4604,'Jim\'','HI',1206),(4605,'Idlib','ID',1206),(4606,'Rif Dimashq','RD',1206),(4607,'Tarts','TA',1206),(4608,'Hhohho','HH',1203),(4609,'Lubombo','LU',1203),(4610,'Manzini','MA',1203),(4611,'Shiselweni','SH',1203),(4612,'Batha','BA',1043),(4613,'Biltine','BI',1043),(4614,'Borkou-Ennedi-Tibesti','BET',1043),(4615,'Chari-Baguirmi','CB',1043),(4616,'Guera','GR',1043),(4617,'Kanem','KA',1043),(4618,'Lac','LC',1043),(4619,'Logone-Occidental','LO',1043),(4620,'Logone-Oriental','LR',1043),(4621,'Mayo-Kebbi','MK',1043),(4622,'Moyen-Chari','MC',1043),(4623,'Ouaddai','OD',1043),(4624,'Salamat','SA',1043),(4625,'Tandjile','TA',1043),(4626,'Kara','K',1214),(4627,'Maritime (Region)','M',1214),(4628,'Savannes','S',1214),(4629,'Krung Thep Maha Nakhon Bangkok','10',1211),(4630,'Phatthaya','S',1211),(4631,'Amnat Charoen','37',1211),(4632,'Ang Thong','15',1211),(4633,'Buri Ram','31',1211),(4634,'Chachoengsao','24',1211),(4635,'Chai Nat','18',1211),(4636,'Chaiyaphum','36',1211),(4637,'Chanthaburi','22',1211),(4638,'Chiang Mai','50',1211),(4639,'Chiang Rai','57',1211),(4640,'Chon Buri','20',1211),(4641,'Chumphon','86',1211),(4642,'Kalasin','46',1211),(4643,'Kamphasng Phet','62',1211),(4644,'Kanchanaburi','71',1211),(4645,'Khon Kaen','40',1211),(4646,'Krabi','81',1211),(4647,'Lampang','52',1211),(4648,'Lamphun','51',1211),(4649,'Loei','42',1211),(4650,'Lop Buri','16',1211),(4651,'Mae Hong Son','58',1211),(4652,'Maha Sarakham','44',1211),(4653,'Mukdahan','49',1211),(4654,'Nakhon Nayok','26',1211),(4655,'Nakhon Pathom','73',1211),(4656,'Nakhon Phanom','48',1211),(4657,'Nakhon Ratchasima','30',1211),(4658,'Nakhon Sawan','60',1211),(4659,'Nakhon Si Thammarat','80',1211),(4660,'Nan','55',1211),(4661,'Narathiwat','96',1211),(4662,'Nong Bua Lam Phu','39',1211),(4663,'Nong Khai','43',1211),(4664,'Nonthaburi','12',1211),(4665,'Pathum Thani','13',1211),(4666,'Pattani','94',1211),(4667,'Phangnga','82',1211),(4668,'Phatthalung','93',1211),(4669,'Phayao','56',1211),(4670,'Phetchabun','67',1211),(4671,'Phetchaburi','76',1211),(4672,'Phichit','66',1211),(4673,'Phitsanulok','65',1211),(4674,'Phrae','54',1211),(4675,'Phra Nakhon Si Ayutthaya','14',1211),(4676,'Phaket','83',1211),(4677,'Prachin Buri','25',1211),(4678,'Prachuap Khiri Khan','77',1211),(4679,'Ranong','85',1211),(4680,'Ratchaburi','70',1211),(4681,'Rayong','21',1211),(4682,'Roi Et','45',1211),(4683,'Sa Kaeo','27',1211),(4684,'Sakon Nakhon','47',1211),(4685,'Samut Prakan','11',1211),(4686,'Samut Sakhon','74',1211),(4687,'Samut Songkhram','75',1211),(4688,'Saraburi','19',1211),(4689,'Satun','91',1211),(4690,'Sing Buri','17',1211),(4691,'Si Sa Ket','33',1211),(4692,'Songkhla','90',1211),(4693,'Sukhothai','64',1211),(4694,'Suphan Buri','72',1211),(4695,'Surat Thani','84',1211),(4696,'Surin','32',1211),(4697,'Tak','63',1211),(4698,'Trang','92',1211),(4699,'Trat','23',1211),(4700,'Ubon Ratchathani','34',1211),(4701,'Udon Thani','41',1211),(4702,'Uthai Thani','61',1211),(4703,'Uttaradit','53',1211),(4704,'Yala','95',1211),(4705,'Yasothon','35',1211),(4706,'Sughd','SU',1209),(4707,'Khatlon','KT',1209),(4708,'Gorno-Badakhshan','GB',1209),(4709,'Ahal','A',1220),(4710,'Balkan','B',1220),(4711,'Dasoguz','D',1220),(4712,'Lebap','L',1220),(4713,'Mary','M',1220),(4714,'Béja','31',1218),(4715,'Ben Arous','13',1218),(4716,'Bizerte','23',1218),(4717,'Gabès','81',1218),(4718,'Gafsa','71',1218),(4719,'Jendouba','32',1218),(4720,'Kairouan','41',1218),(4721,'Rasserine','42',1218),(4722,'Kebili','73',1218),(4723,'L\'Ariana','12',1218),(4724,'Le Ref','33',1218),(4725,'Mahdia','53',1218),(4726,'La Manouba','14',1218),(4727,'Medenine','82',1218),(4728,'Moneatir','52',1218),(4729,'Naboul','21',1218),(4730,'Sfax','61',1218),(4731,'Sidi Bouxid','43',1218),(4732,'Siliana','34',1218),(4733,'Sousse','51',1218),(4734,'Tataouine','83',1218),(4735,'Tozeur','72',1218),(4736,'Tunis','11',1218),(4737,'Zaghouan','22',1218),(4738,'Adana','01',1219),(4739,'Ad yaman','02',1219),(4740,'Afyon','03',1219),(4741,'Ag r','04',1219),(4742,'Aksaray','68',1219),(4743,'Amasya','05',1219),(4744,'Ankara','06',1219),(4745,'Antalya','07',1219),(4746,'Ardahan','75',1219),(4747,'Artvin','08',1219),(4748,'Aydin','09',1219),(4749,'Bal kesir','10',1219),(4750,'Bartin','74',1219),(4751,'Batman','72',1219),(4752,'Bayburt','69',1219),(4753,'Bilecik','11',1219),(4754,'Bingol','12',1219),(4755,'Bitlis','13',1219),(4756,'Bolu','14',1219),(4757,'Burdur','15',1219),(4758,'Bursa','16',1219),(4759,'Canakkale','17',1219),(4760,'Cankir','18',1219),(4761,'Corum','19',1219),(4762,'Denizli','20',1219),(4763,'Diyarbakir','21',1219),(4764,'Duzce','81',1219),(4765,'Edirne','22',1219),(4766,'Elazig','23',1219),(4767,'Erzincan','24',1219),(4768,'Erzurum','25',1219),(4769,'Eskis\'ehir','26',1219),(4770,'Gaziantep','27',1219),(4771,'Giresun','28',1219),(4772,'Gms\'hane','29',1219),(4773,'Hakkari','30',1219),(4774,'Hatay','31',1219),(4775,'Igidir','76',1219),(4776,'Isparta','32',1219),(4777,'Icel','33',1219),(4778,'Istanbul','34',1219),(4779,'Izmir','35',1219),(4780,'Kahramanmaras','46',1219),(4781,'Karabk','78',1219),(4782,'Karaman','70',1219),(4783,'Kars','36',1219),(4784,'Kastamonu','37',1219),(4785,'Kayseri','38',1219),(4786,'Kirikkale','71',1219),(4787,'Kirklareli','39',1219),(4788,'Kirs\'ehir','40',1219),(4789,'Kilis','79',1219),(4790,'Kocaeli','41',1219),(4791,'Konya','42',1219),(4792,'Ktahya','43',1219),(4793,'Malatya','44',1219),(4794,'Manisa','45',1219),(4795,'Mardin','47',1219),(4796,'Mugila','48',1219),(4797,'Mus','49',1219),(4798,'Nevs\'ehir','50',1219),(4799,'Nigide','51',1219),(4800,'Ordu','52',1219),(4801,'Osmaniye','80',1219),(4802,'Rize','53',1219),(4803,'Sakarya','54',1219),(4804,'Samsun','55',1219),(4805,'Siirt','56',1219),(4806,'Sinop','57',1219),(4807,'Sivas','58',1219),(4808,'S\'anliurfa','63',1219),(4809,'S\'rnak','73',1219),(4810,'Tekirdag','59',1219),(4811,'Tokat','60',1219),(4812,'Trabzon','61',1219),(4813,'Tunceli','62',1219),(4814,'Us\'ak','64',1219),(4815,'Van','65',1219),(4816,'Yalova','77',1219),(4817,'Yozgat','66',1219),(4818,'Zonguldak','67',1219),(4819,'Couva-Tabaquite-Talparo','CTT',1217),(4820,'Diego Martin','DMN',1217),(4821,'Eastern Tobago','ETO',1217),(4822,'Penal-Debe','PED',1217),(4823,'Princes Town','PRT',1217),(4824,'Rio Claro-Mayaro','RCM',1217),(4825,'Sangre Grande','SGE',1217),(4826,'San Juan-Laventille','SJL',1217),(4827,'Siparia','SIP',1217),(4828,'Tunapuna-Piarco','TUP',1217),(4829,'Western Tobago','WTO',1217),(4830,'Arima','ARI',1217),(4831,'Chaguanas','CHA',1217),(4832,'Point Fortin','PTF',1217),(4833,'Port of Spain','POS',1217),(4834,'San Fernando','SFO',1217),(4835,'Aileu','AL',1063),(4836,'Ainaro','AN',1063),(4837,'Bacucau','BA',1063),(4838,'Bobonaro','BO',1063),(4839,'Cova Lima','CO',1063),(4840,'Dili','DI',1063),(4841,'Ermera','ER',1063),(4842,'Laulem','LA',1063),(4843,'Liquica','LI',1063),(4844,'Manatuto','MT',1063),(4845,'Manafahi','MF',1063),(4846,'Oecussi','OE',1063),(4847,'Viqueque','VI',1063),(4848,'Changhua County','CHA',1208),(4849,'Chiayi County','CYQ',1208),(4850,'Hsinchu County','HSQ',1208),(4851,'Hualien County','HUA',1208),(4852,'Ilan County','ILA',1208),(4853,'Kaohsiung County','KHQ',1208),(4854,'Miaoli County','MIA',1208),(4855,'Nantou County','NAN',1208),(4856,'Penghu County','PEN',1208),(4857,'Pingtung County','PIF',1208),(4858,'Taichung County','TXQ',1208),(4859,'Tainan County','TNQ',1208),(4860,'Taipei County','TPQ',1208),(4861,'Taitung County','TTT',1208),(4862,'Taoyuan County','TAO',1208),(4863,'Yunlin Conuty','YUN',1208),(4864,'Keelung City','KEE',1208),(4865,'Arusha','01',1210),(4866,'Dar-es-Salaam','02',1210),(4867,'Dodoma','03',1210),(4868,'Iringa','04',1210),(4869,'Kagera','05',1210),(4870,'Kaskazini Pemba','06',1210),(4871,'Kaskazini Unguja','07',1210),(4872,'Xigoma','08',1210),(4873,'Kilimanjaro','09',1210),(4874,'Rusini Pemba','10',1210),(4875,'Kusini Unguja','11',1210),(4876,'Lindi','12',1210),(4877,'Manyara','26',1210),(4878,'Mara','13',1210),(4879,'Mbeya','14',1210),(4880,'Mjini Magharibi','15',1210),(4881,'Morogoro','16',1210),(4882,'Mtwara','17',1210),(4883,'Pwani','19',1210),(4884,'Rukwa','20',1210),(4885,'Ruvuma','21',1210),(4886,'Shinyanga','22',1210),(4887,'Singida','23',1210),(4888,'Tabora','24',1210),(4889,'Tanga','25',1210),(4890,'Cherkas\'ka Oblast\'','71',1224),(4891,'Chernihivs\'ka Oblast\'','74',1224),(4892,'Chernivets\'ka Oblast\'','77',1224),(4893,'Dnipropetrovs\'ka Oblast\'','12',1224),(4894,'Donets\'ka Oblast\'','14',1224),(4895,'Ivano-Frankivs\'ka Oblast\'','26',1224),(4896,'Kharkivs\'ka Oblast\'','63',1224),(4897,'Khersons\'ka Oblast\'','65',1224),(4898,'Khmel\'nyts\'ka Oblast\'','68',1224),(4899,'Kirovohrads\'ka Oblast\'','35',1224),(4900,'Kyivs\'ka Oblast\'','32',1224),(4901,'Luhans\'ka Oblast\'','09',1224),(4902,'L\'vivs\'ka Oblast\'','46',1224),(4903,'Mykolaivs\'ka Oblast\'','48',1224),(4904,'Odes \'ka Oblast\'','51',1224),(4905,'Poltavs\'ka Oblast\'','53',1224),(4906,'Rivnens\'ka Oblast\'','56',1224),(4907,'Sums \'ka Oblast\'','59',1224),(4908,'Ternopil\'s\'ka Oblast\'','61',1224),(4909,'Vinnyts\'ka Oblast\'','05',1224),(4910,'Volyos\'ka Oblast\'','07',1224),(4911,'Zakarpats\'ka Oblast\'','21',1224),(4912,'Zaporiz\'ka Oblast\'','23',1224),(4913,'Zhytomyrs\'ka Oblast\'','18',1224),(4914,'Respublika Krym','43',1224),(4915,'Kyiv','30',1224),(4916,'Sevastopol','40',1224),(4917,'Adjumani','301',1223),(4918,'Apac','302',1223),(4919,'Arua','303',1223),(4920,'Bugiri','201',1223),(4921,'Bundibugyo','401',1223),(4922,'Bushenyi','402',1223),(4923,'Busia','202',1223),(4924,'Gulu','304',1223),(4925,'Hoima','403',1223),(4926,'Iganga','203',1223),(4927,'Jinja','204',1223),(4928,'Kabale','404',1223),(4929,'Kabarole','405',1223),(4930,'Kaberamaido','213',1223),(4931,'Kalangala','101',1223),(4932,'Kampala','102',1223),(4933,'Kamuli','205',1223),(4934,'Kamwenge','413',1223),(4935,'Kanungu','414',1223),(4936,'Kapchorwa','206',1223),(4937,'Kasese','406',1223),(4938,'Katakwi','207',1223),(4939,'Kayunga','112',1223),(4940,'Kibaale','407',1223),(4941,'Kiboga','103',1223),(4942,'Kisoro','408',1223),(4943,'Kitgum','305',1223),(4944,'Kotido','306',1223),(4945,'Kumi','208',1223),(4946,'Kyenjojo','415',1223),(4947,'Lira','307',1223),(4948,'Luwero','104',1223),(4949,'Masaka','105',1223),(4950,'Masindi','409',1223),(4951,'Mayuge','214',1223),(4952,'Mbale','209',1223),(4953,'Mbarara','410',1223),(4954,'Moroto','308',1223),(4955,'Moyo','309',1223),(4956,'Mpigi','106',1223),(4957,'Mubende','107',1223),(4958,'Mukono','108',1223),(4959,'Nakapiripirit','311',1223),(4960,'Nakasongola','109',1223),(4961,'Nebbi','310',1223),(4962,'Ntungamo','411',1223),(4963,'Pader','312',1223),(4964,'Pallisa','210',1223),(4965,'Rakai','110',1223),(4966,'Rukungiri','412',1223),(4967,'Sembabule','111',1223),(4968,'Sironko','215',1223),(4969,'Soroti','211',1223),(4970,'Tororo','212',1223),(4971,'Wakiso','113',1223),(4972,'Yumbe','313',1223),(4973,'Baker Island','81',1227),(4974,'Howland Island','84',1227),(4975,'Jarvis Island','86',1227),(4976,'Johnston Atoll','67',1227),(4977,'Kingman Reef','89',1227),(4978,'Midway Islands','71',1227),(4979,'Navassa Island','76',1227),(4980,'Palmyra Atoll','95',1227),(4981,'Wake Ialand','79',1227),(4982,'Artigsa','AR',1229),(4983,'Canelones','CA',1229),(4984,'Cerro Largo','CL',1229),(4985,'Colonia','CO',1229),(4986,'Durazno','DU',1229),(4987,'Flores','FS',1229),(4988,'Lavalleja','LA',1229),(4989,'Maldonado','MA',1229),(4990,'Montevideo','MO',1229),(4991,'Paysandu','PA',1229),(4992,'Rivera','RV',1229),(4993,'Rocha','RO',1229),(4994,'Salto','SA',1229),(4995,'Soriano','SO',1229),(4996,'Tacuarembo','TA',1229),(4997,'Treinta y Tres','TT',1229),(4998,'Toshkent (city)','TK',1230),(4999,'Qoraqalpogiston Respublikasi','QR',1230),(5000,'Andijon','AN',1230),(5001,'Buxoro','BU',1230),(5002,'Farg\'ona','FA',1230),(5003,'Jizzax','JI',1230),(5004,'Khorazm','KH',1230),(5005,'Namangan','NG',1230),(5006,'Navoiy','NW',1230),(5007,'Qashqadaryo','QA',1230),(5008,'Samarqand','SA',1230),(5009,'Sirdaryo','SI',1230),(5010,'Surxondaryo','SU',1230),(5011,'Toshkent','TO',1230),(5012,'Xorazm','XO',1230),(5013,'Distrito Federal','A',1232),(5014,'Anzoategui','B',1232),(5015,'Apure','C',1232),(5016,'Aragua','D',1232),(5017,'Barinas','E',1232),(5018,'Carabobo','G',1232),(5019,'Cojedes','H',1232),(5020,'Falcon','I',1232),(5021,'Guarico','J',1232),(5022,'Lara','K',1232),(5023,'Merida','L',1232),(5024,'Miranda','M',1232),(5025,'Monagas','N',1232),(5026,'Nueva Esparta','O',1232),(5027,'Portuguesa','P',1232),(5028,'Tachira','S',1232),(5029,'Trujillo','T',1232),(5030,'Vargas','X',1232),(5031,'Yaracuy','U',1232),(5032,'Zulia','V',1232),(5033,'Delta Amacuro','Y',1232),(5034,'Dependencias Federales','W',1232),(5035,'An Giang','44',1233),(5036,'Ba Ria - Vung Tau','43',1233),(5037,'Bac Can','53',1233),(5038,'Bac Giang','54',1233),(5039,'Bac Lieu','55',1233),(5040,'Bac Ninh','56',1233),(5041,'Ben Tre','50',1233),(5042,'Binh Dinh','31',1233),(5043,'Binh Duong','57',1233),(5044,'Binh Phuoc','58',1233),(5045,'Binh Thuan','40',1233),(5046,'Ca Mau','59',1233),(5047,'Can Tho','48',1233),(5048,'Cao Bang','04',1233),(5049,'Da Nang, thanh pho','60',1233),(5050,'Dong Nai','39',1233),(5051,'Dong Thap','45',1233),(5052,'Gia Lai','30',1233),(5053,'Ha Giang','03',1233),(5054,'Ha Nam','63',1233),(5055,'Ha Noi, thu do','64',1233),(5056,'Ha Tay','15',1233),(5057,'Ha Tinh','23',1233),(5058,'Hai Duong','61',1233),(5059,'Hai Phong, thanh pho','62',1233),(5060,'Hoa Binh','14',1233),(5061,'Ho Chi Minh, thanh pho [Sai Gon]','65',1233),(5062,'Hung Yen','66',1233),(5063,'Khanh Hoa','34',1233),(5064,'Kien Giang','47',1233),(5065,'Kon Tum','28',1233),(5066,'Lai Chau','01',1233),(5067,'Lam Dong','35',1233),(5068,'Lang Son','09',1233),(5069,'Lao Cai','02',1233),(5070,'Long An','41',1233),(5071,'Nam Dinh','67',1233),(5072,'Nghe An','22',1233),(5073,'Ninh Binh','18',1233),(5074,'Ninh Thuan','36',1233),(5075,'Phu Tho','68',1233),(5076,'Phu Yen','32',1233),(5077,'Quang Binh','24',1233),(5078,'Quang Nam','27',1233),(5079,'Quang Ngai','29',1233),(5080,'Quang Ninh','13',1233),(5081,'Quang Tri','25',1233),(5082,'Soc Trang','52',1233),(5083,'Son La','05',1233),(5084,'Tay Ninh','37',1233),(5085,'Thai Binh','20',1233),(5086,'Thai Nguyen','69',1233),(5087,'Thanh Hoa','21',1233),(5088,'Thua Thien-Hue','26',1233),(5089,'Tien Giang','46',1233),(5090,'Tra Vinh','51',1233),(5091,'Tuyen Quang','07',1233),(5092,'Vinh Long','49',1233),(5093,'Vinh Phuc','70',1233),(5094,'Yen Bai','06',1233),(5095,'Malampa','MAP',1231),(5096,'Penama','PAM',1231),(5097,'Sanma','SAM',1231),(5098,'Shefa','SEE',1231),(5099,'Tafea','TAE',1231),(5100,'Torba','TOB',1231),(5101,'A\'ana','AA',1185),(5102,'Aiga-i-le-Tai','AL',1185),(5103,'Atua','AT',1185),(5104,'Fa\'aaaleleaga','FA',1185),(5105,'Gaga\'emauga','GE',1185),(5106,'Gagaifomauga','GI',1185),(5107,'Palauli','PA',1185),(5108,'Satupa\'itea','SA',1185),(5109,'Tuamasaga','TU',1185),(5110,'Va\'a-o-Fonoti','VF',1185),(5111,'Vaisigano','VS',1185),(5112,'Crna Gora','CG',1243),(5113,'Srbija','SR',1242),(5114,'Kosovo-Metohija','KM',1242),(5115,'Vojvodina','VO',1242),(5116,'Abyan','AB',1237),(5117,'Adan','AD',1237),(5118,'Ad Dali','DA',1237),(5119,'Al Bayda\'','BA',1237),(5120,'Al Hudaydah','MU',1237),(5121,'Al Mahrah','MR',1237),(5122,'Al Mahwit','MW',1237),(5123,'Amran','AM',1237),(5124,'Dhamar','DH',1237),(5125,'Hadramawt','HD',1237),(5126,'Hajjah','HJ',1237),(5127,'Ibb','IB',1237),(5128,'Lahij','LA',1237),(5129,'Ma\'rib','MA',1237),(5130,'Sa\'dah','SD',1237),(5131,'San\'a\'','SN',1237),(5132,'Shabwah','SH',1237),(5133,'Ta\'izz','TA',1237),(5134,'Eastern Cape','EC',1196),(5135,'Free State','FS',1196),(5136,'Gauteng','GT',1196),(5137,'Kwazulu-Natal','NL',1196),(5138,'Mpumalanga','MP',1196),(5139,'Northern Cape','NC',1196),(5140,'Limpopo','NP',1196),(5141,'Western Cape','WC',1196),(5142,'Copperbelt','08',1239),(5143,'Luapula','04',1239),(5144,'Lusaka','09',1239),(5145,'North-Western','06',1239),(5146,'Bulawayo','BU',1240),(5147,'Harare','HA',1240),(5148,'Manicaland','MA',1240),(5149,'Mashonaland Central','MC',1240),(5150,'Mashonaland East','ME',1240),(5151,'Mashonaland West','MW',1240),(5152,'Masvingo','MV',1240),(5153,'Matabeleland North','MN',1240),(5154,'Matabeleland South','MS',1240),(5155,'Midlands','MI',1240),(5156,'South Karelia','SK',1075),(5157,'South Ostrobothnia','SO',1075),(5158,'Etelä-Savo','ES',1075),(5159,'Häme','HH',1075),(5160,'Itä-Uusimaa','IU',1075),(5161,'Kainuu','KA',1075),(5162,'Central Ostrobothnia','CO',1075),(5163,'Central Finland','CF',1075),(5164,'Kymenlaakso','KY',1075),(5165,'Lapland','LA',1075),(5166,'Tampere Region','TR',1075),(5167,'Ostrobothnia','OB',1075),(5168,'North Karelia','NK',1075),(5169,'Nothern Ostrobothnia','NO',1075),(5170,'Northern Savo','NS',1075),(5171,'Päijät-Häme','PH',1075),(5172,'Satakunta','SK',1075),(5173,'Uusimaa','UM',1075),(5174,'South-West Finland','SW',1075),(5175,'Åland','AL',1075),(5176,'Limburg','LI',1152),(5177,'Central and Western','CW',1098),(5178,'Eastern','EA',1098),(5179,'Southern','SO',1098),(5180,'Wan Chai','WC',1098),(5181,'Kowloon City','KC',1098),(5182,'Kwun Tong','KU',1098),(5183,'Sham Shui Po','SS',1098),(5184,'Wong Tai Sin','WT',1098),(5185,'Yau Tsim Mong','YT',1098),(5186,'Islands','IS',1098),(5187,'Kwai Tsing','KI',1098),(5188,'North','NO',1098),(5189,'Sai Kung','SK',1098),(5190,'Sha Tin','ST',1098),(5191,'Tai Po','TP',1098),(5192,'Tsuen Wan','TW',1098),(5193,'Tuen Mun','TM',1098),(5194,'Yuen Long','YL',1098),(5195,'Manchester','MR',1108),(5196,'Al Manāmah (Al ‘Āşimah)','13',1016),(5197,'Al Janūbīyah','14',1016),(5199,'Al Wusţá','16',1016),(5200,'Ash Shamālīyah','17',1016),(5201,'Jenin','_A',1165),(5202,'Tubas','_B',1165),(5203,'Tulkarm','_C',1165),(5204,'Nablus','_D',1165),(5205,'Qalqilya','_E',1165),(5206,'Salfit','_F',1165),(5207,'Ramallah and Al-Bireh','_G',1165),(5208,'Jericho','_H',1165),(5209,'Jerusalem','_I',1165),(5210,'Bethlehem','_J',1165),(5211,'Hebron','_K',1165),(5212,'North Gaza','_L',1165),(5213,'Gaza','_M',1165),(5214,'Deir el-Balah','_N',1165),(5215,'Khan Yunis','_O',1165),(5216,'Rafah','_P',1165),(5217,'Brussels','BRU',1020),(5218,'Distrito Federal','DIF',1140),(5219,'Taichung City','TXG',1208),(5220,'Kaohsiung City','KHH',1208),(5221,'Taipei City','TPE',1208),(5222,'Chiayi City','CYI',1208),(5223,'Hsinchu City','HSZ',1208),(5224,'Tainan City','TNN',1208),(9000,'North West','NW',1196),(9986,'Tyne and Wear','TWR',1226),(9988,'Greater Manchester','GTM',1226),(9989,'Co Tyrone','TYR',1226),(9990,'West Yorkshire','WYK',1226),(9991,'South Yorkshire','SYK',1226),(9992,'Merseyside','MSY',1226),(9993,'Berkshire','BRK',1226),(9994,'West Midlands','WMD',1226),(9998,'West Glamorgan','WGM',1226),(9999,'London','LON',1226),(10000,'Carbonia-Iglesias','CI',1107),(10001,'Olbia-Tempio','OT',1107),(10002,'Medio Campidano','VS',1107),(10003,'Ogliastra','OG',1107),(10009,'Jura','39',1076),(10010,'Barletta-Andria-Trani','Bar',1107),(10011,'Fermo','Fer',1107),(10012,'Monza e Brianza','Mon',1107),(10013,'Clwyd','CWD',1226),(10014,'Dyfed','DFD',1226),(10015,'South Glamorgan','SGM',1226),(10016,'Artibonite','AR',1094),(10017,'Centre','CE',1094),(10018,'Nippes','NI',1094),(10019,'Nord','ND',1094),(10020,'La Rioja','F',1010),(10021,'Andorra la Vella','07',1005),(10022,'Canillo','02',1005),(10023,'Encamp','03',1005),(10024,'Escaldes-Engordany','08',1005),(10025,'La Massana','04',1005),(10026,'Ordino','05',1005),(10027,'Sant Julia de Loria','06',1005),(10028,'Abaco Islands','AB',1212),(10029,'Andros Island','AN',1212),(10030,'Berry Islands','BR',1212),(10031,'Eleuthera','EL',1212),(10032,'Grand Bahama','GB',1212),(10033,'Rum Cay','RC',1212),(10034,'San Salvador Island','SS',1212),(10035,'Kongo central','01',1050),(10036,'Kwango','02',1050),(10037,'Kwilu','03',1050),(10038,'Mai-Ndombe','04',1050),(10039,'Kasai','05',1050),(10040,'Lulua','06',1050),(10041,'Lomami','07',1050),(10042,'Sankuru','08',1050),(10043,'Ituri','09',1050),(10044,'Haut-Uele','10',1050),(10045,'Tshopo','11',1050),(10046,'Bas-Uele','12',1050),(10047,'Nord-Ubangi','13',1050),(10048,'Mongala','14',1050),(10049,'Sud-Ubangi','15',1050),(10050,'Tshuapa','16',1050),(10051,'Haut-Lomami','17',1050),(10052,'Lualaba','18',1050),(10053,'Haut-Katanga','19',1050),(10054,'Tanganyika','20',1050),(10055,'Toledo','TO',1198),(10056,'Córdoba','CO',1198),(10057,'Metropolitan Manila','MNL',1170),(10058,'La Paz','LP',1097),(10059,'Yinchuan','YN',1045),(10060,'Shizuishan','SZ',1045),(10061,'Wuzhong','WZ',1045),(10062,'Guyuan','GY',1045),(10063,'Zhongwei','ZW',1045),(10064,'Luxembourg','L',1126),(10065,'Aizkraukles novads','002',1119),(10066,'Jaunjelgavas novads','038',1119),(10067,'Pļaviņu novads','072',1119),(10068,'Kokneses novads','046',1119),(10069,'Neretas novads','065',1119),(10070,'Skrīveru novads','092',1119),(10071,'Alūksnes novads','007',1119),(10072,'Apes novads','009',1119),(10073,'Balvu novads','015',1119),(10074,'Viļakas novads','108',1119),(10075,'Baltinavas novads','014',1119),(10076,'Rugāju novads','082',1119),(10077,'Bauskas novads','016',1119),(10078,'Iecavas novads','034',1119),(10079,'Rundāles novads','083',1119),(10080,'Vecumnieku novads','105',1119),(10081,'Cēsu novads','022',1119),(10082,'Līgatnes novads','055',1119),(10083,'Amatas novads','008',1119),(10084,'Jaunpiebalgas novads','039',1119),(10085,'Priekuļu novads','075',1119),(10086,'Pārgaujas novads','070',1119),(10087,'Raunas novads','076',1119),(10088,'Vecpiebalgas novads','104',1119),(10089,'Daugavpils novads','025',1119),(10090,'Ilūkstes novads','036',1119),(10091,'Dobeles novads','026',1119),(10092,'Auces novads','010',1119),(10093,'Tērvetes novads','098',1119),(10094,'Gulbenes novads','033',1119),(10095,'Jelgavas novads','041',1119),(10096,'Ozolnieku novads','069',1119),(10097,'Jēkabpils novads','042',1119),(10098,'Aknīstes novads','004',1119),(10099,'Viesītes novads','107',1119),(10100,'Krustpils novads','049',1119),(10101,'Salas novads','085',1119),(10102,'Krāslavas novads','047',1119),(10103,'Dagdas novads','024',1119),(10104,'Aglonas novads','001',1119),(10105,'Kuldīgas novads','050',1119),(10106,'Skrundas novads','093',1119),(10107,'Alsungas novads','006',1119),(10108,'Aizputes novads','003',1119),(10109,'Durbes novads','028',1119),(10110,'Grobiņas novads','032',1119),(10111,'Pāvilostas novads','071',1119),(10112,'Priekules novads','074',1119),(10113,'Nīcas novads','066',1119),(10114,'Rucavas novads','081',1119),(10115,'Vaiņodes novads','100',1119),(10116,'Limbažu novads','054',1119),(10117,'Alojas novads','005',1119),(10118,'Salacgrīvas novads','086',1119),(10119,'Ludzas novads','058',1119),(10120,'Kārsavas novads','044',1119),(10121,'Zilupes novads','110',1119),(10122,'Ciblas novads','023',1119),(10123,'Madonas novads','059',1119),(10124,'Cesvaines novads','021',1119),(10125,'Lubānas novads','057',1119),(10126,'Varakļānu novads','102',1119),(10127,'Ērgļu novads','030',1119),(10128,'Ogres novads','067',1119),(10129,'Ikšķiles novads','035',1119),(10130,'Ķeguma novads','051',1119),(10131,'Lielvārdes novads','053',1119),(10132,'Preiļu novads','073',1119),(10133,'Līvānu novads','056',1119),(10134,'Riebiņu novads','078',1119),(10135,'Vārkavas novads','103',1119),(10136,'Rēzeknes novads','077',1119),(10137,'Viļānu novads','109',1119),(10138,'Baldones novads','013',1119),(10139,'Ķekavas novads','052',1119),(10140,'Olaines novads','068',1119),(10141,'Salaspils novads','087',1119),(10142,'Saulkrastu novads','089',1119),(10143,'Siguldas novads','091',1119),(10144,'Inčukalna novads','037',1119),(10145,'Ādažu novads','011',1119),(10146,'Babītes novads','012',1119),(10147,'Carnikavas novads','020',1119),(10148,'Garkalnes novads','031',1119),(10149,'Krimuldas novads','048',1119),(10150,'Mālpils novads','061',1119),(10151,'Mārupes novads','062',1119),(10152,'Ropažu novads','080',1119),(10153,'Sējas novads','090',1119),(10154,'Stopiņu novads','095',1119),(10155,'Saldus novads','088',1119),(10156,'Brocēnu novads','018',1119),(10157,'Talsu novads','097',1119),(10158,'Dundagas novads','027',1119),(10159,'Mērsraga novads','063',1119),(10160,'Rojas novads','079',1119),(10161,'Tukuma novads','099',1119),(10162,'Kandavas novads','043',1119),(10163,'Engures novads','029',1119),(10164,'Jaunpils novads','040',1119),(10165,'Valkas novads','101',1119),(10166,'Smiltenes novads','094',1119),(10167,'Strenču novads','096',1119),(10168,'Kocēnu novads','045',1119),(10169,'Mazsalacas novads','060',1119),(10170,'Rūjienas novads','084',1119),(10171,'Beverīnas novads','017',1119),(10172,'Burtnieku novads','019',1119),(10173,'Naukšēnu novads','064',1119),(10174,'Ventspils novads','106',1119),(10175,'Jēkabpils','JKB',1119),(10176,'Valmiera','VMR',1119),(10177,'Florida','FL',1229),(10178,'Rio Negro','RN',1229),(10179,'San Jose','SJ',1229),(10180,'Plateau','PL',1157),(10181,'Pieria','61',1085),(10182,'Los Rios','LR',1044),(10183,'Arica y Parinacota','AP',1044),(10184,'Amazonas','AMA',1169),(10185,'Kalimantan Tengah','KT',1102),(10186,'Sulawesi Barat','SR',1102),(10187,'Kalimantan Utara','KU',1102),(10188,'Ankaran','86',1193),(10189,'Apače','87',1193),(10190,'Cirkulane','88',1193),(10191,'Gorje','89',1193),(10192,'Kostanjevica na Krki','90',1193),(10193,'Log-Dragomer','91',1193),(10194,'Makole','92',1193),(10195,'Mirna','93',1193),(10196,'Mokronog-Trebelno','94',1193),(10197,'Odranci','95',1193),(10198,'Oplotnica','96',1193),(10199,'Ormož','97',1193),(10200,'Osilnica','98',1193),(10201,'Pesnica','99',1193),(10202,'Piran','100',1193),(10203,'Pivka','101',1193),(10204,'Podčetrtek','102',1193),(10205,'Podlehnik','103',1193),(10206,'Podvelka','104',1193),(10207,'Poljčane','105',1193),(10208,'Polzela','106',1193),(10209,'Postojna','107',1193),(10210,'Prebold','108',1193),(10211,'Preddvor','109',1193),(10212,'Prevalje','110',1193),(10213,'Ptuj','111',1193),(10214,'Puconci','112',1193),(10215,'Rače-Fram','113',1193),(10216,'Radeče','114',1193),(10217,'Radenci','115',1193),(10218,'Radlje ob Dravi','139',1193),(10219,'Radovljica','145',1193),(10220,'Ravne na Koroškem','171',1193),(10221,'Razkrižje','172',1193),(10222,'Rečica ob Savinji','173',1193),(10223,'Renče-Vogrsko','174',1193),(10224,'Ribnica','175',1193),(10225,'Ribnica na Pohorju','176',1193),(10226,'Rogaška Slatina','177',1193),(10227,'Rogašovci','178',1193),(10228,'Rogatec','179',1193),(10229,'Ruše','180',1193),(10230,'Selnica ob Dravi','195',1193),(10231,'Semič','196',1193),(10232,'Šentrupert','197',1193),(10233,'Sevnica','198',1193),(10234,'Sežana','199',1193),(10235,'Slovenj Gradec','200',1193),(10236,'Slovenska Bistrica','201',1193),(10237,'Slovenske Konjice','202',1193),(10238,'Šmarješke Toplice','203',1193),(10239,'Sodražica','204',1193),(10240,'Solčava','205',1193),(10241,'Središče ob Dravi','206',1193),(10242,'Starše','207',1193),(10243,'Straža','208',1193),(10244,'Sveta Trojica v Slovenskih goricah','209',1193),(10245,'Sveti Jurij v Slovenskih goricah','210',1193),(10246,'Sveti Tomaž','211',1193),(10247,'Vodice','212',1193); +INSERT INTO `civicrm_state_province` (`id`, `name`, `abbreviation`, `country_id`) VALUES (1000,'Alabama','AL',1228),(1001,'Alaska','AK',1228),(1002,'Arizona','AZ',1228),(1003,'Arkansas','AR',1228),(1004,'California','CA',1228),(1005,'Colorado','CO',1228),(1006,'Connecticut','CT',1228),(1007,'Delaware','DE',1228),(1008,'Florida','FL',1228),(1009,'Georgia','GA',1228),(1010,'Hawaii','HI',1228),(1011,'Idaho','ID',1228),(1012,'Illinois','IL',1228),(1013,'Indiana','IN',1228),(1014,'Iowa','IA',1228),(1015,'Kansas','KS',1228),(1016,'Kentucky','KY',1228),(1017,'Louisiana','LA',1228),(1018,'Maine','ME',1228),(1019,'Maryland','MD',1228),(1020,'Massachusetts','MA',1228),(1021,'Michigan','MI',1228),(1022,'Minnesota','MN',1228),(1023,'Mississippi','MS',1228),(1024,'Missouri','MO',1228),(1025,'Montana','MT',1228),(1026,'Nebraska','NE',1228),(1027,'Nevada','NV',1228),(1028,'New Hampshire','NH',1228),(1029,'New Jersey','NJ',1228),(1030,'New Mexico','NM',1228),(1031,'New York','NY',1228),(1032,'North Carolina','NC',1228),(1033,'North Dakota','ND',1228),(1034,'Ohio','OH',1228),(1035,'Oklahoma','OK',1228),(1036,'Oregon','OR',1228),(1037,'Pennsylvania','PA',1228),(1038,'Rhode Island','RI',1228),(1039,'South Carolina','SC',1228),(1040,'South Dakota','SD',1228),(1041,'Tennessee','TN',1228),(1042,'Texas','TX',1228),(1043,'Utah','UT',1228),(1044,'Vermont','VT',1228),(1045,'Virginia','VA',1228),(1046,'Washington','WA',1228),(1047,'West Virginia','WV',1228),(1048,'Wisconsin','WI',1228),(1049,'Wyoming','WY',1228),(1050,'District of Columbia','DC',1228),(1052,'American Samoa','AS',1228),(1053,'Guam','GU',1228),(1055,'Northern Mariana Islands','MP',1228),(1056,'Puerto Rico','PR',1228),(1057,'Virgin Islands','VI',1228),(1058,'United States Minor Outlying Islands','UM',1228),(1059,'Armed Forces Europe','AE',1228),(1060,'Armed Forces Americas','AA',1228),(1061,'Armed Forces Pacific','AP',1228),(1100,'Alberta','AB',1039),(1101,'British Columbia','BC',1039),(1102,'Manitoba','MB',1039),(1103,'New Brunswick','NB',1039),(1104,'Newfoundland and Labrador','NL',1039),(1105,'Northwest Territories','NT',1039),(1106,'Nova Scotia','NS',1039),(1107,'Nunavut','NU',1039),(1108,'Ontario','ON',1039),(1109,'Prince Edward Island','PE',1039),(1110,'Quebec','QC',1039),(1111,'Saskatchewan','SK',1039),(1112,'Yukon Territory','YT',1039),(1200,'Maharashtra','MM',1101),(1201,'Karnataka','KA',1101),(1202,'Andhra Pradesh','AP',1101),(1203,'Arunachal Pradesh','AR',1101),(1204,'Assam','AS',1101),(1205,'Bihar','BR',1101),(1206,'Chhattisgarh','CH',1101),(1207,'Goa','GA',1101),(1208,'Gujarat','GJ',1101),(1209,'Haryana','HR',1101),(1210,'Himachal Pradesh','HP',1101),(1211,'Jammu and Kashmir','JK',1101),(1212,'Jharkhand','JH',1101),(1213,'Kerala','KL',1101),(1214,'Madhya Pradesh','MP',1101),(1215,'Manipur','MN',1101),(1216,'Meghalaya','ML',1101),(1217,'Mizoram','MZ',1101),(1218,'Nagaland','NL',1101),(1219,'Orissa','OR',1101),(1220,'Punjab','PB',1101),(1221,'Rajasthan','RJ',1101),(1222,'Sikkim','SK',1101),(1223,'Tamil Nadu','TN',1101),(1224,'Tripura','TR',1101),(1225,'Uttaranchal','UL',1101),(1226,'Uttar Pradesh','UP',1101),(1227,'West Bengal','WB',1101),(1228,'Andaman and Nicobar Islands','AN',1101),(1229,'Dadra and Nagar Haveli','DN',1101),(1230,'Daman and Diu','DD',1101),(1231,'Delhi','DL',1101),(1232,'Lakshadweep','LD',1101),(1233,'Pondicherry','PY',1101),(1300,'mazowieckie','MZ',1172),(1301,'pomorskie','PM',1172),(1302,'dolnośląskie','DS',1172),(1303,'kujawsko-pomorskie','KP',1172),(1304,'lubelskie','LU',1172),(1305,'lubuskie','LB',1172),(1306,'łódzkie','LD',1172),(1307,'małopolskie','MA',1172),(1308,'opolskie','OP',1172),(1309,'podkarpackie','PK',1172),(1310,'podlaskie','PD',1172),(1311,'śląskie','SL',1172),(1312,'świętokrzyskie','SK',1172),(1313,'warmińsko-mazurskie','WN',1172),(1314,'wielkopolskie','WP',1172),(1315,'zachodniopomorskie','ZP',1172),(1500,'Abu Zaby','AZ',1225),(1501,'\'Ajman','AJ',1225),(1502,'Al Fujayrah','FU',1225),(1503,'Ash Shariqah','SH',1225),(1504,'Dubayy','DU',1225),(1505,'Ra\'s al Khaymah','RK',1225),(1506,'Dac Lac','33',1233),(1507,'Umm al Qaywayn','UQ',1225),(1508,'Badakhshan','BDS',1001),(1509,'Badghis','BDG',1001),(1510,'Baghlan','BGL',1001),(1511,'Balkh','BAL',1001),(1512,'Bamian','BAM',1001),(1513,'Farah','FRA',1001),(1514,'Faryab','FYB',1001),(1515,'Ghazni','GHA',1001),(1516,'Ghowr','GHO',1001),(1517,'Helmand','HEL',1001),(1518,'Herat','HER',1001),(1519,'Jowzjan','JOW',1001),(1520,'Kabul','KAB',1001),(1521,'Kandahar','KAN',1001),(1522,'Kapisa','KAP',1001),(1523,'Khowst','KHO',1001),(1524,'Konar','KNR',1001),(1525,'Kondoz','KDZ',1001),(1526,'Laghman','LAG',1001),(1527,'Lowgar','LOW',1001),(1528,'Nangrahar','NAN',1001),(1529,'Nimruz','NIM',1001),(1530,'Nurestan','NUR',1001),(1531,'Oruzgan','ORU',1001),(1532,'Paktia','PIA',1001),(1533,'Paktika','PKA',1001),(1534,'Parwan','PAR',1001),(1535,'Samangan','SAM',1001),(1536,'Sar-e Pol','SAR',1001),(1537,'Takhar','TAK',1001),(1538,'Wardak','WAR',1001),(1539,'Zabol','ZAB',1001),(1540,'Berat','BR',1002),(1541,'Bulqizë','BU',1002),(1542,'Delvinë','DL',1002),(1543,'Devoll','DV',1002),(1544,'Dibër','DI',1002),(1545,'Durrës','DR',1002),(1546,'Elbasan','EL',1002),(1547,'Fier','FR',1002),(1548,'Gramsh','GR',1002),(1549,'Gjirokastër','GJ',1002),(1550,'Has','HA',1002),(1551,'Kavajë','KA',1002),(1552,'Kolonjë','ER',1002),(1553,'Korçë','KO',1002),(1554,'Krujë','KR',1002),(1555,'Kuçovë','KC',1002),(1556,'Kukës','KU',1002),(1557,'Kurbin','KB',1002),(1558,'Lezhë','LE',1002),(1559,'Librazhd','LB',1002),(1560,'Lushnjë','LU',1002),(1561,'Malësi e Madhe','MM',1002),(1562,'Mallakastër','MK',1002),(1563,'Mat','MT',1002),(1564,'Mirditë','MR',1002),(1565,'Peqin','PQ',1002),(1566,'Përmet','PR',1002),(1567,'Pogradec','PG',1002),(1568,'Pukë','PU',1002),(1569,'Sarandë','SR',1002),(1570,'Skrapar','SK',1002),(1571,'Shkodër','SH',1002),(1572,'Tepelenë','TE',1002),(1573,'Tiranë','TR',1002),(1574,'Tropojë','TP',1002),(1575,'Vlorë','VL',1002),(1576,'Erevan','ER',1011),(1577,'Aragacotn','AG',1011),(1578,'Ararat','AR',1011),(1579,'Armavir','AV',1011),(1580,'Gegarkunik\'','GR',1011),(1581,'Kotayk\'','KT',1011),(1582,'Lory','LO',1011),(1583,'Sirak','SH',1011),(1584,'Syunik\'','SU',1011),(1585,'Tavus','TV',1011),(1586,'Vayoc Jor','VD',1011),(1587,'Bengo','BGO',1006),(1588,'Benguela','BGU',1006),(1589,'Bie','BIE',1006),(1590,'Cabinda','CAB',1006),(1591,'Cuando-Cubango','CCU',1006),(1592,'Cuanza Norte','CNO',1006),(1593,'Cuanza Sul','CUS',1006),(1594,'Cunene','CNN',1006),(1595,'Huambo','HUA',1006),(1596,'Huila','HUI',1006),(1597,'Luanda','LUA',1006),(1598,'Lunda Norte','LNO',1006),(1599,'Lunda Sul','LSU',1006),(1600,'Malange','MAL',1006),(1601,'Moxico','MOX',1006),(1602,'Namibe','NAM',1006),(1603,'Uige','UIG',1006),(1604,'Zaire','ZAI',1006),(1605,'Capital federal','C',1010),(1606,'Buenos Aires','B',1010),(1607,'Catamarca','K',1010),(1608,'Cordoba','X',1010),(1609,'Corrientes','W',1010),(1610,'Chaco','H',1010),(1611,'Chubut','U',1010),(1612,'Entre Rios','E',1010),(1613,'Formosa','P',1010),(1614,'Jujuy','Y',1010),(1615,'La Pampa','L',1010),(1616,'Mendoza','M',1010),(1617,'Misiones','N',1010),(1618,'Neuquen','Q',1010),(1619,'Rio Negro','R',1010),(1620,'Salta','A',1010),(1621,'San Juan','J',1010),(1622,'San Luis','D',1010),(1623,'Santa Cruz','Z',1010),(1624,'Santa Fe','S',1010),(1625,'Santiago del Estero','G',1010),(1626,'Tierra del Fuego','V',1010),(1627,'Tucuman','T',1010),(1628,'Burgenland','1',1014),(1629,'Kärnten','2',1014),(1630,'Niederosterreich','3',1014),(1631,'Oberosterreich','4',1014),(1632,'Salzburg','5',1014),(1633,'Steiermark','6',1014),(1634,'Tirol','7',1014),(1635,'Vorarlberg','8',1014),(1636,'Wien','9',1014),(1637,'Australian Antarctic Territory','AAT',1008),(1638,'Australian Capital Territory','ACT',1013),(1639,'Northern Territory','NT',1013),(1640,'New South Wales','NSW',1013),(1641,'Queensland','QLD',1013),(1642,'South Australia','SA',1013),(1643,'Tasmania','TAS',1013),(1644,'Victoria','VIC',1013),(1645,'Western Australia','WA',1013),(1646,'Naxcivan','NX',1015),(1647,'Ali Bayramli','AB',1015),(1648,'Baki','BA',1015),(1649,'Ganca','GA',1015),(1650,'Lankaran','LA',1015),(1651,'Mingacevir','MI',1015),(1652,'Naftalan','NA',1015),(1653,'Saki','SA',1015),(1654,'Sumqayit','SM',1015),(1655,'Susa','SS',1015),(1656,'Xankandi','XA',1015),(1657,'Yevlax','YE',1015),(1658,'Abseron','ABS',1015),(1659,'Agcabadi','AGC',1015),(1660,'Agdam','AGM',1015),(1661,'Agdas','AGS',1015),(1662,'Agstafa','AGA',1015),(1663,'Agsu','AGU',1015),(1664,'Astara','AST',1015),(1665,'Babak','BAB',1015),(1666,'Balakan','BAL',1015),(1667,'Barda','BAR',1015),(1668,'Beylagan','BEY',1015),(1669,'Bilasuvar','BIL',1015),(1670,'Cabrayll','CAB',1015),(1671,'Calilabad','CAL',1015),(1672,'Culfa','CUL',1015),(1673,'Daskasan','DAS',1015),(1674,'Davaci','DAV',1015),(1675,'Fuzuli','FUZ',1015),(1676,'Gadabay','GAD',1015),(1677,'Goranboy','GOR',1015),(1678,'Goycay','GOY',1015),(1679,'Haciqabul','HAC',1015),(1680,'Imisli','IMI',1015),(1681,'Ismayilli','ISM',1015),(1682,'Kalbacar','KAL',1015),(1683,'Kurdamir','KUR',1015),(1684,'Lacin','LAC',1015),(1685,'Lerik','LER',1015),(1686,'Masalli','MAS',1015),(1687,'Neftcala','NEF',1015),(1688,'Oguz','OGU',1015),(1689,'Ordubad','ORD',1015),(1690,'Qabala','QAB',1015),(1691,'Qax','QAX',1015),(1692,'Qazax','QAZ',1015),(1693,'Qobustan','QOB',1015),(1694,'Quba','QBA',1015),(1695,'Qubadli','QBI',1015),(1696,'Qusar','QUS',1015),(1697,'Saatli','SAT',1015),(1698,'Sabirabad','SAB',1015),(1699,'Sadarak','SAD',1015),(1700,'Sahbuz','SAH',1015),(1701,'Salyan','SAL',1015),(1702,'Samaxi','SMI',1015),(1703,'Samkir','SKR',1015),(1704,'Samux','SMX',1015),(1705,'Sarur','SAR',1015),(1706,'Siyazan','SIY',1015),(1707,'Tartar','TAR',1015),(1708,'Tovuz','TOV',1015),(1709,'Ucar','UCA',1015),(1710,'Xacmaz','XAC',1015),(1711,'Xanlar','XAN',1015),(1712,'Xizi','XIZ',1015),(1713,'Xocali','XCI',1015),(1714,'Xocavand','XVD',1015),(1715,'Yardimli','YAR',1015),(1716,'Zangilan','ZAN',1015),(1717,'Zaqatala','ZAQ',1015),(1718,'Zardab','ZAR',1015),(1719,'Federacija Bosna i Hercegovina','BIH',1026),(1720,'Republika Srpska','SRP',1026),(1721,'Bagerhat zila','05',1017),(1722,'Bandarban zila','01',1017),(1723,'Barguna zila','02',1017),(1724,'Barisal zila','06',1017),(1725,'Bhola zila','07',1017),(1726,'Bogra zila','03',1017),(1727,'Brahmanbaria zila','04',1017),(1728,'Chandpur zila','09',1017),(1729,'Chittagong zila','10',1017),(1730,'Chuadanga zila','12',1017),(1731,'Comilla zila','08',1017),(1732,'Cox\'s Bazar zila','11',1017),(1733,'Dhaka zila','13',1017),(1734,'Dinajpur zila','14',1017),(1735,'Faridpur zila','15',1017),(1736,'Feni zila','16',1017),(1737,'Gaibandha zila','19',1017),(1738,'Gazipur zila','18',1017),(1739,'Gopalganj zila','17',1017),(1740,'Habiganj zila','20',1017),(1741,'Jaipurhat zila','24',1017),(1742,'Jamalpur zila','21',1017),(1743,'Jessore zila','22',1017),(1744,'Jhalakati zila','25',1017),(1745,'Jhenaidah zila','23',1017),(1746,'Khagrachari zila','29',1017),(1747,'Khulna zila','27',1017),(1748,'Kishorganj zila','26',1017),(1749,'Kurigram zila','28',1017),(1750,'Kushtia zila','30',1017),(1751,'Lakshmipur zila','31',1017),(1752,'Lalmonirhat zila','32',1017),(1753,'Madaripur zila','36',1017),(1754,'Magura zila','37',1017),(1755,'Manikganj zila','33',1017),(1756,'Meherpur zila','39',1017),(1757,'Moulvibazar zila','38',1017),(1758,'Munshiganj zila','35',1017),(1759,'Mymensingh zila','34',1017),(1760,'Naogaon zila','48',1017),(1761,'Narail zila','43',1017),(1762,'Narayanganj zila','40',1017),(1763,'Narsingdi zila','42',1017),(1764,'Natore zila','44',1017),(1765,'Nawabganj zila','45',1017),(1766,'Netrakona zila','41',1017),(1767,'Nilphamari zila','46',1017),(1768,'Noakhali zila','47',1017),(1769,'Pabna zila','49',1017),(1770,'Panchagarh zila','52',1017),(1771,'Patuakhali zila','51',1017),(1772,'Pirojpur zila','50',1017),(1773,'Rajbari zila','53',1017),(1774,'Rajshahi zila','54',1017),(1775,'Rangamati zila','56',1017),(1776,'Rangpur zila','55',1017),(1777,'Satkhira zila','58',1017),(1778,'Shariatpur zila','62',1017),(1779,'Sherpur zila','57',1017),(1780,'Sirajganj zila','59',1017),(1781,'Sunamganj zila','61',1017),(1782,'Sylhet zila','60',1017),(1783,'Tangail zila','63',1017),(1784,'Thakurgaon zila','64',1017),(1785,'Antwerpen','VAN',1020),(1786,'Brabant Wallon','WBR',1020),(1787,'Hainaut','WHT',1020),(1788,'Liege','WLG',1020),(1789,'Limburg','VLI',1020),(1790,'Luxembourg','WLX',1020),(1791,'Namur','WNA',1020),(1792,'Oost-Vlaanderen','VOV',1020),(1793,'Vlaams-Brabant','VBR',1020),(1794,'West-Vlaanderen','VWV',1020),(1795,'Bale','BAL',1034),(1796,'Bam','BAM',1034),(1797,'Banwa','BAN',1034),(1798,'Bazega','BAZ',1034),(1799,'Bougouriba','BGR',1034),(1800,'Boulgou','BLG',1034),(1801,'Boulkiemde','BLK',1034),(1802,'Comoe','COM',1034),(1803,'Ganzourgou','GAN',1034),(1804,'Gnagna','GNA',1034),(1805,'Gourma','GOU',1034),(1806,'Houet','HOU',1034),(1807,'Ioba','IOB',1034),(1808,'Kadiogo','KAD',1034),(1809,'Kenedougou','KEN',1034),(1810,'Komondjari','KMD',1034),(1811,'Kompienga','KMP',1034),(1812,'Kossi','KOS',1034),(1813,'Koulpulogo','KOP',1034),(1814,'Kouritenga','KOT',1034),(1815,'Kourweogo','KOW',1034),(1816,'Leraba','LER',1034),(1817,'Loroum','LOR',1034),(1818,'Mouhoun','MOU',1034),(1819,'Nahouri','NAO',1034),(1820,'Namentenga','NAM',1034),(1821,'Nayala','NAY',1034),(1822,'Noumbiel','NOU',1034),(1823,'Oubritenga','OUB',1034),(1824,'Oudalan','OUD',1034),(1825,'Passore','PAS',1034),(1826,'Poni','PON',1034),(1827,'Sanguie','SNG',1034),(1828,'Sanmatenga','SMT',1034),(1829,'Seno','SEN',1034),(1830,'Siasili','SIS',1034),(1831,'Soum','SOM',1034),(1832,'Sourou','SOR',1034),(1833,'Tapoa','TAP',1034),(1834,'Tui','TUI',1034),(1835,'Yagha','YAG',1034),(1836,'Yatenga','YAT',1034),(1837,'Ziro','ZIR',1034),(1838,'Zondoma','ZON',1034),(1839,'Zoundweogo','ZOU',1034),(1840,'Blagoevgrad','01',1033),(1841,'Burgas','02',1033),(1842,'Dobric','08',1033),(1843,'Gabrovo','07',1033),(1844,'Haskovo','26',1033),(1845,'Jambol','28',1033),(1846,'Kardzali','09',1033),(1847,'Kjstendil','10',1033),(1848,'Lovec','11',1033),(1849,'Montana','12',1033),(1850,'Pazardzik','13',1033),(1851,'Pernik','14',1033),(1852,'Pleven','15',1033),(1853,'Plovdiv','16',1033),(1854,'Razgrad','17',1033),(1855,'Ruse','18',1033),(1856,'Silistra','19',1033),(1857,'Sliven','20',1033),(1858,'Smoljan','21',1033),(1859,'Sofia','23',1033),(1860,'Stara Zagora','24',1033),(1861,'Sumen','27',1033),(1862,'Targoviste','25',1033),(1863,'Varna','03',1033),(1864,'Veliko Tarnovo','04',1033),(1865,'Vidin','05',1033),(1866,'Vraca','06',1033),(1867,'Al Hadd','01',1016),(1868,'Al Manamah','03',1016),(1869,'Al Mintaqah al Gharbiyah','10',1016),(1870,'Al Mintagah al Wusta','07',1016),(1871,'Al Mintaqah ash Shamaliyah','05',1016),(1872,'Al Muharraq','02',1016),(1873,'Ar Rifa','09',1016),(1874,'Jidd Hafs','04',1016),(1875,'Madluat Jamad','12',1016),(1876,'Madluat Isa','08',1016),(1877,'Mintaqat Juzur tawar','11',1016),(1878,'Sitrah','06',1016),(1879,'Bubanza','BB',1036),(1880,'Bujumbura','BJ',1036),(1881,'Bururi','BR',1036),(1882,'Cankuzo','CA',1036),(1883,'Cibitoke','CI',1036),(1884,'Gitega','GI',1036),(1885,'Karuzi','KR',1036),(1886,'Kayanza','KY',1036),(1887,'Makamba','MA',1036),(1888,'Muramvya','MU',1036),(1889,'Mwaro','MW',1036),(1890,'Ngozi','NG',1036),(1891,'Rutana','RT',1036),(1892,'Ruyigi','RY',1036),(1893,'Alibori','AL',1022),(1894,'Atakora','AK',1022),(1895,'Atlantique','AQ',1022),(1896,'Borgou','BO',1022),(1897,'Collines','CO',1022),(1898,'Donga','DO',1022),(1899,'Kouffo','KO',1022),(1900,'Littoral','LI',1022),(1901,'Mono','MO',1022),(1902,'Oueme','OU',1022),(1903,'Plateau','PL',1022),(1904,'Zou','ZO',1022),(1905,'Belait','BE',1032),(1906,'Brunei-Muara','BM',1032),(1907,'Temburong','TE',1032),(1908,'Tutong','TU',1032),(1909,'Cochabamba','C',1025),(1910,'Chuquisaca','H',1025),(1911,'El Beni','B',1025),(1912,'La Paz','L',1025),(1913,'Oruro','O',1025),(1914,'Pando','N',1025),(1915,'Potosi','P',1025),(1916,'Tarija','T',1025),(1917,'Acre','AC',1029),(1918,'Alagoas','AL',1029),(1919,'Amazonas','AM',1029),(1920,'Amapa','AP',1029),(1921,'Bahia','BA',1029),(1922,'Ceara','CE',1029),(1923,'Distrito Federal','DF',1029),(1924,'Espirito Santo','ES',1029),(1925,'Fernando de Noronha','FN',1029),(1926,'Goias','GO',1029),(1927,'Maranhao','MA',1029),(1928,'Minas Gerais','MG',1029),(1929,'Mato Grosso do Sul','MS',1029),(1930,'Mato Grosso','MT',1029),(1931,'Para','PA',1029),(1932,'Paraiba','PB',1029),(1933,'Pernambuco','PE',1029),(1934,'Piaui','PI',1029),(1935,'Parana','PR',1029),(1936,'Rio de Janeiro','RJ',1029),(1937,'Rio Grande do Norte','RN',1029),(1938,'Rondonia','RO',1029),(1939,'Roraima','RR',1029),(1940,'Rio Grande do Sul','RS',1029),(1941,'Santa Catarina','SC',1029),(1942,'Sergipe','SE',1029),(1943,'Sao Paulo','SP',1029),(1944,'Tocantins','TO',1029),(1945,'Acklins and Crooked Islands','AC',1212),(1946,'Bimini','BI',1212),(1947,'Cat Island','CI',1212),(1948,'Exuma','EX',1212),(1955,'Inagua','IN',1212),(1957,'Long Island','LI',1212),(1959,'Mayaguana','MG',1212),(1960,'New Providence','NP',1212),(1962,'Ragged Island','RI',1212),(1966,'Bumthang','33',1024),(1967,'Chhukha','12',1024),(1968,'Dagana','22',1024),(1969,'Gasa','GA',1024),(1970,'Ha','13',1024),(1971,'Lhuentse','44',1024),(1972,'Monggar','42',1024),(1973,'Paro','11',1024),(1974,'Pemagatshel','43',1024),(1975,'Punakha','23',1024),(1976,'Samdrup Jongkha','45',1024),(1977,'Samtee','14',1024),(1978,'Sarpang','31',1024),(1979,'Thimphu','15',1024),(1980,'Trashigang','41',1024),(1981,'Trashi Yangtse','TY',1024),(1982,'Trongsa','32',1024),(1983,'Tsirang','21',1024),(1984,'Wangdue Phodrang','24',1024),(1985,'Zhemgang','34',1024),(1986,'Central','CE',1027),(1987,'Ghanzi','GH',1027),(1988,'Kgalagadi','KG',1027),(1989,'Kgatleng','KL',1027),(1990,'Kweneng','KW',1027),(1991,'Ngamiland','NG',1027),(1992,'North-East','NE',1027),(1993,'North-West','NW',1027),(1994,'South-East','SE',1027),(1995,'Southern','SO',1027),(1996,'Brèsckaja voblasc\'','BR',1019),(1997,'Homel\'skaja voblasc\'','HO',1019),(1998,'Hrodzenskaja voblasc\'','HR',1019),(1999,'Mahilëuskaja voblasc\'','MA',1019),(2000,'Minskaja voblasc\'','MI',1019),(2001,'Vicebskaja voblasc\'','VI',1019),(2002,'Belize','BZ',1021),(2003,'Cayo','CY',1021),(2004,'Corozal','CZL',1021),(2005,'Orange Walk','OW',1021),(2006,'Stann Creek','SC',1021),(2007,'Toledo','TOL',1021),(2008,'Kinshasa','KN',1050),(2011,'Equateur','EQ',1050),(2014,'Kasai-Oriental','KE',1050),(2016,'Maniema','MA',1050),(2017,'Nord-Kivu','NK',1050),(2019,'Sud-Kivu','SK',1050),(2020,'Bangui','BGF',1042),(2021,'Bamingui-Bangoran','BB',1042),(2022,'Basse-Kotto','BK',1042),(2023,'Haute-Kotto','HK',1042),(2024,'Haut-Mbomou','HM',1042),(2025,'Kemo','KG',1042),(2026,'Lobaye','LB',1042),(2027,'Mambere-Kadei','HS',1042),(2028,'Mbomou','MB',1042),(2029,'Nana-Grebizi','KB',1042),(2030,'Nana-Mambere','NM',1042),(2031,'Ombella-Mpoko','MP',1042),(2032,'Ouaka','UK',1042),(2033,'Ouham','AC',1042),(2034,'Ouham-Pende','OP',1042),(2035,'Sangha-Mbaere','SE',1042),(2036,'Vakaga','VR',1042),(2037,'Brazzaville','BZV',1051),(2038,'Bouenza','11',1051),(2039,'Cuvette','8',1051),(2040,'Cuvette-Ouest','15',1051),(2041,'Kouilou','5',1051),(2042,'Lekoumou','2',1051),(2043,'Likouala','7',1051),(2044,'Niari','9',1051),(2045,'Plateaux','14',1051),(2046,'Pool','12',1051),(2047,'Sangha','13',1051),(2048,'Aargau','AG',1205),(2049,'Appenzell Innerrhoden','AI',1205),(2050,'Appenzell Ausserrhoden','AR',1205),(2051,'Bern','BE',1205),(2052,'Basel-Landschaft','BL',1205),(2053,'Basel-Stadt','BS',1205),(2054,'Fribourg','FR',1205),(2055,'Geneva','GE',1205),(2056,'Glarus','GL',1205),(2057,'Graubunden','GR',1205),(2058,'Jura','JU',1205),(2059,'Luzern','LU',1205),(2060,'Neuchatel','NE',1205),(2061,'Nidwalden','NW',1205),(2062,'Obwalden','OW',1205),(2063,'Sankt Gallen','SG',1205),(2064,'Schaffhausen','SH',1205),(2065,'Solothurn','SO',1205),(2066,'Schwyz','SZ',1205),(2067,'Thurgau','TG',1205),(2068,'Ticino','TI',1205),(2069,'Uri','UR',1205),(2070,'Vaud','VD',1205),(2071,'Valais','VS',1205),(2072,'Zug','ZG',1205),(2073,'Zurich','ZH',1205),(2074,'18 Montagnes','06',1054),(2075,'Agnebi','16',1054),(2076,'Bas-Sassandra','09',1054),(2077,'Denguele','10',1054),(2078,'Haut-Sassandra','02',1054),(2079,'Lacs','07',1054),(2080,'Lagunes','01',1054),(2081,'Marahoue','12',1054),(2082,'Moyen-Comoe','05',1054),(2083,'Nzi-Comoe','11',1054),(2084,'Savanes','03',1054),(2085,'Sud-Bandama','15',1054),(2086,'Sud-Comoe','13',1054),(2087,'Vallee du Bandama','04',1054),(2088,'Worodouqou','14',1054),(2089,'Zanzan','08',1054),(2090,'Aisen del General Carlos Ibanez del Campo','AI',1044),(2091,'Antofagasta','AN',1044),(2092,'Araucania','AR',1044),(2093,'Atacama','AT',1044),(2094,'Bio-Bio','BI',1044),(2095,'Coquimbo','CO',1044),(2096,'Libertador General Bernardo O\'Higgins','LI',1044),(2097,'Los Lagos','LL',1044),(2098,'Magallanes','MA',1044),(2099,'Maule','ML',1044),(2100,'Santiago Metropolitan','SM',1044),(2101,'Tarapaca','TA',1044),(2102,'Valparaiso','VS',1044),(2103,'Adamaoua','AD',1038),(2104,'Centre','CE',1038),(2105,'East','ES',1038),(2106,'Far North','EN',1038),(2107,'North','NO',1038),(2108,'South','SW',1038),(2109,'South-West','SW',1038),(2110,'West','OU',1038),(2111,'Beijing','11',1045),(2112,'Chongqing','50',1045),(2113,'Shanghai','31',1045),(2114,'Tianjin','12',1045),(2115,'Anhui','34',1045),(2116,'Fujian','35',1045),(2117,'Gansu','62',1045),(2118,'Guangdong','44',1045),(2119,'Guizhou','52',1045),(2120,'Hainan','46',1045),(2121,'Hebei','13',1045),(2122,'Heilongjiang','23',1045),(2123,'Henan','41',1045),(2124,'Hubei','42',1045),(2125,'Hunan','43',1045),(2126,'Jiangsu','32',1045),(2127,'Jiangxi','36',1045),(2128,'Jilin','22',1045),(2129,'Liaoning','21',1045),(2130,'Qinghai','63',1045),(2131,'Shaanxi','61',1045),(2132,'Shandong','37',1045),(2133,'Shanxi','14',1045),(2134,'Sichuan','51',1045),(2135,'Taiwan','71',1045),(2136,'Yunnan','53',1045),(2137,'Zhejiang','33',1045),(2138,'Guangxi','45',1045),(2139,'Neia Mongol (mn)','15',1045),(2140,'Xinjiang','65',1045),(2141,'Xizang','54',1045),(2142,'Hong Kong','91',1045),(2143,'Macau','92',1045),(2144,'Distrito Capital de Bogotá','DC',1048),(2145,'Amazonea','AMA',1048),(2146,'Antioquia','ANT',1048),(2147,'Arauca','ARA',1048),(2148,'Atlántico','ATL',1048),(2149,'Bolívar','BOL',1048),(2150,'Boyacá','BOY',1048),(2151,'Caldea','CAL',1048),(2152,'Caquetá','CAQ',1048),(2153,'Casanare','CAS',1048),(2154,'Cauca','CAU',1048),(2155,'Cesar','CES',1048),(2156,'Córdoba','COR',1048),(2157,'Cundinamarca','CUN',1048),(2158,'Chocó','CHO',1048),(2159,'Guainía','GUA',1048),(2160,'Guaviare','GUV',1048),(2161,'La Guajira','LAG',1048),(2162,'Magdalena','MAG',1048),(2163,'Meta','MET',1048),(2164,'Nariño','NAR',1048),(2165,'Norte de Santander','NSA',1048),(2166,'Putumayo','PUT',1048),(2167,'Quindio','QUI',1048),(2168,'Risaralda','RIS',1048),(2169,'San Andrés, Providencia y Santa Catalina','SAP',1048),(2170,'Santander','SAN',1048),(2171,'Sucre','SUC',1048),(2172,'Tolima','TOL',1048),(2173,'Valle del Cauca','VAC',1048),(2174,'Vaupés','VAU',1048),(2175,'Vichada','VID',1048),(2176,'Alajuela','A',1053),(2177,'Cartago','C',1053),(2178,'Guanacaste','G',1053),(2179,'Heredia','H',1053),(2180,'Limon','L',1053),(2181,'Puntarenas','P',1053),(2182,'San Jose','SJ',1053),(2183,'Camagey','09',1056),(2184,'Ciego de `vila','08',1056),(2185,'Cienfuegos','06',1056),(2186,'Ciudad de La Habana','03',1056),(2187,'Granma','12',1056),(2188,'Guantanamo','14',1056),(2189,'Holquin','11',1056),(2190,'La Habana','02',1056),(2191,'Las Tunas','10',1056),(2192,'Matanzas','04',1056),(2193,'Pinar del Rio','01',1056),(2194,'Sancti Spiritus','07',1056),(2195,'Santiago de Cuba','13',1056),(2196,'Villa Clara','05',1056),(2197,'Isla de la Juventud','99',1056),(2198,'Pinar del Roo','PR',1056),(2199,'Ciego de Avila','CA',1056),(2200,'Camagoey','CG',1056),(2201,'Holgun','HO',1056),(2202,'Sancti Spritus','SS',1056),(2203,'Municipio Especial Isla de la Juventud','IJ',1056),(2204,'Boa Vista','BV',1040),(2205,'Brava','BR',1040),(2206,'Calheta de Sao Miguel','CS',1040),(2207,'Fogo','FO',1040),(2208,'Maio','MA',1040),(2209,'Mosteiros','MO',1040),(2210,'Paul','PA',1040),(2211,'Porto Novo','PN',1040),(2212,'Praia','PR',1040),(2213,'Ribeira Grande','RG',1040),(2214,'Sal','SL',1040),(2215,'Sao Domingos','SD',1040),(2216,'Sao Filipe','SF',1040),(2217,'Sao Nicolau','SN',1040),(2218,'Sao Vicente','SV',1040),(2219,'Tarrafal','TA',1040),(2220,'Ammochostos Magusa','04',1057),(2221,'Keryneia','06',1057),(2222,'Larnaka','03',1057),(2223,'Lefkosia','01',1057),(2224,'Lemesos','02',1057),(2225,'Pafos','05',1057),(2226,'Jihočeský kraj','JC',1058),(2227,'Jihomoravský kraj','JM',1058),(2228,'Karlovarský kraj','KA',1058),(2229,'Královéhradecký kraj','KR',1058),(2230,'Liberecký kraj','LI',1058),(2231,'Moravskoslezský kraj','MO',1058),(2232,'Olomoucký kraj','OL',1058),(2233,'Pardubický kraj','PA',1058),(2234,'Plzeňský kraj','PL',1058),(2235,'Praha, hlavní město','PR',1058),(2236,'Středočeský kraj','ST',1058),(2237,'Ústecký kraj','US',1058),(2238,'Vysočina','VY',1058),(2239,'Zlínský kraj','ZL',1058),(2240,'Baden-Wuerttemberg','BW',1082),(2241,'Bayern','BY',1082),(2242,'Bremen','HB',1082),(2243,'Hamburg','HH',1082),(2244,'Hessen','HE',1082),(2245,'Niedersachsen','NI',1082),(2246,'Nordrhein-Westfalen','NW',1082),(2247,'Rheinland-Pfalz','RP',1082),(2248,'Saarland','SL',1082),(2249,'Schleswig-Holstein','SH',1082),(2250,'Berlin','BR',1082),(2251,'Brandenburg','BB',1082),(2252,'Mecklenburg-Vorpommern','MV',1082),(2253,'Sachsen','SN',1082),(2254,'Sachsen-Anhalt','ST',1082),(2255,'Thueringen','TH',1082),(2256,'Ali Sabiah','AS',1060),(2257,'Dikhil','DI',1060),(2258,'Djibouti','DJ',1060),(2259,'Obock','OB',1060),(2260,'Tadjoura','TA',1060),(2261,'Frederiksberg','147',1059),(2262,'Copenhagen City','101',1059),(2263,'Copenhagen','015',1059),(2264,'Frederiksborg','020',1059),(2265,'Roskilde','025',1059),(2266,'Vestsjælland','030',1059),(2267,'Storstrøm','035',1059),(2268,'Bornholm','040',1059),(2269,'Fyn','042',1059),(2270,'South Jutland','050',1059),(2271,'Ribe','055',1059),(2272,'Vejle','060',1059),(2273,'Ringkjøbing','065',1059),(2274,'Århus','070',1059),(2275,'Viborg','076',1059),(2276,'North Jutland','080',1059),(2277,'Distrito Nacional (Santo Domingo)','01',1062),(2278,'Azua','02',1062),(2279,'Bahoruco','03',1062),(2280,'Barahona','04',1062),(2281,'Dajabón','05',1062),(2282,'Duarte','06',1062),(2283,'El Seybo [El Seibo]','08',1062),(2284,'Espaillat','09',1062),(2285,'Hato Mayor','30',1062),(2286,'Independencia','10',1062),(2287,'La Altagracia','11',1062),(2288,'La Estrelleta [Elias Pina]','07',1062),(2289,'La Romana','12',1062),(2290,'La Vega','13',1062),(2291,'Maroia Trinidad Sánchez','14',1062),(2292,'Monseñor Nouel','28',1062),(2293,'Monte Cristi','15',1062),(2294,'Monte Plata','29',1062),(2295,'Pedernales','16',1062),(2296,'Peravia','17',1062),(2297,'Puerto Plata','18',1062),(2298,'Salcedo','19',1062),(2299,'Samaná','20',1062),(2300,'San Cristóbal','21',1062),(2301,'San Pedro de Macorís','23',1062),(2302,'Sánchez Ramírez','24',1062),(2303,'Santiago','25',1062),(2304,'Santiago Rodríguez','26',1062),(2305,'Valverde','27',1062),(2306,'Adrar','01',1003),(2307,'Ain Defla','44',1003),(2308,'Ain Tmouchent','46',1003),(2309,'Alger','16',1003),(2310,'Annaba','23',1003),(2311,'Batna','05',1003),(2312,'Bechar','08',1003),(2313,'Bejaia','06',1003),(2314,'Biskra','07',1003),(2315,'Blida','09',1003),(2316,'Bordj Bou Arreridj','34',1003),(2317,'Bouira','10',1003),(2318,'Boumerdes','35',1003),(2319,'Chlef','02',1003),(2320,'Constantine','25',1003),(2321,'Djelfa','17',1003),(2322,'El Bayadh','32',1003),(2323,'El Oued','39',1003),(2324,'El Tarf','36',1003),(2325,'Ghardaia','47',1003),(2326,'Guelma','24',1003),(2327,'Illizi','33',1003),(2328,'Jijel','18',1003),(2329,'Khenchela','40',1003),(2330,'Laghouat','03',1003),(2331,'Mascara','29',1003),(2332,'Medea','26',1003),(2333,'Mila','43',1003),(2334,'Mostaganem','27',1003),(2335,'Msila','28',1003),(2336,'Naama','45',1003),(2337,'Oran','31',1003),(2338,'Ouargla','30',1003),(2339,'Oum el Bouaghi','04',1003),(2340,'Relizane','48',1003),(2341,'Saida','20',1003),(2342,'Setif','19',1003),(2343,'Sidi Bel Abbes','22',1003),(2344,'Skikda','21',1003),(2345,'Souk Ahras','41',1003),(2346,'Tamanghasset','11',1003),(2347,'Tebessa','12',1003),(2348,'Tiaret','14',1003),(2349,'Tindouf','37',1003),(2350,'Tipaza','42',1003),(2351,'Tissemsilt','38',1003),(2352,'Tizi Ouzou','15',1003),(2353,'Tlemcen','13',1003),(2354,'Azuay','A',1064),(2355,'Bolivar','B',1064),(2356,'Canar','F',1064),(2357,'Carchi','C',1064),(2358,'Cotopaxi','X',1064),(2359,'Chimborazo','H',1064),(2360,'El Oro','O',1064),(2361,'Esmeraldas','E',1064),(2362,'Galapagos','W',1064),(2363,'Guayas','G',1064),(2364,'Imbabura','I',1064),(2365,'Loja','L',1064),(2366,'Los Rios','R',1064),(2367,'Manabi','M',1064),(2368,'Morona-Santiago','S',1064),(2369,'Napo','N',1064),(2370,'Orellana','D',1064),(2371,'Pastaza','Y',1064),(2372,'Pichincha','P',1064),(2373,'Sucumbios','U',1064),(2374,'Tungurahua','T',1064),(2375,'Zamora-Chinchipe','Z',1064),(2376,'Harjumsa','37',1069),(2377,'Hitumea','39',1069),(2378,'Ida-Virumsa','44',1069),(2379,'Jogevamsa','49',1069),(2380,'Jarvamsa','51',1069),(2381,'Lasnemsa','57',1069),(2382,'Laane-Virumaa','59',1069),(2383,'Polvamea','65',1069),(2384,'Parnumsa','67',1069),(2385,'Raplamsa','70',1069),(2386,'Saaremsa','74',1069),(2387,'Tartumsa','7B',1069),(2388,'Valgamaa','82',1069),(2389,'Viljandimsa','84',1069),(2390,'Vorumaa','86',1069),(2391,'Ad Daqahllyah','DK',1065),(2392,'Al Bahr al Ahmar','BA',1065),(2393,'Al Buhayrah','BH',1065),(2394,'Al Fayym','FYM',1065),(2395,'Al Gharbiyah','GH',1065),(2396,'Al Iskandarlyah','ALX',1065),(2397,'Al Isma illyah','IS',1065),(2398,'Al Jizah','GZ',1065),(2399,'Al Minuflyah','MNF',1065),(2400,'Al Minya','MN',1065),(2401,'Al Qahirah','C',1065),(2402,'Al Qalyublyah','KB',1065),(2403,'Al Wadi al Jadid','WAD',1065),(2404,'Ash Sharqiyah','SHR',1065),(2405,'As Suways','SUZ',1065),(2406,'Aswan','ASN',1065),(2407,'Asyut','AST',1065),(2408,'Bani Suwayf','BNS',1065),(2409,'Bur Sa\'id','PTS',1065),(2410,'Dumyat','DT',1065),(2411,'Janub Sina\'','JS',1065),(2412,'Kafr ash Shaykh','KFS',1065),(2413,'Matruh','MT',1065),(2414,'Qina','KN',1065),(2415,'Shamal Sina\'','SIN',1065),(2416,'Suhaj','SHG',1065),(2417,'Anseba','AN',1068),(2418,'Debub','DU',1068),(2419,'Debubawi Keyih Bahri [Debub-Keih-Bahri]','DK',1068),(2420,'Gash-Barka','GB',1068),(2421,'Maakel [Maekel]','MA',1068),(2422,'Semenawi Keyih Bahri [Semien-Keih-Bahri]','SK',1068),(2423,'Álava','VI',1198),(2424,'Albacete','AB',1198),(2425,'Alicante','A',1198),(2426,'Almería','AL',1198),(2427,'Asturias','O',1198),(2428,'Ávila','AV',1198),(2429,'Badajoz','BA',1198),(2430,'Baleares','PM',1198),(2431,'Barcelona','B',1198),(2432,'Burgos','BU',1198),(2433,'Cáceres','CC',1198),(2434,'Cádiz','CA',1198),(2435,'Cantabria','S',1198),(2436,'Castellón','CS',1198),(2437,'Ciudad Real','CR',1198),(2438,'Cuenca','CU',1198),(2439,'Girona [Gerona]','GE',1198),(2440,'Granada','GR',1198),(2441,'Guadalajara','GU',1198),(2442,'Guipúzcoa','SS',1198),(2443,'Huelva','H',1198),(2444,'Huesca','HU',1198),(2445,'Jaén','J',1198),(2446,'La Coruña','C',1198),(2447,'La Rioja','LO',1198),(2448,'Las Palmas','GC',1198),(2449,'León','LE',1198),(2450,'Lleida [Lérida]','L',1198),(2451,'Lugo','LU',1198),(2452,'Madrid','M',1198),(2453,'Málaga','MA',1198),(2454,'Murcia','MU',1198),(2455,'Navarra','NA',1198),(2456,'Ourense','OR',1198),(2457,'Palencia','P',1198),(2458,'Pontevedra','PO',1198),(2459,'Salamanca','SA',1198),(2460,'Santa Cruz de Tenerife','TF',1198),(2461,'Segovia','SG',1198),(2462,'Sevilla','SE',1198),(2463,'Soria','SO',1198),(2464,'Tarragona','T',1198),(2465,'Teruel','TE',1198),(2466,'Valencia','V',1198),(2467,'Valladolid','VA',1198),(2468,'Vizcaya','BI',1198),(2469,'Zamora','ZA',1198),(2470,'Zaragoza','Z',1198),(2471,'Ceuta','CE',1198),(2472,'Melilla','ML',1198),(2473,'Addis Ababa','AA',1070),(2474,'Dire Dawa','DD',1070),(2475,'Afar','AF',1070),(2476,'Amara','AM',1070),(2477,'Benshangul-Gumaz','BE',1070),(2478,'Gambela Peoples','GA',1070),(2479,'Harari People','HA',1070),(2480,'Oromia','OR',1070),(2481,'Somali','SO',1070),(2482,'Southern Nations, Nationalities and Peoples','SN',1070),(2483,'Tigrai','TI',1070),(2490,'Eastern','E',1074),(2491,'Northern','N',1074),(2492,'Western','W',1074),(2493,'Rotuma','R',1074),(2494,'Chuuk','TRK',1141),(2495,'Kosrae','KSA',1141),(2496,'Pohnpei','PNI',1141),(2497,'Yap','YAP',1141),(2498,'Ain','01',1076),(2499,'Aisne','02',1076),(2500,'Allier','03',1076),(2501,'Alpes-de-Haute-Provence','04',1076),(2502,'Alpes-Maritimes','06',1076),(2503,'Ardèche','07',1076),(2504,'Ardennes','08',1076),(2505,'Ariège','09',1076),(2506,'Aube','10',1076),(2507,'Aude','11',1076),(2508,'Aveyron','12',1076),(2509,'Bas-Rhin','67',1076),(2510,'Bouches-du-Rhône','13',1076),(2511,'Calvados','14',1076),(2512,'Cantal','15',1076),(2513,'Charente','16',1076),(2514,'Charente-Maritime','17',1076),(2515,'Cher','18',1076),(2516,'Corrèze','19',1076),(2517,'Corse-du-Sud','20A',1076),(2518,'Côte-d\'Or','21',1076),(2519,'Côtes-d\'Armor','22',1076),(2520,'Creuse','23',1076),(2521,'Deux-Sèvres','79',1076),(2522,'Dordogne','24',1076),(2523,'Doubs','25',1076),(2524,'Drôme','26',1076),(2525,'Essonne','91',1076),(2526,'Eure','27',1076),(2527,'Eure-et-Loir','28',1076),(2528,'Finistère','29',1076),(2529,'Gard','30',1076),(2530,'Gers','32',1076),(2531,'Gironde','33',1076),(2532,'Haut-Rhin','68',1076),(2533,'Haute-Corse','20B',1076),(2534,'Haute-Garonne','31',1076),(2535,'Haute-Loire','43',1076),(2536,'Haute-Saône','70',1076),(2537,'Haute-Savoie','74',1076),(2538,'Haute-Vienne','87',1076),(2539,'Hautes-Alpes','05',1076),(2540,'Hautes-Pyrénées','65',1076),(2541,'Hauts-de-Seine','92',1076),(2542,'Hérault','34',1076),(2543,'Indre','36',1076),(2544,'Ille-et-Vilaine','35',1076),(2545,'Indre-et-Loire','37',1076),(2546,'Isère','38',1076),(2547,'Landes','40',1076),(2548,'Loir-et-Cher','41',1076),(2549,'Loire','42',1076),(2550,'Loire-Atlantique','44',1076),(2551,'Loiret','45',1076),(2552,'Lot','46',1076),(2553,'Lot-et-Garonne','47',1076),(2554,'Lozère','48',1076),(2555,'Maine-et-Loire','49',1076),(2556,'Manche','50',1076),(2557,'Marne','51',1076),(2558,'Mayenne','53',1076),(2559,'Meurthe-et-Moselle','54',1076),(2560,'Meuse','55',1076),(2561,'Morbihan','56',1076),(2562,'Moselle','57',1076),(2563,'Nièvre','58',1076),(2564,'Nord','59',1076),(2565,'Oise','60',1076),(2566,'Orne','61',1076),(2567,'Paris','75',1076),(2568,'Pas-de-Calais','62',1076),(2569,'Puy-de-Dôme','63',1076),(2570,'Pyrénées-Atlantiques','64',1076),(2571,'Pyrénées-Orientales','66',1076),(2572,'Rhône','69',1076),(2573,'Saône-et-Loire','71',1076),(2574,'Sarthe','72',1076),(2575,'Savoie','73',1076),(2576,'Seine-et-Marne','77',1076),(2577,'Seine-Maritime','76',1076),(2578,'Seine-Saint-Denis','93',1076),(2579,'Somme','80',1076),(2580,'Tarn','81',1076),(2581,'Tarn-et-Garonne','82',1076),(2582,'Val d\'Oise','95',1076),(2583,'Territoire de Belfort','90',1076),(2584,'Val-de-Marne','94',1076),(2585,'Var','83',1076),(2586,'Vaucluse','84',1076),(2587,'Vendée','85',1076),(2588,'Vienne','86',1076),(2589,'Vosges','88',1076),(2590,'Yonne','89',1076),(2591,'Yvelines','78',1076),(2592,'Aberdeen City','ABE',1226),(2593,'Aberdeenshire','ABD',1226),(2594,'Angus','ANS',1226),(2595,'Co Antrim','ANT',1226),(2597,'Argyll and Bute','AGB',1226),(2598,'Co Armagh','ARM',1226),(2606,'Bedfordshire','BDF',1226),(2612,'Gwent','BGW',1226),(2620,'Bristol, City of','BST',1226),(2622,'Buckinghamshire','BKM',1226),(2626,'Cambridgeshire','CAM',1226),(2634,'Cheshire','CHS',1226),(2635,'Clackmannanshire','CLK',1226),(2639,'Cornwall','CON',1226),(2643,'Cumbria','CMA',1226),(2647,'Derbyshire','DBY',1226),(2648,'Co Londonderry','DRY',1226),(2649,'Devon','DEV',1226),(2651,'Dorset','DOR',1226),(2652,'Co Down','DOW',1226),(2654,'Dumfries and Galloway','DGY',1226),(2655,'Dundee City','DND',1226),(2657,'County Durham','DUR',1226),(2659,'East Ayrshire','EAY',1226),(2660,'East Dunbartonshire','EDU',1226),(2661,'East Lothian','ELN',1226),(2662,'East Renfrewshire','ERW',1226),(2663,'East Riding of Yorkshire','ERY',1226),(2664,'East Sussex','ESX',1226),(2665,'Edinburgh, City of','EDH',1226),(2666,'Na h-Eileanan Siar','ELS',1226),(2668,'Essex','ESS',1226),(2669,'Falkirk','FAL',1226),(2670,'Co Fermanagh','FER',1226),(2671,'Fife','FIF',1226),(2674,'Glasgow City','GLG',1226),(2675,'Gloucestershire','GLS',1226),(2678,'Gwynedd','GWN',1226),(2682,'Hampshire','HAM',1226),(2687,'Herefordshire','HEF',1226),(2688,'Hertfordshire','HRT',1226),(2689,'Highland','HED',1226),(2692,'Inverclyde','IVC',1226),(2694,'Isle of Wight','IOW',1226),(2699,'Kent','KEN',1226),(2705,'Lancashire','LAN',1226),(2709,'Leicestershire','LEC',1226),(2712,'Lincolnshire','LIN',1226),(2723,'Midlothian','MLN',1226),(2726,'Moray','MRY',1226),(2734,'Norfolk','NFK',1226),(2735,'North Ayrshire','NAY',1226),(2738,'North Lanarkshire','NLK',1226),(2742,'North Yorkshire','NYK',1226),(2743,'Northamptonshire','NTH',1226),(2744,'Northumberland','NBL',1226),(2746,'Nottinghamshire','NTT',1226),(2747,'Oldham','OLD',1226),(2748,'Omagh','OMH',1226),(2749,'Orkney Islands','ORR',1226),(2750,'Oxfordshire','OXF',1226),(2752,'Perth and Kinross','PKN',1226),(2757,'Powys','POW',1226),(2761,'Renfrewshire','RFW',1226),(2766,'Rutland','RUT',1226),(2770,'Scottish Borders','SCB',1226),(2773,'Shetland Islands','ZET',1226),(2774,'Shropshire','SHR',1226),(2777,'Somerset','SOM',1226),(2778,'South Ayrshire','SAY',1226),(2779,'South Gloucestershire','SGC',1226),(2780,'South Lanarkshire','SLK',1226),(2785,'Staffordshire','STS',1226),(2786,'Stirling','STG',1226),(2791,'Suffolk','SFK',1226),(2793,'Surrey','SRY',1226),(2804,'Mid Glamorgan','VGL',1226),(2811,'Warwickshire','WAR',1226),(2813,'West Dunbartonshire','WDU',1226),(2814,'West Lothian','WLN',1226),(2815,'West Sussex','WSX',1226),(2818,'Wiltshire','WIL',1226),(2823,'Worcestershire','WOR',1226),(2826,'Ashanti','AH',1083),(2827,'Brong-Ahafo','BA',1083),(2828,'Greater Accra','AA',1083),(2829,'Upper East','UE',1083),(2830,'Upper West','UW',1083),(2831,'Volta','TV',1083),(2832,'Banjul','B',1213),(2833,'Lower River','L',1213),(2834,'MacCarthy Island','M',1213),(2835,'North Bank','N',1213),(2836,'Upper River','U',1213),(2837,'Beyla','BE',1091),(2838,'Boffa','BF',1091),(2839,'Boke','BK',1091),(2840,'Coyah','CO',1091),(2841,'Dabola','DB',1091),(2842,'Dalaba','DL',1091),(2843,'Dinguiraye','DI',1091),(2844,'Dubreka','DU',1091),(2845,'Faranah','FA',1091),(2846,'Forecariah','FO',1091),(2847,'Fria','FR',1091),(2848,'Gaoual','GA',1091),(2849,'Guekedou','GU',1091),(2850,'Kankan','KA',1091),(2851,'Kerouane','KE',1091),(2852,'Kindia','KD',1091),(2853,'Kissidougou','KS',1091),(2854,'Koubia','KB',1091),(2855,'Koundara','KN',1091),(2856,'Kouroussa','KO',1091),(2857,'Labe','LA',1091),(2858,'Lelouma','LE',1091),(2859,'Lola','LO',1091),(2860,'Macenta','MC',1091),(2861,'Mali','ML',1091),(2862,'Mamou','MM',1091),(2863,'Mandiana','MD',1091),(2864,'Nzerekore','NZ',1091),(2865,'Pita','PI',1091),(2866,'Siguiri','SI',1091),(2867,'Telimele','TE',1091),(2868,'Tougue','TO',1091),(2869,'Yomou','YO',1091),(2870,'Region Continental','C',1067),(2871,'Region Insular','I',1067),(2872,'Annobon','AN',1067),(2873,'Bioko Norte','BN',1067),(2874,'Bioko Sur','BS',1067),(2875,'Centro Sur','CS',1067),(2876,'Kie-Ntem','KN',1067),(2877,'Litoral','LI',1067),(2878,'Wele-Nzas','WN',1067),(2879,'Achaïa','13',1085),(2880,'Aitolia-Akarnania','01',1085),(2881,'Argolis','11',1085),(2882,'Arkadia','12',1085),(2883,'Arta','31',1085),(2884,'Attiki','A1',1085),(2885,'Chalkidiki','64',1085),(2886,'Chania','94',1085),(2887,'Chios','85',1085),(2888,'Dodekanisos','81',1085),(2889,'Drama','52',1085),(2890,'Evros','71',1085),(2891,'Evrytania','05',1085),(2892,'Evvoia','04',1085),(2893,'Florina','63',1085),(2894,'Fokis','07',1085),(2895,'Fthiotis','06',1085),(2896,'Grevena','51',1085),(2897,'Ileia','14',1085),(2898,'Imathia','53',1085),(2899,'Ioannina','33',1085),(2900,'Irakleion','91',1085),(2901,'Karditsa','41',1085),(2902,'Kastoria','56',1085),(2903,'Kavalla','55',1085),(2904,'Kefallinia','23',1085),(2905,'Kerkyra','22',1085),(2906,'Kilkis','57',1085),(2907,'Korinthia','15',1085),(2908,'Kozani','58',1085),(2909,'Kyklades','82',1085),(2910,'Lakonia','16',1085),(2911,'Larisa','42',1085),(2912,'Lasithion','92',1085),(2913,'Lefkas','24',1085),(2914,'Lesvos','83',1085),(2915,'Magnisia','43',1085),(2916,'Messinia','17',1085),(2917,'Pella','59',1085),(2918,'Preveza','34',1085),(2919,'Rethymnon','93',1085),(2920,'Rodopi','73',1085),(2921,'Samos','84',1085),(2922,'Serrai','62',1085),(2923,'Thesprotia','32',1085),(2924,'Thessaloniki','54',1085),(2925,'Trikala','44',1085),(2926,'Voiotia','03',1085),(2927,'Xanthi','72',1085),(2928,'Zakynthos','21',1085),(2929,'Agio Oros','69',1085),(2930,'Alta Verapaz','AV',1090),(2931,'Baja Verapaz','BV',1090),(2932,'Chimaltenango','CM',1090),(2933,'Chiquimula','CQ',1090),(2934,'El Progreso','PR',1090),(2935,'Escuintla','ES',1090),(2936,'Guatemala','GU',1090),(2937,'Huehuetenango','HU',1090),(2938,'Izabal','IZ',1090),(2939,'Jalapa','JA',1090),(2940,'Jutiapa','JU',1090),(2941,'Peten','PE',1090),(2942,'Quetzaltenango','QZ',1090),(2943,'Quiche','QC',1090),(2944,'Retalhuleu','RE',1090),(2945,'Sacatepequez','SA',1090),(2946,'San Marcos','SM',1090),(2947,'Santa Rosa','SR',1090),(2948,'Sololá','SO',1090),(2949,'Suchitepequez','SU',1090),(2950,'Totonicapan','TO',1090),(2951,'Zacapa','ZA',1090),(2952,'Bissau','BS',1092),(2953,'Bafata','BA',1092),(2954,'Biombo','BM',1092),(2955,'Bolama','BL',1092),(2956,'Cacheu','CA',1092),(2957,'Gabu','GA',1092),(2958,'Oio','OI',1092),(2959,'Quloara','QU',1092),(2960,'Tombali S','TO',1092),(2961,'Barima-Waini','BA',1093),(2962,'Cuyuni-Mazaruni','CU',1093),(2963,'Demerara-Mahaica','DE',1093),(2964,'East Berbice-Corentyne','EB',1093),(2965,'Essequibo Islands-West Demerara','ES',1093),(2966,'Mahaica-Berbice','MA',1093),(2967,'Pomeroon-Supenaam','PM',1093),(2968,'Potaro-Siparuni','PT',1093),(2969,'Upper Demerara-Berbice','UD',1093),(2970,'Upper Takutu-Upper Essequibo','UT',1093),(2971,'Atlantida','AT',1097),(2972,'Colon','CL',1097),(2973,'Comayagua','CM',1097),(2974,'Copan','CP',1097),(2975,'Cortes','CR',1097),(2976,'Choluteca','CH',1097),(2977,'El Paraiso','EP',1097),(2978,'Francisco Morazan','FM',1097),(2979,'Gracias a Dios','GD',1097),(2980,'Intibuca','IN',1097),(2981,'Islas de la Bahia','IB',1097),(2982,'Lempira','LE',1097),(2983,'Ocotepeque','OC',1097),(2984,'Olancho','OL',1097),(2985,'Santa Barbara','SB',1097),(2986,'Valle','VA',1097),(2987,'Yoro','YO',1097),(2988,'Bjelovarsko-bilogorska zupanija','07',1055),(2989,'Brodsko-posavska zupanija','12',1055),(2990,'Dubrovacko-neretvanska zupanija','19',1055),(2991,'Istarska zupanija','18',1055),(2992,'Karlovacka zupanija','04',1055),(2993,'Koprivnickco-krizevacka zupanija','06',1055),(2994,'Krapinako-zagorska zupanija','02',1055),(2995,'Licko-senjska zupanija','09',1055),(2996,'Medimurska zupanija','20',1055),(2997,'Osjecko-baranjska zupanija','14',1055),(2998,'Pozesko-slavonska zupanija','11',1055),(2999,'Primorsko-goranska zupanija','08',1055),(3000,'Sisacko-moelavacka Iupanija','03',1055),(3001,'Splitako-dalmatinska zupanija','17',1055),(3002,'Sibenako-kninska zupanija','15',1055),(3003,'Varaidinska zupanija','05',1055),(3004,'VirovitiEko-podravska zupanija','10',1055),(3005,'VuRovarako-srijemska zupanija','16',1055),(3006,'Zadaraka','13',1055),(3007,'Zagrebacka zupanija','01',1055),(3008,'Grande-Anse','GA',1094),(3009,'Nord-Est','NE',1094),(3010,'Nord-Ouest','NO',1094),(3011,'Ouest','OU',1094),(3012,'Sud','SD',1094),(3013,'Sud-Est','SE',1094),(3014,'Budapest','BU',1099),(3015,'Bács-Kiskun','BK',1099),(3016,'Baranya','BA',1099),(3017,'Békés','BE',1099),(3018,'Borsod-Abaúj-Zemplén','BZ',1099),(3019,'Csongrád','CS',1099),(3020,'Fejér','FE',1099),(3021,'Győr-Moson-Sopron','GS',1099),(3022,'Hajdu-Bihar','HB',1099),(3023,'Heves','HE',1099),(3024,'Jász-Nagykun-Szolnok','JN',1099),(3025,'Komárom-Esztergom','KE',1099),(3026,'Nográd','NO',1099),(3027,'Pest','PE',1099),(3028,'Somogy','SO',1099),(3029,'Szabolcs-Szatmár-Bereg','SZ',1099),(3030,'Tolna','TO',1099),(3031,'Vas','VA',1099),(3032,'Veszprém','VE',1099),(3033,'Zala','ZA',1099),(3034,'Békéscsaba','BC',1099),(3035,'Debrecen','DE',1099),(3036,'Dunaújváros','DU',1099),(3037,'Eger','EG',1099),(3038,'Győr','GY',1099),(3039,'Hódmezővásárhely','HV',1099),(3040,'Kaposvár','KV',1099),(3041,'Kecskemét','KM',1099),(3042,'Miskolc','MI',1099),(3043,'Nagykanizsa','NK',1099),(3044,'Nyiregyháza','NY',1099),(3045,'Pécs','PS',1099),(3046,'Salgótarján','ST',1099),(3047,'Sopron','SN',1099),(3048,'Szeged','SD',1099),(3049,'Székesfehérvár','SF',1099),(3050,'Szekszárd','SS',1099),(3051,'Szolnok','SK',1099),(3052,'Szombathely','SH',1099),(3053,'Tatabánya','TB',1099),(3054,'Zalaegerszeg','ZE',1099),(3055,'Bali','BA',1102),(3056,'Kepulauan Bangka Belitung','BB',1102),(3057,'Banten','BT',1102),(3058,'Bengkulu','BE',1102),(3059,'Gorontalo','GO',1102),(3060,'Papua Barat','PB',1102),(3061,'Jambi','JA',1102),(3062,'Jawa Barat','JB',1102),(3063,'Jawa Tengah','JT',1102),(3064,'Jawa Timur','JI',1102),(3065,'Kalimantan Barat','KB',1102),(3066,'Kalimantan Timur','KI',1102),(3067,'Kalimantan Selatan','KS',1102),(3068,'Kepulauan Riau','KR',1102),(3069,'Lampung','LA',1102),(3070,'Maluku','MA',1102),(3071,'Maluku Utara','MU',1102),(3072,'Nusa Tenggara Barat','NB',1102),(3073,'Nusa Tenggara Timur','NT',1102),(3074,'Papua','PA',1102),(3075,'Riau','RI',1102),(3076,'Sulawesi Selatan','SN',1102),(3077,'Sulawesi Tengah','ST',1102),(3078,'Sulawesi Tenggara','SG',1102),(3079,'Sulawesi Utara','SA',1102),(3080,'Sumatra Barat','SB',1102),(3081,'Sumatra Selatan','SS',1102),(3082,'Sumatera Utara','SU',1102),(3083,'DKI Jakarta','JK',1102),(3084,'Aceh','AC',1102),(3085,'DI Yogyakarta','YO',1102),(3086,'Cork','C',1105),(3087,'Clare','CE',1105),(3088,'Cavan','CN',1105),(3089,'Carlow','CW',1105),(3090,'Dublin','D',1105),(3091,'Donegal','DL',1105),(3092,'Galway','G',1105),(3093,'Kildare','KE',1105),(3094,'Kilkenny','KK',1105),(3095,'Kerry','KY',1105),(3096,'Longford','LD',1105),(3097,'Louth','LH',1105),(3098,'Limerick','LK',1105),(3099,'Leitrim','LM',1105),(3100,'Laois','LS',1105),(3101,'Meath','MH',1105),(3102,'Monaghan','MN',1105),(3103,'Mayo','MO',1105),(3104,'Offaly','OY',1105),(3105,'Roscommon','RN',1105),(3106,'Sligo','SO',1105),(3107,'Tipperary','TA',1105),(3108,'Waterford','WD',1105),(3109,'Westmeath','WH',1105),(3110,'Wicklow','WW',1105),(3111,'Wexford','WX',1105),(3112,'HaDarom','D',1106),(3113,'HaMerkaz','M',1106),(3114,'HaZafon','Z',1106),(3115,'Haifa','HA',1106),(3116,'Tel-Aviv','TA',1106),(3117,'Jerusalem','JM',1106),(3118,'Al Anbar','AN',1104),(3119,'Al Ba,rah','BA',1104),(3120,'Al Muthanna','MU',1104),(3121,'Al Qadisiyah','QA',1104),(3122,'An Najef','NA',1104),(3123,'Arbil','AR',1104),(3124,'As Sulaymaniyah','SW',1104),(3125,'At Ta\'mim','TS',1104),(3126,'Babil','BB',1104),(3127,'Baghdad','BG',1104),(3128,'Dahuk','DA',1104),(3129,'Dhi Qar','DQ',1104),(3130,'Diyala','DI',1104),(3131,'Karbala\'','KA',1104),(3132,'Maysan','MA',1104),(3133,'Ninawa','NI',1104),(3134,'Salah ad Din','SD',1104),(3135,'Wasit','WA',1104),(3136,'Ardabil','03',1103),(3137,'Azarbayjan-e Gharbi','02',1103),(3138,'Azarbayjan-e Sharqi','01',1103),(3139,'Bushehr','06',1103),(3140,'Chahar Mahall va Bakhtiari','08',1103),(3141,'Esfahan','04',1103),(3142,'Fars','14',1103),(3143,'Gilan','19',1103),(3144,'Golestan','27',1103),(3145,'Hamadan','24',1103),(3146,'Hormozgan','23',1103),(3147,'Iiam','05',1103),(3148,'Kerman','15',1103),(3149,'Kermanshah','17',1103),(3150,'Khorasan','09',1103),(3151,'Khuzestan','10',1103),(3152,'Kohjiluyeh va Buyer Ahmad','18',1103),(3153,'Kordestan','16',1103),(3154,'Lorestan','20',1103),(3155,'Markazi','22',1103),(3156,'Mazandaran','21',1103),(3157,'Qazvin','28',1103),(3158,'Qom','26',1103),(3159,'Semnan','12',1103),(3160,'Sistan va Baluchestan','13',1103),(3161,'Tehran','07',1103),(3162,'Yazd','25',1103),(3163,'Zanjan','11',1103),(3164,'Austurland','7',1100),(3165,'Hofuoborgarsvaeoi utan Reykjavikur','1',1100),(3166,'Norourland eystra','6',1100),(3167,'Norourland vestra','5',1100),(3168,'Reykjavik','0',1100),(3169,'Suourland','8',1100),(3170,'Suournes','2',1100),(3171,'Vestfirolr','4',1100),(3172,'Vesturland','3',1100),(3173,'Agrigento','AG',1107),(3174,'Alessandria','AL',1107),(3175,'Ancona','AN',1107),(3176,'Aosta','AO',1107),(3177,'Arezzo','AR',1107),(3178,'Ascoli Piceno','AP',1107),(3179,'Asti','AT',1107),(3180,'Avellino','AV',1107),(3181,'Bari','BA',1107),(3182,'Belluno','BL',1107),(3183,'Benevento','BN',1107),(3184,'Bergamo','BG',1107),(3185,'Biella','BI',1107),(3186,'Bologna','BO',1107),(3187,'Bolzano','BZ',1107),(3188,'Brescia','BS',1107),(3189,'Brindisi','BR',1107),(3190,'Cagliari','CA',1107),(3191,'Caltanissetta','CL',1107),(3192,'Campobasso','CB',1107),(3193,'Caserta','CE',1107),(3194,'Catania','CT',1107),(3195,'Catanzaro','CZ',1107),(3196,'Chieti','CH',1107),(3197,'Como','CO',1107),(3198,'Cosenza','CS',1107),(3199,'Cremona','CR',1107),(3200,'Crotone','KR',1107),(3201,'Cuneo','CN',1107),(3202,'Enna','EN',1107),(3203,'Ferrara','FE',1107),(3204,'Firenze','FI',1107),(3205,'Foggia','FG',1107),(3206,'Forlì-Cesena','FC',1107),(3207,'Frosinone','FR',1107),(3208,'Genova','GE',1107),(3209,'Gorizia','GO',1107),(3210,'Grosseto','GR',1107),(3211,'Imperia','IM',1107),(3212,'Isernia','IS',1107),(3213,'L\'Aquila','AQ',1107),(3214,'La Spezia','SP',1107),(3215,'Latina','LT',1107),(3216,'Lecce','LE',1107),(3217,'Lecco','LC',1107),(3218,'Livorno','LI',1107),(3219,'Lodi','LO',1107),(3220,'Lucca','LU',1107),(3221,'Macerata','MC',1107),(3222,'Mantova','MN',1107),(3223,'Massa-Carrara','MS',1107),(3224,'Matera','MT',1107),(3225,'Messina','ME',1107),(3226,'Milano','MI',1107),(3227,'Modena','MO',1107),(3228,'Napoli','NA',1107),(3229,'Novara','NO',1107),(3230,'Nuoro','NU',1107),(3231,'Oristano','OR',1107),(3232,'Padova','PD',1107),(3233,'Palermo','PA',1107),(3234,'Parma','PR',1107),(3235,'Pavia','PV',1107),(3236,'Perugia','PG',1107),(3237,'Pesaro e Urbino','PU',1107),(3238,'Pescara','PE',1107),(3239,'Piacenza','PC',1107),(3240,'Pisa','PI',1107),(3241,'Pistoia','PT',1107),(3242,'Pordenone','PN',1107),(3243,'Potenza','PZ',1107),(3244,'Prato','PO',1107),(3245,'Ragusa','RG',1107),(3246,'Ravenna','RA',1107),(3247,'Reggio Calabria','RC',1107),(3248,'Reggio Emilia','RE',1107),(3249,'Rieti','RI',1107),(3250,'Rimini','RN',1107),(3251,'Roma','RM',1107),(3252,'Rovigo','RO',1107),(3253,'Salerno','SA',1107),(3254,'Sassari','SS',1107),(3255,'Savona','SV',1107),(3256,'Siena','SI',1107),(3257,'Siracusa','SR',1107),(3258,'Sondrio','SO',1107),(3259,'Taranto','TA',1107),(3260,'Teramo','TE',1107),(3261,'Terni','TR',1107),(3262,'Torino','TO',1107),(3263,'Trapani','TP',1107),(3264,'Trento','TN',1107),(3265,'Treviso','TV',1107),(3266,'Trieste','TS',1107),(3267,'Udine','UD',1107),(3268,'Varese','VA',1107),(3269,'Venezia','VE',1107),(3270,'Verbano-Cusio-Ossola','VB',1107),(3271,'Vercelli','VC',1107),(3272,'Verona','VR',1107),(3273,'Vibo Valentia','VV',1107),(3274,'Vicenza','VI',1107),(3275,'Viterbo','VT',1107),(3276,'Aichi','23',1109),(3277,'Akita','05',1109),(3278,'Aomori','02',1109),(3279,'Chiba','12',1109),(3280,'Ehime','38',1109),(3281,'Fukui','18',1109),(3282,'Fukuoka','40',1109),(3283,'Fukusima','07',1109),(3284,'Gifu','21',1109),(3285,'Gunma','10',1109),(3286,'Hiroshima','34',1109),(3287,'Hokkaido','01',1109),(3288,'Hyogo','28',1109),(3289,'Ibaraki','08',1109),(3290,'Ishikawa','17',1109),(3291,'Iwate','03',1109),(3292,'Kagawa','37',1109),(3293,'Kagoshima','46',1109),(3294,'Kanagawa','14',1109),(3295,'Kochi','39',1109),(3296,'Kumamoto','43',1109),(3297,'Kyoto','26',1109),(3298,'Mie','24',1109),(3299,'Miyagi','04',1109),(3300,'Miyazaki','45',1109),(3301,'Nagano','20',1109),(3302,'Nagasaki','42',1109),(3303,'Nara','29',1109),(3304,'Niigata','15',1109),(3305,'Oita','44',1109),(3306,'Okayama','33',1109),(3307,'Okinawa','47',1109),(3308,'Osaka','27',1109),(3309,'Saga','41',1109),(3310,'Saitama','11',1109),(3311,'Shiga','25',1109),(3312,'Shimane','32',1109),(3313,'Shizuoka','22',1109),(3314,'Tochigi','09',1109),(3315,'Tokushima','36',1109),(3316,'Tokyo','13',1109),(3317,'Tottori','31',1109),(3318,'Toyama','16',1109),(3319,'Wakayama','30',1109),(3320,'Yamagata','06',1109),(3321,'Yamaguchi','35',1109),(3322,'Yamanashi','19',1109),(3323,'Clarendon','CN',1108),(3324,'Hanover','HR',1108),(3325,'Kingston','KN',1108),(3326,'Portland','PD',1108),(3327,'Saint Andrew','AW',1108),(3328,'Saint Ann','AN',1108),(3329,'Saint Catherine','CE',1108),(3330,'Saint Elizabeth','EH',1108),(3331,'Saint James','JS',1108),(3332,'Saint Mary','MY',1108),(3333,'Saint Thomas','TS',1108),(3334,'Trelawny','TY',1108),(3335,'Westmoreland','WD',1108),(3336,'Ajln','AJ',1110),(3337,'Al \'Aqaba','AQ',1110),(3338,'Al Balqa\'','BA',1110),(3339,'Al Karak','KA',1110),(3340,'Al Mafraq','MA',1110),(3341,'Amman','AM',1110),(3342,'At Tafilah','AT',1110),(3343,'Az Zarga','AZ',1110),(3344,'Irbid','JR',1110),(3345,'Jarash','JA',1110),(3346,'Ma\'an','MN',1110),(3347,'Madaba','MD',1110),(3348,'Nairobi Municipality','110',1112),(3349,'Coast','300',1112),(3350,'North-Eastern Kaskazini Mashariki','500',1112),(3351,'Rift Valley','700',1112),(3352,'Western Magharibi','900',1112),(3353,'Bishkek','GB',1117),(3354,'Batken','B',1117),(3355,'Chu','C',1117),(3356,'Jalal-Abad','J',1117),(3357,'Naryn','N',1117),(3358,'Osh','O',1117),(3359,'Talas','T',1117),(3360,'Ysyk-Kol','Y',1117),(3361,'Krong Kaeb','23',1037),(3362,'Krong Pailin','24',1037),(3363,'Xrong Preah Sihanouk','18',1037),(3364,'Phnom Penh','12',1037),(3365,'Baat Dambang','2',1037),(3366,'Banteay Mean Chey','1',1037),(3367,'Rampong Chaam','3',1037),(3368,'Kampong Chhnang','4',1037),(3369,'Kampong Spueu','5',1037),(3370,'Kampong Thum','6',1037),(3371,'Kampot','7',1037),(3372,'Kandaal','8',1037),(3373,'Kach Kong','9',1037),(3374,'Krachoh','10',1037),(3375,'Mondol Kiri','11',1037),(3376,'Otdar Mean Chey','22',1037),(3377,'Pousaat','15',1037),(3378,'Preah Vihear','13',1037),(3379,'Prey Veaeng','14',1037),(3380,'Rotanak Kiri','16',1037),(3381,'Siem Reab','17',1037),(3382,'Stueng Traeng','19',1037),(3383,'Svaay Rieng','20',1037),(3384,'Taakaev','21',1037),(3385,'Gilbert Islands','G',1113),(3386,'Line Islands','L',1113),(3387,'Phoenix Islands','P',1113),(3388,'Anjouan Ndzouani','A',1049),(3389,'Grande Comore Ngazidja','G',1049),(3390,'Moheli Moili','M',1049),(3391,'Kaesong-si','KAE',1114),(3392,'Nampo-si','NAM',1114),(3393,'Pyongyang-ai','PYO',1114),(3394,'Chagang-do','CHA',1114),(3395,'Hamgyongbuk-do','HAB',1114),(3396,'Hamgyongnam-do','HAN',1114),(3397,'Hwanghaebuk-do','HWB',1114),(3398,'Hwanghaenam-do','HWN',1114),(3399,'Kangwon-do','KAN',1114),(3400,'Pyonganbuk-do','PYB',1114),(3401,'Pyongannam-do','PYN',1114),(3402,'Yanggang-do','YAN',1114),(3403,'Najin Sonbong-si','NAJ',1114),(3404,'Seoul Teugbyeolsi','11',1115),(3405,'Busan Gwang\'yeogsi','26',1115),(3406,'Daegu Gwang\'yeogsi','27',1115),(3407,'Daejeon Gwang\'yeogsi','30',1115),(3408,'Gwangju Gwang\'yeogsi','29',1115),(3409,'Incheon Gwang\'yeogsi','28',1115),(3410,'Ulsan Gwang\'yeogsi','31',1115),(3411,'Chungcheongbugdo','43',1115),(3412,'Chungcheongnamdo','44',1115),(3413,'Gang\'weondo','42',1115),(3414,'Gyeonggido','41',1115),(3415,'Gyeongsangbugdo','47',1115),(3416,'Gyeongsangnamdo','48',1115),(3417,'Jejudo','49',1115),(3418,'Jeonrabugdo','45',1115),(3419,'Jeonranamdo','46',1115),(3420,'Al Ahmadi','AH',1116),(3421,'Al Farwanlyah','FA',1116),(3422,'Al Jahrah','JA',1116),(3423,'Al Kuwayt','KU',1116),(3424,'Hawalli','HA',1116),(3425,'Almaty','ALA',1111),(3426,'Astana','AST',1111),(3427,'Almaty oblysy','ALM',1111),(3428,'Aqmola oblysy','AKM',1111),(3429,'Aqtobe oblysy','AKT',1111),(3430,'Atyrau oblyfiy','ATY',1111),(3431,'Batys Quzaqstan oblysy','ZAP',1111),(3432,'Mangghystau oblysy','MAN',1111),(3433,'Ongtustik Quzaqstan oblysy','YUZ',1111),(3434,'Pavlodar oblysy','PAV',1111),(3435,'Qaraghandy oblysy','KAR',1111),(3436,'Qostanay oblysy','KUS',1111),(3437,'Qyzylorda oblysy','KZY',1111),(3438,'Shyghys Quzaqstan oblysy','VOS',1111),(3439,'Soltustik Quzaqstan oblysy','SEV',1111),(3440,'Zhambyl oblysy Zhambylskaya oblast\'','ZHA',1111),(3441,'Vientiane','VT',1118),(3442,'Attapu','AT',1118),(3443,'Bokeo','BK',1118),(3444,'Bolikhamxai','BL',1118),(3445,'Champasak','CH',1118),(3446,'Houaphan','HO',1118),(3447,'Khammouan','KH',1118),(3448,'Louang Namtha','LM',1118),(3449,'Louangphabang','LP',1118),(3450,'Oudomxai','OU',1118),(3451,'Phongsali','PH',1118),(3452,'Salavan','SL',1118),(3453,'Savannakhet','SV',1118),(3454,'Xaignabouli','XA',1118),(3455,'Xiasomboun','XN',1118),(3456,'Xekong','XE',1118),(3457,'Xiangkhoang','XI',1118),(3458,'Beirut','BA',1120),(3459,'Beqaa','BI',1120),(3460,'Mount Lebanon','JL',1120),(3461,'North Lebanon','AS',1120),(3462,'South Lebanon','JA',1120),(3463,'Nabatieh','NA',1120),(3464,'Ampara','52',1199),(3465,'Anuradhapura','71',1199),(3466,'Badulla','81',1199),(3467,'Batticaloa','51',1199),(3468,'Colombo','11',1199),(3469,'Galle','31',1199),(3470,'Gampaha','12',1199),(3471,'Hambantota','33',1199),(3472,'Jaffna','41',1199),(3473,'Kalutara','13',1199),(3474,'Kandy','21',1199),(3475,'Kegalla','92',1199),(3476,'Kilinochchi','42',1199),(3477,'Kurunegala','61',1199),(3478,'Mannar','43',1199),(3479,'Matale','22',1199),(3480,'Matara','32',1199),(3481,'Monaragala','82',1199),(3482,'Mullaittivu','45',1199),(3483,'Nuwara Eliya','23',1199),(3484,'Polonnaruwa','72',1199),(3485,'Puttalum','62',1199),(3486,'Ratnapura','91',1199),(3487,'Trincomalee','53',1199),(3488,'VavunLya','44',1199),(3489,'Bomi','BM',1122),(3490,'Bong','BG',1122),(3491,'Grand Basaa','GB',1122),(3492,'Grand Cape Mount','CM',1122),(3493,'Grand Gedeh','GG',1122),(3494,'Grand Kru','GK',1122),(3495,'Lofa','LO',1122),(3496,'Margibi','MG',1122),(3497,'Maryland','MY',1122),(3498,'Montserrado','MO',1122),(3499,'Nimba','NI',1122),(3500,'Rivercess','RI',1122),(3501,'Sinoe','SI',1122),(3502,'Berea','D',1121),(3503,'Butha-Buthe','B',1121),(3504,'Leribe','C',1121),(3505,'Mafeteng','E',1121),(3506,'Maseru','A',1121),(3507,'Mohale\'s Hoek','F',1121),(3508,'Mokhotlong','J',1121),(3509,'Qacha\'s Nek','H',1121),(3510,'Quthing','G',1121),(3511,'Thaba-Tseka','K',1121),(3512,'Alytaus Apskritis','AL',1125),(3513,'Kauno Apskritis','KU',1125),(3514,'Klaipedos Apskritis','KL',1125),(3515,'Marijampoles Apskritis','MR',1125),(3516,'Panevezio Apskritis','PN',1125),(3517,'Sisuliu Apskritis','SA',1125),(3518,'Taurages Apskritis','TA',1125),(3519,'Telsiu Apskritis','TE',1125),(3520,'Utenos Apskritis','UT',1125),(3521,'Vilniaus Apskritis','VL',1125),(3522,'Diekirch','D',1126),(3523,'GreveNmacher','G',1126),(3550,'Daugavpils','DGV',1119),(3551,'Jelgava','JEL',1119),(3552,'Jūrmala','JUR',1119),(3553,'Liepāja','LPX',1119),(3554,'Rēzekne','REZ',1119),(3555,'Rīga','RIX',1119),(3556,'Ventspils','VEN',1119),(3557,'Ajdābiyā','AJ',1123),(3558,'Al Buţnān','BU',1123),(3559,'Al Hizām al Akhdar','HZ',1123),(3560,'Al Jabal al Akhdar','JA',1123),(3561,'Al Jifārah','JI',1123),(3562,'Al Jufrah','JU',1123),(3563,'Al Kufrah','KF',1123),(3564,'Al Marj','MJ',1123),(3565,'Al Marqab','MB',1123),(3566,'Al Qaţrūn','QT',1123),(3567,'Al Qubbah','QB',1123),(3568,'Al Wāhah','WA',1123),(3569,'An Nuqaţ al Khams','NQ',1123),(3570,'Ash Shāţi\'','SH',1123),(3571,'Az Zāwiyah','ZA',1123),(3572,'Banghāzī','BA',1123),(3573,'Banī Walīd','BW',1123),(3574,'Darnah','DR',1123),(3575,'Ghadāmis','GD',1123),(3576,'Gharyān','GR',1123),(3577,'Ghāt','GT',1123),(3578,'Jaghbūb','JB',1123),(3579,'Mişrātah','MI',1123),(3580,'Mizdah','MZ',1123),(3581,'Murzuq','MQ',1123),(3582,'Nālūt','NL',1123),(3583,'Sabhā','SB',1123),(3584,'Şabrātah Şurmān','SS',1123),(3585,'Surt','SR',1123),(3586,'Tājūrā\' wa an Nawāhī al Arbāh','TN',1123),(3587,'Ţarābulus','TB',1123),(3588,'Tarhūnah-Masallātah','TM',1123),(3589,'Wādī al hayāt','WD',1123),(3590,'Yafran-Jādū','YJ',1123),(3591,'Agadir','AGD',1146),(3592,'Aït Baha','BAH',1146),(3593,'Aït Melloul','MEL',1146),(3594,'Al Haouz','HAO',1146),(3595,'Al Hoceïma','HOC',1146),(3596,'Assa-Zag','ASZ',1146),(3597,'Azilal','AZI',1146),(3598,'Beni Mellal','BEM',1146),(3599,'Ben Sllmane','BES',1146),(3600,'Berkane','BER',1146),(3601,'Boujdour','BOD',1146),(3602,'Boulemane','BOM',1146),(3603,'Casablanca [Dar el Beïda]','CAS',1146),(3604,'Chefchaouene','CHE',1146),(3605,'Chichaoua','CHI',1146),(3606,'El Hajeb','HAJ',1146),(3607,'El Jadida','JDI',1146),(3608,'Errachidia','ERR',1146),(3609,'Essaouira','ESI',1146),(3610,'Es Smara','ESM',1146),(3611,'Fès','FES',1146),(3612,'Figuig','FIG',1146),(3613,'Guelmim','GUE',1146),(3614,'Ifrane','IFR',1146),(3615,'Jerada','JRA',1146),(3616,'Kelaat Sraghna','KES',1146),(3617,'Kénitra','KEN',1146),(3618,'Khemisaet','KHE',1146),(3619,'Khenifra','KHN',1146),(3620,'Khouribga','KHO',1146),(3621,'Laâyoune (EH)','LAA',1146),(3622,'Larache','LAP',1146),(3623,'Marrakech','MAR',1146),(3624,'Meknsès','MEK',1146),(3625,'Nador','NAD',1146),(3626,'Ouarzazate','OUA',1146),(3627,'Oued ed Dahab (EH)','OUD',1146),(3628,'Oujda','OUJ',1146),(3629,'Rabat-Salé','RBA',1146),(3630,'Safi','SAF',1146),(3631,'Sefrou','SEF',1146),(3632,'Settat','SET',1146),(3633,'Sidl Kacem','SIK',1146),(3634,'Tanger','TNG',1146),(3635,'Tan-Tan','TNT',1146),(3636,'Taounate','TAO',1146),(3637,'Taroudannt','TAR',1146),(3638,'Tata','TAT',1146),(3639,'Taza','TAZ',1146),(3640,'Tétouan','TET',1146),(3641,'Tiznit','TIZ',1146),(3642,'Gagauzia, Unitate Teritoriala Autonoma','GA',1142),(3643,'Chisinau','CU',1142),(3644,'Stinga Nistrului, unitatea teritoriala din','SN',1142),(3645,'Balti','BA',1142),(3646,'Cahul','CA',1142),(3647,'Edinet','ED',1142),(3648,'Lapusna','LA',1142),(3649,'Orhei','OR',1142),(3650,'Soroca','SO',1142),(3651,'Taraclia','TA',1142),(3652,'Tighina [Bender]','TI',1142),(3653,'Ungheni','UN',1142),(3654,'Antananarivo','T',1129),(3655,'Antsiranana','D',1129),(3656,'Fianarantsoa','F',1129),(3657,'Mahajanga','M',1129),(3658,'Toamasina','A',1129),(3659,'Toliara','U',1129),(3660,'Ailinglapalap','ALL',1135),(3661,'Ailuk','ALK',1135),(3662,'Arno','ARN',1135),(3663,'Aur','AUR',1135),(3664,'Ebon','EBO',1135),(3665,'Eniwetok','ENI',1135),(3666,'Jaluit','JAL',1135),(3667,'Kili','KIL',1135),(3668,'Kwajalein','KWA',1135),(3669,'Lae','LAE',1135),(3670,'Lib','LIB',1135),(3671,'Likiep','LIK',1135),(3672,'Majuro','MAJ',1135),(3673,'Maloelap','MAL',1135),(3674,'Mejit','MEJ',1135),(3675,'Mili','MIL',1135),(3676,'Namorik','NMK',1135),(3677,'Namu','NMU',1135),(3678,'Rongelap','RON',1135),(3679,'Ujae','UJA',1135),(3680,'Ujelang','UJL',1135),(3681,'Utirik','UTI',1135),(3682,'Wotho','WTN',1135),(3683,'Wotje','WTJ',1135),(3684,'Bamako','BK0',1133),(3685,'Gao','7',1133),(3686,'Kayes','1',1133),(3687,'Kidal','8',1133),(3688,'Xoulikoro','2',1133),(3689,'Mopti','5',1133),(3690,'S69ou','4',1133),(3691,'Sikasso','3',1133),(3692,'Tombouctou','6',1133),(3693,'Ayeyarwady','07',1035),(3694,'Bago','02',1035),(3695,'Magway','03',1035),(3696,'Mandalay','04',1035),(3697,'Sagaing','01',1035),(3698,'Tanintharyi','05',1035),(3699,'Yangon','06',1035),(3700,'Chin','14',1035),(3701,'Kachin','11',1035),(3702,'Kayah','12',1035),(3703,'Kayin','13',1035),(3704,'Mon','15',1035),(3705,'Rakhine','16',1035),(3706,'Shan','17',1035),(3707,'Ulaanbaatar','1',1144),(3708,'Arhangay','073',1144),(3709,'Bayanhongor','069',1144),(3710,'Bayan-Olgiy','071',1144),(3711,'Bulgan','067',1144),(3712,'Darhan uul','037',1144),(3713,'Dornod','061',1144),(3714,'Dornogov,','063',1144),(3715,'DundgovL','059',1144),(3716,'Dzavhan','057',1144),(3717,'Govi-Altay','065',1144),(3718,'Govi-Smber','064',1144),(3719,'Hentiy','039',1144),(3720,'Hovd','043',1144),(3721,'Hovsgol','041',1144),(3722,'Omnogovi','053',1144),(3723,'Orhon','035',1144),(3724,'Ovorhangay','055',1144),(3725,'Selenge','049',1144),(3726,'Shbaatar','051',1144),(3727,'Tov','047',1144),(3728,'Uvs','046',1144),(3729,'Nouakchott','NKC',1137),(3730,'Assaba','03',1137),(3731,'Brakna','05',1137),(3732,'Dakhlet Nouadhibou','08',1137),(3733,'Gorgol','04',1137),(3734,'Guidimaka','10',1137),(3735,'Hodh ech Chargui','01',1137),(3736,'Hodh el Charbi','02',1137),(3737,'Inchiri','12',1137),(3738,'Tagant','09',1137),(3739,'Tiris Zemmour','11',1137),(3740,'Trarza','06',1137),(3741,'Beau Bassin-Rose Hill','BR',1138),(3742,'Curepipe','CU',1138),(3743,'Port Louis','PU',1138),(3744,'Quatre Bornes','QB',1138),(3745,'Vacosa-Phoenix','VP',1138),(3746,'Black River','BL',1138),(3747,'Flacq','FL',1138),(3748,'Grand Port','GP',1138),(3749,'Moka','MO',1138),(3750,'Pamplemousses','PA',1138),(3751,'Plaines Wilhems','PW',1138),(3752,'Riviere du Rempart','RP',1138),(3753,'Savanne','SA',1138),(3754,'Agalega Islands','AG',1138),(3755,'Cargados Carajos Shoals','CC',1138),(3756,'Rodrigues Island','RO',1138),(3757,'Male','MLE',1132),(3758,'Alif','02',1132),(3759,'Baa','20',1132),(3760,'Dhaalu','17',1132),(3761,'Faafu','14',1132),(3762,'Gaaf Alif','27',1132),(3763,'Gaefu Dhaalu','28',1132),(3764,'Gnaviyani','29',1132),(3765,'Haa Alif','07',1132),(3766,'Haa Dhaalu','23',1132),(3767,'Kaafu','26',1132),(3768,'Laamu','05',1132),(3769,'Lhaviyani','03',1132),(3770,'Meemu','12',1132),(3771,'Noonu','25',1132),(3772,'Raa','13',1132),(3773,'Seenu','01',1132),(3774,'Shaviyani','24',1132),(3775,'Thaa','08',1132),(3776,'Vaavu','04',1132),(3777,'Balaka','BA',1130),(3778,'Blantyre','BL',1130),(3779,'Chikwawa','CK',1130),(3780,'Chiradzulu','CR',1130),(3781,'Chitipa','CT',1130),(3782,'Dedza','DE',1130),(3783,'Dowa','DO',1130),(3784,'Karonga','KR',1130),(3785,'Kasungu','KS',1130),(3786,'Likoma Island','LK',1130),(3787,'Lilongwe','LI',1130),(3788,'Machinga','MH',1130),(3789,'Mangochi','MG',1130),(3790,'Mchinji','MC',1130),(3791,'Mulanje','MU',1130),(3792,'Mwanza','MW',1130),(3793,'Mzimba','MZ',1130),(3794,'Nkhata Bay','NB',1130),(3795,'Nkhotakota','NK',1130),(3796,'Nsanje','NS',1130),(3797,'Ntcheu','NU',1130),(3798,'Ntchisi','NI',1130),(3799,'Phalomba','PH',1130),(3800,'Rumphi','RU',1130),(3801,'Salima','SA',1130),(3802,'Thyolo','TH',1130),(3803,'Zomba','ZO',1130),(3804,'Aguascalientes','AGU',1140),(3805,'Baja California','BCN',1140),(3806,'Baja California Sur','BCS',1140),(3807,'Campeche','CAM',1140),(3808,'Coahuila','COA',1140),(3809,'Colima','COL',1140),(3810,'Chiapas','CHP',1140),(3811,'Chihuahua','CHH',1140),(3812,'Durango','DUR',1140),(3813,'Guanajuato','GUA',1140),(3814,'Guerrero','GRO',1140),(3815,'Hidalgo','HID',1140),(3816,'Jalisco','JAL',1140),(3817,'Mexico','MEX',1140),(3818,'Michoacin','MIC',1140),(3819,'Morelos','MOR',1140),(3820,'Nayarit','NAY',1140),(3821,'Nuevo Leon','NLE',1140),(3822,'Oaxaca','OAX',1140),(3823,'Puebla','PUE',1140),(3824,'Queretaro','QUE',1140),(3825,'Quintana Roo','ROO',1140),(3826,'San Luis Potosi','SLP',1140),(3827,'Sinaloa','SIN',1140),(3828,'Sonora','SON',1140),(3829,'Tabasco','TAB',1140),(3830,'Tamaulipas','TAM',1140),(3831,'Tlaxcala','TLA',1140),(3832,'Veracruz','VER',1140),(3833,'Yucatan','YUC',1140),(3834,'Zacatecas','ZAC',1140),(3835,'Wilayah Persekutuan Kuala Lumpur','14',1131),(3836,'Wilayah Persekutuan Labuan','15',1131),(3837,'Wilayah Persekutuan Putrajaya','16',1131),(3838,'Johor','01',1131),(3839,'Kedah','02',1131),(3840,'Kelantan','03',1131),(3841,'Melaka','04',1131),(3842,'Negeri Sembilan','05',1131),(3843,'Pahang','06',1131),(3844,'Perak','08',1131),(3845,'Perlis','09',1131),(3846,'Pulau Pinang','07',1131),(3847,'Sabah','12',1131),(3848,'Sarawak','13',1131),(3849,'Selangor','10',1131),(3850,'Terengganu','11',1131),(3851,'Maputo','MPM',1147),(3852,'Cabo Delgado','P',1147),(3853,'Gaza','G',1147),(3854,'Inhambane','I',1147),(3855,'Manica','B',1147),(3856,'Numpula','N',1147),(3857,'Niaaea','A',1147),(3858,'Sofala','S',1147),(3859,'Tete','T',1147),(3860,'Zambezia','Q',1147),(3861,'Caprivi','CA',1148),(3862,'Erongo','ER',1148),(3863,'Hardap','HA',1148),(3864,'Karas','KA',1148),(3865,'Khomas','KH',1148),(3866,'Kunene','KU',1148),(3867,'Ohangwena','OW',1148),(3868,'Okavango','OK',1148),(3869,'Omaheke','OH',1148),(3870,'Omusati','OS',1148),(3871,'Oshana','ON',1148),(3872,'Oshikoto','OT',1148),(3873,'Otjozondjupa','OD',1148),(3874,'Niamey','8',1156),(3875,'Agadez','1',1156),(3876,'Diffa','2',1156),(3877,'Dosso','3',1156),(3878,'Maradi','4',1156),(3879,'Tahoua','S',1156),(3880,'Tillaberi','6',1156),(3881,'Zinder','7',1156),(3882,'Abuja Federal Capital Territory','FC',1157),(3883,'Abia','AB',1157),(3884,'Adamawa','AD',1157),(3885,'Akwa Ibom','AK',1157),(3886,'Anambra','AN',1157),(3887,'Bauchi','BA',1157),(3888,'Bayelsa','BY',1157),(3889,'Benue','BE',1157),(3890,'Borno','BO',1157),(3891,'Cross River','CR',1157),(3892,'Delta','DE',1157),(3893,'Ebonyi','EB',1157),(3894,'Edo','ED',1157),(3895,'Ekiti','EK',1157),(3896,'Enugu','EN',1157),(3897,'Gombe','GO',1157),(3898,'Imo','IM',1157),(3899,'Jigawa','JI',1157),(3900,'Kaduna','KD',1157),(3901,'Kano','KN',1157),(3902,'Katsina','KT',1157),(3903,'Kebbi','KE',1157),(3904,'Kogi','KO',1157),(3905,'Kwara','KW',1157),(3906,'Lagos','LA',1157),(3907,'Nassarawa','NA',1157),(3908,'Niger','NI',1157),(3909,'Ogun','OG',1157),(3910,'Ondo','ON',1157),(3911,'Osun','OS',1157),(3912,'Oyo','OY',1157),(3913,'Rivers','RI',1157),(3914,'Sokoto','SO',1157),(3915,'Taraba','TA',1157),(3916,'Yobe','YO',1157),(3917,'Zamfara','ZA',1157),(3918,'Boaco','BO',1155),(3919,'Carazo','CA',1155),(3920,'Chinandega','CI',1155),(3921,'Chontales','CO',1155),(3922,'Esteli','ES',1155),(3923,'Jinotega','JI',1155),(3924,'Leon','LE',1155),(3925,'Madriz','MD',1155),(3926,'Managua','MN',1155),(3927,'Masaya','MS',1155),(3928,'Matagalpa','MT',1155),(3929,'Nueva Segovia','NS',1155),(3930,'Rio San Juan','SJ',1155),(3931,'Rivas','RI',1155),(3932,'Atlantico Norte','AN',1155),(3933,'Atlantico Sur','AS',1155),(3934,'Drente','DR',1152),(3935,'Flevoland','FL',1152),(3936,'Friesland','FR',1152),(3937,'Gelderland','GL',1152),(3938,'Groningen','GR',1152),(3939,'Noord-Brabant','NB',1152),(3940,'Noord-Holland','NH',1152),(3941,'Overijssel','OV',1152),(3942,'Utrecht','UT',1152),(3943,'Zuid-Holland','ZH',1152),(3944,'Zeeland','ZL',1152),(3945,'Akershus','02',1161),(3946,'Aust-Agder','09',1161),(3947,'Buskerud','06',1161),(3948,'Finnmark','20',1161),(3949,'Hedmark','04',1161),(3950,'Hordaland','12',1161),(3951,'Møre og Romsdal','15',1161),(3952,'Nordland','18',1161),(3953,'Nord-Trøndelag','17',1161),(3954,'Oppland','05',1161),(3955,'Oslo','03',1161),(3956,'Rogaland','11',1161),(3957,'Sogn og Fjordane','14',1161),(3958,'Sør-Trøndelag','16',1161),(3959,'Telemark','06',1161),(3960,'Troms','19',1161),(3961,'Vest-Agder','10',1161),(3962,'Vestfold','07',1161),(3963,'Østfold','01',1161),(3964,'Jan Mayen','22',1161),(3965,'Svalbard','21',1161),(3966,'Auckland','AUK',1154),(3967,'Bay of Plenty','BOP',1154),(3968,'Canterbury','CAN',1154),(3969,'Gisborne','GIS',1154),(3970,'Hawkes Bay','HKB',1154),(3971,'Manawatu-Wanganui','MWT',1154),(3972,'Marlborough','MBH',1154),(3973,'Nelson','NSN',1154),(3974,'Northland','NTL',1154),(3975,'Otago','OTA',1154),(3976,'Southland','STL',1154),(3977,'Taranaki','TKI',1154),(3978,'Tasman','TAS',1154),(3979,'Waikato','WKO',1154),(3980,'Wellington','WGN',1154),(3981,'West Coast','WTC',1154),(3982,'Ad Dakhillyah','DA',1162),(3983,'Al Batinah','BA',1162),(3984,'Al Janblyah','JA',1162),(3985,'Al Wusta','WU',1162),(3986,'Ash Sharqlyah','SH',1162),(3987,'Az Zahirah','ZA',1162),(3988,'Masqat','MA',1162),(3989,'Musandam','MU',1162),(3990,'Bocas del Toro','1',1166),(3991,'Cocle','2',1166),(3992,'Chiriqui','4',1166),(3993,'Darien','5',1166),(3994,'Herrera','6',1166),(3995,'Loa Santoa','7',1166),(3996,'Panama','8',1166),(3997,'Veraguas','9',1166),(3998,'Comarca de San Blas','Q',1166),(3999,'El Callao','CAL',1169),(4000,'Ancash','ANC',1169),(4001,'Apurimac','APU',1169),(4002,'Arequipa','ARE',1169),(4003,'Ayacucho','AYA',1169),(4004,'Cajamarca','CAJ',1169),(4005,'Cuzco','CUS',1169),(4006,'Huancavelica','HUV',1169),(4007,'Huanuco','HUC',1169),(4008,'Ica','ICA',1169),(4009,'Junin','JUN',1169),(4010,'La Libertad','LAL',1169),(4011,'Lambayeque','LAM',1169),(4012,'Lima','LIM',1169),(4013,'Loreto','LOR',1169),(4014,'Madre de Dios','MDD',1169),(4015,'Moquegua','MOQ',1169),(4016,'Pasco','PAS',1169),(4017,'Piura','PIU',1169),(4018,'Puno','PUN',1169),(4019,'San Martin','SAM',1169),(4020,'Tacna','TAC',1169),(4021,'Tumbes','TUM',1169),(4022,'Ucayali','UCA',1169),(4023,'National Capital District (Port Moresby)','NCD',1167),(4024,'Chimbu','CPK',1167),(4025,'Eastern Highlands','EHG',1167),(4026,'East New Britain','EBR',1167),(4027,'East Sepik','ESW',1167),(4028,'Enga','EPW',1167),(4029,'Gulf','GPK',1167),(4030,'Madang','MPM',1167),(4031,'Manus','MRL',1167),(4032,'Milne Bay','MBA',1167),(4033,'Morobe','MPL',1167),(4034,'New Ireland','NIK',1167),(4035,'North Solomons','NSA',1167),(4036,'Santaun','SAN',1167),(4037,'Southern Highlands','SHM',1167),(4038,'Western Highlands','WHM',1167),(4039,'West New Britain','WBK',1167),(4040,'Abra','ABR',1170),(4041,'Agusan del Norte','AGN',1170),(4042,'Agusan del Sur','AGS',1170),(4043,'Aklan','AKL',1170),(4044,'Albay','ALB',1170),(4045,'Antique','ANT',1170),(4046,'Apayao','APA',1170),(4047,'Aurora','AUR',1170),(4048,'Basilan','BAS',1170),(4049,'Batasn','BAN',1170),(4050,'Batanes','BTN',1170),(4051,'Batangas','BTG',1170),(4052,'Benguet','BEN',1170),(4053,'Biliran','BIL',1170),(4054,'Bohol','BOH',1170),(4055,'Bukidnon','BUK',1170),(4056,'Bulacan','BUL',1170),(4057,'Cagayan','CAG',1170),(4058,'Camarines Norte','CAN',1170),(4059,'Camarines Sur','CAS',1170),(4060,'Camiguin','CAM',1170),(4061,'Capiz','CAP',1170),(4062,'Catanduanes','CAT',1170),(4063,'Cavite','CAV',1170),(4064,'Cebu','CEB',1170),(4065,'Compostela Valley','COM',1170),(4066,'Davao','DAV',1170),(4067,'Davao del Sur','DAS',1170),(4068,'Davao Oriental','DAO',1170),(4069,'Eastern Samar','EAS',1170),(4070,'Guimaras','GUI',1170),(4071,'Ifugao','IFU',1170),(4072,'Ilocos Norte','ILN',1170),(4073,'Ilocos Sur','ILS',1170),(4074,'Iloilo','ILI',1170),(4075,'Isabela','ISA',1170),(4076,'Kalinga-Apayso','KAL',1170),(4077,'Laguna','LAG',1170),(4078,'Lanao del Norte','LAN',1170),(4079,'Lanao del Sur','LAS',1170),(4080,'La Union','LUN',1170),(4081,'Leyte','LEY',1170),(4082,'Maguindanao','MAG',1170),(4083,'Marinduque','MAD',1170),(4084,'Masbate','MAS',1170),(4085,'Mindoro Occidental','MDC',1170),(4086,'Mindoro Oriental','MDR',1170),(4087,'Misamis Occidental','MSC',1170),(4088,'Misamis Oriental','MSR',1170),(4089,'Mountain Province','MOU',1170),(4090,'Negroe Occidental','NEC',1170),(4091,'Negros Oriental','NER',1170),(4092,'North Cotabato','NCO',1170),(4093,'Northern Samar','NSA',1170),(4094,'Nueva Ecija','NUE',1170),(4095,'Nueva Vizcaya','NUV',1170),(4096,'Palawan','PLW',1170),(4097,'Pampanga','PAM',1170),(4098,'Pangasinan','PAN',1170),(4099,'Quezon','QUE',1170),(4100,'Quirino','QUI',1170),(4101,'Rizal','RIZ',1170),(4102,'Romblon','ROM',1170),(4103,'Sarangani','SAR',1170),(4104,'Siquijor','SIG',1170),(4105,'Sorsogon','SOR',1170),(4106,'South Cotabato','SCO',1170),(4107,'Southern Leyte','SLE',1170),(4108,'Sultan Kudarat','SUK',1170),(4109,'Sulu','SLU',1170),(4110,'Surigao del Norte','SUN',1170),(4111,'Surigao del Sur','SUR',1170),(4112,'Tarlac','TAR',1170),(4113,'Tawi-Tawi','TAW',1170),(4114,'Western Samar','WSA',1170),(4115,'Zambales','ZMB',1170),(4116,'Zamboanga del Norte','ZAN',1170),(4117,'Zamboanga del Sur','ZAS',1170),(4118,'Zamboanga Sibiguey','ZSI',1170),(4119,'Islamabad Federal Capital Area','IS',1163),(4120,'Baluchistan','BA',1163),(4121,'Khyber Pakhtun Khawa','NW',1163),(4122,'Sindh','SD',1163),(4123,'Federally Administered Tribal Areas','TA',1163),(4124,'Azad Kashmir','JK',1163),(4125,'Gilgit-Baltistan','NA',1163),(4126,'Aveiro','01',1173),(4127,'Beja','02',1173),(4128,'Braga','03',1173),(4129,'Braganca','04',1173),(4130,'Castelo Branco','05',1173),(4131,'Colmbra','06',1173),(4132,'Ovora','07',1173),(4133,'Faro','08',1173),(4134,'Guarda','09',1173),(4135,'Leiria','10',1173),(4136,'Lisboa','11',1173),(4137,'Portalegre','12',1173),(4138,'Porto','13',1173),(4139,'Santarem','14',1173),(4140,'Setubal','15',1173),(4141,'Viana do Castelo','16',1173),(4142,'Vila Real','17',1173),(4143,'Viseu','18',1173),(4144,'Regiao Autonoma dos Acores','20',1173),(4145,'Regiao Autonoma da Madeira','30',1173),(4146,'Asuncion','ASU',1168),(4147,'Alto Paraguay','16',1168),(4148,'Alto Parana','10',1168),(4149,'Amambay','13',1168),(4150,'Boqueron','19',1168),(4151,'Caeguazu','5',1168),(4152,'Caazapl','6',1168),(4153,'Canindeyu','14',1168),(4154,'Concepcion','1',1168),(4155,'Cordillera','3',1168),(4156,'Guaira','4',1168),(4157,'Itapua','7',1168),(4158,'Miaiones','8',1168),(4159,'Neembucu','12',1168),(4160,'Paraguari','9',1168),(4161,'Presidente Hayes','15',1168),(4162,'San Pedro','2',1168),(4163,'Ad Dawhah','DA',1175),(4164,'Al Ghuwayriyah','GH',1175),(4165,'Al Jumayliyah','JU',1175),(4166,'Al Khawr','KH',1175),(4167,'Al Wakrah','WA',1175),(4168,'Ar Rayyan','RA',1175),(4169,'Jariyan al Batnah','JB',1175),(4170,'Madinat ash Shamal','MS',1175),(4171,'Umm Salal','US',1175),(4172,'Bucuresti','B',1176),(4173,'Alba','AB',1176),(4174,'Arad','AR',1176),(4175,'Arges','AG',1176),(4176,'Bacau','BC',1176),(4177,'Bihor','BH',1176),(4178,'Bistrita-Nasaud','BN',1176),(4179,'Boto\'ani','BT',1176),(4180,'Bra\'ov','BV',1176),(4181,'Braila','BR',1176),(4182,'Buzau','BZ',1176),(4183,'Caras-Severin','CS',1176),(4184,'Ca la ras\'i','CL',1176),(4185,'Cluj','CJ',1176),(4186,'Constant\'a','CT',1176),(4187,'Covasna','CV',1176),(4188,'Dambovit\'a','DB',1176),(4189,'Dolj','DJ',1176),(4190,'Galat\'i','GL',1176),(4191,'Giurgiu','GR',1176),(4192,'Gorj','GJ',1176),(4193,'Harghita','HR',1176),(4194,'Hunedoara','HD',1176),(4195,'Ialomit\'a','IL',1176),(4196,'Ias\'i','IS',1176),(4197,'Ilfov','IF',1176),(4198,'Maramures','MM',1176),(4199,'Mehedint\'i','MH',1176),(4200,'Mures','MS',1176),(4201,'Neamt','NT',1176),(4202,'Olt','OT',1176),(4203,'Prahova','PH',1176),(4204,'Satu Mare','SM',1176),(4205,'Sa laj','SJ',1176),(4206,'Sibiu','SB',1176),(4207,'Suceava','SV',1176),(4208,'Teleorman','TR',1176),(4209,'Timis','TM',1176),(4210,'Tulcea','TL',1176),(4211,'Vaslui','VS',1176),(4212,'Valcea','VL',1176),(4213,'Vrancea','VN',1176),(4214,'Adygeya, Respublika','AD',1177),(4215,'Altay, Respublika','AL',1177),(4216,'Bashkortostan, Respublika','BA',1177),(4217,'Buryatiya, Respublika','BU',1177),(4218,'Chechenskaya Respublika','CE',1177),(4219,'Chuvashskaya Respublika','CU',1177),(4220,'Dagestan, Respublika','DA',1177),(4221,'Ingushskaya Respublika','IN',1177),(4222,'Kabardino-Balkarskaya','KB',1177),(4223,'Kalmykiya, Respublika','KL',1177),(4224,'Karachayevo-Cherkesskaya Respublika','KC',1177),(4225,'Kareliya, Respublika','KR',1177),(4226,'Khakasiya, Respublika','KK',1177),(4227,'Komi, Respublika','KO',1177),(4228,'Mariy El, Respublika','ME',1177),(4229,'Mordoviya, Respublika','MO',1177),(4230,'Sakha, Respublika [Yakutiya]','SA',1177),(4231,'Severnaya Osetiya, Respublika','SE',1177),(4232,'Tatarstan, Respublika','TA',1177),(4233,'Tyva, Respublika [Tuva]','TY',1177),(4234,'Udmurtskaya Respublika','UD',1177),(4235,'Altayskiy kray','ALT',1177),(4236,'Khabarovskiy kray','KHA',1177),(4237,'Krasnodarskiy kray','KDA',1177),(4238,'Krasnoyarskiy kray','KYA',1177),(4239,'Primorskiy kray','PRI',1177),(4240,'Stavropol\'skiy kray','STA',1177),(4241,'Amurskaya oblast\'','AMU',1177),(4242,'Arkhangel\'skaya oblast\'','ARK',1177),(4243,'Astrakhanskaya oblast\'','AST',1177),(4244,'Belgorodskaya oblast\'','BEL',1177),(4245,'Bryanskaya oblast\'','BRY',1177),(4246,'Chelyabinskaya oblast\'','CHE',1177),(4247,'Zabaykalsky Krai\'','ZSK',1177),(4248,'Irkutskaya oblast\'','IRK',1177),(4249,'Ivanovskaya oblast\'','IVA',1177),(4250,'Kaliningradskaya oblast\'','KGD',1177),(4251,'Kaluzhskaya oblast\'','KLU',1177),(4252,'Kamchatka Krai\'','KAM',1177),(4253,'Kemerovskaya oblast\'','KEM',1177),(4254,'Kirovskaya oblast\'','KIR',1177),(4255,'Kostromskaya oblast\'','KOS',1177),(4256,'Kurganskaya oblast\'','KGN',1177),(4257,'Kurskaya oblast\'','KRS',1177),(4258,'Leningradskaya oblast\'','LEN',1177),(4259,'Lipetskaya oblast\'','LIP',1177),(4260,'Magadanskaya oblast\'','MAG',1177),(4261,'Moskovskaya oblast\'','MOS',1177),(4262,'Murmanskaya oblast\'','MUR',1177),(4263,'Nizhegorodskaya oblast\'','NIZ',1177),(4264,'Novgorodskaya oblast\'','NGR',1177),(4265,'Novosibirskaya oblast\'','NVS',1177),(4266,'Omskaya oblast\'','OMS',1177),(4267,'Orenburgskaya oblast\'','ORE',1177),(4268,'Orlovskaya oblast\'','ORL',1177),(4269,'Penzenskaya oblast\'','PNZ',1177),(4270,'Perm krai\'','PEK',1177),(4271,'Pskovskaya oblast\'','PSK',1177),(4272,'Rostovskaya oblast\'','ROS',1177),(4273,'Ryazanskaya oblast\'','RYA',1177),(4274,'Sakhalinskaya oblast\'','SAK',1177),(4275,'Samarskaya oblast\'','SAM',1177),(4276,'Saratovskaya oblast\'','SAR',1177),(4277,'Smolenskaya oblast\'','SMO',1177),(4278,'Sverdlovskaya oblast\'','SVE',1177),(4279,'Tambovskaya oblast\'','TAM',1177),(4280,'Tomskaya oblast\'','TOM',1177),(4281,'Tul\'skaya oblast\'','TUL',1177),(4282,'Tverskaya oblast\'','TVE',1177),(4283,'Tyumenskaya oblast\'','TYU',1177),(4284,'Ul\'yanovskaya oblast\'','ULY',1177),(4285,'Vladimirskaya oblast\'','VLA',1177),(4286,'Volgogradskaya oblast\'','VGG',1177),(4287,'Vologodskaya oblast\'','VLG',1177),(4288,'Voronezhskaya oblast\'','VOR',1177),(4289,'Yaroslavskaya oblast\'','YAR',1177),(4290,'Moskva','MOW',1177),(4291,'Sankt-Peterburg','SPE',1177),(4292,'Yevreyskaya avtonomnaya oblast\'','YEV',1177),(4294,'Chukotskiy avtonomnyy okrug','CHU',1177),(4296,'Khanty-Mansiyskiy avtonomnyy okrug','KHM',1177),(4299,'Nenetskiy avtonomnyy okrug','NEN',1177),(4302,'Yamalo-Nenetskiy avtonomnyy okrug','YAN',1177),(4303,'Butare','C',1178),(4304,'Byumba','I',1178),(4305,'Cyangugu','E',1178),(4306,'Gikongoro','D',1178),(4307,'Gisenyi','G',1178),(4308,'Gitarama','B',1178),(4309,'Kibungo','J',1178),(4310,'Kibuye','F',1178),(4311,'Kigali-Rural Kigali y\' Icyaro','K',1178),(4312,'Kigali-Ville Kigali Ngari','L',1178),(4313,'Mutara','M',1178),(4314,'Ruhengeri','H',1178),(4315,'Al Batah','11',1187),(4316,'Al H,udd ash Shamallyah','08',1187),(4317,'Al Jawf','12',1187),(4318,'Al Madinah','03',1187),(4319,'Al Qasim','05',1187),(4320,'Ar Riyad','01',1187),(4321,'Asir','14',1187),(4322,'Ha\'il','06',1187),(4323,'Jlzan','09',1187),(4324,'Makkah','02',1187),(4325,'Najran','10',1187),(4326,'Tabuk','07',1187),(4327,'Capital Territory (Honiara)','CT',1194),(4328,'Guadalcanal','GU',1194),(4329,'Isabel','IS',1194),(4330,'Makira','MK',1194),(4331,'Malaita','ML',1194),(4332,'Temotu','TE',1194),(4333,'A\'ali an Nil','23',1200),(4334,'Al Bah al Ahmar','26',1200),(4335,'Al Buhayrat','18',1200),(4336,'Al Jazirah','07',1200),(4337,'Al Khartum','03',1200),(4338,'Al Qadarif','06',1200),(4339,'Al Wahdah','22',1200),(4340,'An Nil','04',1200),(4341,'An Nil al Abyaq','08',1200),(4342,'An Nil al Azraq','24',1200),(4343,'Ash Shamallyah','01',1200),(4344,'Bahr al Jabal','17',1200),(4345,'Gharb al Istiwa\'iyah','16',1200),(4346,'Gharb Ba~r al Ghazal','14',1200),(4347,'Gharb Darfur','12',1200),(4348,'Gharb Kurdufan','10',1200),(4349,'Janub Darfur','11',1200),(4350,'Janub Rurdufan','13',1200),(4351,'Jnqall','20',1200),(4352,'Kassala','05',1200),(4353,'Shamal Batr al Ghazal','15',1200),(4354,'Shamal Darfur','02',1200),(4355,'Shamal Kurdufan','09',1200),(4356,'Sharq al Istiwa\'iyah','19',1200),(4357,'Sinnar','25',1200),(4358,'Warab','21',1200),(4359,'Blekinge lan','K',1204),(4360,'Dalarnas lan','W',1204),(4361,'Gotlands lan','I',1204),(4362,'Gavleborge lan','X',1204),(4363,'Hallands lan','N',1204),(4364,'Jamtlande lan','Z',1204),(4365,'Jonkopings lan','F',1204),(4366,'Kalmar lan','H',1204),(4367,'Kronoberge lan','G',1204),(4368,'Norrbottena lan','BD',1204),(4369,'Skane lan','M',1204),(4370,'Stockholms lan','AB',1204),(4371,'Sodermanlands lan','D',1204),(4372,'Uppsala lan','C',1204),(4373,'Varmlanda lan','S',1204),(4374,'Vasterbottens lan','AC',1204),(4375,'Vasternorrlands lan','Y',1204),(4376,'Vastmanlanda lan','U',1204),(4377,'Vastra Gotalands lan','Q',1204),(4378,'Orebro lan','T',1204),(4379,'Ostergotlands lan','E',1204),(4380,'Saint Helena','SH',1180),(4381,'Ascension','AC',1180),(4382,'Tristan da Cunha','TA',1180),(4383,'Ajdovscina','001',1193),(4384,'Beltinci','002',1193),(4385,'Benedikt','148',1193),(4386,'Bistrica ob Sotli','149',1193),(4387,'Bled','003',1193),(4388,'Bloke','150',1193),(4389,'Bohinj','004',1193),(4390,'Borovnica','005',1193),(4391,'Bovec','006',1193),(4392,'Braslovce','151',1193),(4393,'Brda','007',1193),(4394,'Brezovica','008',1193),(4395,'Brezica','009',1193),(4396,'Cankova','152',1193),(4397,'Celje','011',1193),(4398,'Cerklje na Gorenjskem','012',1193),(4399,'Cerknica','013',1193),(4400,'Cerkno','014',1193),(4401,'Cerkvenjak','153',1193),(4402,'Crensovci','015',1193),(4403,'Crna na Koroskem','016',1193),(4404,'Crnomelj','017',1193),(4405,'Destrnik','018',1193),(4406,'Divaca','019',1193),(4407,'Dobje','154',1193),(4408,'Dobrepolje','020',1193),(4409,'Dobrna','155',1193),(4410,'Dobrova-Polhov Gradec','021',1193),(4411,'Dobrovnik','156',1193),(4412,'Dol pri Ljubljani','022',1193),(4413,'Dolenjske Toplice','157',1193),(4414,'Domzale','023',1193),(4415,'Dornava','024',1193),(4416,'Dravograd','025',1193),(4417,'Duplek','026',1193),(4418,'Gorenja vas-Poljane','027',1193),(4419,'Gorsnica','028',1193),(4420,'Gornja Radgona','029',1193),(4421,'Gornji Grad','030',1193),(4422,'Gornji Petrovci','031',1193),(4423,'Grad','158',1193),(4424,'Grosuplje','032',1193),(4425,'Hajdina','159',1193),(4426,'Hoce-Slivnica','160',1193),(4427,'Hodos','161',1193),(4428,'Jorjul','162',1193),(4429,'Hrastnik','034',1193),(4430,'Hrpelje-Kozina','035',1193),(4431,'Idrija','036',1193),(4432,'Ig','037',1193),(4433,'IIrska Bistrica','038',1193),(4434,'Ivancna Gorica','039',1193),(4435,'Izola','040',1193),(4436,'Jesenice','041',1193),(4437,'Jezersko','163',1193),(4438,'Jursinci','042',1193),(4439,'Kamnik','043',1193),(4440,'Kanal','044',1193),(4441,'Kidricevo','045',1193),(4442,'Kobarid','046',1193),(4443,'Kobilje','047',1193),(4444,'Jovevje','048',1193),(4445,'Komen','049',1193),(4446,'Komenda','164',1193),(4447,'Koper','050',1193),(4448,'Kostel','165',1193),(4449,'Kozje','051',1193),(4450,'Kranj','052',1193),(4451,'Kranjska Gora','053',1193),(4452,'Krizevci','166',1193),(4453,'Krsko','054',1193),(4454,'Kungota','055',1193),(4455,'Kuzma','056',1193),(4456,'Lasko','057',1193),(4457,'Lenart','058',1193),(4458,'Lendava','059',1193),(4459,'Litija','060',1193),(4460,'Ljubljana','061',1193),(4461,'Ljubno','062',1193),(4462,'Ljutomer','063',1193),(4463,'Logatec','064',1193),(4464,'Loska dolina','065',1193),(4465,'Loski Potok','066',1193),(4466,'Lovrenc na Pohorju','167',1193),(4467,'Luce','067',1193),(4468,'Lukovica','068',1193),(4469,'Majsperk','069',1193),(4470,'Maribor','070',1193),(4471,'Markovci','168',1193),(4472,'Medvode','071',1193),(4473,'Menges','072',1193),(4474,'Metlika','073',1193),(4475,'Mezica','074',1193),(4476,'Miklavz na Dravskern polju','169',1193),(4477,'Miren-Kostanjevica','075',1193),(4478,'Mirna Pec','170',1193),(4479,'Mislinja','076',1193),(4480,'Moravce','077',1193),(4481,'Moravske Toplice','078',1193),(4482,'Mozirje','079',1193),(4483,'Murska Sobota','080',1193),(4484,'Muta','081',1193),(4485,'Naklo','082',1193),(4486,'Nazarje','083',1193),(4487,'Nova Gorica','084',1193),(4488,'Nova mesto','085',1193),(4489,'Sveta Ana','181',1193),(4490,'Sveti Andraz v Slovenskih goricah','182',1193),(4491,'Sveti Jurij','116',1193),(4492,'Salovci','033',1193),(4493,'Sempeter-Vrtojba','183',1193),(4494,'Sencur','117',1193),(4495,'Sentilj','118',1193),(4496,'Sentjernej','119',1193),(4497,'Sentjur pri Celju','120',1193),(4498,'Skocjan','121',1193),(4499,'Skofja Loka','122',1193),(4500,'Skoftjica','123',1193),(4501,'Smarje pri Jelsah','124',1193),(4502,'Smartno ob Paki','125',1193),(4503,'Smartno pri Litiji','194',1193),(4504,'Sostanj','126',1193),(4505,'Store','127',1193),(4506,'Tabor','184',1193),(4507,'Tisina','010',1193),(4508,'Tolmin','128',1193),(4509,'Trbovje','129',1193),(4510,'Trebnje','130',1193),(4511,'Trnovska vas','185',1193),(4512,'Trzic','131',1193),(4513,'Trzin','186',1193),(4514,'Turnisce','132',1193),(4515,'Velenje','133',1193),(4516,'Velika Polana','187',1193),(4517,'Velika Lasce','134',1193),(4518,'Verzej','188',1193),(4519,'Videm','135',1193),(4520,'Vipava','136',1193),(4521,'Vitanje','137',1193),(4522,'Vojnik','138',1193),(4523,'Vransko','189',1193),(4524,'Vrhnika','140',1193),(4525,'Vuzenica','141',1193),(4526,'Zagorje ob Savi','142',1193),(4527,'Zavrc','143',1193),(4528,'Zrece','144',1193),(4529,'Zalec','190',1193),(4530,'Zelezniki','146',1193),(4531,'Zetale','191',1193),(4532,'Ziri','147',1193),(4533,'Zirovnica','192',1193),(4534,'Zuzemberk','193',1193),(4535,'Banskobystrický kraj','BC',1192),(4536,'Bratislavský kraj','BL',1192),(4537,'Košický kraj','KI',1192),(4538,'Nitriansky kraj','NJ',1192),(4539,'Prešovský kraj','PV',1192),(4540,'Trenčiansky kraj','TC',1192),(4541,'Trnavský kraj','TA',1192),(4542,'Žilinský kraj','ZI',1192),(4543,'Western Area (Freetown)','W',1190),(4544,'Dakar','DK',1188),(4545,'Diourbel','DB',1188),(4546,'Fatick','FK',1188),(4547,'Kaolack','KL',1188),(4548,'Kolda','KD',1188),(4549,'Louga','LG',1188),(4550,'Matam','MT',1188),(4551,'Saint-Louis','SL',1188),(4552,'Tambacounda','TC',1188),(4553,'Thies','TH',1188),(4554,'Ziguinchor','ZG',1188),(4555,'Awdal','AW',1195),(4556,'Bakool','BK',1195),(4557,'Banaadir','BN',1195),(4558,'Bay','BY',1195),(4559,'Galguduud','GA',1195),(4560,'Gedo','GE',1195),(4561,'Hiirsan','HI',1195),(4562,'Jubbada Dhexe','JD',1195),(4563,'Jubbada Hoose','JH',1195),(4564,'Mudug','MU',1195),(4565,'Nugaal','NU',1195),(4566,'Saneag','SA',1195),(4567,'Shabeellaha Dhexe','SD',1195),(4568,'Shabeellaha Hoose','SH',1195),(4569,'Sool','SO',1195),(4570,'Togdheer','TO',1195),(4571,'Woqooyi Galbeed','WO',1195),(4572,'Brokopondo','BR',1201),(4573,'Commewijne','CM',1201),(4574,'Coronie','CR',1201),(4575,'Marowijne','MA',1201),(4576,'Nickerie','NI',1201),(4577,'Paramaribo','PM',1201),(4578,'Saramacca','SA',1201),(4579,'Sipaliwini','SI',1201),(4580,'Wanica','WA',1201),(4581,'Principe','P',1207),(4582,'Sao Tome','S',1207),(4583,'Ahuachapan','AH',1066),(4584,'Cabanas','CA',1066),(4585,'Cuscatlan','CU',1066),(4586,'Chalatenango','CH',1066),(4587,'Morazan','MO',1066),(4588,'San Miguel','SM',1066),(4589,'San Salvador','SS',1066),(4590,'Santa Ana','SA',1066),(4591,'San Vicente','SV',1066),(4592,'Sonsonate','SO',1066),(4593,'Usulutan','US',1066),(4594,'Al Hasakah','HA',1206),(4595,'Al Ladhiqiyah','LA',1206),(4596,'Al Qunaytirah','QU',1206),(4597,'Ar Raqqah','RA',1206),(4598,'As Suwayda\'','SU',1206),(4599,'Dar\'a','DR',1206),(4600,'Dayr az Zawr','DY',1206),(4601,'Dimashq','DI',1206),(4602,'Halab','HL',1206),(4603,'Hamah','HM',1206),(4604,'Jim\'','HI',1206),(4605,'Idlib','ID',1206),(4606,'Rif Dimashq','RD',1206),(4607,'Tarts','TA',1206),(4608,'Hhohho','HH',1203),(4609,'Lubombo','LU',1203),(4610,'Manzini','MA',1203),(4611,'Shiselweni','SH',1203),(4612,'Batha','BA',1043),(4613,'Biltine','BI',1043),(4614,'Borkou-Ennedi-Tibesti','BET',1043),(4615,'Chari-Baguirmi','CB',1043),(4616,'Guera','GR',1043),(4617,'Kanem','KA',1043),(4618,'Lac','LC',1043),(4619,'Logone-Occidental','LO',1043),(4620,'Logone-Oriental','LR',1043),(4621,'Mayo-Kebbi','MK',1043),(4622,'Moyen-Chari','MC',1043),(4623,'Ouaddai','OD',1043),(4624,'Salamat','SA',1043),(4625,'Tandjile','TA',1043),(4626,'Kara','K',1214),(4627,'Maritime (Region)','M',1214),(4628,'Savannes','S',1214),(4629,'Krung Thep Maha Nakhon Bangkok','10',1211),(4630,'Phatthaya','S',1211),(4631,'Amnat Charoen','37',1211),(4632,'Ang Thong','15',1211),(4633,'Buri Ram','31',1211),(4634,'Chachoengsao','24',1211),(4635,'Chai Nat','18',1211),(4636,'Chaiyaphum','36',1211),(4637,'Chanthaburi','22',1211),(4638,'Chiang Mai','50',1211),(4639,'Chiang Rai','57',1211),(4640,'Chon Buri','20',1211),(4641,'Chumphon','86',1211),(4642,'Kalasin','46',1211),(4643,'Kamphasng Phet','62',1211),(4644,'Kanchanaburi','71',1211),(4645,'Khon Kaen','40',1211),(4646,'Krabi','81',1211),(4647,'Lampang','52',1211),(4648,'Lamphun','51',1211),(4649,'Loei','42',1211),(4650,'Lop Buri','16',1211),(4651,'Mae Hong Son','58',1211),(4652,'Maha Sarakham','44',1211),(4653,'Mukdahan','49',1211),(4654,'Nakhon Nayok','26',1211),(4655,'Nakhon Pathom','73',1211),(4656,'Nakhon Phanom','48',1211),(4657,'Nakhon Ratchasima','30',1211),(4658,'Nakhon Sawan','60',1211),(4659,'Nakhon Si Thammarat','80',1211),(4660,'Nan','55',1211),(4661,'Narathiwat','96',1211),(4662,'Nong Bua Lam Phu','39',1211),(4663,'Nong Khai','43',1211),(4664,'Nonthaburi','12',1211),(4665,'Pathum Thani','13',1211),(4666,'Pattani','94',1211),(4667,'Phangnga','82',1211),(4668,'Phatthalung','93',1211),(4669,'Phayao','56',1211),(4670,'Phetchabun','67',1211),(4671,'Phetchaburi','76',1211),(4672,'Phichit','66',1211),(4673,'Phitsanulok','65',1211),(4674,'Phrae','54',1211),(4675,'Phra Nakhon Si Ayutthaya','14',1211),(4676,'Phaket','83',1211),(4677,'Prachin Buri','25',1211),(4678,'Prachuap Khiri Khan','77',1211),(4679,'Ranong','85',1211),(4680,'Ratchaburi','70',1211),(4681,'Rayong','21',1211),(4682,'Roi Et','45',1211),(4683,'Sa Kaeo','27',1211),(4684,'Sakon Nakhon','47',1211),(4685,'Samut Prakan','11',1211),(4686,'Samut Sakhon','74',1211),(4687,'Samut Songkhram','75',1211),(4688,'Saraburi','19',1211),(4689,'Satun','91',1211),(4690,'Sing Buri','17',1211),(4691,'Si Sa Ket','33',1211),(4692,'Songkhla','90',1211),(4693,'Sukhothai','64',1211),(4694,'Suphan Buri','72',1211),(4695,'Surat Thani','84',1211),(4696,'Surin','32',1211),(4697,'Tak','63',1211),(4698,'Trang','92',1211),(4699,'Trat','23',1211),(4700,'Ubon Ratchathani','34',1211),(4701,'Udon Thani','41',1211),(4702,'Uthai Thani','61',1211),(4703,'Uttaradit','53',1211),(4704,'Yala','95',1211),(4705,'Yasothon','35',1211),(4706,'Sughd','SU',1209),(4707,'Khatlon','KT',1209),(4708,'Gorno-Badakhshan','GB',1209),(4709,'Ahal','A',1220),(4710,'Balkan','B',1220),(4711,'Dasoguz','D',1220),(4712,'Lebap','L',1220),(4713,'Mary','M',1220),(4714,'Béja','31',1218),(4715,'Ben Arous','13',1218),(4716,'Bizerte','23',1218),(4717,'Gabès','81',1218),(4718,'Gafsa','71',1218),(4719,'Jendouba','32',1218),(4720,'Kairouan','41',1218),(4721,'Rasserine','42',1218),(4722,'Kebili','73',1218),(4723,'L\'Ariana','12',1218),(4724,'Le Ref','33',1218),(4725,'Mahdia','53',1218),(4726,'La Manouba','14',1218),(4727,'Medenine','82',1218),(4728,'Moneatir','52',1218),(4729,'Naboul','21',1218),(4730,'Sfax','61',1218),(4731,'Sidi Bouxid','43',1218),(4732,'Siliana','34',1218),(4733,'Sousse','51',1218),(4734,'Tataouine','83',1218),(4735,'Tozeur','72',1218),(4736,'Tunis','11',1218),(4737,'Zaghouan','22',1218),(4738,'Adana','01',1219),(4739,'Ad yaman','02',1219),(4740,'Afyon','03',1219),(4741,'Ag r','04',1219),(4742,'Aksaray','68',1219),(4743,'Amasya','05',1219),(4744,'Ankara','06',1219),(4745,'Antalya','07',1219),(4746,'Ardahan','75',1219),(4747,'Artvin','08',1219),(4748,'Aydin','09',1219),(4749,'Bal kesir','10',1219),(4750,'Bartin','74',1219),(4751,'Batman','72',1219),(4752,'Bayburt','69',1219),(4753,'Bilecik','11',1219),(4754,'Bingol','12',1219),(4755,'Bitlis','13',1219),(4756,'Bolu','14',1219),(4757,'Burdur','15',1219),(4758,'Bursa','16',1219),(4759,'Canakkale','17',1219),(4760,'Cankir','18',1219),(4761,'Corum','19',1219),(4762,'Denizli','20',1219),(4763,'Diyarbakir','21',1219),(4764,'Duzce','81',1219),(4765,'Edirne','22',1219),(4766,'Elazig','23',1219),(4767,'Erzincan','24',1219),(4768,'Erzurum','25',1219),(4769,'Eskis\'ehir','26',1219),(4770,'Gaziantep','27',1219),(4771,'Giresun','28',1219),(4772,'Gms\'hane','29',1219),(4773,'Hakkari','30',1219),(4774,'Hatay','31',1219),(4775,'Igidir','76',1219),(4776,'Isparta','32',1219),(4777,'Icel','33',1219),(4778,'Istanbul','34',1219),(4779,'Izmir','35',1219),(4780,'Kahramanmaras','46',1219),(4781,'Karabk','78',1219),(4782,'Karaman','70',1219),(4783,'Kars','36',1219),(4784,'Kastamonu','37',1219),(4785,'Kayseri','38',1219),(4786,'Kirikkale','71',1219),(4787,'Kirklareli','39',1219),(4788,'Kirs\'ehir','40',1219),(4789,'Kilis','79',1219),(4790,'Kocaeli','41',1219),(4791,'Konya','42',1219),(4792,'Ktahya','43',1219),(4793,'Malatya','44',1219),(4794,'Manisa','45',1219),(4795,'Mardin','47',1219),(4796,'Mugila','48',1219),(4797,'Mus','49',1219),(4798,'Nevs\'ehir','50',1219),(4799,'Nigide','51',1219),(4800,'Ordu','52',1219),(4801,'Osmaniye','80',1219),(4802,'Rize','53',1219),(4803,'Sakarya','54',1219),(4804,'Samsun','55',1219),(4805,'Siirt','56',1219),(4806,'Sinop','57',1219),(4807,'Sivas','58',1219),(4808,'S\'anliurfa','63',1219),(4809,'S\'rnak','73',1219),(4810,'Tekirdag','59',1219),(4811,'Tokat','60',1219),(4812,'Trabzon','61',1219),(4813,'Tunceli','62',1219),(4814,'Us\'ak','64',1219),(4815,'Van','65',1219),(4816,'Yalova','77',1219),(4817,'Yozgat','66',1219),(4818,'Zonguldak','67',1219),(4819,'Couva-Tabaquite-Talparo','CTT',1217),(4820,'Diego Martin','DMN',1217),(4821,'Eastern Tobago','ETO',1217),(4822,'Penal-Debe','PED',1217),(4823,'Princes Town','PRT',1217),(4824,'Rio Claro-Mayaro','RCM',1217),(4825,'Sangre Grande','SGE',1217),(4826,'San Juan-Laventille','SJL',1217),(4827,'Siparia','SIP',1217),(4828,'Tunapuna-Piarco','TUP',1217),(4829,'Western Tobago','WTO',1217),(4830,'Arima','ARI',1217),(4831,'Chaguanas','CHA',1217),(4832,'Point Fortin','PTF',1217),(4833,'Port of Spain','POS',1217),(4834,'San Fernando','SFO',1217),(4835,'Aileu','AL',1063),(4836,'Ainaro','AN',1063),(4837,'Bacucau','BA',1063),(4838,'Bobonaro','BO',1063),(4839,'Cova Lima','CO',1063),(4840,'Dili','DI',1063),(4841,'Ermera','ER',1063),(4842,'Laulem','LA',1063),(4843,'Liquica','LI',1063),(4844,'Manatuto','MT',1063),(4845,'Manafahi','MF',1063),(4846,'Oecussi','OE',1063),(4847,'Viqueque','VI',1063),(4848,'Changhua County','CHA',1208),(4849,'Chiayi County','CYQ',1208),(4850,'Hsinchu County','HSQ',1208),(4851,'Hualien County','HUA',1208),(4852,'Ilan County','ILA',1208),(4853,'Kaohsiung County','KHQ',1208),(4854,'Miaoli County','MIA',1208),(4855,'Nantou County','NAN',1208),(4856,'Penghu County','PEN',1208),(4857,'Pingtung County','PIF',1208),(4858,'Taichung County','TXQ',1208),(4859,'Tainan County','TNQ',1208),(4860,'Taipei County','TPQ',1208),(4861,'Taitung County','TTT',1208),(4862,'Taoyuan County','TAO',1208),(4863,'Yunlin Conuty','YUN',1208),(4864,'Keelung City','KEE',1208),(4865,'Arusha','01',1210),(4866,'Dar-es-Salaam','02',1210),(4867,'Dodoma','03',1210),(4868,'Iringa','04',1210),(4869,'Kagera','05',1210),(4870,'Kaskazini Pemba','06',1210),(4871,'Kaskazini Unguja','07',1210),(4872,'Xigoma','08',1210),(4873,'Kilimanjaro','09',1210),(4874,'Rusini Pemba','10',1210),(4875,'Kusini Unguja','11',1210),(4876,'Lindi','12',1210),(4877,'Manyara','26',1210),(4878,'Mara','13',1210),(4879,'Mbeya','14',1210),(4880,'Mjini Magharibi','15',1210),(4881,'Morogoro','16',1210),(4882,'Mtwara','17',1210),(4883,'Pwani','19',1210),(4884,'Rukwa','20',1210),(4885,'Ruvuma','21',1210),(4886,'Shinyanga','22',1210),(4887,'Singida','23',1210),(4888,'Tabora','24',1210),(4889,'Tanga','25',1210),(4890,'Cherkas\'ka Oblast\'','71',1224),(4891,'Chernihivs\'ka Oblast\'','74',1224),(4892,'Chernivets\'ka Oblast\'','77',1224),(4893,'Dnipropetrovs\'ka Oblast\'','12',1224),(4894,'Donets\'ka Oblast\'','14',1224),(4895,'Ivano-Frankivs\'ka Oblast\'','26',1224),(4896,'Kharkivs\'ka Oblast\'','63',1224),(4897,'Khersons\'ka Oblast\'','65',1224),(4898,'Khmel\'nyts\'ka Oblast\'','68',1224),(4899,'Kirovohrads\'ka Oblast\'','35',1224),(4900,'Kyivs\'ka Oblast\'','32',1224),(4901,'Luhans\'ka Oblast\'','09',1224),(4902,'L\'vivs\'ka Oblast\'','46',1224),(4903,'Mykolaivs\'ka Oblast\'','48',1224),(4904,'Odes \'ka Oblast\'','51',1224),(4905,'Poltavs\'ka Oblast\'','53',1224),(4906,'Rivnens\'ka Oblast\'','56',1224),(4907,'Sums \'ka Oblast\'','59',1224),(4908,'Ternopil\'s\'ka Oblast\'','61',1224),(4909,'Vinnyts\'ka Oblast\'','05',1224),(4910,'Volyos\'ka Oblast\'','07',1224),(4911,'Zakarpats\'ka Oblast\'','21',1224),(4912,'Zaporiz\'ka Oblast\'','23',1224),(4913,'Zhytomyrs\'ka Oblast\'','18',1224),(4914,'Respublika Krym','43',1224),(4915,'Kyiv','30',1224),(4916,'Sevastopol','40',1224),(4917,'Adjumani','301',1223),(4918,'Apac','302',1223),(4919,'Arua','303',1223),(4920,'Bugiri','201',1223),(4921,'Bundibugyo','401',1223),(4922,'Bushenyi','402',1223),(4923,'Busia','202',1223),(4924,'Gulu','304',1223),(4925,'Hoima','403',1223),(4926,'Iganga','203',1223),(4927,'Jinja','204',1223),(4928,'Kabale','404',1223),(4929,'Kabarole','405',1223),(4930,'Kaberamaido','213',1223),(4931,'Kalangala','101',1223),(4932,'Kampala','102',1223),(4933,'Kamuli','205',1223),(4934,'Kamwenge','413',1223),(4935,'Kanungu','414',1223),(4936,'Kapchorwa','206',1223),(4937,'Kasese','406',1223),(4938,'Katakwi','207',1223),(4939,'Kayunga','112',1223),(4940,'Kibaale','407',1223),(4941,'Kiboga','103',1223),(4942,'Kisoro','408',1223),(4943,'Kitgum','305',1223),(4944,'Kotido','306',1223),(4945,'Kumi','208',1223),(4946,'Kyenjojo','415',1223),(4947,'Lira','307',1223),(4948,'Luwero','104',1223),(4949,'Masaka','105',1223),(4950,'Masindi','409',1223),(4951,'Mayuge','214',1223),(4952,'Mbale','209',1223),(4953,'Mbarara','410',1223),(4954,'Moroto','308',1223),(4955,'Moyo','309',1223),(4956,'Mpigi','106',1223),(4957,'Mubende','107',1223),(4958,'Mukono','108',1223),(4959,'Nakapiripirit','311',1223),(4960,'Nakasongola','109',1223),(4961,'Nebbi','310',1223),(4962,'Ntungamo','411',1223),(4963,'Pader','312',1223),(4964,'Pallisa','210',1223),(4965,'Rakai','110',1223),(4966,'Rukungiri','412',1223),(4967,'Sembabule','111',1223),(4968,'Sironko','215',1223),(4969,'Soroti','211',1223),(4970,'Tororo','212',1223),(4971,'Wakiso','113',1223),(4972,'Yumbe','313',1223),(4973,'Baker Island','81',1227),(4974,'Howland Island','84',1227),(4975,'Jarvis Island','86',1227),(4976,'Johnston Atoll','67',1227),(4977,'Kingman Reef','89',1227),(4978,'Midway Islands','71',1227),(4979,'Navassa Island','76',1227),(4980,'Palmyra Atoll','95',1227),(4981,'Wake Ialand','79',1227),(4982,'Artigsa','AR',1229),(4983,'Canelones','CA',1229),(4984,'Cerro Largo','CL',1229),(4985,'Colonia','CO',1229),(4986,'Durazno','DU',1229),(4987,'Flores','FS',1229),(4988,'Lavalleja','LA',1229),(4989,'Maldonado','MA',1229),(4990,'Montevideo','MO',1229),(4991,'Paysandu','PA',1229),(4992,'Rivera','RV',1229),(4993,'Rocha','RO',1229),(4994,'Salto','SA',1229),(4995,'Soriano','SO',1229),(4996,'Tacuarembo','TA',1229),(4997,'Treinta y Tres','TT',1229),(4998,'Toshkent (city)','TK',1230),(4999,'Qoraqalpogiston Respublikasi','QR',1230),(5000,'Andijon','AN',1230),(5001,'Buxoro','BU',1230),(5002,'Farg\'ona','FA',1230),(5003,'Jizzax','JI',1230),(5004,'Khorazm','KH',1230),(5005,'Namangan','NG',1230),(5006,'Navoiy','NW',1230),(5007,'Qashqadaryo','QA',1230),(5008,'Samarqand','SA',1230),(5009,'Sirdaryo','SI',1230),(5010,'Surxondaryo','SU',1230),(5011,'Toshkent','TO',1230),(5012,'Xorazm','XO',1230),(5013,'Distrito Federal','A',1232),(5014,'Anzoategui','B',1232),(5015,'Apure','C',1232),(5016,'Aragua','D',1232),(5017,'Barinas','E',1232),(5018,'Carabobo','G',1232),(5019,'Cojedes','H',1232),(5020,'Falcon','I',1232),(5021,'Guarico','J',1232),(5022,'Lara','K',1232),(5023,'Merida','L',1232),(5024,'Miranda','M',1232),(5025,'Monagas','N',1232),(5026,'Nueva Esparta','O',1232),(5027,'Portuguesa','P',1232),(5028,'Tachira','S',1232),(5029,'Trujillo','T',1232),(5030,'Vargas','X',1232),(5031,'Yaracuy','U',1232),(5032,'Zulia','V',1232),(5033,'Delta Amacuro','Y',1232),(5034,'Dependencias Federales','W',1232),(5035,'An Giang','44',1233),(5036,'Ba Ria - Vung Tau','43',1233),(5037,'Bac Can','53',1233),(5038,'Bac Giang','54',1233),(5039,'Bac Lieu','55',1233),(5040,'Bac Ninh','56',1233),(5041,'Ben Tre','50',1233),(5042,'Binh Dinh','31',1233),(5043,'Binh Duong','57',1233),(5044,'Binh Phuoc','58',1233),(5045,'Binh Thuan','40',1233),(5046,'Ca Mau','59',1233),(5047,'Can Tho','48',1233),(5048,'Cao Bang','04',1233),(5049,'Da Nang, thanh pho','60',1233),(5050,'Dong Nai','39',1233),(5051,'Dong Thap','45',1233),(5052,'Gia Lai','30',1233),(5053,'Ha Giang','03',1233),(5054,'Ha Nam','63',1233),(5055,'Ha Noi, thu do','64',1233),(5056,'Ha Tay','15',1233),(5057,'Ha Tinh','23',1233),(5058,'Hai Duong','61',1233),(5059,'Hai Phong, thanh pho','62',1233),(5060,'Hoa Binh','14',1233),(5061,'Ho Chi Minh, thanh pho [Sai Gon]','65',1233),(5062,'Hung Yen','66',1233),(5063,'Khanh Hoa','34',1233),(5064,'Kien Giang','47',1233),(5065,'Kon Tum','28',1233),(5066,'Lai Chau','01',1233),(5067,'Lam Dong','35',1233),(5068,'Lang Son','09',1233),(5069,'Lao Cai','02',1233),(5070,'Long An','41',1233),(5071,'Nam Dinh','67',1233),(5072,'Nghe An','22',1233),(5073,'Ninh Binh','18',1233),(5074,'Ninh Thuan','36',1233),(5075,'Phu Tho','68',1233),(5076,'Phu Yen','32',1233),(5077,'Quang Binh','24',1233),(5078,'Quang Nam','27',1233),(5079,'Quang Ngai','29',1233),(5080,'Quang Ninh','13',1233),(5081,'Quang Tri','25',1233),(5082,'Soc Trang','52',1233),(5083,'Son La','05',1233),(5084,'Tay Ninh','37',1233),(5085,'Thai Binh','20',1233),(5086,'Thai Nguyen','69',1233),(5087,'Thanh Hoa','21',1233),(5088,'Thua Thien-Hue','26',1233),(5089,'Tien Giang','46',1233),(5090,'Tra Vinh','51',1233),(5091,'Tuyen Quang','07',1233),(5092,'Vinh Long','49',1233),(5093,'Vinh Phuc','70',1233),(5094,'Yen Bai','06',1233),(5095,'Malampa','MAP',1231),(5096,'Penama','PAM',1231),(5097,'Sanma','SAM',1231),(5098,'Shefa','SEE',1231),(5099,'Tafea','TAE',1231),(5100,'Torba','TOB',1231),(5101,'A\'ana','AA',1185),(5102,'Aiga-i-le-Tai','AL',1185),(5103,'Atua','AT',1185),(5104,'Fa\'aaaleleaga','FA',1185),(5105,'Gaga\'emauga','GE',1185),(5106,'Gagaifomauga','GI',1185),(5107,'Palauli','PA',1185),(5108,'Satupa\'itea','SA',1185),(5109,'Tuamasaga','TU',1185),(5110,'Va\'a-o-Fonoti','VF',1185),(5111,'Vaisigano','VS',1185),(5112,'Crna Gora','CG',1243),(5113,'Srbija','SR',1242),(5114,'Kosovo-Metohija','KM',1242),(5115,'Vojvodina','VO',1242),(5116,'Abyan','AB',1237),(5117,'Adan','AD',1237),(5118,'Ad Dali','DA',1237),(5119,'Al Bayda\'','BA',1237),(5120,'Al Hudaydah','MU',1237),(5121,'Al Mahrah','MR',1237),(5122,'Al Mahwit','MW',1237),(5123,'Amran','AM',1237),(5124,'Dhamar','DH',1237),(5125,'Hadramawt','HD',1237),(5126,'Hajjah','HJ',1237),(5127,'Ibb','IB',1237),(5128,'Lahij','LA',1237),(5129,'Ma\'rib','MA',1237),(5130,'Sa\'dah','SD',1237),(5131,'San\'a\'','SN',1237),(5132,'Shabwah','SH',1237),(5133,'Ta\'izz','TA',1237),(5134,'Eastern Cape','EC',1196),(5135,'Free State','FS',1196),(5136,'Gauteng','GT',1196),(5137,'Kwazulu-Natal','NL',1196),(5138,'Mpumalanga','MP',1196),(5139,'Northern Cape','NC',1196),(5140,'Limpopo','NP',1196),(5141,'Western Cape','WC',1196),(5142,'Copperbelt','08',1239),(5143,'Luapula','04',1239),(5144,'Lusaka','09',1239),(5145,'North-Western','06',1239),(5146,'Bulawayo','BU',1240),(5147,'Harare','HA',1240),(5148,'Manicaland','MA',1240),(5149,'Mashonaland Central','MC',1240),(5150,'Mashonaland East','ME',1240),(5151,'Mashonaland West','MW',1240),(5152,'Masvingo','MV',1240),(5153,'Matabeleland North','MN',1240),(5154,'Matabeleland South','MS',1240),(5155,'Midlands','MI',1240),(5156,'South Karelia','SK',1075),(5157,'South Ostrobothnia','SO',1075),(5158,'Etelä-Savo','ES',1075),(5159,'Häme','HH',1075),(5160,'Itä-Uusimaa','IU',1075),(5161,'Kainuu','KA',1075),(5162,'Central Ostrobothnia','CO',1075),(5163,'Central Finland','CF',1075),(5164,'Kymenlaakso','KY',1075),(5165,'Lapland','LA',1075),(5166,'Tampere Region','TR',1075),(5167,'Ostrobothnia','OB',1075),(5168,'North Karelia','NK',1075),(5169,'Nothern Ostrobothnia','NO',1075),(5170,'Northern Savo','NS',1075),(5171,'Päijät-Häme','PH',1075),(5172,'Satakunta','SK',1075),(5173,'Uusimaa','UM',1075),(5174,'South-West Finland','SW',1075),(5175,'Åland','AL',1075),(5176,'Limburg','LI',1152),(5177,'Central and Western','CW',1098),(5178,'Eastern','EA',1098),(5179,'Southern','SO',1098),(5180,'Wan Chai','WC',1098),(5181,'Kowloon City','KC',1098),(5182,'Kwun Tong','KU',1098),(5183,'Sham Shui Po','SS',1098),(5184,'Wong Tai Sin','WT',1098),(5185,'Yau Tsim Mong','YT',1098),(5186,'Islands','IS',1098),(5187,'Kwai Tsing','KI',1098),(5188,'North','NO',1098),(5189,'Sai Kung','SK',1098),(5190,'Sha Tin','ST',1098),(5191,'Tai Po','TP',1098),(5192,'Tsuen Wan','TW',1098),(5193,'Tuen Mun','TM',1098),(5194,'Yuen Long','YL',1098),(5195,'Manchester','MR',1108),(5196,'Al Manāmah (Al ‘Āşimah)','13',1016),(5197,'Al Janūbīyah','14',1016),(5199,'Al Wusţá','16',1016),(5200,'Ash Shamālīyah','17',1016),(5201,'Jenin','_A',1165),(5202,'Tubas','_B',1165),(5203,'Tulkarm','_C',1165),(5204,'Nablus','_D',1165),(5205,'Qalqilya','_E',1165),(5206,'Salfit','_F',1165),(5207,'Ramallah and Al-Bireh','_G',1165),(5208,'Jericho','_H',1165),(5209,'Jerusalem','_I',1165),(5210,'Bethlehem','_J',1165),(5211,'Hebron','_K',1165),(5212,'North Gaza','_L',1165),(5213,'Gaza','_M',1165),(5214,'Deir el-Balah','_N',1165),(5215,'Khan Yunis','_O',1165),(5216,'Rafah','_P',1165),(5217,'Brussels','BRU',1020),(5218,'Distrito Federal','DIF',1140),(5219,'Taichung City','TXG',1208),(5220,'Kaohsiung City','KHH',1208),(5221,'Taipei City','TPE',1208),(5222,'Chiayi City','CYI',1208),(5223,'Hsinchu City','HSZ',1208),(5224,'Tainan City','TNN',1208),(9000,'North West','NW',1196),(9986,'Tyne and Wear','TWR',1226),(9988,'Greater Manchester','GTM',1226),(9989,'Co Tyrone','TYR',1226),(9990,'West Yorkshire','WYK',1226),(9991,'South Yorkshire','SYK',1226),(9992,'Merseyside','MSY',1226),(9993,'Berkshire','BRK',1226),(9994,'West Midlands','WMD',1226),(9998,'West Glamorgan','WGM',1226),(9999,'London','LON',1226),(10000,'Carbonia-Iglesias','CI',1107),(10001,'Olbia-Tempio','OT',1107),(10002,'Medio Campidano','VS',1107),(10003,'Ogliastra','OG',1107),(10009,'Jura','39',1076),(10010,'Barletta-Andria-Trani','Bar',1107),(10011,'Fermo','Fer',1107),(10012,'Monza e Brianza','Mon',1107),(10013,'Clwyd','CWD',1226),(10014,'Dyfed','DFD',1226),(10015,'South Glamorgan','SGM',1226),(10016,'Artibonite','AR',1094),(10017,'Centre','CE',1094),(10018,'Nippes','NI',1094),(10019,'Nord','ND',1094),(10020,'La Rioja','F',1010),(10021,'Andorra la Vella','07',1005),(10022,'Canillo','02',1005),(10023,'Encamp','03',1005),(10024,'Escaldes-Engordany','08',1005),(10025,'La Massana','04',1005),(10026,'Ordino','05',1005),(10027,'Sant Julia de Loria','06',1005),(10028,'Abaco Islands','AB',1212),(10029,'Andros Island','AN',1212),(10030,'Berry Islands','BR',1212),(10031,'Eleuthera','EL',1212),(10032,'Grand Bahama','GB',1212),(10033,'Rum Cay','RC',1212),(10034,'San Salvador Island','SS',1212),(10035,'Kongo central','01',1050),(10036,'Kwango','02',1050),(10037,'Kwilu','03',1050),(10038,'Mai-Ndombe','04',1050),(10039,'Kasai','05',1050),(10040,'Lulua','06',1050),(10041,'Lomami','07',1050),(10042,'Sankuru','08',1050),(10043,'Ituri','09',1050),(10044,'Haut-Uele','10',1050),(10045,'Tshopo','11',1050),(10046,'Bas-Uele','12',1050),(10047,'Nord-Ubangi','13',1050),(10048,'Mongala','14',1050),(10049,'Sud-Ubangi','15',1050),(10050,'Tshuapa','16',1050),(10051,'Haut-Lomami','17',1050),(10052,'Lualaba','18',1050),(10053,'Haut-Katanga','19',1050),(10054,'Tanganyika','20',1050),(10055,'Toledo','TO',1198),(10056,'Córdoba','CO',1198),(10057,'Metropolitan Manila','MNL',1170),(10058,'La Paz','LP',1097),(10059,'Yinchuan','YN',1045),(10060,'Shizuishan','SZ',1045),(10061,'Wuzhong','WZ',1045),(10062,'Guyuan','GY',1045),(10063,'Zhongwei','ZW',1045),(10064,'Luxembourg','L',1126),(10065,'Aizkraukles novads','002',1119),(10066,'Jaunjelgavas novads','038',1119),(10067,'Pļaviņu novads','072',1119),(10068,'Kokneses novads','046',1119),(10069,'Neretas novads','065',1119),(10070,'Skrīveru novads','092',1119),(10071,'Alūksnes novads','007',1119),(10072,'Apes novads','009',1119),(10073,'Balvu novads','015',1119),(10074,'Viļakas novads','108',1119),(10075,'Baltinavas novads','014',1119),(10076,'Rugāju novads','082',1119),(10077,'Bauskas novads','016',1119),(10078,'Iecavas novads','034',1119),(10079,'Rundāles novads','083',1119),(10080,'Vecumnieku novads','105',1119),(10081,'Cēsu novads','022',1119),(10082,'Līgatnes novads','055',1119),(10083,'Amatas novads','008',1119),(10084,'Jaunpiebalgas novads','039',1119),(10085,'Priekuļu novads','075',1119),(10086,'Pārgaujas novads','070',1119),(10087,'Raunas novads','076',1119),(10088,'Vecpiebalgas novads','104',1119),(10089,'Daugavpils novads','025',1119),(10090,'Ilūkstes novads','036',1119),(10091,'Dobeles novads','026',1119),(10092,'Auces novads','010',1119),(10093,'Tērvetes novads','098',1119),(10094,'Gulbenes novads','033',1119),(10095,'Jelgavas novads','041',1119),(10096,'Ozolnieku novads','069',1119),(10097,'Jēkabpils novads','042',1119),(10098,'Aknīstes novads','004',1119),(10099,'Viesītes novads','107',1119),(10100,'Krustpils novads','049',1119),(10101,'Salas novads','085',1119),(10102,'Krāslavas novads','047',1119),(10103,'Dagdas novads','024',1119),(10104,'Aglonas novads','001',1119),(10105,'Kuldīgas novads','050',1119),(10106,'Skrundas novads','093',1119),(10107,'Alsungas novads','006',1119),(10108,'Aizputes novads','003',1119),(10109,'Durbes novads','028',1119),(10110,'Grobiņas novads','032',1119),(10111,'Pāvilostas novads','071',1119),(10112,'Priekules novads','074',1119),(10113,'Nīcas novads','066',1119),(10114,'Rucavas novads','081',1119),(10115,'Vaiņodes novads','100',1119),(10116,'Limbažu novads','054',1119),(10117,'Alojas novads','005',1119),(10118,'Salacgrīvas novads','086',1119),(10119,'Ludzas novads','058',1119),(10120,'Kārsavas novads','044',1119),(10121,'Zilupes novads','110',1119),(10122,'Ciblas novads','023',1119),(10123,'Madonas novads','059',1119),(10124,'Cesvaines novads','021',1119),(10125,'Lubānas novads','057',1119),(10126,'Varakļānu novads','102',1119),(10127,'Ērgļu novads','030',1119),(10128,'Ogres novads','067',1119),(10129,'Ikšķiles novads','035',1119),(10130,'Ķeguma novads','051',1119),(10131,'Lielvārdes novads','053',1119),(10132,'Preiļu novads','073',1119),(10133,'Līvānu novads','056',1119),(10134,'Riebiņu novads','078',1119),(10135,'Vārkavas novads','103',1119),(10136,'Rēzeknes novads','077',1119),(10137,'Viļānu novads','109',1119),(10138,'Baldones novads','013',1119),(10139,'Ķekavas novads','052',1119),(10140,'Olaines novads','068',1119),(10141,'Salaspils novads','087',1119),(10142,'Saulkrastu novads','089',1119),(10143,'Siguldas novads','091',1119),(10144,'Inčukalna novads','037',1119),(10145,'Ādažu novads','011',1119),(10146,'Babītes novads','012',1119),(10147,'Carnikavas novads','020',1119),(10148,'Garkalnes novads','031',1119),(10149,'Krimuldas novads','048',1119),(10150,'Mālpils novads','061',1119),(10151,'Mārupes novads','062',1119),(10152,'Ropažu novads','080',1119),(10153,'Sējas novads','090',1119),(10154,'Stopiņu novads','095',1119),(10155,'Saldus novads','088',1119),(10156,'Brocēnu novads','018',1119),(10157,'Talsu novads','097',1119),(10158,'Dundagas novads','027',1119),(10159,'Mērsraga novads','063',1119),(10160,'Rojas novads','079',1119),(10161,'Tukuma novads','099',1119),(10162,'Kandavas novads','043',1119),(10163,'Engures novads','029',1119),(10164,'Jaunpils novads','040',1119),(10165,'Valkas novads','101',1119),(10166,'Smiltenes novads','094',1119),(10167,'Strenču novads','096',1119),(10168,'Kocēnu novads','045',1119),(10169,'Mazsalacas novads','060',1119),(10170,'Rūjienas novads','084',1119),(10171,'Beverīnas novads','017',1119),(10172,'Burtnieku novads','019',1119),(10173,'Naukšēnu novads','064',1119),(10174,'Ventspils novads','106',1119),(10175,'Jēkabpils','JKB',1119),(10176,'Valmiera','VMR',1119),(10177,'Florida','FL',1229),(10178,'Rio Negro','RN',1229),(10179,'San Jose','SJ',1229),(10180,'Plateau','PL',1157),(10181,'Pieria','61',1085),(10182,'Los Rios','LR',1044),(10183,'Arica y Parinacota','AP',1044),(10184,'Amazonas','AMA',1169),(10185,'Kalimantan Tengah','KT',1102),(10186,'Sulawesi Barat','SR',1102),(10187,'Kalimantan Utara','KU',1102); /*!40000 ALTER TABLE `civicrm_state_province` ENABLE KEYS */; UNLOCK TABLES; @@ -1320,7 +1319,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,66,2,'2014-02-12 02:43:04','Email','Added',NULL),(2,39,2,'2014-04-04 11:26:22','Admin','Added',NULL),(3,141,2,'2014-08-21 09:27:50','Admin','Added',NULL),(4,176,2,'2014-11-13 05:08:11','Admin','Added',NULL),(5,185,2,'2014-11-20 11:55:12','Admin','Added',NULL),(6,27,2,'2014-10-10 03:42:03','Email','Added',NULL),(7,160,2,'2014-05-08 08:48:05','Admin','Added',NULL),(8,7,2,'2014-11-03 05:43:08','Admin','Added',NULL),(9,91,2,'2014-02-03 10:11:35','Admin','Added',NULL),(10,86,2,'2014-03-07 03:25:36','Email','Added',NULL),(11,63,2,'2014-03-25 07:54:58','Email','Added',NULL),(12,33,2,'2014-12-18 09:36:07','Admin','Added',NULL),(13,129,2,'2014-02-15 02:39:25','Email','Added',NULL),(14,53,2,'2014-07-12 01:34:17','Admin','Added',NULL),(15,99,2,'2015-01-02 08:38:57','Admin','Added',NULL),(16,21,2,'2014-05-20 11:09:16','Email','Added',NULL),(17,108,2,'2014-02-13 05:05:45','Email','Added',NULL),(18,23,2,'2014-08-16 09:23:31','Admin','Added',NULL),(19,186,2,'2014-02-08 02:36:22','Email','Added',NULL),(20,52,2,'2014-04-29 08:59:23','Email','Added',NULL),(21,94,2,'2014-04-01 04:05:17','Admin','Added',NULL),(22,6,2,'2014-06-24 06:24:23','Email','Added',NULL),(23,38,2,'2015-01-05 05:44:39','Admin','Added',NULL),(24,173,2,'2014-08-19 07:43:11','Email','Added',NULL),(25,82,2,'2014-05-21 05:16:06','Admin','Added',NULL),(26,88,2,'2014-04-17 08:43:14','Email','Added',NULL),(27,43,2,'2014-05-08 03:14:24','Email','Added',NULL),(28,47,2,'2014-06-14 12:32:50','Admin','Added',NULL),(29,162,2,'2014-02-28 07:48:57','Email','Added',NULL),(30,20,2,'2014-03-26 10:37:06','Email','Added',NULL),(31,120,2,'2014-02-12 05:00:06','Admin','Added',NULL),(32,22,2,'2014-03-11 04:59:26','Email','Added',NULL),(33,196,2,'2014-11-13 10:00:00','Admin','Added',NULL),(34,34,2,'2014-02-18 04:08:18','Admin','Added',NULL),(35,84,2,'2014-09-06 06:24:19','Email','Added',NULL),(36,75,2,'2014-06-30 04:57:52','Email','Added',NULL),(37,44,2,'2014-10-02 12:10:28','Admin','Added',NULL),(38,76,2,'2014-08-20 03:34:02','Admin','Added',NULL),(39,153,2,'2014-04-07 01:19:13','Email','Added',NULL),(40,150,2,'2014-12-12 03:21:47','Email','Added',NULL),(41,112,2,'2014-06-26 05:57:55','Admin','Added',NULL),(42,45,2,'2014-03-06 06:44:08','Email','Added',NULL),(43,50,2,'2014-06-22 11:28:21','Admin','Added',NULL),(44,149,2,'2014-08-02 12:27:00','Admin','Added',NULL),(45,28,2,'2014-04-06 05:41:56','Email','Added',NULL),(46,73,2,'2014-12-24 08:41:08','Email','Added',NULL),(47,9,2,'2014-08-31 09:10:11','Admin','Added',NULL),(48,137,2,'2014-02-22 12:32:05','Admin','Added',NULL),(49,97,2,'2014-04-21 06:21:02','Email','Added',NULL),(50,111,2,'2014-03-18 09:32:52','Admin','Added',NULL),(51,190,2,'2014-09-30 05:34:35','Email','Added',NULL),(52,100,2,'2014-07-13 06:02:04','Admin','Added',NULL),(53,17,2,'2014-12-22 06:09:31','Admin','Added',NULL),(54,25,2,'2014-07-07 03:46:10','Admin','Added',NULL),(55,74,2,'2014-08-10 01:41:08','Admin','Added',NULL),(56,168,2,'2014-04-08 10:05:25','Admin','Added',NULL),(57,57,2,'2014-02-22 06:23:10','Admin','Added',NULL),(58,42,2,'2014-01-29 01:11:56','Admin','Added',NULL),(59,105,2,'2014-08-06 02:27:53','Email','Added',NULL),(60,77,2,'2014-02-05 02:14:11','Email','Added',NULL),(61,154,3,'2014-05-15 01:08:03','Email','Added',NULL),(62,93,3,'2015-01-09 03:12:39','Admin','Added',NULL),(63,83,3,'2014-06-08 09:08:55','Admin','Added',NULL),(64,194,3,'2014-03-18 07:28:36','Email','Added',NULL),(65,170,3,'2015-01-08 08:21:49','Email','Added',NULL),(66,199,3,'2014-05-28 12:43:30','Email','Added',NULL),(67,54,3,'2014-06-30 03:33:45','Admin','Added',NULL),(68,101,3,'2014-05-24 11:12:15','Admin','Added',NULL),(69,113,3,'2014-11-20 07:47:28','Admin','Added',NULL),(70,32,3,'2014-08-10 10:06:41','Admin','Added',NULL),(71,98,3,'2015-01-13 05:11:18','Email','Added',NULL),(72,123,3,'2014-09-14 08:07:50','Admin','Added',NULL),(73,104,3,'2015-01-09 06:41:20','Email','Added',NULL),(74,188,3,'2014-05-08 04:19:43','Email','Added',NULL),(75,192,3,'2014-09-28 02:59:45','Admin','Added',NULL),(76,66,4,'2014-06-23 08:24:39','Email','Added',NULL),(77,7,4,'2014-08-12 10:58:55','Email','Added',NULL),(78,99,4,'2014-01-28 02:34:28','Admin','Added',NULL),(79,6,4,'2014-10-23 01:45:58','Admin','Added',NULL),(80,162,4,'2014-07-07 06:27:50','Email','Added',NULL),(81,75,4,'2014-08-26 07:31:36','Email','Added',NULL),(82,50,4,'2014-09-16 02:33:44','Email','Added',NULL),(83,111,4,'2014-11-22 05:48:14','Admin','Added',NULL); +INSERT INTO `civicrm_subscription_history` (`id`, `contact_id`, `group_id`, `date`, `method`, `status`, `tracking`) VALUES (1,128,2,'2014-03-20 05:49:26','Email','Added',NULL),(2,159,2,'2014-02-12 08:40:30','Admin','Added',NULL),(3,182,2,'2014-03-19 02:37:22','Email','Added',NULL),(4,144,2,'2014-09-26 10:51:19','Email','Added',NULL),(5,8,2,'2014-12-24 03:46:20','Admin','Added',NULL),(6,54,2,'2014-07-11 01:54:01','Admin','Added',NULL),(7,113,2,'2014-01-21 09:35:33','Admin','Added',NULL),(8,66,2,'2014-12-26 03:03:17','Email','Added',NULL),(9,56,2,'2015-01-13 05:32:37','Email','Added',NULL),(10,80,2,'2014-11-25 08:00:55','Email','Added',NULL),(11,104,2,'2014-03-14 10:44:56','Email','Added',NULL),(12,27,2,'2015-01-09 11:25:20','Email','Added',NULL),(13,103,2,'2014-06-22 04:17:00','Admin','Added',NULL),(14,199,2,'2014-04-30 01:13:59','Email','Added',NULL),(15,162,2,'2014-05-31 11:57:04','Admin','Added',NULL),(16,19,2,'2014-12-11 10:01:56','Email','Added',NULL),(17,81,2,'2014-12-09 07:58:43','Email','Added',NULL),(18,136,2,'2014-02-24 05:00:58','Admin','Added',NULL),(19,58,2,'2014-06-07 06:22:46','Admin','Added',NULL),(20,64,2,'2014-05-09 01:02:21','Email','Added',NULL),(21,23,2,'2014-11-27 05:05:00','Admin','Added',NULL),(22,79,2,'2014-12-02 07:46:14','Admin','Added',NULL),(23,65,2,'2014-07-29 01:58:08','Admin','Added',NULL),(24,146,2,'2014-04-02 05:04:23','Admin','Added',NULL),(25,177,2,'2014-03-10 06:35:24','Admin','Added',NULL),(26,83,2,'2014-10-09 07:00:19','Admin','Added',NULL),(27,6,2,'2014-05-14 12:27:13','Email','Added',NULL),(28,117,2,'2014-03-01 01:10:46','Email','Added',NULL),(29,32,2,'2014-01-22 10:30:05','Email','Added',NULL),(30,102,2,'2014-09-27 07:21:58','Admin','Added',NULL),(31,69,2,'2014-11-12 06:28:43','Admin','Added',NULL),(32,4,2,'2014-04-12 08:04:15','Admin','Added',NULL),(33,34,2,'2014-07-31 12:10:59','Admin','Added',NULL),(34,180,2,'2014-09-30 04:25:16','Admin','Added',NULL),(35,62,2,'2014-12-01 10:52:48','Admin','Added',NULL),(36,196,2,'2014-08-09 05:35:48','Admin','Added',NULL),(37,87,2,'2014-11-30 09:22:53','Email','Added',NULL),(38,26,2,'2015-01-09 06:27:51','Email','Added',NULL),(39,93,2,'2014-09-11 01:51:35','Email','Added',NULL),(40,126,2,'2014-05-08 04:29:38','Admin','Added',NULL),(41,46,2,'2014-01-31 06:04:25','Admin','Added',NULL),(42,200,2,'2014-11-11 07:56:54','Email','Added',NULL),(43,100,2,'2014-02-01 06:28:49','Admin','Added',NULL),(44,150,2,'2014-09-14 09:13:54','Email','Added',NULL),(45,51,2,'2014-06-05 11:28:30','Admin','Added',NULL),(46,170,2,'2014-06-08 03:35:58','Admin','Added',NULL),(47,99,2,'2014-04-26 01:20:09','Admin','Added',NULL),(48,181,2,'2014-07-30 10:15:59','Email','Added',NULL),(49,33,2,'2014-11-04 08:39:18','Email','Added',NULL),(50,118,2,'2014-05-05 07:25:28','Admin','Added',NULL),(51,184,2,'2014-05-16 02:12:22','Admin','Added',NULL),(52,127,2,'2014-11-29 08:38:07','Admin','Added',NULL),(53,194,2,'2014-06-30 12:09:27','Admin','Added',NULL),(54,108,2,'2014-03-23 06:13:37','Admin','Added',NULL),(55,189,2,'2014-05-18 01:50:29','Admin','Added',NULL),(56,50,2,'2014-10-05 08:27:51','Admin','Added',NULL),(57,153,2,'2014-07-23 07:56:54','Email','Added',NULL),(58,122,2,'2014-06-19 11:08:53','Email','Added',NULL),(59,115,2,'2014-03-05 10:06:32','Email','Added',NULL),(60,156,2,'2014-11-29 09:34:57','Email','Added',NULL),(61,110,3,'2014-09-22 04:56:14','Email','Added',NULL),(62,172,3,'2014-05-11 11:15:47','Email','Added',NULL),(63,9,3,'2014-11-06 11:50:12','Admin','Added',NULL),(64,98,3,'2014-07-24 02:13:19','Email','Added',NULL),(65,152,3,'2014-09-01 08:46:02','Admin','Added',NULL),(66,163,3,'2014-04-19 01:48:13','Email','Added',NULL),(67,139,3,'2014-02-18 10:04:17','Email','Added',NULL),(68,10,3,'2014-06-26 08:21:17','Email','Added',NULL),(69,49,3,'2014-12-18 03:00:48','Email','Added',NULL),(70,123,3,'2014-07-04 12:38:07','Email','Added',NULL),(71,22,3,'2014-08-13 03:51:15','Admin','Added',NULL),(72,71,3,'2014-11-04 11:28:36','Email','Added',NULL),(73,30,3,'2014-03-27 02:13:20','Email','Added',NULL),(74,187,3,'2014-03-14 05:02:47','Email','Added',NULL),(75,5,3,'2014-09-17 07:49:44','Admin','Added',NULL),(76,128,4,'2014-02-27 05:52:32','Admin','Added',NULL),(77,66,4,'2014-10-31 06:49:53','Admin','Added',NULL),(78,162,4,'2014-07-14 09:50:13','Email','Added',NULL),(79,79,4,'2014-09-12 11:09:52','Email','Added',NULL),(80,32,4,'2014-03-05 02:38:47','Email','Added',NULL),(81,196,4,'2014-04-07 05:46:47','Email','Added',NULL),(82,100,4,'2014-03-16 02:34:13','Email','Added',NULL),(83,118,4,'2014-02-27 03:18:39','Email','Added',NULL); /*!40000 ALTER TABLE `civicrm_subscription_history` ENABLE KEYS */; UNLOCK TABLES; @@ -1416,7 +1415,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,200,'http://nmeducationcollective.org',1),(2,29,'http://sierraliteracy.org',1),(3,16,'http://globalinitiative.org',1),(4,106,'http://ecpoetrynetwork.org',1),(5,58,'http://metairieeducationsolutions.org',1),(6,158,'http://maplemusic.org',1),(7,68,'http://ohioaction.org',1),(8,69,'http://communitycenter.org',1),(9,193,'http://globaltechnology.org',1),(10,102,'http://nashvillesoftwaretrust.org',1),(11,130,'http://creativeliteracyacademy.org',1),(12,95,'http://montgomeryagricultureinitiative.org',1),(13,119,'http://mainepeacefellowship.org',1),(14,163,'http://northpointsystems.org',1),(15,31,'http://beattyvillepartnership.org',1),(16,26,'http://caulderagriculture.org',1),(17,179,'http://oklahomaalliance.org',1); +INSERT INTO `civicrm_website` (`id`, `contact_id`, `url`, `website_type_id`) VALUES (1,53,'http://cadellpeace.org',1),(2,154,'http://northpointtrust.org',1),(3,67,'http://globalsports.org',1),(4,120,'http://ohiolegalcenter.org',1),(5,57,'http://simondevelopmentinitiative.org',1),(6,148,'http://virginiasolutions.org',1),(7,176,'http://globalschool.org',1),(8,185,'http://friendscultureschool.org',1),(9,105,'http://vancouverpoetryassociation.org',1),(10,97,'http://localliteracysystems.org',1),(11,141,'http://unitedsoftwareacademy.org',1),(12,164,'http://bayenvironmental.org',1),(13,119,'http://mlkingadvocacy.org',1); /*!40000 ALTER TABLE `civicrm_website` ENABLE KEYS */; UNLOCK TABLES; @@ -1448,7 +1447,7 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2015-01-20 9:35:14 +-- Dump completed on 2015-01-16 18:16:46 -- +--------------------------------------------------------------------+ -- | CiviCRM version 3.4 | -- +--------------------------------------------------------------------+ diff --git a/templates/CRM/PCP/Form/Campaign.tpl b/templates/CRM/PCP/Form/Campaign.tpl index 5793e2536d..e574188d03 100644 --- a/templates/CRM/PCP/Form/Campaign.tpl +++ b/templates/CRM/PCP/Form/Campaign.tpl @@ -85,6 +85,16 @@
+ {if $owner_notification_option} +
+
{$form.is_notify.label}
+
+ {$form.is_notify.html} +
{ts}If this option is checked, you will receive an email notification when people contribute to your campaign.{/ts}
+
+
+
+ {/if}
{$form.is_active.label}
diff --git a/templates/CRM/PCP/Form/PCP.tpl b/templates/CRM/PCP/Form/PCP.tpl index eca0cdab34..9f8af10f60 100644 --- a/templates/CRM/PCP/Form/PCP.tpl +++ b/templates/CRM/PCP/Form/PCP.tpl @@ -65,6 +65,10 @@ {$form.supporter_profile_id.label} {$form.supporter_profile_id.html} {help id="id-supporter_profile"} + + {$form.owner_notify_id.label} + {$form.owner_notify_id.html} {help id="id-owner_notify"} + {$form.is_tellfriend_enabled.label} {$form.is_tellfriend_enabled.html} {help id="id-is_tellfriend"} diff --git a/xml/schema/PCP/PCP.xml b/xml/schema/PCP/PCP.xml index 214d521b39..b5fcabf820 100644 --- a/xml/schema/PCP/PCP.xml +++ b/xml/schema/PCP/PCP.xml @@ -192,4 +192,14 @@ CheckBox + + is_notify + boolean + Notify owner via email when someone donates to page? + 0 + 4.6 + + CheckBox + + diff --git a/xml/schema/PCP/PCPBlock.xml b/xml/schema/PCP/PCPBlock.xml index 844c738fb0..39988fd194 100644 --- a/xml/schema/PCP/PCPBlock.xml +++ b/xml/schema/PCP/PCPBlock.xml @@ -79,6 +79,20 @@ 3.1 SET NULL + + owner_notify_id + Owner Notification + int unsigned + 1 + FK to civicrm_option_group with name = PCP owner notifications + 4.6 + + pcp_owner_notify + + + Radio + + is_approval_needed boolean diff --git a/xml/templates/civicrm_data.tpl b/xml/templates/civicrm_data.tpl index 871085dc8d..def6d8e854 100644 --- a/xml/templates/civicrm_data.tpl +++ b/xml/templates/civicrm_data.tpl @@ -144,6 +144,7 @@ VALUES ('payment_instrument' , '{ts escape="sql"}Payment Instruments{/ts}' , 1, 1, 0), ('contribution_status' , '{ts escape="sql"}Contribution Status{/ts}' , 1, 1, 1), ('pcp_status' , '{ts escape="sql"}PCP Status{/ts}' , 1, 1, 1), + ('pcp_owner_notify' , '{ts escape="sql"}PCP owner notifications{/ts}' , 1, 1, 1), ('participant_role' , '{ts escape="sql"}Participant Role{/ts}' , 1, 1, 0), ('event_type' , '{ts escape="sql"}Event Type{/ts}' , 1, 1, 0), ('contact_view_options' , '{ts escape="sql"}Contact View Options{/ts}' , 1, 1, 1), @@ -224,6 +225,7 @@ SELECT @option_group_id_acc := max(id) from civicrm_option_group wher SELECT @option_group_id_pi := max(id) from civicrm_option_group where name = 'payment_instrument'; SELECT @option_group_id_cs := max(id) from civicrm_option_group where name = 'contribution_status'; SELECT @option_group_id_pcp := max(id) from civicrm_option_group where name = 'pcp_status'; +SELECT @option_group_id_pcpOwnerNotify := max(id) from civicrm_option_group where name = 'pcp_owner_notify'; SELECT @option_group_id_pRole := max(id) from civicrm_option_group where name = 'participant_role'; SELECT @option_group_id_etype := max(id) from civicrm_option_group where name = 'event_type'; SELECT @option_group_id_cvOpt := max(id) from civicrm_option_group where name = 'contact_view_options'; @@ -438,6 +440,10 @@ VALUES (@option_group_id_pcp, '{ts escape="sql"}Approved{/ts}' , 2, 'Approved' , NULL, 0, NULL, 2, NULL, 0, 1, 1, NULL, NULL), (@option_group_id_pcp, '{ts escape="sql"}Not Approved{/ts}' , 3, 'Not Approved' , NULL, 0, NULL, 3, NULL, 0, 1, 1, NULL, NULL), + (@option_group_id_pcpOwnerNotify, '{ts escape="sql"}Owner chooses whether to receive notifications{/ts}', 1, 'owner_chooses', NULL, 0, 1, 1, NULL, 0, 1, 1, NULL, NULL), + (@option_group_id_pcpOwnerNotify, '{ts escape="sql"}Notifications are sent to ALL owners{/ts}' , 2, 'all_owners' , NULL, 0, 0, 2, NULL, 0, 1, 1, NULL, NULL), + (@option_group_id_pcpOwnerNotify, '{ts escape="sql"}Notifications are NOT available{/ts}' , 3, 'no_notifications' , NULL, 0, 0, 3, NULL, 0, 1, 1, NULL, NULL), + (@option_group_id_pRole, '{ts escape="sql"}Attendee{/ts}', 1, 'Attendee', NULL, 1, NULL, 1, NULL, 0, 0, 1, NULL, NULL), (@option_group_id_pRole, '{ts escape="sql"}Volunteer{/ts}', 2, 'Volunteer', NULL, 1, NULL, 2, NULL, 0, 0, 1, NULL, NULL), (@option_group_id_pRole, '{ts escape="sql"}Host{/ts}', 3, 'Host', NULL, 1, NULL, 3, NULL, 0, 0, 1, NULL, NULL), diff --git a/xml/templates/civicrm_msg_template.tpl b/xml/templates/civicrm_msg_template.tpl index ba84281ba5..89a15c325f 100644 --- a/xml/templates/civicrm_msg_template.tpl +++ b/xml/templates/civicrm_msg_template.tpl @@ -54,6 +54,7 @@ 'pcp_notify' => ts('Personal Campaign Pages - Admin Notification', array('escape' => 'sql')), 'pcp_status_change' => ts('Personal Campaign Pages - Supporter Status Change Notification', array('escape' => 'sql')), 'pcp_supporter_notify' => ts('Personal Campaign Pages - Supporter Welcome', array('escape' => 'sql')), + 'pcp_owner_notify' => ts('Personal Campaign Pages - Owner Notification', array('escape' => 'sql')), 'payment_or_refund_notification' => ts('Additional Payment Receipt or Refund Notification', array('escape' => 'sql')), ), 'event' => array( -- 2.25.1